More Info
Private Name Tags
Latest 25 from a total of 628 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 14425786 | 957 days ago | IN | 0 ETH | 0.0022618 | ||||
Withdraw | 14360281 | 967 days ago | IN | 0 ETH | 0.00225819 | ||||
Withdraw | 14317978 | 974 days ago | IN | 0 ETH | 0.00249878 | ||||
Withdraw | 14039563 | 1017 days ago | IN | 0 ETH | 0.00881196 | ||||
Withdraw | 14014515 | 1021 days ago | IN | 0 ETH | 0.00753874 | ||||
Deposit | 13936223 | 1033 days ago | IN | 0 ETH | 0.03108949 | ||||
Deposit | 13936102 | 1033 days ago | IN | 0 ETH | 0.01617174 | ||||
Deposit | 13936082 | 1033 days ago | IN | 0 ETH | 0.02247924 | ||||
Withdraw | 13807410 | 1053 days ago | IN | 0 ETH | 0.00484887 | ||||
Withdraw | 13762938 | 1060 days ago | IN | 0 ETH | 0.00373694 | ||||
Withdraw | 13726944 | 1066 days ago | IN | 0 ETH | 0.0048627 | ||||
Withdraw | 13635861 | 1080 days ago | IN | 0 ETH | 0.00743152 | ||||
Withdraw | 13628229 | 1081 days ago | IN | 0 ETH | 0.00707924 | ||||
Deposit | 13601035 | 1086 days ago | IN | 0 ETH | 0.01885925 | ||||
Deposit | 13565518 | 1091 days ago | IN | 0 ETH | 0.01614026 | ||||
Withdraw | 13532096 | 1097 days ago | IN | 0 ETH | 0.00925851 | ||||
Deposit | 13517171 | 1099 days ago | IN | 0 ETH | 0.02229298 | ||||
Deposit | 13517161 | 1099 days ago | IN | 0 ETH | 0.02495289 | ||||
Withdraw | 13496633 | 1102 days ago | IN | 0 ETH | 0.00636849 | ||||
Withdraw | 13415302 | 1115 days ago | IN | 0 ETH | 0.00431321 | ||||
Withdraw | 13395449 | 1118 days ago | IN | 0 ETH | 0.00455802 | ||||
Withdraw | 13264092 | 1138 days ago | IN | 0 ETH | 0.00551138 | ||||
Withdraw | 13261850 | 1139 days ago | IN | 0 ETH | 0.00178795 | ||||
Withdraw | 13256249 | 1140 days ago | IN | 0 ETH | 0.00279617 | ||||
Withdraw | 13243773 | 1142 days ago | IN | 0 ETH | 0.00305862 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
LowOrbitPropulsor
Compiler Version
v0.8.3+commit.8d00100c
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-05-12 */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.0; // // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @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 a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * 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). * * 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping (address => bool) members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override { require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override { require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // /** * @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); } // /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overloaded; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } } // /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // contract LowOrbitPropulsor is AccessControl { using SafeMath for uint; using SafeMath for uint256; struct StakerData { address addr; uint256 balance; } bool public isPaused; uint256 private _stakersCount; StakerData[] private _stakersData; mapping (address => uint256) private _stakersIds; mapping (address => uint256) private _earningsHistory; uint256 private _activeLock; uint256 private _activeStaker; address private _lowOrbitERC20Addr; uint256 private _blockLastPropulsion; uint256 private _fuelToWin; uint256 private _blocksBetweenPropulsion; uint256 private _minStakingToBePropelled; event StakerPropelled(address astronaut, uint256 fuelEarned); constructor(address lowOrbitERC20Addr) { _lowOrbitERC20Addr = lowOrbitERC20Addr; _stakersCount = 0; _fuelToWin = 0; _blockLastPropulsion = block.number; _activeLock = 0; _activeStaker = 0; _blocksBetweenPropulsion = (uint256) (30 * 60) / 13; _minStakingToBePropelled = 0.075 * (10 ** 18); isPaused = false; _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } function deposit(uint256 amount) external notPaused returns (bool) { require(amount >= _minStakingToBePropelled, "Insufficient amount"); ERC20Burnable lowOrbitERC20 = ERC20Burnable(_lowOrbitERC20Addr); require(lowOrbitERC20.balanceOf(msg.sender) >= amount, "Insufficient balance"); require(lowOrbitERC20.transferFrom(msg.sender, address(this), amount), "Transfer failed"); uint256 fees = amount.div(100).mul(10); uint256 amountSubFees = amount.sub(fees); uint256 stakerId; if(_stakersIds[msg.sender] == 0) { _stakersCount = _stakersCount.add(1); stakerId = _stakersCount; _stakersIds[msg.sender] = stakerId; _stakersData.push(StakerData({ addr: msg.sender, balance: 0 })); } else { stakerId = _stakersIds[msg.sender]; } uint256 stakerIndex = stakerId - 1; StakerData storage stakerData = _stakersData[stakerIndex]; if (stakerData.balance == 0) { _activeStaker = _activeStaker.add(1); } stakerData.balance = stakerData.balance.add(amountSubFees); _activeLock = _activeLock.add(amountSubFees); return true; } function withdraw() external notPaused returns (bool) { uint256 stakerId = _stakersIds[msg.sender]; require(stakerId > 0, "Unauthorized"); uint256 stakerIndex = stakerId - 1; StakerData storage stakerData = _stakersData[stakerIndex]; require(stakerData.balance >= 0, "Insufficient balance"); uint256 amountToWithdraw = stakerData.balance; stakerData.balance = 0; ERC20Burnable lowOrbitERC20 = ERC20Burnable(_lowOrbitERC20Addr); require(lowOrbitERC20.transfer(msg.sender, amountToWithdraw), "Transfer failed"); _activeStaker = _activeStaker.sub(1); _activeLock = _activeLock.sub(amountToWithdraw); return true; } function pulse(uint256 fees) external returns (bool) { require(msg.sender == _lowOrbitERC20Addr); uint256 feesToBurn = fees.div(2); uint256 feesToWin = fees.div(2); ERC20Burnable lowOrbitERC20 = ERC20Burnable(_lowOrbitERC20Addr); lowOrbitERC20.burn(feesToBurn); _fuelToWin = _fuelToWin.add(feesToWin); if (!isPaused && _fuelToWin > 0 && _stakersCount > 0 && block.number.sub(_blockLastPropulsion) >= _blocksBetweenPropulsion) { uint256 nextAstronautId = rnd(_stakersCount) + 1; uint256 nextAstronautIndex = nextAstronautId - 1; StakerData storage stakerData = _stakersData[nextAstronautIndex]; if (stakerData.addr != address(0) && stakerData.balance >= _minStakingToBePropelled) { uint256 propulsionFuel = _fuelToWin; _fuelToWin = 0; _blockLastPropulsion = block.number; _earningsHistory[stakerData.addr] = _earningsHistory[stakerData.addr].add(propulsionFuel); lowOrbitERC20.transfer(stakerData.addr, propulsionFuel); emit StakerPropelled(stakerData.addr, propulsionFuel); } } return true; } function getBlockLastPropulsion() public view returns (uint256) { return _blockLastPropulsion; } function getFuelToWin() public view returns (uint256) { return _fuelToWin; } function getStakedAmountByAddr(address stakerAddr) public view returns (uint256) { uint256 stakerId = _stakersIds[stakerAddr]; if (stakerId <= 0) { return 0; } uint256 stakerIndex = stakerId - 1; return _stakersData[stakerIndex].balance; } function getEarnedAmountByAddr(address stakerAddr) public view returns (uint256) { return _earningsHistory[stakerAddr]; } function getBlocksBetweenPropulsion() public view returns (uint256) { return _blocksBetweenPropulsion; } function getMinStakingToBePropelled() public view returns (uint256) { return _minStakingToBePropelled; } function rnd(uint256 max) private view returns(uint256) { uint256 seed = uint256(keccak256(abi.encodePacked( block.timestamp + block.difficulty + ((uint256(keccak256(abi.encodePacked(block.coinbase)))) / (block.timestamp)) + block.gaslimit + ((uint256(keccak256(abi.encodePacked(msg.sender)))) / (block.timestamp)) + block.number ))); return (seed - ((seed / max) * max)); } function setBlocksBetweenPropulsion(uint256 blocksBetweenPropulsion) external onlyAdmin { _blocksBetweenPropulsion = blocksBetweenPropulsion; } function setMinStakingToBePropelled(uint256 minStakingToBePropelled) external onlyAdmin { _minStakingToBePropelled = minStakingToBePropelled; } function pause() external onlyAdmin { isPaused = true; } function unpause() external onlyAdmin { isPaused = false; } modifier onlyAdmin { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Unauthorized"); _; } modifier notPaused { require(!isPaused, "Contract is paused"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"lowOrbitERC20Addr","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"astronaut","type":"address"},{"indexed":false,"internalType":"uint256","name":"fuelEarned","type":"uint256"}],"name":"StakerPropelled","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBlockLastPropulsion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBlocksBetweenPropulsion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"stakerAddr","type":"address"}],"name":"getEarnedAmountByAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFuelToWin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinStakingToBePropelled","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"stakerAddr","type":"address"}],"name":"getStakedAmountByAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fees","type":"uint256"}],"name":"pulse","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blocksBetweenPropulsion","type":"uint256"}],"name":"setBlocksBetweenPropulsion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minStakingToBePropelled","type":"uint256"}],"name":"setMinStakingToBePropelled","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200269f3803806200269f83398181016040528101906200003791906200028c565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006002819055506000600a819055504360098190555060006006819055506000600781905550600d610708620000b09190620002b8565b600b8190555067010a741a46278000600c819055506000600160006101000a81548160ff021916908315150217905550620000f56000801b33620000fc60201b60201c565b5062000377565b6200010e82826200011260201b60201c565b5050565b6200012482826200020360201b60201c565b620001ff57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001a46200026d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60008151905062000286816200035d565b92915050565b6000602082840312156200029f57600080fd5b6000620002af8482850162000275565b91505092915050565b6000620002c58262000324565b9150620002d28362000324565b925082620002e557620002e46200032e565b5b828204905092915050565b6000620002fd8262000304565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6200036881620002f0565b81146200037457600080fd5b50565b61231880620003876000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80636ad9be1c116100b8578063b187bd261161007c578063b187bd261461032a578063b28f487b14610348578063b318443814610378578063b6b55f2514610394578063d547741f146103c4578063e9c14ebc146103e057610137565b80636ad9be1c146102865780638456cb59146102a257806391d14854146102ac57806394deef77146102dc578063a217fddf1461030c57610137565b806336e4657e116100ff57806336e4657e146101f25780633ccfd60b146102225780633f052cd6146102405780633f4ba83a1461025e57806358f0fea91461026857610137565b806301f7eb251461013c57806301ffc9a71461015a578063248a9ca31461018a5780632f2ff15d146101ba57806336568abe146101d6575b600080fd5b6101446103fe565b6040516101519190611e39565b60405180910390f35b610174600480360381019061016f9190611a23565b610408565b6040516101819190611d03565b60405180910390f35b6101a4600480360381019061019f91906119be565b610482565b6040516101b19190611d1e565b60405180910390f35b6101d460048036038101906101cf91906119e7565b6104a1565b005b6101f060048036038101906101eb91906119e7565b610507565b005b61020c6004803603810190610207919061196c565b61058a565b6040516102199190611e39565b60405180910390f35b61022a610648565b6040516102379190611d03565b60405180910390f35b61024861090f565b6040516102559190611e39565b60405180910390f35b610266610919565b005b610270610982565b60405161027d9190611e39565b60405180910390f35b6102a0600480360381019061029b9190611a4c565b61098c565b005b6102aa6109e2565b005b6102c660048036038101906102c191906119e7565b610a4a565b6040516102d39190611d03565b60405180910390f35b6102f660048036038101906102f1919061196c565b610ab4565b6040516103039190611e39565b60405180910390f35b610314610afd565b6040516103219190611d1e565b60405180910390f35b610332610b04565b60405161033f9190611d03565b60405180910390f35b610362600480360381019061035d9190611a4c565b610b17565b60405161036f9190611d03565b60405180910390f35b610392600480360381019061038d9190611a4c565b610f9c565b005b6103ae60048036038101906103a99190611a4c565b610ff2565b6040516103bb9190611d03565b60405180910390f35b6103de60048036038101906103d991906119e7565b6114fb565b005b6103e8611561565b6040516103f59190611e39565b60405180910390f35b6000600c54905090565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061047b575061047a8261156b565b5b9050919050565b6000806000838152602001908152602001600020600101549050919050565b6104ba6104ad83610482565b6104b56115d5565b610a4a565b6104f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f090611d39565b60405180910390fd5b61050382826115dd565b5050565b61050f6115d5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461057c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057390611e19565b60405180910390fd5b61058682826116bd565b5050565b600080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081116105e1576000915050610643565b60006001826105f09190611f46565b90506003818154811061062c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020160010154925050505b919050565b6000600160009054906101000a900460ff161561069a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069190611df9565b60405180910390fd5b6000600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111610721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071890611d59565b60405180910390fd5b60006001826107309190611f46565b905060006003828154811061076e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020190506000816001015410156107c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bd90611d99565b60405180910390fd5b600081600101549050600082600101819055506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b815260040161083b929190611cda565b602060405180830381600087803b15801561085557600080fd5b505af1158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d9190611995565b6108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611d79565b60405180910390fd5b6108e2600160075461179e90919063ffffffff16565b6007819055506108fd8260065461179e90919063ffffffff16565b60068190555060019550505050505090565b6000600954905090565b6109266000801b33610a4a565b610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c90611d59565b60405180910390fd5b6000600160006101000a81548160ff021916908315150217905550565b6000600b54905090565b6109996000801b33610a4a565b6109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90611d59565b60405180910390fd5b80600c8190555050565b6109ef6000801b33610a4a565b610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590611d59565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000801b81565b600160009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b7357600080fd5b6000610b896002846117b490919063ffffffff16565b90506000610ba16002856117b490919063ffffffff16565b90506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166342966c68846040518263ffffffff1660e01b8152600401610c039190611e39565b600060405180830381600087803b158015610c1d57600080fd5b505af1158015610c31573d6000803e3d6000fd5b50505050610c4a82600a546117ca90919063ffffffff16565b600a81905550600160009054906101000a900460ff16158015610c6f57506000600a54115b8015610c7d57506000600254115b8015610c9f5750600b54610c9c6009544361179e90919063ffffffff16565b10155b15610f905760006001610cb36002546117e0565b610cbd9190611e65565b90506000600182610cce9190611f46565b9050600060038281548110610d0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202019050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610d835750600c54816001015410155b15610f8c576000600a5490506000600a8190555043600981905550610e1481600560008560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ca90919063ffffffff16565b600560008460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610eda929190611cda565b602060405180830381600087803b158015610ef457600080fd5b505af1158015610f08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2c9190611995565b507f0248d0dcf024fa2b50a516e1413e4df7c09837b69a6084b889552117ddeb63248260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051610f82929190611cda565b60405180910390a1505b5050505b60019350505050919050565b610fa96000801b33610a4a565b610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90611d59565b60405180910390fd5b80600b8190555050565b6000600160009054906101000a900460ff1615611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90611df9565b60405180910390fd5b600c54821015611089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108090611dd9565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050828173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110ea9190611c88565b60206040518083038186803b15801561110257600080fd5b505afa158015611116573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113a9190611a75565b101561117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290611d99565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b81526004016111b893929190611ca3565b602060405180830381600087803b1580156111d257600080fd5b505af11580156111e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120a9190611995565b611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090611d79565b60405180910390fd5b6000611272600a6112646064876117b490919063ffffffff16565b6118d890919063ffffffff16565b90506000611289828661179e90919063ffffffff16565b9050600080600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156113e8576112ea60016002546117ca90919063ffffffff16565b600281905550600254905080600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600360405180604001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020016000815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155505061142b565b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b600060018261143a9190611f46565b9050600060038281548110611478577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020190506000816001015414156114b2576114ab60016007546117ca90919063ffffffff16565b6007819055505b6114c98482600101546117ca90919063ffffffff16565b81600101819055506114e6846006546117ca90919063ffffffff16565b60068190555060019650505050505050919050565b61151461150783610482565b61150f6115d5565b610a4a565b611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90611db9565b60405180910390fd5b61155d82826116bd565b5050565b6000600a54905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6115e78282610a4a565b6116b957600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061165e6115d5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6116c78282610a4a565b1561179a57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061173f6115d5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600081836117ac9190611f46565b905092915050565b600081836117c29190611ebb565b905092915050565b600081836117d89190611e65565b905092915050565b6000804342336040516020016117f69190611c37565b6040516020818303038152906040528051906020012060001c6118199190611ebb565b45424160405160200161182c9190611c52565b6040516020818303038152906040528051906020012060001c61184f9190611ebb565b444261185b9190611e65565b6118659190611e65565b61186f9190611e65565b6118799190611e65565b6118839190611e65565b6040516020016118939190611c6d565b6040516020818303038152906040528051906020012060001c90508283826118bb9190611ebb565b6118c59190611eec565b816118d09190611f46565b915050919050565b600081836118e69190611eec565b905092915050565b6000813590506118fd8161226f565b92915050565b60008151905061191281612286565b92915050565b6000813590506119278161229d565b92915050565b60008135905061193c816122b4565b92915050565b600081359050611951816122cb565b92915050565b600081519050611966816122cb565b92915050565b60006020828403121561197e57600080fd5b600061198c848285016118ee565b91505092915050565b6000602082840312156119a757600080fd5b60006119b584828501611903565b91505092915050565b6000602082840312156119d057600080fd5b60006119de84828501611918565b91505092915050565b600080604083850312156119fa57600080fd5b6000611a0885828601611918565b9250506020611a19858286016118ee565b9150509250929050565b600060208284031215611a3557600080fd5b6000611a438482850161192d565b91505092915050565b600060208284031215611a5e57600080fd5b6000611a6c84828501611942565b91505092915050565b600060208284031215611a8757600080fd5b6000611a9584828501611957565b91505092915050565b611aaf611aaa82611f8c565b61201c565b82525050565b611abe81611f7a565b82525050565b611ad5611ad082611f7a565b61200a565b82525050565b611ae481611f9e565b82525050565b611af381611faa565b82525050565b6000611b06602f83611e54565b9150611b11826120b5565b604082019050919050565b6000611b29600c83611e54565b9150611b3482612104565b602082019050919050565b6000611b4c600f83611e54565b9150611b578261212d565b602082019050919050565b6000611b6f601483611e54565b9150611b7a82612156565b602082019050919050565b6000611b92603083611e54565b9150611b9d8261217f565b604082019050919050565b6000611bb5601383611e54565b9150611bc0826121ce565b602082019050919050565b6000611bd8601283611e54565b9150611be3826121f7565b602082019050919050565b6000611bfb602f83611e54565b9150611c0682612220565b604082019050919050565b611c1a81612000565b82525050565b611c31611c2c82612000565b612040565b82525050565b6000611c438284611ac4565b60148201915081905092915050565b6000611c5e8284611a9e565b60148201915081905092915050565b6000611c798284611c20565b60208201915081905092915050565b6000602082019050611c9d6000830184611ab5565b92915050565b6000606082019050611cb86000830186611ab5565b611cc56020830185611ab5565b611cd26040830184611c11565b949350505050565b6000604082019050611cef6000830185611ab5565b611cfc6020830184611c11565b9392505050565b6000602082019050611d186000830184611adb565b92915050565b6000602082019050611d336000830184611aea565b92915050565b60006020820190508181036000830152611d5281611af9565b9050919050565b60006020820190508181036000830152611d7281611b1c565b9050919050565b60006020820190508181036000830152611d9281611b3f565b9050919050565b60006020820190508181036000830152611db281611b62565b9050919050565b60006020820190508181036000830152611dd281611b85565b9050919050565b60006020820190508181036000830152611df281611ba8565b9050919050565b60006020820190508181036000830152611e1281611bcb565b9050919050565b60006020820190508181036000830152611e3281611bee565b9050919050565b6000602082019050611e4e6000830184611c11565b92915050565b600082825260208201905092915050565b6000611e7082612000565b9150611e7b83612000565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611eb057611eaf61204a565b5b828201905092915050565b6000611ec682612000565b9150611ed183612000565b925082611ee157611ee0612079565b5b828204905092915050565b6000611ef782612000565b9150611f0283612000565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f3b57611f3a61204a565b5b828202905092915050565b6000611f5182612000565b9150611f5c83612000565b925082821015611f6f57611f6e61204a565b5b828203905092915050565b6000611f8582611fe0565b9050919050565b6000611f9782611fe0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006120158261202e565b9050919050565b60006120278261202e565b9050919050565b6000612039826120a8565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160601b9050919050565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f496e73756666696369656e7420616d6f756e7400000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61227881611f7a565b811461228357600080fd5b50565b61228f81611f9e565b811461229a57600080fd5b50565b6122a681611faa565b81146122b157600080fd5b50565b6122bd81611fb4565b81146122c857600080fd5b50565b6122d481612000565b81146122df57600080fd5b5056fea2646970667358221220de7952331ad6e067920a28ccf2da5ebe8d55e9d361b23e6b4496ac81b02fef6464736f6c63430008030033000000000000000000000000556938621c19e5eae58c94a806da9d237b969bd8
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80636ad9be1c116100b8578063b187bd261161007c578063b187bd261461032a578063b28f487b14610348578063b318443814610378578063b6b55f2514610394578063d547741f146103c4578063e9c14ebc146103e057610137565b80636ad9be1c146102865780638456cb59146102a257806391d14854146102ac57806394deef77146102dc578063a217fddf1461030c57610137565b806336e4657e116100ff57806336e4657e146101f25780633ccfd60b146102225780633f052cd6146102405780633f4ba83a1461025e57806358f0fea91461026857610137565b806301f7eb251461013c57806301ffc9a71461015a578063248a9ca31461018a5780632f2ff15d146101ba57806336568abe146101d6575b600080fd5b6101446103fe565b6040516101519190611e39565b60405180910390f35b610174600480360381019061016f9190611a23565b610408565b6040516101819190611d03565b60405180910390f35b6101a4600480360381019061019f91906119be565b610482565b6040516101b19190611d1e565b60405180910390f35b6101d460048036038101906101cf91906119e7565b6104a1565b005b6101f060048036038101906101eb91906119e7565b610507565b005b61020c6004803603810190610207919061196c565b61058a565b6040516102199190611e39565b60405180910390f35b61022a610648565b6040516102379190611d03565b60405180910390f35b61024861090f565b6040516102559190611e39565b60405180910390f35b610266610919565b005b610270610982565b60405161027d9190611e39565b60405180910390f35b6102a0600480360381019061029b9190611a4c565b61098c565b005b6102aa6109e2565b005b6102c660048036038101906102c191906119e7565b610a4a565b6040516102d39190611d03565b60405180910390f35b6102f660048036038101906102f1919061196c565b610ab4565b6040516103039190611e39565b60405180910390f35b610314610afd565b6040516103219190611d1e565b60405180910390f35b610332610b04565b60405161033f9190611d03565b60405180910390f35b610362600480360381019061035d9190611a4c565b610b17565b60405161036f9190611d03565b60405180910390f35b610392600480360381019061038d9190611a4c565b610f9c565b005b6103ae60048036038101906103a99190611a4c565b610ff2565b6040516103bb9190611d03565b60405180910390f35b6103de60048036038101906103d991906119e7565b6114fb565b005b6103e8611561565b6040516103f59190611e39565b60405180910390f35b6000600c54905090565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061047b575061047a8261156b565b5b9050919050565b6000806000838152602001908152602001600020600101549050919050565b6104ba6104ad83610482565b6104b56115d5565b610a4a565b6104f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f090611d39565b60405180910390fd5b61050382826115dd565b5050565b61050f6115d5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461057c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057390611e19565b60405180910390fd5b61058682826116bd565b5050565b600080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081116105e1576000915050610643565b60006001826105f09190611f46565b90506003818154811061062c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020160010154925050505b919050565b6000600160009054906101000a900460ff161561069a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069190611df9565b60405180910390fd5b6000600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111610721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071890611d59565b60405180910390fd5b60006001826107309190611f46565b905060006003828154811061076e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020190506000816001015410156107c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bd90611d99565b60405180910390fd5b600081600101549050600082600101819055506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b815260040161083b929190611cda565b602060405180830381600087803b15801561085557600080fd5b505af1158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d9190611995565b6108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611d79565b60405180910390fd5b6108e2600160075461179e90919063ffffffff16565b6007819055506108fd8260065461179e90919063ffffffff16565b60068190555060019550505050505090565b6000600954905090565b6109266000801b33610a4a565b610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c90611d59565b60405180910390fd5b6000600160006101000a81548160ff021916908315150217905550565b6000600b54905090565b6109996000801b33610a4a565b6109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90611d59565b60405180910390fd5b80600c8190555050565b6109ef6000801b33610a4a565b610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590611d59565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000801b81565b600160009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b7357600080fd5b6000610b896002846117b490919063ffffffff16565b90506000610ba16002856117b490919063ffffffff16565b90506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166342966c68846040518263ffffffff1660e01b8152600401610c039190611e39565b600060405180830381600087803b158015610c1d57600080fd5b505af1158015610c31573d6000803e3d6000fd5b50505050610c4a82600a546117ca90919063ffffffff16565b600a81905550600160009054906101000a900460ff16158015610c6f57506000600a54115b8015610c7d57506000600254115b8015610c9f5750600b54610c9c6009544361179e90919063ffffffff16565b10155b15610f905760006001610cb36002546117e0565b610cbd9190611e65565b90506000600182610cce9190611f46565b9050600060038281548110610d0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202019050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610d835750600c54816001015410155b15610f8c576000600a5490506000600a8190555043600981905550610e1481600560008560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ca90919063ffffffff16565b600560008460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610eda929190611cda565b602060405180830381600087803b158015610ef457600080fd5b505af1158015610f08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2c9190611995565b507f0248d0dcf024fa2b50a516e1413e4df7c09837b69a6084b889552117ddeb63248260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051610f82929190611cda565b60405180910390a1505b5050505b60019350505050919050565b610fa96000801b33610a4a565b610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90611d59565b60405180910390fd5b80600b8190555050565b6000600160009054906101000a900460ff1615611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90611df9565b60405180910390fd5b600c54821015611089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108090611dd9565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050828173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110ea9190611c88565b60206040518083038186803b15801561110257600080fd5b505afa158015611116573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113a9190611a75565b101561117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290611d99565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b81526004016111b893929190611ca3565b602060405180830381600087803b1580156111d257600080fd5b505af11580156111e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120a9190611995565b611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090611d79565b60405180910390fd5b6000611272600a6112646064876117b490919063ffffffff16565b6118d890919063ffffffff16565b90506000611289828661179e90919063ffffffff16565b9050600080600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156113e8576112ea60016002546117ca90919063ffffffff16565b600281905550600254905080600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600360405180604001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020016000815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155505061142b565b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b600060018261143a9190611f46565b9050600060038281548110611478577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020190506000816001015414156114b2576114ab60016007546117ca90919063ffffffff16565b6007819055505b6114c98482600101546117ca90919063ffffffff16565b81600101819055506114e6846006546117ca90919063ffffffff16565b60068190555060019650505050505050919050565b61151461150783610482565b61150f6115d5565b610a4a565b611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90611db9565b60405180910390fd5b61155d82826116bd565b5050565b6000600a54905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6115e78282610a4a565b6116b957600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061165e6115d5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6116c78282610a4a565b1561179a57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061173f6115d5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600081836117ac9190611f46565b905092915050565b600081836117c29190611ebb565b905092915050565b600081836117d89190611e65565b905092915050565b6000804342336040516020016117f69190611c37565b6040516020818303038152906040528051906020012060001c6118199190611ebb565b45424160405160200161182c9190611c52565b6040516020818303038152906040528051906020012060001c61184f9190611ebb565b444261185b9190611e65565b6118659190611e65565b61186f9190611e65565b6118799190611e65565b6118839190611e65565b6040516020016118939190611c6d565b6040516020818303038152906040528051906020012060001c90508283826118bb9190611ebb565b6118c59190611eec565b816118d09190611f46565b915050919050565b600081836118e69190611eec565b905092915050565b6000813590506118fd8161226f565b92915050565b60008151905061191281612286565b92915050565b6000813590506119278161229d565b92915050565b60008135905061193c816122b4565b92915050565b600081359050611951816122cb565b92915050565b600081519050611966816122cb565b92915050565b60006020828403121561197e57600080fd5b600061198c848285016118ee565b91505092915050565b6000602082840312156119a757600080fd5b60006119b584828501611903565b91505092915050565b6000602082840312156119d057600080fd5b60006119de84828501611918565b91505092915050565b600080604083850312156119fa57600080fd5b6000611a0885828601611918565b9250506020611a19858286016118ee565b9150509250929050565b600060208284031215611a3557600080fd5b6000611a438482850161192d565b91505092915050565b600060208284031215611a5e57600080fd5b6000611a6c84828501611942565b91505092915050565b600060208284031215611a8757600080fd5b6000611a9584828501611957565b91505092915050565b611aaf611aaa82611f8c565b61201c565b82525050565b611abe81611f7a565b82525050565b611ad5611ad082611f7a565b61200a565b82525050565b611ae481611f9e565b82525050565b611af381611faa565b82525050565b6000611b06602f83611e54565b9150611b11826120b5565b604082019050919050565b6000611b29600c83611e54565b9150611b3482612104565b602082019050919050565b6000611b4c600f83611e54565b9150611b578261212d565b602082019050919050565b6000611b6f601483611e54565b9150611b7a82612156565b602082019050919050565b6000611b92603083611e54565b9150611b9d8261217f565b604082019050919050565b6000611bb5601383611e54565b9150611bc0826121ce565b602082019050919050565b6000611bd8601283611e54565b9150611be3826121f7565b602082019050919050565b6000611bfb602f83611e54565b9150611c0682612220565b604082019050919050565b611c1a81612000565b82525050565b611c31611c2c82612000565b612040565b82525050565b6000611c438284611ac4565b60148201915081905092915050565b6000611c5e8284611a9e565b60148201915081905092915050565b6000611c798284611c20565b60208201915081905092915050565b6000602082019050611c9d6000830184611ab5565b92915050565b6000606082019050611cb86000830186611ab5565b611cc56020830185611ab5565b611cd26040830184611c11565b949350505050565b6000604082019050611cef6000830185611ab5565b611cfc6020830184611c11565b9392505050565b6000602082019050611d186000830184611adb565b92915050565b6000602082019050611d336000830184611aea565b92915050565b60006020820190508181036000830152611d5281611af9565b9050919050565b60006020820190508181036000830152611d7281611b1c565b9050919050565b60006020820190508181036000830152611d9281611b3f565b9050919050565b60006020820190508181036000830152611db281611b62565b9050919050565b60006020820190508181036000830152611dd281611b85565b9050919050565b60006020820190508181036000830152611df281611ba8565b9050919050565b60006020820190508181036000830152611e1281611bcb565b9050919050565b60006020820190508181036000830152611e3281611bee565b9050919050565b6000602082019050611e4e6000830184611c11565b92915050565b600082825260208201905092915050565b6000611e7082612000565b9150611e7b83612000565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611eb057611eaf61204a565b5b828201905092915050565b6000611ec682612000565b9150611ed183612000565b925082611ee157611ee0612079565b5b828204905092915050565b6000611ef782612000565b9150611f0283612000565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f3b57611f3a61204a565b5b828202905092915050565b6000611f5182612000565b9150611f5c83612000565b925082821015611f6f57611f6e61204a565b5b828203905092915050565b6000611f8582611fe0565b9050919050565b6000611f9782611fe0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006120158261202e565b9050919050565b60006120278261202e565b9050919050565b6000612039826120a8565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160601b9050919050565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f496e73756666696369656e7420616d6f756e7400000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61227881611f7a565b811461228357600080fd5b50565b61228f81611f9e565b811461229a57600080fd5b50565b6122a681611faa565b81146122b157600080fd5b50565b6122bd81611fb4565b81146122c857600080fd5b50565b6122d481612000565b81146122df57600080fd5b5056fea2646970667358221220de7952331ad6e067920a28ccf2da5ebe8d55e9d361b23e6b4496ac81b02fef6464736f6c63430008030033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000556938621c19e5eae58c94a806da9d237b969bd8
-----Decoded View---------------
Arg [0] : lowOrbitERC20Addr (address): 0x556938621C19e5eae58C94a806da9d237b969bd8
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000556938621c19e5eae58c94a806da9d237b969bd8
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.