Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Trading
Overview
Max Total Supply
405,901,513.41559376669865902 IPISTR
Holders
417 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 IPISTRValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
IpistrToken
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "../proxy/TitanProxy.sol"; import "../storage/TokenStorage.sol"; contract IpistrToken is TitanProxy, TokenStorage { constructor(address _SAVIOR, address _implementation) public TitanProxy(_SAVIOR, _implementation) {} }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "@openzeppelin/contracts/utils/Pausable.sol"; import "../criteria/Affinity.sol"; import "../criteria/ChainSchema.sol"; import "./UpgradeabilityProxy.sol"; /// @notice Top level proxy for delegate contract TitanProxy is Affinity, ChainSchema, Pausable, UpgradeabilityProxy { constructor(address _SAVIOR, address implementationContract) public Affinity(_SAVIOR) UpgradeabilityProxy(implementationContract) {} function version() public view returns (uint256) { return _version(); } function implementation() external view returns (address) { return _implementation(); } function upgradeTo(uint256 newVersion, address newImplementation) public isManager { _upgradeTo(newVersion, newImplementation); } function setPaused() public isManager { _pause(); } function setUnPaused() public isManager { _unpause(); } function setSecondsPerBlock(uint256 newSecondsPerBlock) public isManager { _secondsPerBlock = newSecondsPerBlock; } receive() external payable {} }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "./TitanCoreStorage.sol"; contract TokenStorage is TitanCoreStorage { mapping(address => uint256) internal _lockedBalances; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "@openzeppelin/contracts/access/AccessControl.sol"; import "../interfaces/ISRC20.sol"; import "../interfaces/IUSDT.sol"; import "./IAffinity.sol"; /// @notice Arch design for roles and privileges management contract Affinity is AccessControl, IAffinity { address internal SAVIOR; /// @notice Initial bunch of roles bytes32 public constant ROOT_GROUP = keccak256("ROOT_GROUP"); bytes32 public constant KEEPER_ROLE = keccak256("KEEPER_ROLE"); bytes32 public constant MANAGER_ROLE = keccak256("MANAGER_ROLE"); bytes32 public constant ALLY_ROLE = keccak256("ALLY_ROLE"); modifier isKeeper() { require(hasRole(KEEPER_ROLE, msg.sender), "Affinity: Caller is not keeper"); _; } modifier isManager() { require(hasRole(MANAGER_ROLE, msg.sender), "Affinity: Caller is not manager"); _; } modifier isAlly() { require(hasRole(ALLY_ROLE, msg.sender), "Affinity: Caller is not ally"); _; } modifier onlyEOA() { require(msg.sender == tx.origin, "Affinity: EOA required"); _; } constructor(address _SAVIOR) public { SAVIOR = _SAVIOR; _setupRole(ROOT_GROUP, _SAVIOR); _setRoleAdmin(KEEPER_ROLE, ROOT_GROUP); _setRoleAdmin(MANAGER_ROLE, ROOT_GROUP); _setRoleAdmin(ALLY_ROLE, ROOT_GROUP); } function allow( address token, address spender, uint256 amount ) external override isKeeper { ISRC20(token).approve(spender, amount); } function allowTetherToken( address token, address spender, uint256 amount ) external override isKeeper { _allowTetherToken(token, spender, amount); } function _allowTetherToken( address token, address spender, uint256 amount ) internal { IUSDT USDT = IUSDT(token); uint256 _allowance = USDT.allowance(address(this), spender); if (_allowance >= amount) { return; } if (_allowance > 0) { USDT.approve(spender, 0); } USDT.approve(spender, amount); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; /// @notice Configuration meters for various chain deployment /// @author IPILabs contract ChainSchema { bool private _initialized; string internal _chainShortName; string internal _chainFullName; uint256 internal _blocksPerDay; uint256 internal _secondsPerBlock; event ChainConfigured(address indexed thisAddr, string shortName, string fullName, uint256 secondsPerBlock); modifier chainReady() { require(_initialized, "ChainSchema: Waiting to be configured"); _; } function configChain( string memory shortName, string memory fullName, uint256 secondsPerBlock ) public { require(!_initialized, "ChainSchema: Reconfiguration is not allowed"); require(secondsPerBlock > 0, "ChainSchema: Invalid secondsPerBlock"); _chainShortName = shortName; _chainFullName = fullName; _blocksPerDay = uint256(24 * 60 * 60) / secondsPerBlock; _secondsPerBlock = secondsPerBlock; _initialized = true; emit ChainConfigured(address(this), shortName, fullName, secondsPerBlock); } function chainShortName() public view returns (string memory) { return _chainShortName; } function chainFullName() public view returns (string memory) { return _chainFullName; } function blocksPerDay() public view returns (uint256) { return _blocksPerDay; } function secondsPerBlock() public view returns (uint256) { return _secondsPerBlock; } function getChainId() public pure returns (uint256) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {Proxy} from "./Proxy.sol"; contract UpgradeabilityProxy is Proxy { event Upgraded(uint256 indexed version, address indexed implementation); bytes32 internal constant IMPLEMENTATION_SLOT = 0xb4cff3ccade8876c60e81b90f014ea636f99d530646ec67090e1cc8a04636f38; bytes32 internal constant VERSION_SLOT = 0xf62412ce1bd823aa31864380419f787378380edf34602844461eeadf8416d534; constructor(address implementationContract) public { assert(IMPLEMENTATION_SLOT == keccak256("com.ipilabs.proxy.implementation")); assert(VERSION_SLOT == keccak256("com.ipilabs.proxy.version")); _upgradeTo(1, implementationContract); } function _implementation() internal view override returns (address impl) { bytes32 slot = IMPLEMENTATION_SLOT; assembly { impl := sload(slot) } } function _version() internal view returns (uint256 version) { bytes32 slot = VERSION_SLOT; assembly { version := sload(slot) } } function _upgradeTo(uint256 newVersion, address newImplementation) internal { require(Address.isContract(newImplementation), "Non-contract address"); _setImplementation(newImplementation); _setVersion(newVersion); emit Upgraded(newVersion, newImplementation); } function _setImplementation(address newImplementation) internal { require(Address.isContract(newImplementation), "Non-contract address"); bytes32 slot = IMPLEMENTATION_SLOT; assembly { sstore(slot, newImplementation) } } function _setVersion(uint256 newVersion) internal { bytes32 slot = VERSION_SLOT; assembly { sstore(slot, newVersion) } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../utils/EnumerableSet.sol"; import "../utils/Address.sol"; import "../utils/Context.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @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 returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /// @dev Enhanced IERC20 interface interface ISRC20 is IERC20 { /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; /// @dev Enhanced IERC20 interface interface IUSDT { function approve(address spender, uint256 amount) external; function transferFrom( address sender, address recipient, uint256 amount ) external; function allowance(address owner, address spender) external view returns (uint256); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; /// @notice Interface of Affinity interface IAffinity { function allow( address token, address spender, uint256 amount ) external; function allowTetherToken( address token, address spender, uint256 amount ) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
/** * SPDX-License-Identifier: MIT * * Copyright (c) 2018 zOS Global Limited. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ pragma solidity 0.6.12; /** * @notice Implements delegation of calls to other contracts, with proper * forwarding of return values and bubbling of failures. * It defines a fallback function that delegates all calls to the address * returned by the abstract _implementation() internal function. * @dev Forked from https://github.com/zeppelinos/zos-lib/blob/8a16ef3ad17ec7430e3a9d2b5e3f39b8204f8c8d/contracts/upgradeability/Proxy.sol * Modifications: * 1. Reformat and conform to Solidity 0.6 syntax (5/13/20) */ abstract contract Proxy { /** * @dev Fallback function. * Implemented entirely in `_fallback`. */ fallback() external payable { _fallback(); } /** * @return The Address of the implementation. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates execution to an implementation contract. * This is a low level function that doesn't return to its internal call site. * It will return to the external caller whatever the implementation returns. * @param implementation Address to delegate. */ function _delegate(address implementation) internal { assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev Function that is run as the first thing in the fallback function. * Can be redefined in derived contracts to add functionality. * Redefinitions must call super._willFallback(). */ function _willFallback() internal virtual {} /** * @dev fallback implementation. * Extracted to enable manual triggering. */ function _fallback() internal { _willFallback(); _delegate(_implementation()); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "../interfaces/IShorterBone.sol"; /// @notice Storage for TitanProxy with update information contract TitanCoreStorage { IShorterBone internal shorterBone; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; interface IShorterBone { enum IncomeType { TRADING_FEE, FUNDING_FEE, PROPOSAL_FEE, PRIORITY_FEE, WITHDRAW_FEE } function poolTillIn( uint256 poolId, address token, address user, uint256 amount ) external; function poolTillOut( uint256 poolId, address token, address user, uint256 amount ) external; function poolRevenue( uint256 poolId, address user, address token, uint256 amount, IncomeType _type ) external; function tillIn( address tokenAddr, address user, bytes32 toAllyId, uint256 amount ) external; function tillOut( address tokenAddr, bytes32 fromAllyId, address user, uint256 amount ) external; function revenue( bytes32 sendAllyId, address tokenAddr, address from, uint256 amount, IncomeType _type ) external; function getAddress(bytes32 _allyId) external view returns (address); function mintByAlly( bytes32 sendAllyId, address user, uint256 amount ) external; function getTokenInfo(address token) external view returns ( bool inWhiteList, address swapRouter, uint256 multiplier ); function TetherToken() external view returns (address); /// @notice Emitted when keeper reset the ally contract event ResetAlly(bytes32 indexed allyId, address indexed contractAddr); /// @notice Emitted when keeper unregister an ally contract event AllyKilled(bytes32 indexed allyId); /// @notice Emitted when transfer fund from user to an ally contract event TillIn(bytes32 indexed allyId, address indexed user, address indexed tokenAddr, uint256 amount); /// @notice Emitted when transfer fund from an ally contract to user event TillOut(bytes32 indexed allyId, address indexed user, address indexed tokenAddr, uint256 amount); /// @notice Emitted when funds reallocated between allies event Revenue(address indexed tokenAddr, address indexed user, uint256 amount, IncomeType indexed _type); event PoolTillIn(uint256 indexed poolId, address indexed user, uint256 amount); event PoolTillOut(uint256 indexed poolId, address indexed user, uint256 amount); }
{ "optimizer": { "enabled": true, "runs": 200 }, "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":"_SAVIOR","type":"address"},{"internalType":"address","name":"_implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"thisAddr","type":"address"},{"indexed":false,"internalType":"string","name":"shortName","type":"string"},{"indexed":false,"internalType":"string","name":"fullName","type":"string"},{"indexed":false,"internalType":"uint256","name":"secondsPerBlock","type":"uint256"}],"name":"ChainConfigured","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"version","type":"uint256"},{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"ALLY_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KEEPER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROOT_GROUP","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"allow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"allowTetherToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blocksPerDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chainFullName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chainShortName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"shortName","type":"string"},{"internalType":"string","name":"fullName","type":"string"},{"internalType":"uint256","name":"secondsPerBlock","type":"uint256"}],"name":"configChain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"secondsPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSecondsPerBlock","type":"uint256"}],"name":"setSecondsPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUnPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVersion","type":"uint256"},{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001cc938038062001cc9833981810160405260408110156200003757600080fd5b508051602090910151600180546001600160a01b0319166001600160a01b038416179055818180826200007a60008051602062001ca9833981519152826200014e565b620000b57ffc8737ab85eb45125971625a9ebdb75cc78e01d5c1fa80c4c6e5203f47bc4fab60008051602062001ca98339815191526200015e565b620000f07f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0860008051602062001ca98339815191526200015e565b6200012b7fe86976c4e602c63ead69d25aa0d168b0e6e7ea1bb4597e6222f3e80061ff31ac60008051602062001ca98339815191526200015e565b506006805460ff1916905562000143600182620001b0565b505050505062000422565b6200015a828262000268565b5050565b600082815260208190526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526020829052604090912060020155565b620001c681620002e160201b62000f711760201c565b62000218576040805162461bcd60e51b815260206004820152601460248201527f4e6f6e2d636f6e74726163742061646472657373000000000000000000000000604482015290519081900360640190fd5b6200022381620002e7565b6200022e8262000373565b6040516001600160a01b0382169083907f4289d6195cf3c2d2174adf98d0e19d4d2d08887995b99cb7b100e7ffe795820e90600090a35050565b6000828152602081815260409091206200028d91839062000f7762000397821b17901c565b156200015a576200029d620003b7565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b3b151590565b620002fd81620002e160201b62000f711760201c565b6200034f576040805162461bcd60e51b815260206004820152601460248201527f4e6f6e2d636f6e74726163742061646472657373000000000000000000000000604482015290519081900360640190fd5b7fb4cff3ccade8876c60e81b90f014ea636f99d530646ec67090e1cc8a04636f3855565b7ff62412ce1bd823aa31864380419f787378380edf34602844461eeadf8416d53455565b6000620003ae836001600160a01b038416620003bb565b90505b92915050565b3390565b6000620003c983836200040a565b6200040157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620003b1565b506000620003b1565b60009081526001919091016020526040902054151590565b61187780620004326000396000f3fe6080604052600436106101a05760003560e01c80635c60da1b116100ec578063a79fafa41161008a578063ca15c87311610064578063ca15c87314610675578063d547741f1461069f578063e74621b4146106d8578063ec87621c1461071b576101a7565b8063a79fafa414610608578063ab6180cd1461064b578063bd68105914610660576101a7565b80637a7d4937116100c65780637a7d4937146105755780639010d07c1461058a57806391d14854146105ba578063a217fddf146105f3576101a7565b80635c60da1b146103df5780635c975abb146104105780636ee37b2814610439576101a7565b8063364bc15a116101595780633ad06d16116101335780633ad06d16146103525780634cfea68a1461038b57806354fd4d50146103a05780635663896e146103b5576101a7565b8063364bc15a146102ef57806336568abe1461030457806337a66d851461033d576101a7565b806305b0ee78146101b1578063248a9ca31461023b57806329f6f1ff146102775780632f2ff15d1461028c5780633408e470146102c5578063349fdb09146102da576101a7565b366101a757005b6101af610730565b005b3480156101bd57600080fd5b506101c661074a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102005781810151838201526020016101e8565b50505050905090810190601f16801561022d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024757600080fd5b506102656004803603602081101561025e57600080fd5b50356107e0565b60408051918252519081900360200190f35b34801561028357600080fd5b506102656107f5565b34801561029857600080fd5b506101af600480360360408110156102af57600080fd5b50803590602001356001600160a01b0316610819565b3480156102d157600080fd5b50610265610885565b3480156102e657600080fd5b506101af610889565b3480156102fb57600080fd5b506102656108e8565b34801561031057600080fd5b506101af6004803603604081101561032757600080fd5b50803590602001356001600160a01b031661090c565b34801561034957600080fd5b506101af61096d565b34801561035e57600080fd5b506101af6004803603604081101561037557600080fd5b50803590602001356001600160a01b03166109cc565b34801561039757600080fd5b50610265610a2d565b3480156103ac57600080fd5b50610265610a33565b3480156103c157600080fd5b506101af600480360360208110156103d857600080fd5b5035610a42565b3480156103eb57600080fd5b506103f4610a9e565b604080516001600160a01b039092168252519081900360200190f35b34801561041c57600080fd5b50610425610aa8565b604080519115158252519081900360200190f35b34801561044557600080fd5b506101af6004803603606081101561045c57600080fd5b81019060208101813564010000000081111561047757600080fd5b82018360208201111561048957600080fd5b803590602001918460018302840111640100000000831117156104ab57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156104fe57600080fd5b82018360208201111561051057600080fd5b8035906020019184600183028401116401000000008311171561053257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610ab1915050565b34801561058157600080fd5b50610265610c9b565b34801561059657600080fd5b506103f4600480360360408110156105ad57600080fd5b5080359060200135610ca1565b3480156105c657600080fd5b50610425600480360360408110156105dd57600080fd5b50803590602001356001600160a01b0316610cc2565b3480156105ff57600080fd5b50610265610cda565b34801561061457600080fd5b506101af6004803603606081101561062b57600080fd5b506001600160a01b03813581169160208101359091169060400135610cdf565b34801561065757600080fd5b50610265610de2565b34801561066c57600080fd5b506101c6610e06565b34801561068157600080fd5b506102656004803603602081101561069857600080fd5b5035610e64565b3480156106ab57600080fd5b506101af600480360360408110156106c257600080fd5b50803590602001356001600160a01b0316610e7b565b3480156106e457600080fd5b506101af600480360360608110156106fb57600080fd5b506001600160a01b03813581169160208101359091169060400135610ed4565b34801561072757600080fd5b50610265610f5f565b610738610748565b610748610743610f8c565b610fb1565b565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107d65780601f106107ab576101008083540402835291602001916107d6565b820191906000526020600020905b8154815290600101906020018083116107b957829003601f168201915b5050505050905090565b60009081526020819052604090206002015490565b7f08228e6653a7f63b9f7994f3c602d59e00c633542c7e39ac49d55343584bf84581565b60008281526020819052604090206002015461083c90610837610fd5565b610cc2565b6108775760405162461bcd60e51b815260040180806020018281038252602f815260200180611725602f913960400191505060405180910390fd5b6108818282610fd9565b5050565b4690565b6108a16000805160206117a483398151915233610cc2565b6108e0576040805162461bcd60e51b815260206004820152601f6024820152600080516020611754833981519152604482015290519081900360640190fd5b610748611042565b7ffc8737ab85eb45125971625a9ebdb75cc78e01d5c1fa80c4c6e5203f47bc4fab81565b610914610fd5565b6001600160a01b0316816001600160a01b0316146109635760405162461bcd60e51b815260040180806020018281038252602f815260200180611813602f913960400191505060405180910390fd5b61088182826110e2565b6109856000805160206117a483398151915233610cc2565b6109c4576040805162461bcd60e51b815260206004820152601f6024820152600080516020611754833981519152604482015290519081900360640190fd5b61074861114b565b6109e46000805160206117a483398151915233610cc2565b610a23576040805162461bcd60e51b815260206004820152601f6024820152600080516020611754833981519152604482015290519081900360640190fd5b61088182826111ce565b60045490565b6000610a3d61126b565b905090565b610a5a6000805160206117a483398151915233610cc2565b610a99576040805162461bcd60e51b815260206004820152601f6024820152600080516020611754833981519152604482015290519081900360640190fd5b600555565b6000610a3d610f8c565b60065460ff1690565b600154600160a01b900460ff1615610afa5760405162461bcd60e51b815260040180806020018281038252602b8152602001806117e8602b913960400191505060405180910390fd5b60008111610b395760405162461bcd60e51b81526004018080602001828103825260248152602001806117c46024913960400191505060405180910390fd5b8251610b4c90600290602086019061166f565b508151610b6090600390602085019061166f565b50806201518081610b6d57fe5b0460045560058190556001805460ff60a01b1916600160a01b179055604080519081018290526060808252845190820152835130917f1bce38d1a1b2061b5d1286afec57dd1291496ed5a00b341d6535c50b836307ef91869186918691908190602080830191608084019188019080838360005b83811015610bf9578181015183820152602001610be1565b50505050905090810190601f168015610c265780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015610c59578181015183820152602001610c41565b50505050905090810190601f168015610c865780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a2505050565b60055490565b6000828152602081905260408120610cb99083611290565b90505b92915050565b6000828152602081905260408120610cb9908361129c565b600081565b610d097ffc8737ab85eb45125971625a9ebdb75cc78e01d5c1fa80c4c6e5203f47bc4fab33610cc2565b610d5a576040805162461bcd60e51b815260206004820152601e60248201527f416666696e6974793a2043616c6c6572206973206e6f74206b65657065720000604482015290519081900360640190fd5b826001600160a01b031663095ea7b383836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610db157600080fd5b505af1158015610dc5573d6000803e3d6000fd5b505050506040513d6020811015610ddb57600080fd5b5050505050565b7fe86976c4e602c63ead69d25aa0d168b0e6e7ea1bb4597e6222f3e80061ff31ac81565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156107d65780601f106107ab576101008083540402835291602001916107d6565b6000818152602081905260408120610cbc906112b1565b600082815260208190526040902060020154610e9990610837610fd5565b6109635760405162461bcd60e51b81526004018080602001828103825260308152602001806117746030913960400191505060405180910390fd5b610efe7ffc8737ab85eb45125971625a9ebdb75cc78e01d5c1fa80c4c6e5203f47bc4fab33610cc2565b610f4f576040805162461bcd60e51b815260206004820152601e60248201527f416666696e6974793a2043616c6c6572206973206e6f74206b65657065720000604482015290519081900360640190fd5b610f5a8383836112bc565b505050565b6000805160206117a483398151915281565b3b151590565b6000610cb9836001600160a01b038416611431565b7fb4cff3ccade8876c60e81b90f014ea636f99d530646ec67090e1cc8a04636f385490565b3660008037600080366000845af43d6000803e808015610fd0573d6000f35b3d6000fd5b3390565b6000828152602081905260409020610ff19082610f77565b1561088157610ffe610fd5565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61104a610aa8565b611092576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6110c5610fd5565b604080516001600160a01b039092168252519081900360200190a1565b60008281526020819052604090206110fa908261147b565b1561088157611107610fd5565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b611153610aa8565b15611198576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110c5610fd5565b6111d781610f71565b61121f576040805162461bcd60e51b81526020600482015260146024820152734e6f6e2d636f6e7472616374206164647265737360601b604482015290519081900360640190fd5b61122881611490565b61123182611505565b6040516001600160a01b0382169083907f4289d6195cf3c2d2174adf98d0e19d4d2d08887995b99cb7b100e7ffe795820e90600090a35050565b7ff62412ce1bd823aa31864380419f787378380edf34602844461eeadf8416d5345490565b6000610cb98383611529565b6000610cb9836001600160a01b03841661158d565b6000610cbc826115a5565b60408051636eb1769f60e11b81523060048201526001600160a01b038481166024830152915185926000929084169163dd62ed3e91604480820192602092909190829003018186803b15801561131157600080fd5b505afa158015611325573d6000803e3d6000fd5b505050506040513d602081101561133b57600080fd5b5051905082811061134d575050610f5a565b80156113bb576040805163095ea7b360e01b81526001600160a01b03868116600483015260006024830181905292519085169263095ea7b3926044808201939182900301818387803b1580156113a257600080fd5b505af11580156113b6573d6000803e3d6000fd5b505050505b816001600160a01b031663095ea7b385856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561141257600080fd5b505af1158015611426573d6000803e3d6000fd5b505050505050505050565b600061143d838361158d565b61147357508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cbc565b506000610cbc565b6000610cb9836001600160a01b0384166115a9565b61149981610f71565b6114e1576040805162461bcd60e51b81526020600482015260146024820152734e6f6e2d636f6e7472616374206164647265737360601b604482015290519081900360640190fd5b7fb4cff3ccade8876c60e81b90f014ea636f99d530646ec67090e1cc8a04636f3855565b7ff62412ce1bd823aa31864380419f787378380edf34602844461eeadf8416d53455565b8154600090821061156b5760405162461bcd60e51b81526004018080602001828103825260228152602001806117036022913960400191505060405180910390fd5b82600001828154811061157a57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6000818152600183016020526040812054801561166557835460001980830191908101906000908790839081106115dc57fe5b90600052602060002001549050808760000184815481106115f957fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061162957fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610cbc565b6000915050610cbc565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106116b057805160ff19168380011785556116dd565b828001600101855582156116dd579182015b828111156116dd5782518255916020019190600101906116c2565b506116e99291506116ed565b5090565b5b808211156116e957600081556001016116ee56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74416666696e6974793a2043616c6c6572206973206e6f74206d616e6167657200416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08436861696e536368656d613a20496e76616c6964207365636f6e6473506572426c6f636b436861696e536368656d613a205265636f6e66696775726174696f6e206973206e6f7420616c6c6f776564416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122086163bd1b3d416e8658b5701952210f611df1664ce8d7fc622308fb18406d57c64736f6c634300060c003308228e6653a7f63b9f7994f3c602d59e00c633542c7e39ac49d55343584bf84500000000000000000000000080000000000495561f29841ab6e2ddd2bbf88b5400000000000000000000000001c5901f32e75da17f505bfaef6727f8b1349551
Deployed Bytecode
0x6080604052600436106101a05760003560e01c80635c60da1b116100ec578063a79fafa41161008a578063ca15c87311610064578063ca15c87314610675578063d547741f1461069f578063e74621b4146106d8578063ec87621c1461071b576101a7565b8063a79fafa414610608578063ab6180cd1461064b578063bd68105914610660576101a7565b80637a7d4937116100c65780637a7d4937146105755780639010d07c1461058a57806391d14854146105ba578063a217fddf146105f3576101a7565b80635c60da1b146103df5780635c975abb146104105780636ee37b2814610439576101a7565b8063364bc15a116101595780633ad06d16116101335780633ad06d16146103525780634cfea68a1461038b57806354fd4d50146103a05780635663896e146103b5576101a7565b8063364bc15a146102ef57806336568abe1461030457806337a66d851461033d576101a7565b806305b0ee78146101b1578063248a9ca31461023b57806329f6f1ff146102775780632f2ff15d1461028c5780633408e470146102c5578063349fdb09146102da576101a7565b366101a757005b6101af610730565b005b3480156101bd57600080fd5b506101c661074a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102005781810151838201526020016101e8565b50505050905090810190601f16801561022d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024757600080fd5b506102656004803603602081101561025e57600080fd5b50356107e0565b60408051918252519081900360200190f35b34801561028357600080fd5b506102656107f5565b34801561029857600080fd5b506101af600480360360408110156102af57600080fd5b50803590602001356001600160a01b0316610819565b3480156102d157600080fd5b50610265610885565b3480156102e657600080fd5b506101af610889565b3480156102fb57600080fd5b506102656108e8565b34801561031057600080fd5b506101af6004803603604081101561032757600080fd5b50803590602001356001600160a01b031661090c565b34801561034957600080fd5b506101af61096d565b34801561035e57600080fd5b506101af6004803603604081101561037557600080fd5b50803590602001356001600160a01b03166109cc565b34801561039757600080fd5b50610265610a2d565b3480156103ac57600080fd5b50610265610a33565b3480156103c157600080fd5b506101af600480360360208110156103d857600080fd5b5035610a42565b3480156103eb57600080fd5b506103f4610a9e565b604080516001600160a01b039092168252519081900360200190f35b34801561041c57600080fd5b50610425610aa8565b604080519115158252519081900360200190f35b34801561044557600080fd5b506101af6004803603606081101561045c57600080fd5b81019060208101813564010000000081111561047757600080fd5b82018360208201111561048957600080fd5b803590602001918460018302840111640100000000831117156104ab57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156104fe57600080fd5b82018360208201111561051057600080fd5b8035906020019184600183028401116401000000008311171561053257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610ab1915050565b34801561058157600080fd5b50610265610c9b565b34801561059657600080fd5b506103f4600480360360408110156105ad57600080fd5b5080359060200135610ca1565b3480156105c657600080fd5b50610425600480360360408110156105dd57600080fd5b50803590602001356001600160a01b0316610cc2565b3480156105ff57600080fd5b50610265610cda565b34801561061457600080fd5b506101af6004803603606081101561062b57600080fd5b506001600160a01b03813581169160208101359091169060400135610cdf565b34801561065757600080fd5b50610265610de2565b34801561066c57600080fd5b506101c6610e06565b34801561068157600080fd5b506102656004803603602081101561069857600080fd5b5035610e64565b3480156106ab57600080fd5b506101af600480360360408110156106c257600080fd5b50803590602001356001600160a01b0316610e7b565b3480156106e457600080fd5b506101af600480360360608110156106fb57600080fd5b506001600160a01b03813581169160208101359091169060400135610ed4565b34801561072757600080fd5b50610265610f5f565b610738610748565b610748610743610f8c565b610fb1565b565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107d65780601f106107ab576101008083540402835291602001916107d6565b820191906000526020600020905b8154815290600101906020018083116107b957829003601f168201915b5050505050905090565b60009081526020819052604090206002015490565b7f08228e6653a7f63b9f7994f3c602d59e00c633542c7e39ac49d55343584bf84581565b60008281526020819052604090206002015461083c90610837610fd5565b610cc2565b6108775760405162461bcd60e51b815260040180806020018281038252602f815260200180611725602f913960400191505060405180910390fd5b6108818282610fd9565b5050565b4690565b6108a16000805160206117a483398151915233610cc2565b6108e0576040805162461bcd60e51b815260206004820152601f6024820152600080516020611754833981519152604482015290519081900360640190fd5b610748611042565b7ffc8737ab85eb45125971625a9ebdb75cc78e01d5c1fa80c4c6e5203f47bc4fab81565b610914610fd5565b6001600160a01b0316816001600160a01b0316146109635760405162461bcd60e51b815260040180806020018281038252602f815260200180611813602f913960400191505060405180910390fd5b61088182826110e2565b6109856000805160206117a483398151915233610cc2565b6109c4576040805162461bcd60e51b815260206004820152601f6024820152600080516020611754833981519152604482015290519081900360640190fd5b61074861114b565b6109e46000805160206117a483398151915233610cc2565b610a23576040805162461bcd60e51b815260206004820152601f6024820152600080516020611754833981519152604482015290519081900360640190fd5b61088182826111ce565b60045490565b6000610a3d61126b565b905090565b610a5a6000805160206117a483398151915233610cc2565b610a99576040805162461bcd60e51b815260206004820152601f6024820152600080516020611754833981519152604482015290519081900360640190fd5b600555565b6000610a3d610f8c565b60065460ff1690565b600154600160a01b900460ff1615610afa5760405162461bcd60e51b815260040180806020018281038252602b8152602001806117e8602b913960400191505060405180910390fd5b60008111610b395760405162461bcd60e51b81526004018080602001828103825260248152602001806117c46024913960400191505060405180910390fd5b8251610b4c90600290602086019061166f565b508151610b6090600390602085019061166f565b50806201518081610b6d57fe5b0460045560058190556001805460ff60a01b1916600160a01b179055604080519081018290526060808252845190820152835130917f1bce38d1a1b2061b5d1286afec57dd1291496ed5a00b341d6535c50b836307ef91869186918691908190602080830191608084019188019080838360005b83811015610bf9578181015183820152602001610be1565b50505050905090810190601f168015610c265780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015610c59578181015183820152602001610c41565b50505050905090810190601f168015610c865780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a2505050565b60055490565b6000828152602081905260408120610cb99083611290565b90505b92915050565b6000828152602081905260408120610cb9908361129c565b600081565b610d097ffc8737ab85eb45125971625a9ebdb75cc78e01d5c1fa80c4c6e5203f47bc4fab33610cc2565b610d5a576040805162461bcd60e51b815260206004820152601e60248201527f416666696e6974793a2043616c6c6572206973206e6f74206b65657065720000604482015290519081900360640190fd5b826001600160a01b031663095ea7b383836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610db157600080fd5b505af1158015610dc5573d6000803e3d6000fd5b505050506040513d6020811015610ddb57600080fd5b5050505050565b7fe86976c4e602c63ead69d25aa0d168b0e6e7ea1bb4597e6222f3e80061ff31ac81565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156107d65780601f106107ab576101008083540402835291602001916107d6565b6000818152602081905260408120610cbc906112b1565b600082815260208190526040902060020154610e9990610837610fd5565b6109635760405162461bcd60e51b81526004018080602001828103825260308152602001806117746030913960400191505060405180910390fd5b610efe7ffc8737ab85eb45125971625a9ebdb75cc78e01d5c1fa80c4c6e5203f47bc4fab33610cc2565b610f4f576040805162461bcd60e51b815260206004820152601e60248201527f416666696e6974793a2043616c6c6572206973206e6f74206b65657065720000604482015290519081900360640190fd5b610f5a8383836112bc565b505050565b6000805160206117a483398151915281565b3b151590565b6000610cb9836001600160a01b038416611431565b7fb4cff3ccade8876c60e81b90f014ea636f99d530646ec67090e1cc8a04636f385490565b3660008037600080366000845af43d6000803e808015610fd0573d6000f35b3d6000fd5b3390565b6000828152602081905260409020610ff19082610f77565b1561088157610ffe610fd5565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61104a610aa8565b611092576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6110c5610fd5565b604080516001600160a01b039092168252519081900360200190a1565b60008281526020819052604090206110fa908261147b565b1561088157611107610fd5565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b611153610aa8565b15611198576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110c5610fd5565b6111d781610f71565b61121f576040805162461bcd60e51b81526020600482015260146024820152734e6f6e2d636f6e7472616374206164647265737360601b604482015290519081900360640190fd5b61122881611490565b61123182611505565b6040516001600160a01b0382169083907f4289d6195cf3c2d2174adf98d0e19d4d2d08887995b99cb7b100e7ffe795820e90600090a35050565b7ff62412ce1bd823aa31864380419f787378380edf34602844461eeadf8416d5345490565b6000610cb98383611529565b6000610cb9836001600160a01b03841661158d565b6000610cbc826115a5565b60408051636eb1769f60e11b81523060048201526001600160a01b038481166024830152915185926000929084169163dd62ed3e91604480820192602092909190829003018186803b15801561131157600080fd5b505afa158015611325573d6000803e3d6000fd5b505050506040513d602081101561133b57600080fd5b5051905082811061134d575050610f5a565b80156113bb576040805163095ea7b360e01b81526001600160a01b03868116600483015260006024830181905292519085169263095ea7b3926044808201939182900301818387803b1580156113a257600080fd5b505af11580156113b6573d6000803e3d6000fd5b505050505b816001600160a01b031663095ea7b385856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561141257600080fd5b505af1158015611426573d6000803e3d6000fd5b505050505050505050565b600061143d838361158d565b61147357508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cbc565b506000610cbc565b6000610cb9836001600160a01b0384166115a9565b61149981610f71565b6114e1576040805162461bcd60e51b81526020600482015260146024820152734e6f6e2d636f6e7472616374206164647265737360601b604482015290519081900360640190fd5b7fb4cff3ccade8876c60e81b90f014ea636f99d530646ec67090e1cc8a04636f3855565b7ff62412ce1bd823aa31864380419f787378380edf34602844461eeadf8416d53455565b8154600090821061156b5760405162461bcd60e51b81526004018080602001828103825260228152602001806117036022913960400191505060405180910390fd5b82600001828154811061157a57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6000818152600183016020526040812054801561166557835460001980830191908101906000908790839081106115dc57fe5b90600052602060002001549050808760000184815481106115f957fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061162957fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610cbc565b6000915050610cbc565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106116b057805160ff19168380011785556116dd565b828001600101855582156116dd579182015b828111156116dd5782518255916020019190600101906116c2565b506116e99291506116ed565b5090565b5b808211156116e957600081556001016116ee56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74416666696e6974793a2043616c6c6572206973206e6f74206d616e6167657200416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08436861696e536368656d613a20496e76616c6964207365636f6e6473506572426c6f636b436861696e536368656d613a205265636f6e66696775726174696f6e206973206e6f7420616c6c6f776564416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122086163bd1b3d416e8658b5701952210f611df1664ce8d7fc622308fb18406d57c64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000080000000000495561f29841ab6e2ddd2bbf88b5400000000000000000000000001c5901f32e75da17f505bfaef6727f8b1349551
-----Decoded View---------------
Arg [0] : _SAVIOR (address): 0x80000000000495561f29841ab6E2dDd2BBf88b54
Arg [1] : _implementation (address): 0x01C5901f32E75Da17f505bfaef6727f8b1349551
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000080000000000495561f29841ab6e2ddd2bbf88b54
Arg [1] : 00000000000000000000000001c5901f32e75da17f505bfaef6727f8b1349551
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.