ERC-721
NFT
Overview
Max Total Supply
531 eTicket
Holders
88
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 eTicketLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
NFTeGG_Action_Ticket
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-25 */ // SPDX-License-Identifier: MIT AND UNLICENSED pragma solidity ^0.6.2; // File: openzeppelin-contracts\contracts\GSN\Context.sol /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: openzeppelin-contracts\contracts\access\Ownable.sol /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: openzeppelin-contracts\contracts\introspection\IERC165.sol /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: openzeppelin-contracts\contracts\token\ERC721\IERC721.sol /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: openzeppelin-contracts\contracts\token\ERC721\IERC721Metadata.sol /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: openzeppelin-contracts\contracts\token\ERC721\IERC721Enumerable.sol /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: openzeppelin-contracts\contracts\token\ERC721\IERC721Receiver.sol /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: openzeppelin-contracts\contracts\introspection\ERC165.sol /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: openzeppelin-contracts\contracts\math\SafeMath.sol /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, 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; } } // File: openzeppelin-contracts\contracts\utils\Address.sol /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.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); } } } } // File: openzeppelin-contracts\contracts\utils\EnumerableSet.sol /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.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)); } } // File: openzeppelin-contracts\contracts\utils\EnumerableMap.sol /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev 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))); } } // File: openzeppelin-contracts\contracts\utils\Strings.sol /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = byte(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } // File: openzeppelin-contracts\contracts\token\ERC20\IERC20.sol /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: general\ERC20Recoverable.sol /** * @dev Contract module that can be used to recover ERC20 compatible tokens stuck in the contract. */ contract ERC20Recoverable is Ownable { /** * @dev Used to transfer tokens stuck on this contract to another address. */ function recoverERC20(address token, address recipient, uint256 amount) external onlyOwner returns (bool) { return IERC20(token).transfer(recipient, amount); } /** * @dev Used to approve recovery of stuck tokens. May also be used to approve token transfers in advance. */ function recoverERC20Approve(address token, address spender, uint256 amount) external onlyOwner returns (bool) { return IERC20(token).approve(spender, amount); } } // File: general\ERC721Recoverable.sol /** * @dev Contract module that can be used to recover ERC20 compatible tokens stuck in the contract. */ contract ERC721Recoverable is Ownable { /** * @dev Used to recover a stuck token. */ function recoverERC721(address token, address recipient, uint256 tokenId) external onlyOwner { return IERC721(token).transferFrom(address(this), recipient, tokenId); } /** * @dev Used to recover a stuck token using the safe transfer function of ERC721. */ function recoverERC721Safe(address token, address recipient, uint256 tokenId) external onlyOwner { return IERC721(token).safeTransferFrom(address(this), recipient, tokenId); } /** * @dev Used to approve the recovery of a stuck token. */ function recoverERC721Approve(address token, address recipient, uint256 tokenId) external onlyOwner { return IERC721(token).approve(recipient, tokenId); } /** * @dev Used to approve the recovery of stuck token, also in future. */ function recoverERC721ApproveAll(address token, address recipient, bool approved) external onlyOwner { return IERC721(token).setApprovalForAll(recipient, approved); } } // File: projects\202009 - NFT with NFT Entry\T2.sol /** * @dev Most credited to OpenZeppelin ERC721.sol, but with some adjustments. */ contract NFTeGG_Action_Ticket is Context, Ownable, ERC165, IERC721, IERC721Metadata, IERC721Enumerable, ERC20Recoverable, ERC721Recoverable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; // Token name string private _name; // Token symbol string private _symbol; // Base URI string private _baseURI; // Specified if tokens are transferable. Can be flipped by the owner. bool private _transferable; // Price per token. Is chosen and can be changed by contract owner. uint256 private _tokenPrice; // Counter for token id uint256 private _nextId = 1; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name, string memory symbol, string memory baseURI, bool transferable, uint256 tokenPrice) public { _name = name; _symbol = symbol; _baseURI = baseURI; _transferable = transferable; _tokenPrice = tokenPrice; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } // public functions: /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) external 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() external view override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() external view override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) external view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(_baseURI, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() external view returns (string memory) { return _baseURI; } /** * @dev Returns if tokens are globally transferable currently. That may be decided by the contract owner. */ function transferable() external view returns (bool) { return _transferable; } /** * @dev Price per token for public purchase. */ function tokenPrice() external view returns (uint256) { return _tokenPrice; } /** * @dev Next token id. */ function nextTokenId() public view returns (uint256) { return _nextId; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() external 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) external view override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) external 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) external 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) external 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) external 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); } function buyToken() external payable returns (bool) { uint256 paidAmount = msg.value; require(paidAmount == _tokenPrice, "Invalid amount for token purchase"); _mint(msg.sender, nextTokenId()); _incrementTokenId(); payable(owner()).transfer(paidAmount); return true; } function buyToken10() external payable returns (bool) { uint256 paidAmount = msg.value; require(paidAmount == (_tokenPrice * 10), "Invalid amount for token purchase"); // price for 6 tokens is 5.5 times the price for one token for (uint i=0; i<10; i++) { _mint(msg.sender, nextTokenId()); _incrementTokenId(); } payable(owner()).transfer(paidAmount); return true; } /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public returns (bool) { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); return true; } function burnAnyFrom(address burner) public returns (bool) { require(_holderTokens[burner].length() > 0, "Address does not have any tokens to burn"); return burn(_holderTokens[burner].at(0)); } function burnAny() external returns (bool) { return burnAnyFrom(msg.sender); } // owner functions: /** * @dev Function to set the base URI for all token IDs. It is automatically added as a prefix to the token id in {tokenURI} to retrieve the token URI. */ function setBaseURI(string calldata baseURI_) external onlyOwner { _baseURI = baseURI_; } /** * @dev Function for the contract owner to allow or disallow token transfers. */ function setTransferable(bool allowed) external onlyOwner { _transferable = allowed; } /** * @dev Sets a new token price. */ function setTokenPrice(uint256 newPrice) external onlyOwner { _tokenPrice = newPrice; } // internal functions: /** * @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) private { _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) private 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) private 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) private { _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) private { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) private { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _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); // 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`. * - contract owner must have transfer globally allowed. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) private { require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); require(_transferable == true, "ERC721 transfer not permitted by contract owner"); // 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); } function _incrementTokenId() private { _nextId = _nextId.add(1); } }
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":"string","name":"baseURI","type":"string"},{"internalType":"bool","name":"transferable","type":"bool"},{"internalType":"uint256","name":"tokenPrice","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnAny","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"burner","type":"address"}],"name":"burnAnyFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buyToken10","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverERC20","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverERC20Approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"recoverERC721","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"recoverERC721Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"recoverERC721ApproveAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"recoverERC721Safe","outputs":[],"stateMutability":"nonpayable","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"allowed","type":"bool"}],"name":"setTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526001600c553480156200001657600080fd5b5060405162004c6d38038062004c6d833981810160405260a08110156200003c57600080fd5b81019080805160405193929190846401000000008211156200005d57600080fd5b838201915060208201858111156200007457600080fd5b82518660018202830111640100000000821117156200009257600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c8578082015181840152602081019050620000ab565b50505050905090810190601f168015620000f65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011a57600080fd5b838201915060208201858111156200013157600080fd5b82518660018202830111640100000000821117156200014f57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018557808201518184015260208101905062000168565b50505050905090810190601f168015620001b35780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001d757600080fd5b83820191506020820185811115620001ee57600080fd5b82518660018202830111640100000000821117156200020c57600080fd5b8083526020830192505050908051906020019080838360005b838110156200024257808201518184015260208101905062000225565b50505050905090810190601f168015620002705780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190805190602001909291905050506000620002a06200041560201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620003566301ffc9a760e01b6200041d60201b60201c565b84600790805190602001906200036e92919062000526565b5083600890805190602001906200038792919062000526565b508260099080519060200190620003a092919062000526565b5081600a60006101000a81548160ff02191690831515021790555080600b81905550620003da6380ac58cd60e01b6200041d60201b60201c565b620003f2635b5e139f60e01b6200041d60201b60201c565b6200040a63780e9d6360e01b6200041d60201b60201c565b5050505050620005cc565b600033905090565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620004ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200056957805160ff19168380011785556200059a565b828001600101855582156200059a579182015b82811115620005995782518255916020019190600101906200057c565b5b509050620005a99190620005ad565b5090565b5b80821115620005c8576000816000905550600101620005ae565b5090565b61469180620005dc6000396000f3fe60806040526004361061021a5760003560e01c806370a08231116101235780639cd23707116100ab578063c6ce3ae91161006f578063c6ce3ae914610e88578063c87b56dd14610f05578063e963698c14610fb9578063e985e9c514610fd9578063f2fde38b146110605761021a565b80639cd2370714610c2b578063a22cb46514610c68578063a482171914610cc5578063aa849df814610ce5578063b88d4fde14610d765761021a565b80637ff9b596116100f25780637ff9b59614610ad5578063849eb20914610b005780638da5cb5b14610b2d57806392ff0d3114610b6e57806395d89b4114610b9b5761021a565b806370a08231146109c7578063715018a614610a2c57806375794a3c14610a435780637b9a824214610a6e5761021a565b80632f745c59116101a657806355f804b31161017557806355f804b314610796578063589c4dd41461081c5780636352211e146108975780636a61e5fc146108fc5780636c0360eb146109375761021a565b80632f745c591461060c57806342842e0e1461067b57806342966c68146106f65780634f6ccce7146107475761021a565b80631171bda9116101ed5780631171bda9146103df57806318160ddd1461047057806323b872dd1461049b57806324238d4a146105165780632cdf2c35146105915761021a565b806301ffc9a71461021f57806306fdde031461028f578063081812fc1461031f578063095ea7b314610384575b600080fd5b34801561022b57600080fd5b506102776004803603602081101561024257600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506110b1565b60405180821515815260200191505060405180910390f35b34801561029b57600080fd5b506102a4611119565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102e45780820151818401526020810190506102c9565b50505050905090810190601f1680156103115780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032b57600080fd5b506103586004803603602081101561034257600080fd5b81019080803590602001909291905050506111bb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039057600080fd5b506103dd600480360360408110156103a757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611256565b005b3480156103eb57600080fd5b506104586004803603606081101561040257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061139a565b60405180821515815260200191505060405180910390f35b34801561047c57600080fd5b50610485611519565b6040518082815260200191505060405180910390f35b3480156104a757600080fd5b50610514600480360360608110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061152a565b005b34801561052257600080fd5b5061058f6004803603606081101561053957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115a0565b005b34801561059d57600080fd5b5061060a600480360360608110156105b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611714565b005b34801561061857600080fd5b506106656004803603604081101561062f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611888565b6040518082815260200191505060405180910390f35b34801561068757600080fd5b506106f46004803603606081101561069e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118e3565b005b34801561070257600080fd5b5061072f6004803603602081101561071957600080fd5b8101908080359060200190929190505050611903565b60405180821515815260200191505060405180910390f35b34801561075357600080fd5b506107806004803603602081101561076a57600080fd5b810190808035906020019092919050505061197d565b6040518082815260200191505060405180910390f35b3480156107a257600080fd5b5061081a600480360360208110156107b957600080fd5b81019080803590602001906401000000008111156107d657600080fd5b8201836020820111156107e857600080fd5b8035906020019184600183028401116401000000008311171561080a57600080fd5b90919293919293905050506119a0565b005b34801561082857600080fd5b506108956004803603606081101561083f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a7e565b005b3480156108a357600080fd5b506108d0600480360360208110156108ba57600080fd5b8101908080359060200190929190505050611bd4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561090857600080fd5b506109356004803603602081101561091f57600080fd5b8101908080359060200190929190505050611c0b565b005b34801561094357600080fd5b5061094c611cdd565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561098c578082015181840152602081019050610971565b50505050905090810190601f1680156109b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156109d357600080fd5b50610a16600480360360208110156109ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d7f565b6040518082815260200191505060405180910390f35b348015610a3857600080fd5b50610a41611e54565b005b348015610a4f57600080fd5b50610a58611fda565b6040518082815260200191505060405180910390f35b348015610a7a57600080fd5b50610abd60048036036020811015610a9157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fe4565b60405180821515815260200191505060405180910390f35b348015610ae157600080fd5b50610aea6120e5565b6040518082815260200191505060405180910390f35b348015610b0c57600080fd5b50610b156120ef565b60405180821515815260200191505060405180910390f35b348015610b3957600080fd5b50610b426120ff565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b7a57600080fd5b50610b83612128565b60405180821515815260200191505060405180910390f35b348015610ba757600080fd5b50610bb061213f565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bf0578082015181840152602081019050610bd5565b50505050905090810190601f168015610c1d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c3757600080fd5b50610c6660048036036020811015610c4e57600080fd5b810190808035151590602001909291905050506121e1565b005b348015610c7457600080fd5b50610cc360048036036040811015610c8b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506122c6565b005b610ccd61247c565b60405180821515815260200191505060405180910390f35b348015610cf157600080fd5b50610d5e60048036036060811015610d0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061254b565b60405180821515815260200191505060405180910390f35b348015610d8257600080fd5b50610e8660048036036080811015610d9957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610e0057600080fd5b820183602082011115610e1257600080fd5b80359060200191846001830284011164010000000083111715610e3457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506126ca565b005b348015610e9457600080fd5b50610f0360048036036060811015610eab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612742565b005b348015610f1157600080fd5b50610f3e60048036036020811015610f2857600080fd5b810190808035906020019092919050505061289a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f7e578082015181840152602081019050610f63565b50505050905090810190601f168015610fab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610fc16129d0565b60405180821515815260200191505060405180910390f35b348015610fe557600080fd5b5061104860048036036040811015610ffc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612abc565b60405180821515815260200191505060405180910390f35b34801561106c57600080fd5b506110af6004803603602081101561108357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b50565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111b15780601f10611186576101008083540402835291602001916111b1565b820191906000526020600020905b81548152906001019060200180831161119457829003601f168201915b5050505050905090565b60006111c682612d5b565b61121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614527602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061126182611bd4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806145ab6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611307612d78565b73ffffffffffffffffffffffffffffffffffffffff161480611336575061133581611330612d78565b612abc565b5b61138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603881526020018061447a6038913960400191505060405180910390fd5b6113958383612d80565b505050565b60006113a4612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156114d557600080fd5b505af11580156114e9573d6000803e3d6000fd5b505050506040513d60208110156114ff57600080fd5b810190808051906020019092919050505090509392505050565b60006115256003612e39565b905090565b61153b611535612d78565b82612e4e565b611590576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806145cc6031913960400191505060405180910390fd5b61159b838383612f42565b505050565b6115a8612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611668576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166342842e0e3084846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156116f757600080fd5b505af115801561170b573d6000803e3d6000fd5b50505050505050565b61171c612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166323b872dd3084846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561186b57600080fd5b505af115801561187f573d6000803e3d6000fd5b50505050505050565b60006118db82600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206131e690919063ffffffff16565b905092915050565b6118fe838383604051806020016040528060008152506126ca565b505050565b6000611916611910612d78565b83612e4e565b61196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061462c6030913960400191505060405180910390fd5b61197482613200565b60019050919050565b6000806119948360036132df90919063ffffffff16565b50905080915050919050565b6119a8612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b818160099190611a799291906142a3565b505050565b611a86612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b46576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663095ea7b383836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611bb757600080fd5b505af1158015611bcb573d6000803e3d6000fd5b50505050505050565b6000611c04826040518060600160405280602981526020016144dc60299139600361330b9092919063ffffffff16565b9050919050565b611c13612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b8190555050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d755780601f10611d4a57610100808354040283529160200191611d75565b820191906000526020600020905b815481529060010190602001808311611d5857829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806144b2602a913960400191505060405180910390fd5b611e4d600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061332a565b9050919050565b611e5c612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600c54905090565b60008061202e600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061332a565b11612084576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806143dc6028913960400191505060405180910390fd5b6120de6120d96000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206131e690919063ffffffff16565b611903565b9050919050565b6000600b54905090565b60006120fa33611fe4565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a60009054906101000a900460ff16905090565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121d75780601f106121ac576101008083540402835291602001916121d7565b820191906000526020600020905b8154815290600101906020018083116121ba57829003601f168201915b5050505050905090565b6121e9612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6122ce612d78565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561236f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b806006600061237c612d78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612429612d78565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600080349050600b5481146124dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143956021913960400191505060405180910390fd5b6124ed336124e8611fda565b61333f565b6124f5613527565b6124fd6120ff565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612542573d6000803e3d6000fd5b50600191505090565b6000612555612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612615576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1663095ea7b384846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561268657600080fd5b505af115801561269a573d6000803e3d6000fd5b505050506040513d60208110156126b057600080fd5b810190808051906020019092919050505090509392505050565b6126db6126d5612d78565b83612e4e565b612730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806145cc6031913960400191505060405180910390fd5b61273c84848484613545565b50505050565b61274a612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461280a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a22cb46583836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff168152602001821515815260200192505050600060405180830381600087803b15801561287d57600080fd5b505af1158015612891573d6000803e3d6000fd5b50505050505050565b60606128a582612d5b565b6128fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061457c602f913960400191505060405180910390fd5b6009612905836135b7565b60405160200180838054600181600116156101000203166002900480156129635780601f10612941576101008083540402835291820191612963565b820191906000526020600020905b81548152906001019060200180831161294f575b505082805190602001908083835b602083106129945780518252602082019150602081019050602083039250612971565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b600080349050600a600b54028114612a33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143956021913960400191505060405180910390fd5b60005b600a811015612a6557612a5033612a4b611fda565b61333f565b612a58613527565b8080600101915050612a36565b50612a6e6120ff565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612ab3573d6000803e3d6000fd5b50600191505090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b58612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806143b66026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612d718260036136fe90919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612df383611bd4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e4782600001613718565b9050919050565b6000612e5982612d5b565b612eae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061444e602c913960400191505060405180910390fd5b6000612eb983611bd4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f2857508373ffffffffffffffffffffffffffffffffffffffff16612f10846111bb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f395750612f388185612abc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f6282611bd4565b73ffffffffffffffffffffffffffffffffffffffff1614612fce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806145536029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613054576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806144046024913960400191505060405180910390fd5b60011515600a60009054906101000a900460ff161515146130c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806145fd602f913960400191505060405180910390fd5b6130cb600082612d80565b61311c81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061372990919063ffffffff16565b5061316e81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061374390919063ffffffff16565b506131858183600361375d9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006131f58360000183613792565b60001c905092915050565b600061320b82611bd4565b9050613218600083612d80565b61326982600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061372990919063ffffffff16565b5061327e82600361381590919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000806000806132f2866000018661382f565b915091508160001c8160001c9350935050509250929050565b600061331e846000018460001b846138c8565b60001c90509392505050565b6000613338826000016139be565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6133eb81612d5b565b1561345e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b6134af81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061374390919063ffffffff16565b506134c68183600361375d9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61353d6001600c546139cf90919063ffffffff16565b600c81905550565b613550848484612f42565b61355c84848484613a57565b6135b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806143636032913960400191505060405180910390fd5b50505050565b606060008214156135ff576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136f9565b600082905060005b60008214613629578080600101915050600a828161362157fe5b049150613607565b60608167ffffffffffffffff8111801561364257600080fd5b506040519080825280601f01601f1916602001820160405280156136755781602001600182028036833780820191505090505b50905060006001830390508593505b600084146136f157600a848161369657fe5b0660300160f81b828280600190039350815181106136b057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816136e957fe5b049350613684565b819450505050505b919050565b6000613710836000018360001b613c70565b905092915050565b600081600001805490509050919050565b600061373b836000018360001b613c93565b905092915050565b6000613755836000018360001b613d7b565b905092915050565b6000613789846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613deb565b90509392505050565b6000818360000180549050116137f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143416022913960400191505060405180910390fd5b82600001828154811061380257fe5b9060005260206000200154905092915050565b6000613827836000018360001b613ec7565b905092915050565b60008082846000018054905011613891576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145056022913960400191505060405180910390fd5b60008460000184815481106138a257fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061398f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613954578082015181840152602081019050613939565b50505050905090810190601f1680156139815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106139a257fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600080828401905083811015613a4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000613a788473ffffffffffffffffffffffffffffffffffffffff16613fe0565b613a855760019050613c68565b6060613bef63150b7a0260e01b613a9a612d78565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613b1e578082015181840152602081019050613b03565b50505050905090810190601f168015613b4b5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614363603291398773ffffffffffffffffffffffffffffffffffffffff16613ff39092919063ffffffff16565b90506000818060200190516020811015613c0857600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114613d6f5760006001820390506000600186600001805490500390506000866000018281548110613cde57fe5b9060005260206000200154905080876000018481548110613cfb57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480613d3357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613d75565b60009150505b92915050565b6000613d87838361400b565b613de0578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613de5565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613e9257846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613ec0565b82856000016001830381548110613ea557fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60008083600101600084815260200190815260200160002054905060008114613fd45760006001820390506000600186600001805490500390506000866000018281548110613f1257fe5b9060005260206000209060020201905080876000018481548110613f3257fe5b9060005260206000209060020201600082015481600001556001820154816001015590505060018301876001016000836000015481526020019081526020016000208190555086600001805480613f8557fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050613fda565b60009150505b92915050565b600080823b905060008111915050919050565b6060614002848460008561402e565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015614089576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806144286026913960400191505060405180910390fd5b61409285613fe0565b614104576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106141545780518252602082019150602081019050602083039250614131565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146141b6576040519150601f19603f3d011682016040523d82523d6000602084013e6141bb565b606091505b50915091506141cb8282866141d7565b92505050949350505050565b606083156141e75782905061429c565b6000835111156141fa5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614261578082015181840152602081019050614246565b50505050905090810190601f16801561428e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106142e457803560ff1916838001178555614312565b82800160010185558215614312579182015b828111156143115782358255916020019190600101906142f6565b5b50905061431f9190614323565b5090565b5b8082111561433c576000816000905550600101614324565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572496e76616c696420616d6f756e7420666f7220746f6b656e2070757263686173654f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734164647265737320646f6573206e6f74206861766520616e7920746f6b656e7320746f206275726e4552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231207472616e73666572206e6f74207065726d697474656420627920636f6e7472616374206f776e65724552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220c06ed16b7c939ae8688098c4b685adac58a5cce18fbfa47307f191f422a9a2f264736f6c634300060c003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000000000000000144e465465474720416374696f6e205469636b65740000000000000000000000000000000000000000000000000000000000000000000000000000000000000007655469636b657400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f6e66746567672e636f6d2f7469636b65742f000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a08231116101235780639cd23707116100ab578063c6ce3ae91161006f578063c6ce3ae914610e88578063c87b56dd14610f05578063e963698c14610fb9578063e985e9c514610fd9578063f2fde38b146110605761021a565b80639cd2370714610c2b578063a22cb46514610c68578063a482171914610cc5578063aa849df814610ce5578063b88d4fde14610d765761021a565b80637ff9b596116100f25780637ff9b59614610ad5578063849eb20914610b005780638da5cb5b14610b2d57806392ff0d3114610b6e57806395d89b4114610b9b5761021a565b806370a08231146109c7578063715018a614610a2c57806375794a3c14610a435780637b9a824214610a6e5761021a565b80632f745c59116101a657806355f804b31161017557806355f804b314610796578063589c4dd41461081c5780636352211e146108975780636a61e5fc146108fc5780636c0360eb146109375761021a565b80632f745c591461060c57806342842e0e1461067b57806342966c68146106f65780634f6ccce7146107475761021a565b80631171bda9116101ed5780631171bda9146103df57806318160ddd1461047057806323b872dd1461049b57806324238d4a146105165780632cdf2c35146105915761021a565b806301ffc9a71461021f57806306fdde031461028f578063081812fc1461031f578063095ea7b314610384575b600080fd5b34801561022b57600080fd5b506102776004803603602081101561024257600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506110b1565b60405180821515815260200191505060405180910390f35b34801561029b57600080fd5b506102a4611119565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102e45780820151818401526020810190506102c9565b50505050905090810190601f1680156103115780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032b57600080fd5b506103586004803603602081101561034257600080fd5b81019080803590602001909291905050506111bb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039057600080fd5b506103dd600480360360408110156103a757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611256565b005b3480156103eb57600080fd5b506104586004803603606081101561040257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061139a565b60405180821515815260200191505060405180910390f35b34801561047c57600080fd5b50610485611519565b6040518082815260200191505060405180910390f35b3480156104a757600080fd5b50610514600480360360608110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061152a565b005b34801561052257600080fd5b5061058f6004803603606081101561053957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115a0565b005b34801561059d57600080fd5b5061060a600480360360608110156105b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611714565b005b34801561061857600080fd5b506106656004803603604081101561062f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611888565b6040518082815260200191505060405180910390f35b34801561068757600080fd5b506106f46004803603606081101561069e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118e3565b005b34801561070257600080fd5b5061072f6004803603602081101561071957600080fd5b8101908080359060200190929190505050611903565b60405180821515815260200191505060405180910390f35b34801561075357600080fd5b506107806004803603602081101561076a57600080fd5b810190808035906020019092919050505061197d565b6040518082815260200191505060405180910390f35b3480156107a257600080fd5b5061081a600480360360208110156107b957600080fd5b81019080803590602001906401000000008111156107d657600080fd5b8201836020820111156107e857600080fd5b8035906020019184600183028401116401000000008311171561080a57600080fd5b90919293919293905050506119a0565b005b34801561082857600080fd5b506108956004803603606081101561083f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a7e565b005b3480156108a357600080fd5b506108d0600480360360208110156108ba57600080fd5b8101908080359060200190929190505050611bd4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561090857600080fd5b506109356004803603602081101561091f57600080fd5b8101908080359060200190929190505050611c0b565b005b34801561094357600080fd5b5061094c611cdd565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561098c578082015181840152602081019050610971565b50505050905090810190601f1680156109b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156109d357600080fd5b50610a16600480360360208110156109ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d7f565b6040518082815260200191505060405180910390f35b348015610a3857600080fd5b50610a41611e54565b005b348015610a4f57600080fd5b50610a58611fda565b6040518082815260200191505060405180910390f35b348015610a7a57600080fd5b50610abd60048036036020811015610a9157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fe4565b60405180821515815260200191505060405180910390f35b348015610ae157600080fd5b50610aea6120e5565b6040518082815260200191505060405180910390f35b348015610b0c57600080fd5b50610b156120ef565b60405180821515815260200191505060405180910390f35b348015610b3957600080fd5b50610b426120ff565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b7a57600080fd5b50610b83612128565b60405180821515815260200191505060405180910390f35b348015610ba757600080fd5b50610bb061213f565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bf0578082015181840152602081019050610bd5565b50505050905090810190601f168015610c1d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c3757600080fd5b50610c6660048036036020811015610c4e57600080fd5b810190808035151590602001909291905050506121e1565b005b348015610c7457600080fd5b50610cc360048036036040811015610c8b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506122c6565b005b610ccd61247c565b60405180821515815260200191505060405180910390f35b348015610cf157600080fd5b50610d5e60048036036060811015610d0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061254b565b60405180821515815260200191505060405180910390f35b348015610d8257600080fd5b50610e8660048036036080811015610d9957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610e0057600080fd5b820183602082011115610e1257600080fd5b80359060200191846001830284011164010000000083111715610e3457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506126ca565b005b348015610e9457600080fd5b50610f0360048036036060811015610eab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612742565b005b348015610f1157600080fd5b50610f3e60048036036020811015610f2857600080fd5b810190808035906020019092919050505061289a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f7e578082015181840152602081019050610f63565b50505050905090810190601f168015610fab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610fc16129d0565b60405180821515815260200191505060405180910390f35b348015610fe557600080fd5b5061104860048036036040811015610ffc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612abc565b60405180821515815260200191505060405180910390f35b34801561106c57600080fd5b506110af6004803603602081101561108357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b50565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111b15780601f10611186576101008083540402835291602001916111b1565b820191906000526020600020905b81548152906001019060200180831161119457829003601f168201915b5050505050905090565b60006111c682612d5b565b61121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614527602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061126182611bd4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806145ab6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611307612d78565b73ffffffffffffffffffffffffffffffffffffffff161480611336575061133581611330612d78565b612abc565b5b61138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603881526020018061447a6038913960400191505060405180910390fd5b6113958383612d80565b505050565b60006113a4612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156114d557600080fd5b505af11580156114e9573d6000803e3d6000fd5b505050506040513d60208110156114ff57600080fd5b810190808051906020019092919050505090509392505050565b60006115256003612e39565b905090565b61153b611535612d78565b82612e4e565b611590576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806145cc6031913960400191505060405180910390fd5b61159b838383612f42565b505050565b6115a8612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611668576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166342842e0e3084846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156116f757600080fd5b505af115801561170b573d6000803e3d6000fd5b50505050505050565b61171c612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166323b872dd3084846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561186b57600080fd5b505af115801561187f573d6000803e3d6000fd5b50505050505050565b60006118db82600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206131e690919063ffffffff16565b905092915050565b6118fe838383604051806020016040528060008152506126ca565b505050565b6000611916611910612d78565b83612e4e565b61196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061462c6030913960400191505060405180910390fd5b61197482613200565b60019050919050565b6000806119948360036132df90919063ffffffff16565b50905080915050919050565b6119a8612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b818160099190611a799291906142a3565b505050565b611a86612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b46576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663095ea7b383836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611bb757600080fd5b505af1158015611bcb573d6000803e3d6000fd5b50505050505050565b6000611c04826040518060600160405280602981526020016144dc60299139600361330b9092919063ffffffff16565b9050919050565b611c13612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b8190555050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d755780601f10611d4a57610100808354040283529160200191611d75565b820191906000526020600020905b815481529060010190602001808311611d5857829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806144b2602a913960400191505060405180910390fd5b611e4d600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061332a565b9050919050565b611e5c612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600c54905090565b60008061202e600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061332a565b11612084576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806143dc6028913960400191505060405180910390fd5b6120de6120d96000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206131e690919063ffffffff16565b611903565b9050919050565b6000600b54905090565b60006120fa33611fe4565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a60009054906101000a900460ff16905090565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121d75780601f106121ac576101008083540402835291602001916121d7565b820191906000526020600020905b8154815290600101906020018083116121ba57829003601f168201915b5050505050905090565b6121e9612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6122ce612d78565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561236f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b806006600061237c612d78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612429612d78565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600080349050600b5481146124dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143956021913960400191505060405180910390fd5b6124ed336124e8611fda565b61333f565b6124f5613527565b6124fd6120ff565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612542573d6000803e3d6000fd5b50600191505090565b6000612555612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612615576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1663095ea7b384846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561268657600080fd5b505af115801561269a573d6000803e3d6000fd5b505050506040513d60208110156126b057600080fd5b810190808051906020019092919050505090509392505050565b6126db6126d5612d78565b83612e4e565b612730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806145cc6031913960400191505060405180910390fd5b61273c84848484613545565b50505050565b61274a612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461280a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a22cb46583836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff168152602001821515815260200192505050600060405180830381600087803b15801561287d57600080fd5b505af1158015612891573d6000803e3d6000fd5b50505050505050565b60606128a582612d5b565b6128fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061457c602f913960400191505060405180910390fd5b6009612905836135b7565b60405160200180838054600181600116156101000203166002900480156129635780601f10612941576101008083540402835291820191612963565b820191906000526020600020905b81548152906001019060200180831161294f575b505082805190602001908083835b602083106129945780518252602082019150602081019050602083039250612971565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b600080349050600a600b54028114612a33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143956021913960400191505060405180910390fd5b60005b600a811015612a6557612a5033612a4b611fda565b61333f565b612a58613527565b8080600101915050612a36565b50612a6e6120ff565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612ab3573d6000803e3d6000fd5b50600191505090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b58612d78565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806143b66026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612d718260036136fe90919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612df383611bd4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e4782600001613718565b9050919050565b6000612e5982612d5b565b612eae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061444e602c913960400191505060405180910390fd5b6000612eb983611bd4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f2857508373ffffffffffffffffffffffffffffffffffffffff16612f10846111bb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f395750612f388185612abc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f6282611bd4565b73ffffffffffffffffffffffffffffffffffffffff1614612fce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806145536029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613054576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806144046024913960400191505060405180910390fd5b60011515600a60009054906101000a900460ff161515146130c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806145fd602f913960400191505060405180910390fd5b6130cb600082612d80565b61311c81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061372990919063ffffffff16565b5061316e81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061374390919063ffffffff16565b506131858183600361375d9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006131f58360000183613792565b60001c905092915050565b600061320b82611bd4565b9050613218600083612d80565b61326982600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061372990919063ffffffff16565b5061327e82600361381590919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000806000806132f2866000018661382f565b915091508160001c8160001c9350935050509250929050565b600061331e846000018460001b846138c8565b60001c90509392505050565b6000613338826000016139be565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6133eb81612d5b565b1561345e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b6134af81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061374390919063ffffffff16565b506134c68183600361375d9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61353d6001600c546139cf90919063ffffffff16565b600c81905550565b613550848484612f42565b61355c84848484613a57565b6135b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806143636032913960400191505060405180910390fd5b50505050565b606060008214156135ff576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136f9565b600082905060005b60008214613629578080600101915050600a828161362157fe5b049150613607565b60608167ffffffffffffffff8111801561364257600080fd5b506040519080825280601f01601f1916602001820160405280156136755781602001600182028036833780820191505090505b50905060006001830390508593505b600084146136f157600a848161369657fe5b0660300160f81b828280600190039350815181106136b057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816136e957fe5b049350613684565b819450505050505b919050565b6000613710836000018360001b613c70565b905092915050565b600081600001805490509050919050565b600061373b836000018360001b613c93565b905092915050565b6000613755836000018360001b613d7b565b905092915050565b6000613789846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613deb565b90509392505050565b6000818360000180549050116137f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143416022913960400191505060405180910390fd5b82600001828154811061380257fe5b9060005260206000200154905092915050565b6000613827836000018360001b613ec7565b905092915050565b60008082846000018054905011613891576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145056022913960400191505060405180910390fd5b60008460000184815481106138a257fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061398f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613954578082015181840152602081019050613939565b50505050905090810190601f1680156139815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106139a257fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600080828401905083811015613a4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000613a788473ffffffffffffffffffffffffffffffffffffffff16613fe0565b613a855760019050613c68565b6060613bef63150b7a0260e01b613a9a612d78565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613b1e578082015181840152602081019050613b03565b50505050905090810190601f168015613b4b5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614363603291398773ffffffffffffffffffffffffffffffffffffffff16613ff39092919063ffffffff16565b90506000818060200190516020811015613c0857600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114613d6f5760006001820390506000600186600001805490500390506000866000018281548110613cde57fe5b9060005260206000200154905080876000018481548110613cfb57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480613d3357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613d75565b60009150505b92915050565b6000613d87838361400b565b613de0578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613de5565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613e9257846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613ec0565b82856000016001830381548110613ea557fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60008083600101600084815260200190815260200160002054905060008114613fd45760006001820390506000600186600001805490500390506000866000018281548110613f1257fe5b9060005260206000209060020201905080876000018481548110613f3257fe5b9060005260206000209060020201600082015481600001556001820154816001015590505060018301876001016000836000015481526020019081526020016000208190555086600001805480613f8557fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050613fda565b60009150505b92915050565b600080823b905060008111915050919050565b6060614002848460008561402e565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015614089576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806144286026913960400191505060405180910390fd5b61409285613fe0565b614104576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106141545780518252602082019150602081019050602083039250614131565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146141b6576040519150601f19603f3d011682016040523d82523d6000602084013e6141bb565b606091505b50915091506141cb8282866141d7565b92505050949350505050565b606083156141e75782905061429c565b6000835111156141fa5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614261578082015181840152602081019050614246565b50505050905090810190601f16801561428e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106142e457803560ff1916838001178555614312565b82800160010185558215614312579182015b828111156143115782358255916020019190600101906142f6565b5b50905061431f9190614323565b5090565b5b8082111561433c576000816000905550600101614324565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572496e76616c696420616d6f756e7420666f7220746f6b656e2070757263686173654f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734164647265737320646f6573206e6f74206861766520616e7920746f6b656e7320746f206275726e4552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231207472616e73666572206e6f74207065726d697474656420627920636f6e7472616374206f776e65724552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220c06ed16b7c939ae8688098c4b685adac58a5cce18fbfa47307f191f422a9a2f264736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000000000000000144e465465474720416374696f6e205469636b65740000000000000000000000000000000000000000000000000000000000000000000000000000000000000007655469636b657400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f6e66746567672e636f6d2f7469636b65742f000000000000
-----Decoded View---------------
Arg [0] : name (string): NFTeGG Action Ticket
Arg [1] : symbol (string): eTicket
Arg [2] : baseURI (string): https://nftegg.com/ticket/
Arg [3] : transferable (bool): True
Arg [4] : tokenPrice (uint256): 1000000000000000
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [6] : 4e465465474720416374696f6e205469636b6574000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 655469636b657400000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [10] : 68747470733a2f2f6e66746567672e636f6d2f7469636b65742f000000000000
Deployed Bytecode Sourcemap
49013:17970:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12326:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53479:94;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56303:213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55845:392;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47093:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55335:205;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57179:307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48139:189;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47845:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55103:156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57557:153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59062:274;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55617:166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;59863:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48414:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53243:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;60238:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54392:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52964:217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2749:148;;;;;;;;;;;;;:::i;:::-;;54933:86;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;59344:216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54788:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;59568:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2107:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54620:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53642:98;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60075:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56588:297;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58074:331;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47404:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;57781:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48682:180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53811:342;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58417:459;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;56956:156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3052:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12326:142;12403:4;12427:20;:33;12448:11;12427:33;;;;;;;;;;;;;;;;;;;;;;;;;;;12420:40;;12326:142;;;:::o;53479:94::-;53527:13;53560:5;53553:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53479:94;:::o;56303:213::-;56371:7;56399:16;56407:7;56399;:16::i;:::-;56391:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56484:15;:24;56500:7;56484:24;;;;;;;;;;;;;;;;;;;;;56477:31;;56303:213;;;:::o;55845:392::-;55928:13;55944:16;55952:7;55944;:16::i;:::-;55928:32;;55985:5;55979:11;;:2;:11;;;;55971:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56065:5;56049:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;56074:37;56091:5;56098:12;:10;:12::i;:::-;56074:16;:37::i;:::-;56049:62;56041:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56208:21;56217:2;56221:7;56208:8;:21::i;:::-;55845:392;;;:::o;47093:173::-;47193:4;2329:12;:10;:12::i;:::-;2319:22;;:6;;;;;;;;;;:22;;;2311:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47224:5:::1;47217:22;;;47240:9;47251:6;47217:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;47210:48;;47093:173:::0;;;;;:::o;55335:205::-;55390:7;55511:21;:12;:19;:21::i;:::-;55504:28;;55335:205;:::o;57179:307::-;57342:41;57361:12;:10;:12::i;:::-;57375:7;57342:18;:41::i;:::-;57334:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57450:28;57460:4;57466:2;57470:7;57450:9;:28::i;:::-;57179:307;;;:::o;48139:189::-;2329:12;:10;:12::i;:::-;2319:22;;:6;;;;;;;;;;:22;;;2311:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48262:5:::1;48254:31;;;48294:4;48301:9;48312:7;48254:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48139:189:::0;;;:::o;47845:181::-;2329:12;:10;:12::i;:::-;2319:22;;:6;;;;;;;;;;:22;;;2311:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47964:5:::1;47956:27;;;47992:4;47999:9;48010:7;47956:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;47845:181:::0;;;:::o;55103:156::-;55194:7;55221:30;55245:5;55221:13;:20;55235:5;55221:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;55214:37;;55103:156;;;;:::o;57557:153::-;57663:39;57680:4;57686:2;57690:7;57663:39;;;;;;;;;;;;:16;:39::i;:::-;57557:153;;;:::o;59062:274::-;59109:4;59187:41;59206:12;:10;:12::i;:::-;59220:7;59187:18;:41::i;:::-;59179:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59292:14;59298:7;59292:5;:14::i;:::-;59324:4;59317:11;;59062:274;;;:::o;55617:166::-;55686:7;55707:15;55728:22;55744:5;55728:12;:15;;:22;;;;:::i;:::-;55706:44;;;55768:7;55761:14;;;55617:166;;;:::o;59863:103::-;2329:12;:10;:12::i;:::-;2319:22;;:6;;;;;;;;;;:22;;;2311:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59950:8:::1;;59939;:19;;;;;;;:::i;:::-;;59863:103:::0;;:::o;48414:168::-;2329:12;:10;:12::i;:::-;2319:22;;:6;;;;;;;;;;:22;;;2311:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48540:5:::1;48532:22;;;48555:9;48566:7;48532:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48414:168:::0;;;:::o;53243:169::-;53307:7;53334:70;53351:7;53334:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;53327:77;;53243:169;;;:::o;60238:101::-;2329:12;:10;:12::i;:::-;2319:22;;:6;;;;;;;;;;:22;;;2311:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60323:8:::1;60309:11;:22;;;;60238:101:::0;:::o;54392:91::-;54434:13;54467:8;54460:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54392:91;:::o;52964:217::-;53030:7;53075:1;53058:19;;:5;:19;;;;53050:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53144:29;:13;:20;53158:5;53144:20;;;;;;;;;;;;;;;:27;:29::i;:::-;53137:36;;52964:217;;;:::o;2749:148::-;2329:12;:10;:12::i;:::-;2319:22;;:6;;;;;;;;;;:22;;;2311:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2856:1:::1;2819:40;;2840:6;::::0;::::1;;;;;;;;2819:40;;;;;;;;;;;;2887:1;2870:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2749:148::o:0;54933:86::-;54977:7;55004;;54997:14;;54933:86;:::o;59344:216::-;59397:4;59455:1;59422:30;:13;:21;59436:6;59422:21;;;;;;;;;;;;;;;:28;:30::i;:::-;:34;59414:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59519:33;59524:27;59549:1;59524:13;:21;59538:6;59524:21;;;;;;;;;;;;;;;:24;;:27;;;;:::i;:::-;59519:4;:33::i;:::-;59512:40;;59344:216;;;:::o;54788:91::-;54833:7;54860:11;;54853:18;;54788:91;:::o;59568:92::-;59605:4;59629:23;59641:10;59629:11;:23::i;:::-;59622:30;;59568:92;:::o;2107:79::-;2145:7;2172:6;;;;;;;;;;;2165:13;;2107:79;:::o;54620:92::-;54667:4;54691:13;;;;;;;;;;;54684:20;;54620:92;:::o;53642:98::-;53692:13;53725:7;53718:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53642:98;:::o;60075:100::-;2329:12;:10;:12::i;:::-;2319:22;;:6;;;;;;;;;;:22;;;2311:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60160:7:::1;60144:13;;:23;;;;;;;;;;;;;;;;;;60075:100:::0;:::o;56588:297::-;56705:12;:10;:12::i;:::-;56693:24;;:8;:24;;;;56685:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56805:8;56760:18;:32;56779:12;:10;:12::i;:::-;56760:32;;;;;;;;;;;;;;;:42;56793:8;56760:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;56858:8;56829:48;;56844:12;:10;:12::i;:::-;56829:48;;;56868:8;56829:48;;;;;;;;;;;;;;;;;;;;56588:297;;:::o;58074:331::-;58120:4;58142:18;58163:9;58142:30;;58205:11;;58191:10;:25;58183:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58265:32;58271:10;58283:13;:11;:13::i;:::-;58265:5;:32::i;:::-;58308:19;:17;:19::i;:::-;58346:7;:5;:7::i;:::-;58338:25;;:37;58364:10;58338:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58393:4;58386:11;;;58074:331;:::o;47404:175::-;47509:4;2329:12;:10;:12::i;:::-;2319:22;;:6;;;;;;;;;;:22;;;2311:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47540:5:::1;47533:21;;;47555:7;47564:6;47533:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;47526:45;;47404:175:::0;;;;;:::o;57781:285::-;57913:41;57932:12;:10;:12::i;:::-;57946:7;57913:18;:41::i;:::-;57905:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58019:39;58033:4;58039:2;58043:7;58052:5;58019:13;:39::i;:::-;57781:285;;;;:::o;48682:180::-;2329:12;:10;:12::i;:::-;2319:22;;:6;;;;;;;;;;:22;;;2311:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48809:5:::1;48801:32;;;48834:9;48845:8;48801:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48682:180:::0;;;:::o;53811:342::-;53878:13;53912:16;53920:7;53912;:16::i;:::-;53904:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54115:8;54125:18;:7;:16;:18::i;:::-;54098:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54084:61;;53811:342;;;:::o;58417:459::-;58465:4;58487:18;58508:9;58487:30;;58565:2;58551:11;;:16;58536:10;:32;58528:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58683:6;58678:111;58695:2;58693:1;:4;58678:111;;;58715:32;58721:10;58733:13;:11;:13::i;:::-;58715:5;:32::i;:::-;58758:19;:17;:19::i;:::-;58699:3;;;;;;;58678:111;;;;58817:7;:5;:7::i;:::-;58809:25;;:37;58835:10;58809:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58864:4;58857:11;;;58417:459;:::o;56956:156::-;57045:4;57069:18;:25;57088:5;57069:25;;;;;;;;;;;;;;;:35;57095:8;57069:35;;;;;;;;;;;;;;;;;;;;;;;;;57062:42;;56956:156;;;;:::o;3052:244::-;2329:12;:10;:12::i;:::-;2319:22;;:6;;;;;;;;;;:22;;;2311:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3161:1:::1;3141:22;;:8;:22;;;;3133:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3251:8;3222:38;;3243:6;::::0;::::1;;;;;;;;3222:38;;;;;;;;;;;;3280:8;3271:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;3052:244:::0;:::o;61821:118::-;61877:4;61901:30;61923:7;61901:12;:21;;:30;;;;:::i;:::-;61894:37;;61821:118;;;:::o;681:106::-;734:15;769:10;762:17;;681:106;:::o;66734:158::-;66827:2;66800:15;:24;66816:7;66800:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;66876:7;66872:2;66845:39;;66854:16;66862:7;66854;:16::i;:::-;66845:39;;;;;;;;;;;;66734:158;;:::o;41719:123::-;41788:7;41815:19;41823:3;:10;;41815:7;:19::i;:::-;41808:26;;41719:123;;;:::o;62106:332::-;62190:4;62215:16;62223:7;62215;:16::i;:::-;62207:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62291:13;62307:16;62315:7;62307;:16::i;:::-;62291:32;;62353:5;62342:16;;:7;:16;;;:51;;;;62386:7;62362:31;;:20;62374:7;62362:11;:20::i;:::-;:31;;;62342:51;:87;;;;62397:32;62414:5;62421:7;62397:16;:32::i;:::-;62342:87;62334:96;;;62106:332;;;;:::o;64961:605::-;65070:4;65050:24;;:16;65058:7;65050;:16::i;:::-;:24;;;65042:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65153:1;65139:16;;:2;:16;;;;65131:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65232:4;65215:21;;:13;;;;;;;;;;;:21;;;65207:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65353:29;65370:1;65374:7;65353:8;:29::i;:::-;65395:35;65422:7;65395:13;:19;65409:4;65395:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;65441:30;65463:7;65441:13;:17;65455:2;65441:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;65484:29;65501:7;65510:2;65484:12;:16;;:29;;;;;:::i;:::-;;65550:7;65546:2;65531:27;;65540:4;65531:27;;;;;;;;;;;;64961:605;;;:::o;34344:137::-;34415:7;34450:22;34454:3;:10;;34466:5;34450:3;:22::i;:::-;34442:31;;34435:38;;34344:137;;;;:::o;64252:310::-;64312:13;64328:16;64336:7;64328;:16::i;:::-;64312:32;;64385:29;64402:1;64406:7;64385:8;:29::i;:::-;64425:36;64453:7;64425:13;:20;64439:5;64425:20;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;;64472:28;64492:7;64472:12;:19;;:28;;;;:::i;:::-;;64546:7;64542:1;64518:36;;64527:5;64518:36;;;;;;;;;;;;64252:310;;:::o;42181:227::-;42261:7;42270;42291:11;42304:13;42321:22;42325:3;:10;;42337:5;42321:3;:22::i;:::-;42290:53;;;;42370:3;42362:12;;42392:5;42384:14;;42354:46;;;;;;42181:227;;;;;:::o;42843:204::-;42950:7;42993:44;42998:3;:10;;43018:3;43010:12;;43024;42993:4;:44::i;:::-;42985:53;;42970:69;;42843:204;;;;;:::o;33886:114::-;33946:7;33973:19;33981:3;:10;;33973:7;:19::i;:::-;33966:26;;33886:114;;;:::o;63686:337::-;63771:1;63757:16;;:2;:16;;;;63749:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63830:16;63838:7;63830;:16::i;:::-;63829:17;63821:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63892:30;63914:7;63892:13;:17;63906:2;63892:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;63935:29;63952:7;63961:2;63935:12;:16;;:29;;;;;:::i;:::-;;64007:7;64003:2;63982:33;;63999:1;63982:33;;;;;;;;;;;;63686:337;;:::o;66900:80::-;66958:14;66970:1;66958:7;;:11;;:14;;;;:::i;:::-;66948:7;:24;;;;66900:80::o;61245:263::-;61350:28;61360:4;61366:2;61370:7;61350:9;:28::i;:::-;61397:48;61420:4;61426:2;61430:7;61439:5;61397:22;:48::i;:::-;61389:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61245:263;;;;:::o;43268:744::-;43324:13;43554:1;43545:5;:10;43541:53;;;43572:10;;;;;;;;;;;;;;;;;;;;;43541:53;43604:12;43619:5;43604:20;;43635:14;43660:78;43675:1;43667:4;:9;43660:78;;43693:8;;;;;;;43724:2;43716:10;;;;;;;;;43660:78;;;43748:19;43780:6;43770:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43748:39;;43798:13;43823:1;43814:6;:10;43798:26;;43842:5;43835:12;;43858:115;43873:1;43865:4;:9;43858:115;;43932:2;43925:4;:9;;;;;;43920:2;:14;43909:27;;43891:6;43898:7;;;;;;;43891:15;;;;;;;;;;;:45;;;;;;;;;;;43959:2;43951:10;;;;;;;;;43858:115;;;43997:6;43983:21;;;;;;43268:744;;;;:::o;41480:151::-;41564:4;41588:35;41598:3;:10;;41618:3;41610:12;;41588:9;:35::i;:::-;41581:42;;41480:151;;;;:::o;39102:110::-;39158:7;39185:3;:12;;:19;;;;39178:26;;39102:110;;;:::o;33431:137::-;33501:4;33525:35;33533:3;:10;;33553:5;33545:14;;33525:7;:35::i;:::-;33518:42;;33431:137;;;;:::o;33124:131::-;33191:4;33215:32;33220:3;:10;;33240:5;33232:14;;33215:4;:32::i;:::-;33208:39;;33124:131;;;;:::o;40912:176::-;41001:4;41025:55;41030:3;:10;;41050:3;41042:12;;41072:5;41064:14;;41056:23;;41025:4;:55::i;:::-;41018:62;;40912:176;;;;;:::o;31008:204::-;31075:7;31124:5;31103:3;:11;;:18;;;;:26;31095:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31186:3;:11;;31198:5;31186:18;;;;;;;;;;;;;;;;31179:25;;31008:204;;;;:::o;41254:142::-;41331:4;41355:33;41363:3;:10;;41383:3;41375:12;;41355:7;:33::i;:::-;41348:40;;41254:142;;;;:::o;39567:279::-;39634:7;39643;39693:5;39671:3;:12;;:19;;;;:27;39663:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39750:22;39775:3;:12;;39788:5;39775:19;;;;;;;;;;;;;;;;;;39750:44;;39813:5;:10;;;39825:5;:12;;;39805:33;;;;;39567:279;;;;;:::o;40269:319::-;40363:7;40383:16;40402:3;:12;;:17;40415:3;40402:17;;;;;;;;;;;;40383:36;;40450:1;40438:8;:13;;40453:12;40430:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40520:3;:12;;40544:1;40533:8;:12;40520:26;;;;;;;;;;;;;;;;;;:33;;;40513:40;;;40269:319;;;;;:::o;30555:109::-;30611:7;30638:3;:11;;:18;;;;30631:25;;30555:109;;;:::o;13986:181::-;14044:7;14064:9;14080:1;14076;:5;14064:17;;14105:1;14100;:6;;14092:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14158:1;14151:8;;;13986:181;;;;:::o;66131:595::-;66243:4;66270:15;:2;:13;;;:15::i;:::-;66265:60;;66309:4;66302:11;;;;66265:60;66335:23;66361:252;66414:45;;;66474:12;:10;:12::i;:::-;66501:4;66520:7;66542:5;66377:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66361:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;66335:278;;66624:13;66651:10;66640:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66624:48;;49589:10;66701:16;;66691:26;;;:6;:26;;;;66683:35;;;;66131:595;;;;;;;:::o;38882:125::-;38953:4;38998:1;38977:3;:12;;:17;38990:3;38977:17;;;;;;;;;;;;:22;;38970:29;;38882:125;;;;:::o;28710:1544::-;28776:4;28894:18;28915:3;:12;;:19;28928:5;28915:19;;;;;;;;;;;;28894:40;;28965:1;28951:10;:15;28947:1300;;29313:21;29350:1;29337:10;:14;29313:38;;29366:17;29407:1;29386:3;:11;;:18;;;;:22;29366:42;;29653:17;29673:3;:11;;29685:9;29673:22;;;;;;;;;;;;;;;;29653:42;;29819:9;29790:3;:11;;29802:13;29790:26;;;;;;;;;;;;;;;:38;;;;29938:1;29922:13;:17;29896:3;:12;;:23;29909:9;29896:23;;;;;;;;;;;:43;;;;30048:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30143:3;:12;;:19;30156:5;30143:19;;;;;;;;;;;30136:26;;;30186:4;30179:11;;;;;;;;28947:1300;30230:5;30223:12;;;28710:1544;;;;;:::o;28120:414::-;28183:4;28205:21;28215:3;28220:5;28205:9;:21::i;:::-;28200:327;;28243:3;:11;;28260:5;28243:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28426:3;:11;;:18;;;;28404:3;:12;;:19;28417:5;28404:19;;;;;;;;;;;:40;;;;28466:4;28459:11;;;;28200:327;28510:5;28503:12;;28120:414;;;;;:::o;36382:692::-;36458:4;36574:16;36593:3;:12;;:17;36606:3;36593:17;;;;;;;;;;;;36574:36;;36639:1;36627:8;:13;36623:444;;;36694:3;:12;;36712:38;;;;;;;;36729:3;36712:38;;;;36742:5;36712:38;;;36694:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36909:3;:12;;:19;;;;36889:3;:12;;:17;36902:3;36889:17;;;;;;;;;;;:39;;;;36950:4;36943:11;;;;;36623:444;37023:5;36987:3;:12;;37011:1;37000:8;:12;36987:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;37050:5;37043:12;;;36382:692;;;;;;:::o;37249:1549::-;37313:4;37429:16;37448:3;:12;;:17;37461:3;37448:17;;;;;;;;;;;;37429:36;;37494:1;37482:8;:13;37478:1313;;37843:21;37878:1;37867:8;:12;37843:36;;37894:17;37936:1;37914:3;:12;;:19;;;;:23;37894:43;;38182:26;38211:3;:12;;38224:9;38211:23;;;;;;;;;;;;;;;;;;38182:52;;38359:9;38329:3;:12;;38342:13;38329:27;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;38483:1;38467:13;:17;38436:3;:12;;:28;38449:9;:14;;;38436:28;;;;;;;;;;;:48;;;;38593:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38689:3;:12;;:17;38702:3;38689:17;;;;;;;;;;;38682:24;;;38730:4;38723:11;;;;;;;;37478:1313;38774:5;38767:12;;;37249:1549;;;;;:::o;19190:422::-;19250:4;19458:12;19569:7;19557:20;19549:28;;19603:1;19596:4;:8;19589:15;;;19190:422;;;:::o;22108:195::-;22211:12;22243:52;22265:6;22273:4;22279:1;22282:12;22243:21;:52::i;:::-;22236:59;;22108:195;;;;;:::o;30340:129::-;30413:4;30460:1;30437:3;:12;;:19;30450:5;30437:19;;;;;;;;;;;;:24;;30430:31;;30340:129;;;;:::o;23160:530::-;23287:12;23345:5;23320:21;:30;;23312:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23412:18;23423:6;23412:10;:18::i;:::-;23404:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23538:12;23552:23;23579:6;:11;;23599:5;23607:4;23579:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23537:75;;;;23630:52;23648:7;23657:10;23669:12;23630:17;:52::i;:::-;23623:59;;;;23160:530;;;;;;:::o;25700:742::-;25815:12;25844:7;25840:595;;;25875:10;25868:17;;;;25840:595;26009:1;25989:10;:17;:21;25985:439;;;26252:10;26246:17;26313:15;26300:10;26296:2;26292:19;26285:44;26200:148;26395:12;26388:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25700:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://c06ed16b7c939ae8688098c4b685adac58a5cce18fbfa47307f191f422a9a2f2
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.