ERC-20
Overview
Max Total Supply
857,879.625295188684353065 SKR
Holders
274 (0.00%)
Market
Price
$0.01 @ 0.000002 ETH (+0.91%)
Onchain Market Cap
$5,918.28
Circulating Supply Market Cap
$1,899,890.05
Other Info
Token Contract (WITH 18 Decimals)
Balance
861.49 SKRValue
$5.94 ( ~0.00160360069073526 Eth) [0.1004%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SKRBridged
Compiler Version
v0.8.2+commit.661d1103
Optimization Enabled:
Yes with 200 runs
Other Settings:
berlin EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./core/LERC20.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; contract SKRBridged is Context, LERC20, AccessControl { constructor( address admin_, address recoveryAdmin_, uint256 timelockPeriod_, address lossless_, address minter_ ) LERC20( "Saakuru", "SKR", admin_, recoveryAdmin_, timelockPeriod_, lossless_ ) { require(minter_ != address(0), "SKRBridged: initial owner is the zero address"); _grantRole(DEFAULT_ADMIN_ROLE, admin_); _grantRole(keccak256("MINTER_ROLE"), minter_); } modifier lssBurn(address account, uint256 amount) { if (isLosslessOn) { lossless.beforeBurn(account, amount); } _; } function burn(uint256 amount) public virtual lssBurn(_msgSender(), amount) { _burn(_msgSender(), amount); } function burnFrom(address account, uint256 amount) public virtual lssBurn(account, amount) { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } function mint(address to, uint256 amount) public onlyRole(keccak256("MINTER_ROLE")) { _mint(to, amount); } function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControl, LERC20) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @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: * * ```solidity * 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}: * * ```solidity * 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. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ 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 Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @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 virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @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 virtual 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. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _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. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _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 revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ 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. * * May emit a {RoleGranted} event. * * [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}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ 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 { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @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 {AccessControl-_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 Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @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) external; /** * @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) external; /** * @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) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; import "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "../interfaces/ILosslessERC20.sol"; import "../interfaces/ILosslessController.sol"; contract LERC20 is Context, ILERC20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; address public recoveryAdmin; address private recoveryAdminCandidate; bytes32 private recoveryAdminKeyHash; address override public admin; uint256 public timelockPeriod; uint256 public losslessTurnOffTimestamp; bool public isLosslessOn = true; ILssController public lossless; constructor(string memory name_, string memory symbol_, address admin_, address recoveryAdmin_, uint256 timelockPeriod_, address lossless_) { require(recoveryAdmin_ != address(0), "LERC20: Recovery admin cannot be zero address"); require(admin_ != address(0), "LERC20: Recovery admin cannot be zero address"); _name = name_; _symbol = symbol_; admin = admin_; recoveryAdmin = recoveryAdmin_; recoveryAdminCandidate = address(0); recoveryAdminKeyHash = ""; require(timelockPeriod_ > 2 hours, "LERC20: Timelock period must be greater than 0"); require(timelockPeriod_ < 2 days, "LERC20: Timelock period must be less than 2 days"); // Note: should not be changed after deployment, due to potential security risk in case of loss of owner private key timelockPeriod = timelockPeriod_; losslessTurnOffTimestamp = 0; require(lossless_ != address(0), "LERC20: Lossless cannot be zero address"); lossless = ILssController(lossless_); } // --- LOSSLESS modifiers --- modifier lssAprove(address spender, uint256 amount) { if (isLosslessOn) { lossless.beforeApprove(_msgSender(), spender, amount); } _; } modifier lssTransfer(address recipient, uint256 amount) { if (isLosslessOn) { lossless.beforeTransfer(_msgSender(), recipient, amount); } _; } modifier lssTransferFrom(address sender, address recipient, uint256 amount) { if (isLosslessOn) { lossless.beforeTransferFrom(_msgSender(),sender, recipient, amount); } _; } modifier lssIncreaseAllowance(address spender, uint256 addedValue) { if (isLosslessOn) { lossless.beforeIncreaseAllowance(_msgSender(), spender, addedValue); } _; } modifier lssDecreaseAllowance(address spender, uint256 subtractedValue) { if (isLosslessOn) { lossless.beforeDecreaseAllowance(_msgSender(), spender, subtractedValue); } _; } modifier onlyRecoveryAdmin() { require(_msgSender() == recoveryAdmin, "LERC20: Must be recovery admin"); _; } // --- LOSSLESS management --- function transferOutBlacklistedFunds(address[] calldata from) override external { require(_msgSender() == address(lossless), "LERC20: Only lossless contract"); require(isLosslessOn, "LERC20: Lossless is off"); uint256 fromLength = from.length; uint256 totalAmount = 0; for (uint256 i = 0; i < fromLength; i++) { address fromAddress = from[i]; uint256 fromBalance = _balances[fromAddress]; _balances[fromAddress] = 0; totalAmount += fromBalance; emit Transfer(fromAddress, address(lossless), fromBalance); } _balances[address(lossless)] += totalAmount; } function setLosslessAdmin(address newAdmin) override external onlyRecoveryAdmin { require(newAdmin != admin, "LERC20: Cannot set same address"); emit NewAdmin(newAdmin); admin = newAdmin; } function transferRecoveryAdminOwnership(address candidate, bytes32 keyHash) override external onlyRecoveryAdmin { require(candidate != address(0), "LERC20: Candidate cannot be zero address"); recoveryAdminCandidate = candidate; recoveryAdminKeyHash = keyHash; emit NewRecoveryAdminProposal(candidate); } function acceptRecoveryAdminOwnership(bytes memory key) override external { require(_msgSender() == recoveryAdminCandidate, "LERC20: Must be canditate"); require(keccak256(key) == recoveryAdminKeyHash, "LERC20: Invalid key"); emit NewRecoveryAdmin(recoveryAdminCandidate); require(recoveryAdminCandidate != address(0), "LERC20: Candidate cannot be zero address"); recoveryAdmin = recoveryAdminCandidate; recoveryAdminCandidate = address(0); recoveryAdminKeyHash = ""; } function proposeLosslessTurnOff() override external onlyRecoveryAdmin { require(losslessTurnOffTimestamp == 0, "LERC20: TurnOff already proposed"); require(isLosslessOn, "LERC20: Lossless already off"); losslessTurnOffTimestamp = block.timestamp + timelockPeriod; emit LosslessTurnOffProposal(losslessTurnOffTimestamp); } function executeLosslessTurnOff() override external onlyRecoveryAdmin { require(losslessTurnOffTimestamp != 0, "ERC20: TurnOff not proposed"); require(losslessTurnOffTimestamp <= block.timestamp, "ERC20: Time lock in progress"); isLosslessOn = false; losslessTurnOffTimestamp = 0; emit LosslessOff(); } function executeLosslessTurnOn() override external onlyRecoveryAdmin { require(!isLosslessOn, "LERC20: Lossless already on"); losslessTurnOffTimestamp = 0; isLosslessOn = true; emit LosslessOn(); } function getAdmin() override public view virtual returns (address) { return admin; } // --- ERC20 methods --- function name() override public view virtual returns (string memory) { return _name; } function symbol() override public view virtual returns (string memory) { return _symbol; } function decimals() override public view virtual returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override lssTransfer(recipient, amount) returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override lssAprove(spender, amount) returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public virtual override lssTransferFrom(sender, recipient, amount) returns (bool) { uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _transfer(sender, recipient, amount); _approve(sender, _msgSender(), currentAllowance - amount); return true; } function increaseAllowance(address spender, uint256 addedValue) override public virtual lssIncreaseAllowance(spender, addedValue) returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) override public virtual lssDecreaseAllowance(spender, subtractedValue) returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } 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"); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply += amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { _balances[account] += amount; } emit Transfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); } function _approve(address owner, address spender, uint256 amount) internal virtual { _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC20).interfaceId || interfaceId == type(ILERC20).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ILosslessERC20.sol"; import "./ILosslessGovernance.sol"; import "./ILosslessStaking.sol"; import "./ILosslessReporting.sol"; import "./IProtectionStrategy.sol"; interface ILssController { // function getLockedAmount(ILERC20 _token, address _account) returns (uint256); // function getAvailableAmount(ILERC20 _token, address _account) external view returns (uint256 amount); function retrieveBlacklistedFunds(address[] calldata _addresses, ILERC20 _token, uint256 _reportId) external returns(uint256); function whitelist(address _adr) external view returns (bool); function dexList(address _dexAddress) external returns (bool); function blacklist(address _adr) external view returns (bool); function admin() external view returns (address); function pauseAdmin() external view returns (address); function recoveryAdmin() external view returns (address); function guardian() external view returns (address); function losslessStaking() external view returns (ILssStaking); function losslessReporting() external view returns (ILssReporting); function losslessGovernance() external view returns (ILssGovernance); function dexTranferThreshold() external view returns (uint256); function settlementTimeLock() external view returns (uint256); function extraordinaryRetrievalProposalPeriod() external view returns (uint256); function pause() external; function unpause() external; function setAdmin(address _newAdmin) external; function setRecoveryAdmin(address _newRecoveryAdmin) external; function setPauseAdmin(address _newPauseAdmin) external; function setSettlementTimeLock(uint256 _newTimelock) external; function setDexTransferThreshold(uint256 _newThreshold) external; function setDexList(address[] calldata _dexList, bool _value) external; function setWhitelist(address[] calldata _addrList, bool _value) external; function addToBlacklist(address _adr) external; function resolvedNegatively(address _adr) external; function setStakingContractAddress(ILssStaking _adr) external; function setReportingContractAddress(ILssReporting _adr) external; function setGovernanceContractAddress(ILssGovernance _adr) external; function setTokenMintLimit(ILERC20 _token, uint256 limit) external; function setTokenMintPeriod(ILERC20 _token, uint256 _period) external; function setTokenBurnLimit(ILERC20 _token, uint256 _limit) external; function setTokenBurnPeriod(ILERC20 _token, uint256 _period) external; function proposeNewSettlementPeriod(ILERC20 _token, uint256 _seconds) external; function executeNewSettlementPeriod(ILERC20 _token) external; function activateEmergency(ILERC20 _token) external; function deactivateEmergency(ILERC20 _token) external; function setGuardian(address _newGuardian) external; function removeProtectedAddress(ILERC20 _token, address _protectedAddresss) external; function beforeTransfer(address _sender, address _recipient, uint256 _amount) external; function beforeTransferFrom(address _msgSender, address _sender, address _recipient, uint256 _amount) external; function beforeApprove(address _sender, address _spender, uint256 _amount) external; function beforeIncreaseAllowance(address _msgSender, address _spender, uint256 _addedValue) external; function beforeDecreaseAllowance(address _msgSender, address _spender, uint256 _subtractedValue) external; function beforeMint(address _to, uint256 _amount) external; function beforeBurn(address _account, uint256 _amount) external; function afterTransfer(address _sender, address _recipient, uint256 _amount) external; function setProtectedAddress(ILERC20 _token, address _protectedAddress, ProtectionStrategy _strategy) external; function setExtraordinaryRetrievalPeriod(uint256 _newPEriod) external; function extraordinaryRetrieval(ILERC20 _token, address[] calldata addresses, uint256 fundsToRetrieve) external; event AdminChange(address indexed _newAdmin); event RecoveryAdminChange(address indexed _newAdmin); event PauseAdminChange(address indexed _newAdmin); event GuardianSet(address indexed _oldGuardian, address indexed _newGuardian); event NewProtectedAddress(ILERC20 indexed _token, address indexed _protectedAddress, address indexed _strategy); event RemovedProtectedAddress(ILERC20 indexed _token, address indexed _protectedAddress); event NewSettlementPeriodProposal(ILERC20 indexed _token, uint256 _seconds); event SettlementPeriodChange(ILERC20 indexed _token, uint256 _proposedTokenLockTimeframe); event NewSettlementTimelock(uint256 indexed _timelock); event NewDexThreshold(uint256 indexed _newThreshold); event NewDex(address indexed _dexAddress); event DexRemoval(address indexed _dexAddress); event NewWhitelistedAddress(address indexed _whitelistAdr); event WhitelistedAddressRemoval(address indexed _whitelistAdr); event NewBlacklistedAddress(address indexed _blacklistedAddres); event AccountBlacklistRemoval(address indexed _adr); event NewStakingContract(ILssStaking indexed _newAdr); event NewReportingContract(ILssReporting indexed _newAdr); event NewGovernanceContract(ILssGovernance indexed _newAdr); event EmergencyActive(ILERC20 indexed _token); event EmergencyDeactivation(ILERC20 indexed _token); event NewMint(ILERC20 indexed token, address indexed account, uint256 indexed amount); event NewMintLimit(ILERC20 indexed token, uint256 indexed limit); event NewMintPeriod(ILERC20 indexed token, uint256 indexed period); event NewBurn(ILERC20 indexed token, address indexed account, uint256 indexed amount); event NewBurnLimit(ILERC20 indexed token, uint256 indexed limit); event NewBurnPeriod(ILERC20 indexed token, uint256 indexed period); event NewExtraordinaryPeriod(uint256 indexed extraordinaryRetrievalProposalPeriod); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface ILERC20 { function name() external view returns (string memory); function admin() external view returns (address); function getAdmin() external view returns (address); function symbol() external view returns (string memory); function decimals() external view returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address _account) external view returns (uint256); function transfer(address _recipient, uint256 _amount) external returns (bool); function allowance(address _owner, address _spender) external view returns (uint256); function approve(address _spender, uint256 _amount) external returns (bool); function transferFrom(address _sender, address _recipient, uint256 _amount) external returns (bool); function increaseAllowance(address _spender, uint256 _addedValue) external returns (bool); function decreaseAllowance(address _spender, uint256 _subtractedValue) external returns (bool); function transferOutBlacklistedFunds(address[] calldata _from) external; function setLosslessAdmin(address _newAdmin) external; function transferRecoveryAdminOwnership(address _candidate, bytes32 _keyHash) external; function acceptRecoveryAdminOwnership(bytes memory _key) external; function proposeLosslessTurnOff() external; function executeLosslessTurnOff() external; function executeLosslessTurnOn() external; event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); event NewAdmin(address indexed _newAdmin); event NewRecoveryAdminProposal(address indexed _candidate); event NewRecoveryAdmin(address indexed _newAdmin); event LosslessTurnOffProposal(uint256 _turnOffDate); event LosslessOff(); event LosslessOn(); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ILosslessERC20.sol"; import "./ILosslessStaking.sol"; import "./ILosslessReporting.sol"; import "./ILosslessController.sol"; interface ILssGovernance { function LSS_TEAM_INDEX() external view returns(uint256); function TOKEN_OWNER_INDEX() external view returns(uint256); function COMMITEE_INDEX() external view returns(uint256); function committeeMembersCount() external view returns(uint256); function walletDisputePeriod() external view returns(uint256); function losslessStaking() external view returns (ILssStaking); function losslessReporting() external view returns (ILssReporting); function losslessController() external view returns (ILssController); function isCommitteeMember(address _account) external view returns(bool); function getIsVoted(uint256 _reportId, uint256 _voterIndex) external view returns(bool); function getVote(uint256 _reportId, uint256 _voterIndex) external view returns(bool); function isReportSolved(uint256 _reportId) external view returns(bool); function reportResolution(uint256 _reportId) external view returns(bool); function getAmountReported(uint256 _reportId) external view returns(uint256); function setDisputePeriod(uint256 _timeFrame) external; function addCommitteeMembers(address[] memory _members) external; function removeCommitteeMembers(address[] memory _members) external; function losslessVote(uint256 _reportId, bool _vote) external; function tokenOwnersVote(uint256 _reportId, bool _vote) external; function committeeMemberVote(uint256 _reportId, bool _vote) external; function resolveReport(uint256 _reportId) external; function proposeWallet(uint256 _reportId, address wallet) external; function rejectWallet(uint256 _reportId) external; function retrieveFunds(uint256 _reportId) external; function retrieveCompensation() external; function claimCommitteeReward(uint256 _reportId) external; function setCompensationAmount(uint256 _amount) external; function losslessClaim(uint256 _reportId) external; function extaordinaryRetrieval(address[] calldata _address, ILERC20 _token) external; event NewCommitteeMembers(address[] _members); event CommitteeMembersRemoval(address[] _members); event LosslessTeamPositiveVote(uint256 indexed _reportId); event LosslessTeamNegativeVote(uint256 indexed _reportId); event TokenOwnersPositiveVote(uint256 indexed _reportId); event TokenOwnersNegativeVote(uint256 indexed _reportId); event CommitteeMemberPositiveVote(uint256 indexed _reportId, address indexed _member); event CommitteeMemberNegativeVote(uint256 indexed _reportId, address indexed _member); event ReportResolve(uint256 indexed _reportId, bool indexed _resolution); event WalletProposal(uint256 indexed _reportId, address indexed _wallet); event CommitteeMemberClaim(uint256 indexed _reportId, address indexed _member, uint256 indexed _amount); event CommitteeMajorityReach(uint256 indexed _reportId, bool indexed _result); event NewDisputePeriod(uint256 indexed _newPeriod); event WalletRejection(uint256 indexed _reportId); event FundsRetrieval(uint256 indexed _reportId, uint256 indexed _amount); event CompensationRetrieval(address indexed _wallet, uint256 indexed _amount); event LosslessClaim(ILERC20 indexed _token, uint256 indexed _reportID, uint256 indexed _amount); event ExtraordinaryProposalAccept(ILERC20 indexed _token); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ILosslessERC20.sol"; import "./ILosslessGovernance.sol"; import "./ILosslessStaking.sol"; import "./ILosslessController.sol"; interface ILssReporting { function reporterReward() external returns(uint256); function losslessReward() external returns(uint256); function stakersReward() external returns(uint256); function committeeReward() external returns(uint256); function reportLifetime() external view returns(uint256); function reportingAmount() external returns(uint256); function reportCount() external returns(uint256); function stakingToken() external returns(ILERC20); function losslessController() external returns(ILssController); function losslessGovernance() external returns(ILssGovernance); function getVersion() external pure returns (uint256); function getRewards() external view returns (uint256 _reporter, uint256 _lossless, uint256 _committee, uint256 _stakers); function report(ILERC20 _token, address _account) external returns (uint256); function reporterClaimableAmount(uint256 _reportId) external view returns (uint256); function getReportInfo(uint256 _reportId) external view returns(address _reporter, address _reportedAddress, address _secondReportedAddress, uint256 _reportTimestamps, ILERC20 _reportTokens, bool _secondReports, bool _reporterClaimStatus); function pause() external; function unpause() external; function setStakingToken(ILERC20 _stakingToken) external; function setLosslessGovernance(ILssGovernance _losslessGovernance) external; function setReportingAmount(uint256 _reportingAmount) external; function setReporterReward(uint256 _reward) external; function setLosslessReward(uint256 _reward) external; function setStakersReward(uint256 _reward) external; function setCommitteeReward(uint256 _reward) external; function setReportLifetime(uint256 _lifetime) external; function secondReport(uint256 _reportId, address _account) external; function reporterClaim(uint256 _reportId) external; function retrieveCompensation(address _adr, uint256 _amount) external; event ReportSubmission(ILERC20 indexed _token, address indexed _account, uint256 indexed _reportId); event SecondReportSubmission(ILERC20 indexed _token, address indexed _account, uint256 indexed _reportId); event NewReportingAmount(uint256 indexed _newAmount); event NewStakingToken(ILERC20 indexed _token); event NewGovernanceContract(ILssGovernance indexed _adr); event NewReporterReward(uint256 indexed _newValue); event NewLosslessReward(uint256 indexed _newValue); event NewStakersReward(uint256 indexed _newValue); event NewCommitteeReward(uint256 indexed _newValue); event NewReportLifetime(uint256 indexed _newValue); event ReporterClaim(address indexed _reporter, uint256 indexed _reportId, uint256 indexed _amount); event CompensationRetrieve(address indexed _adr, uint256 indexed _amount); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ILosslessERC20.sol"; import "./ILosslessGovernance.sol"; import "./ILosslessReporting.sol"; import "./ILosslessController.sol"; interface ILssStaking { function stakingToken() external returns(ILERC20); function losslessReporting() external returns(ILssReporting); function losslessController() external returns(ILssController); function losslessGovernance() external returns(ILssGovernance); function stakingAmount() external returns(uint256); function getVersion() external pure returns (uint256); function getIsAccountStaked(uint256 _reportId, address _account) external view returns(bool); function getStakerCoefficient(uint256 _reportId, address _address) external view returns (uint256); function stakerClaimableAmount(uint256 _reportId) external view returns (uint256); function reportCoefficient(uint256 _reportId) external view returns (uint256); function pause() external; function unpause() external; function setLssReporting(ILssReporting _losslessReporting) external; function setStakingToken(ILERC20 _stakingToken) external; function setLosslessGovernance(ILssGovernance _losslessGovernance) external; function setStakingAmount(uint256 _stakingAmount) external; function stake(uint256 _reportId) external; function stakerClaim(uint256 _reportId) external; event NewStake(ILERC20 indexed _token, address indexed _account, uint256 indexed _reportId); event StakerClaim(address indexed _staker, ILERC20 indexed _token, uint256 indexed _reportID, uint256 _amount); event NewStakingAmount(uint256 indexed _newAmount); event NewStakingToken(ILERC20 indexed _newToken); event NewReportingContract(ILssReporting indexed _newContract); event NewGovernanceContract(ILssGovernance indexed _newContract); }
pragma solidity ^0.8.0; interface ProtectionStrategy { function isTransferAllowed(address token, address sender, address recipient, uint256 amount) external; }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "berlin", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin_","type":"address"},{"internalType":"address","name":"recoveryAdmin_","type":"address"},{"internalType":"uint256","name":"timelockPeriod_","type":"uint256"},{"internalType":"address","name":"lossless_","type":"address"},{"internalType":"address","name":"minter_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"LosslessOff","type":"event"},{"anonymous":false,"inputs":[],"name":"LosslessOn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_turnOffDate","type":"uint256"}],"name":"LosslessTurnOffProposal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_newAdmin","type":"address"}],"name":"NewRecoveryAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_candidate","type":"address"}],"name":"NewRecoveryAdminProposal","type":"event"},{"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":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"key","type":"bytes"}],"name":"acceptRecoveryAdminOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"executeLosslessTurnOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"executeLosslessTurnOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isLosslessOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lossless","outputs":[{"internalType":"contract ILssController","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"losslessTurnOffTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposeLosslessTurnOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"recoveryAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"address","name":"newAdmin","type":"address"}],"name":"setLosslessAdmin","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":[],"name":"timelockPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"from","type":"address[]"}],"name":"transferOutBlacklistedFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"candidate","type":"address"},{"internalType":"bytes32","name":"keyHash","type":"bytes32"}],"name":"transferRecoveryAdminOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600b805460ff191660011790553480156200001e57600080fd5b506040516200269d3803806200269d833981016040819052620000419162000519565b604051806040016040528060078152602001665361616b75727560c81b8152506040518060400160405280600381526020016229a5a960e91b8152508686868660006001600160a01b0316836001600160a01b03161415620000ef5760405162461bcd60e51b815260206004820152602d60248201526000805160206200267d83398151915260448201526c207a65726f206164647265737360981b60648201526084015b60405180910390fd5b6001600160a01b0384166200014c5760405162461bcd60e51b815260206004820152602d60248201526000805160206200267d83398151915260448201526c207a65726f206164647265737360981b6064820152608401620000e6565b85516200016190600390602089019062000456565b5084516200017790600490602088019062000456565b50600880546001600160a01b038087166001600160a01b03199283161790925560058054928616928216929092179091556006805490911690556000600755611c2082116200020f5760405162461bcd60e51b815260206004820152602e60248201526000805160206200265d83398151915260448201526d067726561746572207468616e20360941b6064820152608401620000e6565b6202a30082106200026b5760405162461bcd60e51b815260206004820152603060248201526000805160206200265d83398151915260448201526f6c657373207468616e2032206461797360801b6064820152608401620000e6565b60098290556000600a556001600160a01b038116620002dd5760405162461bcd60e51b815260206004820152602760248201527f4c45524332303a204c6f73736c6573732063616e6e6f74206265207a65726f206044820152666164647265737360c81b6064820152608401620000e6565b600b8054610100600160a81b0319166101006001600160a01b03938416021790558616151594506200036d93505050505760405162461bcd60e51b815260206004820152602d60248201527f534b52427269646765643a20696e697469616c206f776e65722069732074686560448201526c207a65726f206164647265737360981b6064820152608401620000e6565b6200037a600086620003b1565b620003a67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682620003b1565b5050505050620005bc565b6000828152600c602090815260408083206001600160a01b038516845290915290205460ff1662000452576000828152600c602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620004113390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b82805462000464906200057f565b90600052602060002090601f016020900481019282620004885760008555620004d3565b82601f10620004a357805160ff1916838001178555620004d3565b82800160010185558215620004d3579182015b82811115620004d3578251825591602001919060010190620004b6565b50620004e1929150620004e5565b5090565b5b80821115620004e15760008155600101620004e6565b80516001600160a01b03811681146200051457600080fd5b919050565b600080600080600060a0868803121562000531578081fd5b6200053c86620004fc565b94506200054c60208701620004fc565b9350604086015192506200056360608701620004fc565b91506200057360808701620004fc565b90509295509295909350565b6002810460018216806200059457607f821691505b60208210811415620005b657634e487b7160e01b600052602260045260246000fd5b50919050565b61209180620005cc6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806361086b0011610125578063a457c2d7116100ad578063ccfa214f1161007c578063ccfa214f14610465578063d547741f14610472578063d6e242b814610485578063dd62ed3e1461048d578063f851a440146104c657610211565b8063a457c2d714610424578063a9059cbb14610437578063b38fe9571461044a578063b5c228771461045257610211565b806391d14854116100f457806391d14854146103db57806393310ffe146103ee578063936af9111461040157806395d89b4114610414578063a217fddf1461041c57610211565b806361086b00146103855780636e9960c31461038e57806370a082311461039f57806379cc6790146103c857610211565b80632f2ff15d116101a85780633950935111610177578063395093511461033157806340c10f191461034457806342966c68146103575780635b8a194a1461036a5780635f6529a31461037257610211565b80632f2ff15d146102cc578063313ce567146102df57806334f6ebf5146102ee57806336568abe1461031e57610211565b806323b872dd116101e457806323b872dd14610278578063248a9ca31461028b5780632baa3c9e146102ae5780632ecaf675146102c357610211565b806301ffc9a71461021657806306fdde031461023e578063095ea7b31461025357806318160ddd14610266575b600080fd5b610229610224366004611d07565b6104d9565b60405190151581526020015b60405180910390f35b6102466104ec565b6040516102359190611e72565b610229610261366004611c35565b61057e565b6002545b604051908152602001610235565b610229610286366004611bfa565b610616565b61026a610299366004611ccd565b6000908152600c602052604090206001015490565b6102c16102bc366004611bae565b61076f565b005b61026a60095481565b6102c16102da366004611ce5565b610856565b60405160128152602001610235565b600b546103069061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610235565b6102c161032c366004611ce5565b610880565b61022961033f366004611c35565b6108fe565b6102c1610352366004611c35565b6109b6565b6102c1610365366004611ccd565b6109ea565b6102c1610a6f565b600554610306906001600160a01b031681565b61026a600a5481565b6008546001600160a01b0316610306565b61026a6103ad366004611bae565b6001600160a01b031660009081526020819052604090205490565b6102c16103d6366004611c35565b610b32565b6102296103e9366004611ce5565b610c36565b6102c16103fc366004611c35565b610c61565b6102c161040f366004611c5e565b610d0a565b610246610ec4565b61026a600081565b610229610432366004611c35565b610ed3565b610229610445366004611c35565b610ff2565b6102c161107f565b6102c1610460366004611d2f565b61118d565b600b546102299060ff1681565b6102c1610480366004611ce5565b6112ca565b6102c16112ef565b61026a61049b366004611bc8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600854610306906001600160a01b031681565b60006104e48261140b565b90505b919050565b6060600380546104fb90611fb9565b80601f016020809104026020016040519081016040528092919081815260200182805461052790611fb9565b80156105745780601f1061054957610100808354040283529160200191610574565b820191906000526020600020905b81548152906001019060200180831161055757829003601f168201915b5050505050905090565b600b546000908390839060ff161561060057600b5461010090046001600160a01b03166347abf3be6105ad3390565b84846040518463ffffffff1660e01b81526004016105cd93929190611e4e565b600060405180830381600087803b1580156105e757600080fd5b505af11580156105fb573d6000803e3d6000fd5b505050505b61060b338686611440565b506001949350505050565b600b5460009084908490849060ff16156106b857600b5461010090046001600160a01b031663379f5c696106473390565b6040516001600160e01b031960e084901b1681526001600160a01b0391821660048201528187166024820152908516604482015260648101849052608401600060405180830381600087803b15801561069f57600080fd5b505af11580156106b3573d6000803e3d6000fd5b505050505b6001600160a01b0387166000908152600160209081526040808320338452909152902054858110156107425760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61074d8888886114a2565b610761883361075c8985611f5b565b611440565b506001979650505050505050565b6005546001600160a01b0316336001600160a01b0316146107a25760405162461bcd60e51b815260040161073990611ea5565b6008546001600160a01b03828116911614156108005760405162461bcd60e51b815260206004820152601f60248201527f4c45524332303a2043616e6e6f74207365742073616d652061646472657373006044820152606401610739565b6040516001600160a01b038216907f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c90600090a2600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000828152600c602052604090206001015461087181611668565b61087b8383611675565b505050565b6001600160a01b03811633146108f05760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610739565b6108fa82826116fb565b5050565b600b546000908390839060ff161561098057600b5461010090046001600160a01b031663cf5961bb61092d3390565b84846040518463ffffffff1660e01b815260040161094d93929190611e4e565b600060405180830381600087803b15801561096757600080fd5b505af115801561097b573d6000803e3d6000fd5b505050505b3360008181526001602090815260408083206001600160a01b038a16845290915290205461060b9190879061075c908890611f24565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109e081611668565b61087b8383611762565b33600b54829060ff1615610a6557600b54604051634a1fefbd60e01b81526001600160a01b0384811660048301526024820184905261010090920490911690634a1fefbd90604401600060405180830381600087803b158015610a4c57600080fd5b505af1158015610a60573d6000803e3d6000fd5b505050505b61087b338461180f565b6005546001600160a01b0316336001600160a01b031614610aa25760405162461bcd60e51b815260040161073990611ea5565b600b5460ff1615610af55760405162461bcd60e51b815260206004820152601b60248201527f4c45524332303a204c6f73736c65737320616c7265616479206f6e00000000006044820152606401610739565b6000600a819055600b805460ff191660011790556040517f1ba3b66404043da8297d0b876fa6464f2cb127edfc6626308046d4503028322b9190a1565b600b548290829060ff1615610bae57600b54604051634a1fefbd60e01b81526001600160a01b0384811660048301526024820184905261010090920490911690634a1fefbd90604401600060405180830381600087803b158015610b9557600080fd5b505af1158015610ba9573d6000803e3d6000fd5b505050505b6000610bba853361049b565b905083811015610c185760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610739565b610c258533868403611440565b610c2f858561180f565b5050505050565b6000918252600c602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6005546001600160a01b0316336001600160a01b031614610c945760405162461bcd60e51b815260040161073990611ea5565b6001600160a01b038216610cba5760405162461bcd60e51b815260040161073990611edc565b600680546001600160a01b0319166001600160a01b03841690811790915560078290556040517f6c591da8da2f6e69746d7d9ae61c27ee29fbe303798141b4942ae2aef54274b190600090a25050565b600b5461010090046001600160a01b0316610d223390565b6001600160a01b031614610d785760405162461bcd60e51b815260206004820152601e60248201527f4c45524332303a204f6e6c79206c6f73736c65737320636f6e747261637400006044820152606401610739565b600b5460ff16610dca5760405162461bcd60e51b815260206004820152601760248201527f4c45524332303a204c6f73736c657373206973206f66660000000000000000006044820152606401610739565b806000805b82811015610e89576000858583818110610df957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e0e9190611bae565b6001600160a01b03811660009081526020819052604081208054919055909150610e388185611f24565b600b546040518381529195506001600160a01b036101009091048116919084169060008051602061203c8339815191529060200160405180910390a350508080610e8190611ff4565b915050610dcf565b50600b5461010090046001600160a01b031660009081526020819052604081208054839290610eb9908490611f24565b909155505050505050565b6060600480546104fb90611fb9565b600b546000908390839060ff1615610f5557600b5461010090046001600160a01b031663568c75a9610f023390565b84846040518463ffffffff1660e01b8152600401610f2293929190611e4e565b600060405180830381600087803b158015610f3c57600080fd5b505af1158015610f50573d6000803e3d6000fd5b505050505b3360009081526001602090815260408083206001600160a01b038916845290915290205484811015610fd75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610739565b610fe6338761075c8885611f5b565b50600195945050505050565b600b546000908390839060ff161561107457600b5461010090046001600160a01b0316631ffb811f6110213390565b84846040518463ffffffff1660e01b815260040161104193929190611e4e565b600060405180830381600087803b15801561105b57600080fd5b505af115801561106f573d6000803e3d6000fd5b505050505b61060b3386866114a2565b6005546001600160a01b0316336001600160a01b0316146110b25760405162461bcd60e51b815260040161073990611ea5565b600a546111015760405162461bcd60e51b815260206004820152601b60248201527f45524332303a205475726e4f6666206e6f742070726f706f73656400000000006044820152606401610739565b42600a5411156111535760405162461bcd60e51b815260206004820152601c60248201527f45524332303a2054696d65206c6f636b20696e2070726f6772657373000000006044820152606401610739565b600b805460ff191690556000600a8190556040517f3eb72350c9c7928d31e9ab450bfff2c159434aa4b82658a7d8eae7f109cb4e7b9190a1565b6006546001600160a01b0316336001600160a01b0316146111f05760405162461bcd60e51b815260206004820152601960248201527f4c45524332303a204d7573742062652063616e646974617465000000000000006044820152606401610739565b600754815160208301201461123d5760405162461bcd60e51b81526020600482015260136024820152724c45524332303a20496e76616c6964206b657960681b6044820152606401610739565b6006546040516001600160a01b03909116907fb94bba6936ec7f75ee931dadf6e1a4d66b43d09b6fa0178fb13df9b77fb5841f90600090a26006546001600160a01b031661129d5760405162461bcd60e51b815260040161073990611edc565b5060068054600580546001600160a01b03199081166001600160a01b038416179091551690556000600755565b6000828152600c60205260409020600101546112e581611668565b61087b83836116fb565b6005546001600160a01b0316336001600160a01b0316146113225760405162461bcd60e51b815260040161073990611ea5565b600a54156113725760405162461bcd60e51b815260206004820181905260248201527f4c45524332303a205475726e4f666620616c72656164792070726f706f7365646044820152606401610739565b600b5460ff166113c45760405162461bcd60e51b815260206004820152601c60248201527f4c45524332303a204c6f73736c65737320616c7265616479206f6666000000006044820152606401610739565b6009546113d19042611f24565b600a8190556040519081527f6ca688e6e3ddd707280140b2bf0106afe883689b6c74e68cbd517576dd9c245a9060200160405180910390a1565b60006001600160e01b03198216637965db0b60e01b14806104e457506301ffc9a760e01b6001600160e01b03198316146104e4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166115065760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610739565b6001600160a01b0382166115685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610739565b6001600160a01b038316600090815260208190526040902054818110156115e05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610739565b6115ea8282611f5b565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290611620908490611f24565b92505081905550826001600160a01b0316846001600160a01b031660008051602061203c8339815191528460405161165a91815260200190565b60405180910390a350505050565b6116728133611943565b50565b61167f8282610c36565b6108fa576000828152600c602090815260408083206001600160a01b03851684529091529020805460ff191660011790556116b73390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6117058282610c36565b156108fa576000828152600c602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0382166117b85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610739565b80600260008282546117ca9190611f24565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602061203c833981519152910160405180910390a35050565b6001600160a01b03821661186f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610739565b6001600160a01b038216600090815260208190526040902054818110156118e35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610739565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611912908490611f5b565b90915550506040518281526000906001600160a01b0385169060008051602061203c83398151915290602001611495565b61194d8282610c36565b6108fa5761195a8161199c565b6119658360206119ae565b604051602001611976929190611dd9565b60408051601f198184030181529082905262461bcd60e51b825261073991600401611e72565b60606104e46001600160a01b03831660145b606060006119bd836002611f3c565b6119c8906002611f24565b67ffffffffffffffff8111156119ee57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a18576020820181803683370190505b509050600360fc1b81600081518110611a4157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611a7e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611aa2846002611f3c565b611aad906001611f24565b90505b6001811115611b41576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611aef57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611b1357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611b3a81611fa2565b9050611ab0565b508315611b905760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610739565b9392505050565b80356001600160a01b03811681146104e757600080fd5b600060208284031215611bbf578081fd5b611b9082611b97565b60008060408385031215611bda578081fd5b611be383611b97565b9150611bf160208401611b97565b90509250929050565b600080600060608486031215611c0e578081fd5b611c1784611b97565b9250611c2560208501611b97565b9150604084013590509250925092565b60008060408385031215611c47578182fd5b611c5083611b97565b946020939093013593505050565b60008060208385031215611c70578182fd5b823567ffffffffffffffff80821115611c87578384fd5b818501915085601f830112611c9a578384fd5b813581811115611ca8578485fd5b8660208083028501011115611cbb578485fd5b60209290920196919550909350505050565b600060208284031215611cde578081fd5b5035919050565b60008060408385031215611cf7578182fd5b82359150611bf160208401611b97565b600060208284031215611d18578081fd5b81356001600160e01b031981168114611b90578182fd5b600060208284031215611d40578081fd5b813567ffffffffffffffff80821115611d57578283fd5b818401915084601f830112611d6a578283fd5b813581811115611d7c57611d7c612025565b604051601f8201601f19908116603f01168101908382118183101715611da457611da4612025565b81604052828152876020848701011115611dbc578586fd5b826020860160208301379182016020019490945295945050505050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351611e11816017850160208801611f72565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611e42816028840160208801611f72565b01602801949350505050565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6000602082528251806020840152611e91816040850160208701611f72565b601f01601f19169190910160400192915050565b6020808252601e908201527f4c45524332303a204d757374206265207265636f766572792061646d696e0000604082015260600190565b60208082526028908201527f4c45524332303a2043616e6469646174652063616e6e6f74206265207a65726f604082015267206164647265737360c01b606082015260800190565b60008219821115611f3757611f3761200f565b500190565b6000816000190483118215151615611f5657611f5661200f565b500290565b600082821015611f6d57611f6d61200f565b500390565b60005b83811015611f8d578181015183820152602001611f75565b83811115611f9c576000848401525b50505050565b600081611fb157611fb161200f565b506000190190565b600281046001821680611fcd57607f821691505b60208210811415611fee57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120085761200861200f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220183d75880c54b1b138b91df520d1ed33e4d3cbc8f16a85a80e5fc01e798695e064736f6c634300080200334c45524332303a2054696d656c6f636b20706572696f64206d757374206265204c45524332303a205265636f766572792061646d696e2063616e6e6f7420626500000000000000000000000057fb3a4205dcdfae514d13c211d6c8c08be58e8600000000000000000000000053745cc2c6dc4b1468f41d286cd1aab7aa7a1b810000000000000000000000000000000000000000000000000000000000015180000000000000000000000000e91d7cebce484070fc70777cb04f7e2efae31db4000000000000000000000000f9f4c3dc7ba8f56737a92d74fd67230c38af51f2
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102115760003560e01c806361086b0011610125578063a457c2d7116100ad578063ccfa214f1161007c578063ccfa214f14610465578063d547741f14610472578063d6e242b814610485578063dd62ed3e1461048d578063f851a440146104c657610211565b8063a457c2d714610424578063a9059cbb14610437578063b38fe9571461044a578063b5c228771461045257610211565b806391d14854116100f457806391d14854146103db57806393310ffe146103ee578063936af9111461040157806395d89b4114610414578063a217fddf1461041c57610211565b806361086b00146103855780636e9960c31461038e57806370a082311461039f57806379cc6790146103c857610211565b80632f2ff15d116101a85780633950935111610177578063395093511461033157806340c10f191461034457806342966c68146103575780635b8a194a1461036a5780635f6529a31461037257610211565b80632f2ff15d146102cc578063313ce567146102df57806334f6ebf5146102ee57806336568abe1461031e57610211565b806323b872dd116101e457806323b872dd14610278578063248a9ca31461028b5780632baa3c9e146102ae5780632ecaf675146102c357610211565b806301ffc9a71461021657806306fdde031461023e578063095ea7b31461025357806318160ddd14610266575b600080fd5b610229610224366004611d07565b6104d9565b60405190151581526020015b60405180910390f35b6102466104ec565b6040516102359190611e72565b610229610261366004611c35565b61057e565b6002545b604051908152602001610235565b610229610286366004611bfa565b610616565b61026a610299366004611ccd565b6000908152600c602052604090206001015490565b6102c16102bc366004611bae565b61076f565b005b61026a60095481565b6102c16102da366004611ce5565b610856565b60405160128152602001610235565b600b546103069061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610235565b6102c161032c366004611ce5565b610880565b61022961033f366004611c35565b6108fe565b6102c1610352366004611c35565b6109b6565b6102c1610365366004611ccd565b6109ea565b6102c1610a6f565b600554610306906001600160a01b031681565b61026a600a5481565b6008546001600160a01b0316610306565b61026a6103ad366004611bae565b6001600160a01b031660009081526020819052604090205490565b6102c16103d6366004611c35565b610b32565b6102296103e9366004611ce5565b610c36565b6102c16103fc366004611c35565b610c61565b6102c161040f366004611c5e565b610d0a565b610246610ec4565b61026a600081565b610229610432366004611c35565b610ed3565b610229610445366004611c35565b610ff2565b6102c161107f565b6102c1610460366004611d2f565b61118d565b600b546102299060ff1681565b6102c1610480366004611ce5565b6112ca565b6102c16112ef565b61026a61049b366004611bc8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600854610306906001600160a01b031681565b60006104e48261140b565b90505b919050565b6060600380546104fb90611fb9565b80601f016020809104026020016040519081016040528092919081815260200182805461052790611fb9565b80156105745780601f1061054957610100808354040283529160200191610574565b820191906000526020600020905b81548152906001019060200180831161055757829003601f168201915b5050505050905090565b600b546000908390839060ff161561060057600b5461010090046001600160a01b03166347abf3be6105ad3390565b84846040518463ffffffff1660e01b81526004016105cd93929190611e4e565b600060405180830381600087803b1580156105e757600080fd5b505af11580156105fb573d6000803e3d6000fd5b505050505b61060b338686611440565b506001949350505050565b600b5460009084908490849060ff16156106b857600b5461010090046001600160a01b031663379f5c696106473390565b6040516001600160e01b031960e084901b1681526001600160a01b0391821660048201528187166024820152908516604482015260648101849052608401600060405180830381600087803b15801561069f57600080fd5b505af11580156106b3573d6000803e3d6000fd5b505050505b6001600160a01b0387166000908152600160209081526040808320338452909152902054858110156107425760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61074d8888886114a2565b610761883361075c8985611f5b565b611440565b506001979650505050505050565b6005546001600160a01b0316336001600160a01b0316146107a25760405162461bcd60e51b815260040161073990611ea5565b6008546001600160a01b03828116911614156108005760405162461bcd60e51b815260206004820152601f60248201527f4c45524332303a2043616e6e6f74207365742073616d652061646472657373006044820152606401610739565b6040516001600160a01b038216907f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c90600090a2600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000828152600c602052604090206001015461087181611668565b61087b8383611675565b505050565b6001600160a01b03811633146108f05760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610739565b6108fa82826116fb565b5050565b600b546000908390839060ff161561098057600b5461010090046001600160a01b031663cf5961bb61092d3390565b84846040518463ffffffff1660e01b815260040161094d93929190611e4e565b600060405180830381600087803b15801561096757600080fd5b505af115801561097b573d6000803e3d6000fd5b505050505b3360008181526001602090815260408083206001600160a01b038a16845290915290205461060b9190879061075c908890611f24565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109e081611668565b61087b8383611762565b33600b54829060ff1615610a6557600b54604051634a1fefbd60e01b81526001600160a01b0384811660048301526024820184905261010090920490911690634a1fefbd90604401600060405180830381600087803b158015610a4c57600080fd5b505af1158015610a60573d6000803e3d6000fd5b505050505b61087b338461180f565b6005546001600160a01b0316336001600160a01b031614610aa25760405162461bcd60e51b815260040161073990611ea5565b600b5460ff1615610af55760405162461bcd60e51b815260206004820152601b60248201527f4c45524332303a204c6f73736c65737320616c7265616479206f6e00000000006044820152606401610739565b6000600a819055600b805460ff191660011790556040517f1ba3b66404043da8297d0b876fa6464f2cb127edfc6626308046d4503028322b9190a1565b600b548290829060ff1615610bae57600b54604051634a1fefbd60e01b81526001600160a01b0384811660048301526024820184905261010090920490911690634a1fefbd90604401600060405180830381600087803b158015610b9557600080fd5b505af1158015610ba9573d6000803e3d6000fd5b505050505b6000610bba853361049b565b905083811015610c185760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610739565b610c258533868403611440565b610c2f858561180f565b5050505050565b6000918252600c602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6005546001600160a01b0316336001600160a01b031614610c945760405162461bcd60e51b815260040161073990611ea5565b6001600160a01b038216610cba5760405162461bcd60e51b815260040161073990611edc565b600680546001600160a01b0319166001600160a01b03841690811790915560078290556040517f6c591da8da2f6e69746d7d9ae61c27ee29fbe303798141b4942ae2aef54274b190600090a25050565b600b5461010090046001600160a01b0316610d223390565b6001600160a01b031614610d785760405162461bcd60e51b815260206004820152601e60248201527f4c45524332303a204f6e6c79206c6f73736c65737320636f6e747261637400006044820152606401610739565b600b5460ff16610dca5760405162461bcd60e51b815260206004820152601760248201527f4c45524332303a204c6f73736c657373206973206f66660000000000000000006044820152606401610739565b806000805b82811015610e89576000858583818110610df957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e0e9190611bae565b6001600160a01b03811660009081526020819052604081208054919055909150610e388185611f24565b600b546040518381529195506001600160a01b036101009091048116919084169060008051602061203c8339815191529060200160405180910390a350508080610e8190611ff4565b915050610dcf565b50600b5461010090046001600160a01b031660009081526020819052604081208054839290610eb9908490611f24565b909155505050505050565b6060600480546104fb90611fb9565b600b546000908390839060ff1615610f5557600b5461010090046001600160a01b031663568c75a9610f023390565b84846040518463ffffffff1660e01b8152600401610f2293929190611e4e565b600060405180830381600087803b158015610f3c57600080fd5b505af1158015610f50573d6000803e3d6000fd5b505050505b3360009081526001602090815260408083206001600160a01b038916845290915290205484811015610fd75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610739565b610fe6338761075c8885611f5b565b50600195945050505050565b600b546000908390839060ff161561107457600b5461010090046001600160a01b0316631ffb811f6110213390565b84846040518463ffffffff1660e01b815260040161104193929190611e4e565b600060405180830381600087803b15801561105b57600080fd5b505af115801561106f573d6000803e3d6000fd5b505050505b61060b3386866114a2565b6005546001600160a01b0316336001600160a01b0316146110b25760405162461bcd60e51b815260040161073990611ea5565b600a546111015760405162461bcd60e51b815260206004820152601b60248201527f45524332303a205475726e4f6666206e6f742070726f706f73656400000000006044820152606401610739565b42600a5411156111535760405162461bcd60e51b815260206004820152601c60248201527f45524332303a2054696d65206c6f636b20696e2070726f6772657373000000006044820152606401610739565b600b805460ff191690556000600a8190556040517f3eb72350c9c7928d31e9ab450bfff2c159434aa4b82658a7d8eae7f109cb4e7b9190a1565b6006546001600160a01b0316336001600160a01b0316146111f05760405162461bcd60e51b815260206004820152601960248201527f4c45524332303a204d7573742062652063616e646974617465000000000000006044820152606401610739565b600754815160208301201461123d5760405162461bcd60e51b81526020600482015260136024820152724c45524332303a20496e76616c6964206b657960681b6044820152606401610739565b6006546040516001600160a01b03909116907fb94bba6936ec7f75ee931dadf6e1a4d66b43d09b6fa0178fb13df9b77fb5841f90600090a26006546001600160a01b031661129d5760405162461bcd60e51b815260040161073990611edc565b5060068054600580546001600160a01b03199081166001600160a01b038416179091551690556000600755565b6000828152600c60205260409020600101546112e581611668565b61087b83836116fb565b6005546001600160a01b0316336001600160a01b0316146113225760405162461bcd60e51b815260040161073990611ea5565b600a54156113725760405162461bcd60e51b815260206004820181905260248201527f4c45524332303a205475726e4f666620616c72656164792070726f706f7365646044820152606401610739565b600b5460ff166113c45760405162461bcd60e51b815260206004820152601c60248201527f4c45524332303a204c6f73736c65737320616c7265616479206f6666000000006044820152606401610739565b6009546113d19042611f24565b600a8190556040519081527f6ca688e6e3ddd707280140b2bf0106afe883689b6c74e68cbd517576dd9c245a9060200160405180910390a1565b60006001600160e01b03198216637965db0b60e01b14806104e457506301ffc9a760e01b6001600160e01b03198316146104e4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166115065760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610739565b6001600160a01b0382166115685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610739565b6001600160a01b038316600090815260208190526040902054818110156115e05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610739565b6115ea8282611f5b565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290611620908490611f24565b92505081905550826001600160a01b0316846001600160a01b031660008051602061203c8339815191528460405161165a91815260200190565b60405180910390a350505050565b6116728133611943565b50565b61167f8282610c36565b6108fa576000828152600c602090815260408083206001600160a01b03851684529091529020805460ff191660011790556116b73390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6117058282610c36565b156108fa576000828152600c602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0382166117b85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610739565b80600260008282546117ca9190611f24565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602061203c833981519152910160405180910390a35050565b6001600160a01b03821661186f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610739565b6001600160a01b038216600090815260208190526040902054818110156118e35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610739565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611912908490611f5b565b90915550506040518281526000906001600160a01b0385169060008051602061203c83398151915290602001611495565b61194d8282610c36565b6108fa5761195a8161199c565b6119658360206119ae565b604051602001611976929190611dd9565b60408051601f198184030181529082905262461bcd60e51b825261073991600401611e72565b60606104e46001600160a01b03831660145b606060006119bd836002611f3c565b6119c8906002611f24565b67ffffffffffffffff8111156119ee57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a18576020820181803683370190505b509050600360fc1b81600081518110611a4157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611a7e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611aa2846002611f3c565b611aad906001611f24565b90505b6001811115611b41576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611aef57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611b1357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611b3a81611fa2565b9050611ab0565b508315611b905760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610739565b9392505050565b80356001600160a01b03811681146104e757600080fd5b600060208284031215611bbf578081fd5b611b9082611b97565b60008060408385031215611bda578081fd5b611be383611b97565b9150611bf160208401611b97565b90509250929050565b600080600060608486031215611c0e578081fd5b611c1784611b97565b9250611c2560208501611b97565b9150604084013590509250925092565b60008060408385031215611c47578182fd5b611c5083611b97565b946020939093013593505050565b60008060208385031215611c70578182fd5b823567ffffffffffffffff80821115611c87578384fd5b818501915085601f830112611c9a578384fd5b813581811115611ca8578485fd5b8660208083028501011115611cbb578485fd5b60209290920196919550909350505050565b600060208284031215611cde578081fd5b5035919050565b60008060408385031215611cf7578182fd5b82359150611bf160208401611b97565b600060208284031215611d18578081fd5b81356001600160e01b031981168114611b90578182fd5b600060208284031215611d40578081fd5b813567ffffffffffffffff80821115611d57578283fd5b818401915084601f830112611d6a578283fd5b813581811115611d7c57611d7c612025565b604051601f8201601f19908116603f01168101908382118183101715611da457611da4612025565b81604052828152876020848701011115611dbc578586fd5b826020860160208301379182016020019490945295945050505050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351611e11816017850160208801611f72565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611e42816028840160208801611f72565b01602801949350505050565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6000602082528251806020840152611e91816040850160208701611f72565b601f01601f19169190910160400192915050565b6020808252601e908201527f4c45524332303a204d757374206265207265636f766572792061646d696e0000604082015260600190565b60208082526028908201527f4c45524332303a2043616e6469646174652063616e6e6f74206265207a65726f604082015267206164647265737360c01b606082015260800190565b60008219821115611f3757611f3761200f565b500190565b6000816000190483118215151615611f5657611f5661200f565b500290565b600082821015611f6d57611f6d61200f565b500390565b60005b83811015611f8d578181015183820152602001611f75565b83811115611f9c576000848401525b50505050565b600081611fb157611fb161200f565b506000190190565b600281046001821680611fcd57607f821691505b60208210811415611fee57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120085761200861200f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220183d75880c54b1b138b91df520d1ed33e4d3cbc8f16a85a80e5fc01e798695e064736f6c63430008020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000057fb3a4205dcdfae514d13c211d6c8c08be58e8600000000000000000000000053745cc2c6dc4b1468f41d286cd1aab7aa7a1b810000000000000000000000000000000000000000000000000000000000015180000000000000000000000000e91d7cebce484070fc70777cb04f7e2efae31db4000000000000000000000000f9f4c3dc7ba8f56737a92d74fd67230c38af51f2
-----Decoded View---------------
Arg [0] : admin_ (address): 0x57fb3A4205dcdFaE514d13c211D6C8c08Be58E86
Arg [1] : recoveryAdmin_ (address): 0x53745Cc2c6Dc4B1468F41D286Cd1AAb7aa7a1B81
Arg [2] : timelockPeriod_ (uint256): 86400
Arg [3] : lossless_ (address): 0xe91D7cEBcE484070fc70777cB04F7e2EfAe31DB4
Arg [4] : minter_ (address): 0xF9f4C3dC7ba8f56737a92d74Fd67230c38AF51f2
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000057fb3a4205dcdfae514d13c211d6c8c08be58e86
Arg [1] : 00000000000000000000000053745cc2c6dc4b1468f41d286cd1aab7aa7a1b81
Arg [2] : 0000000000000000000000000000000000000000000000000000000000015180
Arg [3] : 000000000000000000000000e91d7cebce484070fc70777cb04f7e2efae31db4
Arg [4] : 000000000000000000000000f9f4c3dc7ba8f56737a92d74fd67230c38af51f2
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.