ERC-20
Stablecoin
Overview
Max Total Supply
23,314,540.593818900149325047 USE
Holders
225 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1.44108722310635678 USEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
USEToken
Compiler Version
v0.6.11+commit.5ef660b1
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-18 */ //SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; // ==================================================================== // ________ _______ // / ____/ /__ ____ ____ _ / ____(_)___ ____ _____ ________ // / __/ / / _ \/ __ \/ __ `/ / /_ / / __ \/ __ `/ __ \/ ___/ _ \ // / /___/ / __/ / / / /_/ / / __/ / / / / / /_/ / / / / /__/ __/ // /_____/_/\___/_/ /_/\__,_(_)_/ /_/_/ /_/\__,_/_/ /_/\___/\___/ // // ==================================================================== // ====================== Elena Protocol (USE) ======================== // ==================================================================== // Dapp : https://elena.finance // Twitter : https://twitter.com/ElenaProtocol // Telegram: https://t.me/ElenaFinance // ==================================================================== // File: contracts\@openzeppelin\contracts\math\SafeMath.sol // License: MIT /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: contracts\@openzeppelin\contracts\GSN\Context.sol // License: MIT /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: contracts\@openzeppelin\contracts\access\Ownable.sol // License: MIT /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts\@openzeppelin\contracts\utils\EnumerableSet.sol // License: MIT /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: contracts\@openzeppelin\contracts\utils\Address.sol // License: MIT /** * @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 in 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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: contracts\@openzeppelin\contracts\access\AccessControl.sol // License: MIT /** * @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()); } } } // File: contracts\@openzeppelin\contracts\token\ERC20\IERC20.sol // License: MIT /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: contracts\@openzeppelin\contracts\token\ERC20\SafeERC20.sol // License: MIT /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: contracts\Common\ITradeMining.sol // License: MIT interface ITradeMining { function tradeMining(address sender, address receiver, address operator, uint256 amount) external; } // File: contracts\Common\ERC20Custom.sol // License: MIT // Due to compiling issues, _name, _symbol, and _decimals were removed /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20Custom is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) internal _balances; mapping (address => mapping (address => uint256)) internal _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address.approve(address spender, uint256 amount) */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for `accounts`'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal virtual { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of `from`'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of `from`'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:using-hooks.adoc[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: contracts\Oracle\IUniswapPairOracle.sol // License: MIT // Fixed window oracle that recomputes the average price for the entire period once every period // Note that the price average is only guaranteed to be over at least 1 period, but may be over a longer period interface IUniswapPairOracle { function getPairToken(address token) external view returns(address); function containsToken(address token) external view returns(bool); function getSwapTokenReserve(address token) external view returns(uint256); function update() external returns(bool); // Note this will always return 0 before update has been called successfully for the first time. function consult(address token, uint amountIn) external view returns (uint amountOut); } // File: contracts\USE\IUSEStablecoin.sol // License: MIT interface IUSEStablecoin { 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 owner_address() external returns (address); function creator_address() external returns (address); function timelock_address() external returns (address); function genesis_supply() external returns (uint256); function refresh_cooldown() external returns (uint256); function price_target() external returns (uint256); function price_band() external returns (uint256); function DEFAULT_ADMIN_ADDRESS() external returns (address); function COLLATERAL_RATIO_PAUSER() external returns (bytes32); function collateral_ratio_paused() external returns (bool); function last_call_time() external returns (uint256); function USEDAIOracle() external returns (IUniswapPairOracle); function USESharesOracle() external returns (IUniswapPairOracle); /* ========== VIEWS ========== */ function use_pools(address a) external view returns (bool); function global_collateral_ratio() external view returns (uint256); function use_price() external view returns (uint256); function share_price() external view returns (uint256); function share_price_in_use() external view returns (uint256); function globalCollateralValue() external view returns (uint256); /* ========== PUBLIC FUNCTIONS ========== */ function refreshCollateralRatio() external; function swapCollateralAmount() external view returns(uint256); function pool_mint(address m_address, uint256 m_amount) external; function pool_burn_from(address b_address, uint256 b_amount) external; function burn(uint256 amount) external; } // File: contracts\USE\Pools\IUSEPool.sol // License: MIT interface IUSEPool { function collatDollarBalance() external view returns (uint256); } // File: contracts\USE\USEToken.sol // License: MIT contract USEToken is ERC20Custom, AccessControl { using SafeMath for uint256; /* ========== STATE VARIABLES ========== */ enum PriceChoice { USE, SHARE } IUniswapPairOracle public USEDAIOracle; IUniswapPairOracle public USESharesOracle; string public symbol; string public name; uint8 public constant decimals = 18; address public owner_address; address public creator_address; address public timelock_address; // Governance timelock address ITradeMining public use_trade_mining; uint256 public constant genesis_supply = 1000e18; //help with establishing the Uniswap pools, as they need liquidity // The addresses in this array are added by the oracle and these contracts are able to mint USE address[] public use_pools_array; // Mapping is also used for faster verification mapping(address => bool) public use_pools; // Constants for various precisions uint256 private constant PRICE_PRECISION = 1e6; uint256 public global_collateral_ratio; // 6 decimals of precision, e.g. 924102 = 0.924102 uint256 public share_step; // Amount to change the collateralization ratio by upon refreshCollateralRatio() uint256 public refresh_cooldown; // Seconds to wait before being able to run refreshCollateralRatio() again uint256 public price_target; // The price of USE at which the collateral ratio will respond to; this value is only used for the collateral ratio mechanism and not for minting and redeeming which are hardcoded at $1 uint256 public price_band; // The bound above and below the price target at which the refreshCollateralRatio() will not change the collateral ratio address public DEFAULT_ADMIN_ADDRESS; bytes32 public constant COLLATERAL_RATIO_PAUSER = keccak256("COLLATERAL_RATIO_PAUSER"); bool public collateral_ratio_paused = false; /* ========== MODIFIERS ========== */ modifier onlyCollateralRatioPauser() { require(hasRole(COLLATERAL_RATIO_PAUSER, msg.sender)); _; } modifier onlyPools() { require(use_pools[msg.sender] == true, "Only USE pools can call this function"); _; } modifier onlyByOwnerOrGovernance() { require(msg.sender == owner_address || msg.sender == timelock_address , "You are not the owner, or timelock"); _; } modifier onlyByOwnerGovernanceOrPool() { require( msg.sender == owner_address || msg.sender == timelock_address || use_pools[msg.sender] == true, "You are not the owner, the governance timelock, or a pool"); _; } /* ========== CONSTRUCTOR ========== */ constructor( string memory _name, string memory _symbol, address _timelock_address ) public { name = _name; symbol = _symbol; creator_address = _msgSender(); DEFAULT_ADMIN_ADDRESS = _msgSender(); owner_address = _msgSender(); timelock_address = _timelock_address; _mint(creator_address, genesis_supply); _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); grantRole(COLLATERAL_RATIO_PAUSER, creator_address); grantRole(COLLATERAL_RATIO_PAUSER, timelock_address); share_step = 2500; // 6 decimals of precision, equal to 0.25% global_collateral_ratio = 1000000; // USE system starts off fully collateralized (6 decimals of precision) refresh_cooldown = 3600; // Refresh cooldown period is set to 1 hour (3600 seconds) at genesis price_target = 1000000; // Collateral ratio will adjust according to the $1 price target at genesis price_band = 5000; // Collateral ratio will not adjust if between $0.995 and $1.005 at genesis } function _transfer(address sender,address recipient, uint256 amount) internal override { super._transfer(sender, recipient, amount); if (address(use_trade_mining) != address(0)) { use_trade_mining.tradeMining(sender, recipient, msg.sender, amount); } } /* ========== VIEWS ========== */ // Returns X USE = 1 USD function use_price() public view returns (uint256) { address usd_address = USEDAIOracle.getPairToken(address(this)); return uint256(USEDAIOracle.consult(usd_address, PRICE_PRECISION)); } // Returns X Share = 1 USE function share_price_in_use() public view returns (uint256) { return uint256(USESharesOracle.consult(address(this), PRICE_PRECISION)); } // Returns X Share = 1 USD function share_price() public view returns (uint256) { uint256 _use_price = use_price(); return share_price_in_use().mul(_use_price).div(PRICE_PRECISION); } // Iterate through all USE pools and calculate all value of collateral in all pools globally function globalCollateralValue() public view returns (uint256) { uint256 total_collateral_value_d18 = 0; for (uint i = 0; i < use_pools_array.length; i++){ // Exclude null addresses if (use_pools_array[i] != address(0)){ total_collateral_value_d18 = total_collateral_value_d18.add(IUSEPool(use_pools_array[i]).collatDollarBalance()); } } return total_collateral_value_d18; } /* ========== PUBLIC FUNCTIONS ========== */ // There needs to be a time interval that this can be called. Otherwise it can be called multiple times per expansion. uint256 public last_call_time; // Last time the refreshCollateralRatio function was called function refreshCollateralRatio() public onlyCollateralRatioPauser{ require(collateral_ratio_paused == false, "Collateral Ratio has been paused"); uint256 share_price_cur = share_price(); require(block.timestamp - last_call_time >= refresh_cooldown, "Must wait for the refresh cooldown since last refresh"); // Step increments are 0.25% (upon genesis, changable by setUSEStep()) if (share_price_cur > price_target.add(price_band)) { //decrease collateral ratio if(global_collateral_ratio <= share_step){ //if within a step of 0, go to 0 global_collateral_ratio = 0; } else { global_collateral_ratio = global_collateral_ratio.sub(share_step); } } else if (share_price_cur < price_target.sub(price_band)) { //increase collateral ratio if(global_collateral_ratio.add(share_step) >= 1000000){ global_collateral_ratio = 1000000; // cap collateral ratio at 1.000000 } else { global_collateral_ratio = global_collateral_ratio.add(share_step); } } last_call_time = block.timestamp; // Set the time of the last expansion } function swapCollateralAmount() external view returns(uint256){ address usd_address = USEDAIOracle.getPairToken(address(this)); return USEDAIOracle.getSwapTokenReserve(usd_address); } /* ========== RESTRICTED FUNCTIONS ========== */ // Used by pools when user redeems function pool_burn_from(address b_address, uint256 b_amount) public onlyPools { super._burnFrom(b_address, b_amount); emit USETokenBurned(b_address, msg.sender, b_amount); } // This function is what other USE pools will call to mint new USE function pool_mint(address m_address, uint256 m_amount) public onlyPools { super._mint(m_address, m_amount); emit USETokenMinted(msg.sender, m_address, m_amount); } // Adds collateral addresses supported, such as tether and busd, must be ERC20 function addPool(address pool_address) public onlyByOwnerOrGovernance { require(use_pools[pool_address] == false, "address already exists"); use_pools[pool_address] = true; use_pools_array.push(pool_address); } // Remove a pool function removePool(address pool_address) public onlyByOwnerOrGovernance { require(use_pools[pool_address] == true, "address doesn't exist already"); // Delete from the mapping delete use_pools[pool_address]; // 'Delete' from the array by setting the address to 0x0 for (uint i = 0; i < use_pools_array.length; i++){ if (use_pools_array[i] == pool_address) { use_pools_array[i] = address(0); // This will leave a null in the array and keep the indices the same break; } } } function setOwner(address _owner_address) external onlyByOwnerOrGovernance { owner_address = _owner_address; } function setUSETradeMiningPool(address _use_trade_mining) external onlyByOwnerOrGovernance { use_trade_mining = ITradeMining(_use_trade_mining); } function setUSEStep(uint256 _new_step) public onlyByOwnerOrGovernance { share_step = _new_step; } function setPriceTarget (uint256 _new_price_target) public onlyByOwnerOrGovernance { price_target = _new_price_target; } function setRefreshCooldown(uint256 _new_cooldown) public onlyByOwnerOrGovernance { refresh_cooldown = _new_cooldown; } function setCollateralRatio(uint256 _ratio) public onlyByOwnerOrGovernance { global_collateral_ratio = _ratio; } function setTimelock(address new_timelock) external onlyByOwnerOrGovernance { timelock_address = new_timelock; } function setPriceBand(uint256 _price_band) external onlyByOwnerOrGovernance { price_band = _price_band; } // Sets the use_usd(Dai) Uniswap oracle address function setUSEDAIOracle(address _oracle) public onlyByOwnerOrGovernance { USEDAIOracle = IUniswapPairOracle(_oracle); require(USEDAIOracle.containsToken(address(this)),"!use"); } // Sets the use_elena Uniswap oracle address function setUSESharesOracle(address _oracle) public onlyByOwnerOrGovernance { USESharesOracle = IUniswapPairOracle(_oracle); require(USESharesOracle.containsToken(address(this)),"!use"); } function toggleCollateralRatio() public onlyCollateralRatioPauser { collateral_ratio_paused = !collateral_ratio_paused; } /* ========== EVENTS ========== */ // Track USE burned event USETokenBurned(address indexed from, address indexed to, uint256 amount); // Track USE minted event USETokenMinted(address indexed from, address indexed to, uint256 amount); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_timelock_address","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":[{"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"USETokenBurned","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":"amount","type":"uint256"}],"name":"USETokenMinted","type":"event"},{"inputs":[],"name":"COLLATERAL_RATIO_PAUSER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"USEDAIOracle","outputs":[{"internalType":"contract IUniswapPairOracle","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"USESharesOracle","outputs":[{"internalType":"contract IUniswapPairOracle","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool_address","type":"address"}],"name":"addPool","outputs":[],"stateMutability":"nonpayable","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":"collateral_ratio_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creator_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"genesis_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[],"name":"globalCollateralValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"global_collateral_ratio","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":[{"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":"last_call_time","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"b_address","type":"address"},{"internalType":"uint256","name":"b_amount","type":"uint256"}],"name":"pool_burn_from","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"m_address","type":"address"},{"internalType":"uint256","name":"m_amount","type":"uint256"}],"name":"pool_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price_band","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price_target","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refreshCollateralRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"refresh_cooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool_address","type":"address"}],"name":"removePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ratio","type":"uint256"}],"name":"setCollateralRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner_address","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price_band","type":"uint256"}],"name":"setPriceBand","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_price_target","type":"uint256"}],"name":"setPriceTarget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_cooldown","type":"uint256"}],"name":"setRefreshCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"new_timelock","type":"address"}],"name":"setTimelock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oracle","type":"address"}],"name":"setUSEDAIOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oracle","type":"address"}],"name":"setUSESharesOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_step","type":"uint256"}],"name":"setUSEStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_use_trade_mining","type":"address"}],"name":"setUSETradeMiningPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"share_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"share_price_in_use","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"share_step","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapCollateralAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timelock_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleCollateralRatio","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"use_pools","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"use_pools_array","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"use_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"use_trade_mining","outputs":[{"internalType":"contract ITradeMining","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526013805460ff60a01b191690553480156200001e57600080fd5b506040516200308838038062003088833981016040819052620000419162000618565b825162000056906007906020860190620004cf565b5081516200006c906006906020850190620004cf565b50620000806001600160e01b03620001d416565b600980546001600160a01b0319166001600160a01b0392909216919091179055620000aa620001d4565b601380546001600160a01b0319166001600160a01b0392909216919091179055620000d4620001d4565b600880546001600160a01b03199081166001600160a01b0393841617909155600a8054909116838316179055600954620001199116683635c9adc5dea00000620001d9565b620001416000620001326001600160e01b03620001d416565b6001600160e01b03620002ce16565b620001776040516200015390620006a1565b6040519081900390206009546001600160a01b03166001600160e01b03620002e716565b620001ad6040516200018990620006a1565b604051908190039020600a546001600160a01b03166001600160e01b03620002e716565b50506109c4600f5550620f4240600e819055610e1060105560115561138860125562000790565b335b90565b6001600160a01b0382166200020b5760405162461bcd60e51b8152600401620002029062000750565b60405180910390fd5b62000222600083836001600160e01b036200033f16565b6200023e816002546200034460201b620018771790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620002719183906200187762000344821b17901c565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002c290859062000787565b60405180910390a35050565b620002e382826001600160e01b036200037516565b5050565b6000828152600360205260409020600201546200032090620003116001600160e01b03620001d416565b6001600160e01b03620003f916565b620002ce5760405162461bcd60e51b81526004016200020290620006ca565b505050565b6000828201838110156200036c5760405162461bcd60e51b8152600401620002029062000719565b90505b92915050565b60008281526003602090815260409091206200039c9183906200189c6200041f821b17901c565b15620002e357620003b56001600160e01b03620001d416565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260036020908152604082206200036c918490620018b16200043f821b17901c565b60006200036c836001600160a01b0384166001600160e01b036200045f16565b60006200036c836001600160a01b0384166001600160e01b03620004b716565b60006200047683836001600160e01b03620004b716565b620004ae575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200036f565b5060006200036f565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200051257805160ff191683800117855562000542565b8280016001018555821562000542579182015b828111156200054257825182559160200191906001019062000525565b506200055092915062000554565b5090565b620001d691905b808211156200055057600081556001016200055b565b600082601f83011262000582578081fd5b81516001600160401b038082111562000599578283fd5b6040516020601f8401601f1916820181018381118382101715620005bb578586fd5b80604052508194508382528681858801011115620005d857600080fd5b600092505b83831015620005fc5785830181015182840182015291820191620005dd565b838311156200060e5760008185840101525b5050505092915050565b6000806000606084860312156200062d578283fd5b83516001600160401b038082111562000644578485fd5b620006528783880162000571565b9450602086015191508082111562000668578384fd5b50620006778682870162000571565b604086015190935090506001600160a01b038116811462000696578182fd5b809150509250925092565b7f434f4c4c41544552414c5f524154494f5f504155534552000000000000000000815260170190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b6128e880620007a06000396000f3fe608060405234801561001057600080fd5b50600436106103a35760003560e01c806370a08231116101e9578063b4f56b261161010f578063d547741f116100ad578063dc6663c71161007c578063dc6663c7146106fe578063dd62ed3e14610706578063e26e6ce214610719578063f8249f1314610721576103a3565b8063d547741f146106b2578063d914cd4b146106c5578063d9583579146106d8578063da7cd9e1146106eb576103a3565b8063bef40ec8116100e9578063bef40ec814610687578063c03f7be31461068f578063ca15c87314610697578063d2d97b06146106aa576103a3565b8063b4f56b2614610659578063b5955e9d1461066c578063bdacb30314610674576103a3565b806395d89b4111610187578063a8a778ae11610156578063a8a778ae14610623578063a9059cbb14610636578063aeafdb9c14610649578063b0f188a314610651576103a3565b806395d89b41146105ed578063a217fddf146105f5578063a457c2d7146105fd578063a5c9ec1f14610610576103a3565b806380edef8e116101c357806380edef8e146105b757806387a140c3146105bf5780639010d07c146105c757806391d14854146105da576103a3565b806370a08231146105895780637387f41b1461059c57806379cc6790146105a4576103a3565b806335467d5d116102ce578063408ab10f1161026c57806351e238e31161023b57806351e238e314610553578063545055171461055b5780636060663e146105635780636140133b14610576576103a3565b8063408ab10f146105125780634125caa31461052557806342966c68146105385780634bd0be231461054b576103a3565b806339509351116102a857806339509351146104d15780633b7d0946146104e45780633ea441e0146104f75780634013124a1461050a576103a3565b806335467d5d146104a157806335b5670a146104b657806336568abe146104be576103a3565b806323b872dd116103465780632da146da116103155780632da146da146104695780632eb9771b146104715780632f2ff15d14610479578063313ce5671461048c576103a3565b806323b872dd14610433578063248a9ca3146104465780632853fb10146104595780632cb4f63e14610461576103a3565b806313af40351161038257806313af4035146103fb57806318160ddd146104105780631c5df1e5146104185780632258750a1461042b576103a3565b806278f4c7146103a857806306fdde03146103c6578063095ea7b3146103db575b600080fd5b6103b0610734565b6040516103bd91906122b5565b60405180910390f35b6103ce61083c565b6040516103bd91906122be565b6103ee6103e936600461216a565b6108ca565b6040516103bd91906122aa565b61040e6104093660046120ba565b6108e8565b005b6103b0610952565b61040e6104263660046121b5565b610958565b6103b061099c565b6103ee61044136600461212a565b6109a2565b6103b06104543660046121b5565b610a2f565b6103b0610a44565b6103b0610a4a565b6103b0610a50565b6103b0610b07565b61040e6104873660046121cd565b610b0d565b610494610b55565b6040516103bd91906127d6565b6104a9610b5a565b6040516103bd9190612253565b6104a9610b69565b61040e6104cc3660046121cd565b610b78565b6103ee6104df36600461216a565b610bba565b61040e6104f23660046120ba565b610c0e565b6104a96105053660046121b5565b610d31565b61040e610d58565b61040e6105203660046121b5565b610e91565b61040e6105333660046120ba565b610ed5565b61040e6105463660046121b5565b610fc8565b6104a9610fd9565b6103b0610fe8565b6103b0610ff5565b61040e6105713660046121b5565b61100c565b61040e6105843660046121b5565b611050565b6103b06105973660046120ba565b611094565b6104a96110af565b61040e6105b236600461216a565b6110be565b6104a9611119565b6103ee611128565b6104a96105d53660046121f1565b611138565b6103ee6105e83660046121cd565b61115d565b6103ce61117b565b6103b06111d6565b6103ee61060b36600461216a565b6111db565b61040e61061e3660046121b5565b611249565b61040e61063136600461216a565b61128d565b6103ee61064436600461216a565b61131a565b6103b061132e565b6103b06113b9565b61040e61066736600461216a565b6113bf565b6103b0611440565b61040e6106823660046120ba565b611478565b61040e6114d9565b6103b0611512565b6103b06106a53660046121b5565b611518565b6103b061152f565b61040e6106c03660046121cd565b61161f565b61040e6106d33660046120ba565b611659565b6103ee6106e63660046120ba565b611737565b61040e6106f93660046120ba565b61174c565b6104a96117cd565b6103b06107143660046120f2565b6117dc565b6104a9611807565b61040e61072f3660046120ba565b611816565b600480546040516371c59d7b60e01b815260009283926001600160a01b0316916371c59d7b9161076691309101612253565b60206040518083038186803b15801561077e57600080fd5b505afa158015610792573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b691906120d6565b6004805460405163777f89d160e11b81529293506001600160a01b03169163eeff13a2916107e691859101612253565b60206040518083038186803b1580156107fe57600080fd5b505afa158015610812573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108369190612212565b91505090565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b505050505081565b60006108de6108d76118c6565b84846118ca565b5060015b92915050565b6008546001600160a01b031633148061090b5750600a546001600160a01b031633145b6109305760405162461bcd60e51b8152600401610927906124b3565b60405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b6008546001600160a01b031633148061097b5750600a546001600160a01b031633145b6109975760405162461bcd60e51b8152600401610927906124b3565b601055565b60145481565b60006109af84848461197e565b610a25846109bb6118c6565b610a2085604051806060016040528060288152602001612842602891396001600160a01b038a166000908152600160205260408120906109f96118c6565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611a0716565b6118ca565b5060019392505050565b60009081526003602052604090206002015490565b60125481565b60115481565b600480546040516371c59d7b60e01b815260009283926001600160a01b0316916371c59d7b91610a8291309101612253565b60206040518083038186803b158015610a9a57600080fd5b505afa158015610aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad291906120d6565b60048054604051633ddac95360e01b81529293506001600160a01b031691633ddac953916107e6918591620f42409101612291565b600e5481565b600082815260036020526040902060020154610b2b906105e86118c6565b610b475760405162461bcd60e51b8152600401610927906123b4565b610b518282611a33565b5050565b601281565b6013546001600160a01b031681565b600b546001600160a01b031681565b610b806118c6565b6001600160a01b0316816001600160a01b031614610bb05760405162461bcd60e51b815260040161092790612750565b610b518282611aa2565b60006108de610bc76118c6565b84610a208560016000610bd86118c6565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61187716565b6008546001600160a01b0316331480610c315750600a546001600160a01b031633145b610c4d5760405162461bcd60e51b8152600401610927906124b3565b6001600160a01b0381166000908152600d602052604090205460ff161515600114610c8a5760405162461bcd60e51b81526004016109279061247c565b6001600160a01b0381166000908152600d60205260408120805460ff191690555b600c54811015610b5157816001600160a01b0316600c8281548110610ccc57fe5b6000918252602090912001546001600160a01b03161415610d29576000600c8281548110610cf657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610b51565b600101610cab565b600c8181548110610d3e57fe5b6000918252602090912001546001600160a01b0316905081565b610d75604051610d679061222a565b60405180910390203361115d565b610d7e57600080fd5b601354600160a01b900460ff1615610da85760405162461bcd60e51b8152600401610927906126eb565b6000610db2611440565b905060105460145442031015610dda5760405162461bcd60e51b815260040161092790612651565b601254601154610def9163ffffffff61187716565b811115610e2957600f54600e5411610e0b576000600e55610e24565b600f54600e54610e209163ffffffff611b1116565b600e555b610e8a565b601254601154610e3e9163ffffffff611b1116565b811015610e8a57620f4240610e60600f54600e5461187790919063ffffffff16565b10610e7157620f4240600e55610e8a565b600f54600e54610e869163ffffffff61187716565b600e555b5042601455565b6008546001600160a01b0316331480610eb45750600a546001600160a01b031633145b610ed05760405162461bcd60e51b8152600401610927906124b3565b601155565b6008546001600160a01b0316331480610ef85750600a546001600160a01b031633145b610f145760405162461bcd60e51b8152600401610927906124b3565b600580546001600160a01b0319166001600160a01b03838116919091179182905560405163733d805360e01b815291169063733d805390610f59903090600401612253565b60206040518083038186803b158015610f7157600080fd5b505afa158015610f85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa99190612195565b610fc55760405162461bcd60e51b815260040161092790612311565b50565b610fc5610fd36118c6565b82611b53565b6009546001600160a01b031681565b683635c9adc5dea0000081565b6040516110019061222a565b604051809103902081565b6008546001600160a01b031633148061102f5750600a546001600160a01b031633145b61104b5760405162461bcd60e51b8152600401610927906124b3565b600e55565b6008546001600160a01b03163314806110735750600a546001600160a01b031633145b61108f5760405162461bcd60e51b8152600401610927906124b3565b601255565b6001600160a01b031660009081526020819052604090205490565b6004546001600160a01b031681565b60006110f68260405180606001604052806024815260200161286a602491396110e9866107146118c6565b919063ffffffff611a0716565b905061110a836111046118c6565b836118ca565b6111148383611b53565b505050565b6008546001600160a01b031681565b601354600160a01b900460ff1681565b6000828152600360205260408120611156908363ffffffff611c3516565b9392505050565b6000828152600360205260408120611156908363ffffffff6118b116565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108c25780601f10610897576101008083540402835291602001916108c2565b600081565b60006108de6111e86118c6565b84610a208560405180606001604052806025815260200161288e60259139600160006112126118c6565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611a0716565b6008546001600160a01b031633148061126c5750600a546001600160a01b031633145b6112885760405162461bcd60e51b8152600401610927906124b3565b600f55565b336000908152600d602052604090205460ff1615156001146112c15760405162461bcd60e51b8152600401610927906126a6565b6112cb8282611c41565b336001600160a01b0316826001600160a01b03167f167eecf047f4ab2300ae6c391a4e5dadc24c0f85bcdb5db183e4cf2811785daf8360405161130e91906122b5565b60405180910390a35050565b60006108de6113276118c6565b848461197e565b600554604051633ddac95360e01b81526000916001600160a01b031690633ddac95390611364903090620f424090600401612291565b60206040518083038186803b15801561137c57600080fd5b505afa158015611390573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b49190612212565b905090565b600f5481565b336000908152600d602052604090205460ff1615156001146113f35760405162461bcd60e51b8152600401610927906126a6565b6113fd8282611c95565b816001600160a01b0316336001600160a01b03167fc26a91f13b7646eb39313c44e6f80e57bd6fbbe2bb13f4b40ff345e89acd4f6b8360405161130e91906122b5565b60008061144b610a50565b9050610836620f424061146c8361146061132e565b9063ffffffff611d5516565b9063ffffffff611d8f16565b6008546001600160a01b031633148061149b5750600a546001600160a01b031633145b6114b75760405162461bcd60e51b8152600401610927906124b3565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6114e8604051610d679061222a565b6114f157600080fd5b6013805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60105481565b60008181526003602052604081206108e290611dd1565b600080805b600c548110156116195760006001600160a01b0316600c828154811061155657fe5b6000918252602090912001546001600160a01b0316146116115761160e600c828154811061158057fe5b60009182526020918290200154604080516305ca132560e21b815290516001600160a01b03909216926317284c9492600480840193829003018186803b1580156115c957600080fd5b505afa1580156115dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116019190612212565b839063ffffffff61187716565b91505b600101611534565b50905090565b60008281526003602052604090206002015461163d906105e86118c6565b610bb05760405162461bcd60e51b8152600401610927906124f6565b6008546001600160a01b031633148061167c5750600a546001600160a01b031633145b6116985760405162461bcd60e51b8152600401610927906124b3565b6001600160a01b0381166000908152600d602052604090205460ff16156116d15760405162461bcd60e51b815260040161092790612720565b6001600160a01b03166000818152600d60205260408120805460ff19166001908117909155600c805491820181559091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319169091179055565b600d6020526000908152604090205460ff1681565b6008546001600160a01b031633148061176f5750600a546001600160a01b031633145b61178b5760405162461bcd60e51b8152600401610927906124b3565b600480546001600160a01b0319166001600160a01b038381169190911780835560405163733d805360e01b815291169163733d805391610f5991309101612253565b600a546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031681565b6008546001600160a01b03163314806118395750600a546001600160a01b031633145b6118555760405162461bcd60e51b8152600401610927906124b3565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000828201838110156111565760405162461bcd60e51b815260040161092790612445565b6000611156836001600160a01b038416611ddc565b6000611156836001600160a01b038416611e26565b3390565b6001600160a01b0383166118f05760405162461bcd60e51b81526004016109279061260d565b6001600160a01b0382166119165760405162461bcd60e51b815260040161092790612403565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906119719085906122b5565b60405180910390a3505050565b611989838383611e3e565b600b546001600160a01b03161561111457600b546040516347fdb0d560e11b81526001600160a01b0390911690638ffb61aa906119d0908690869033908790600401612267565b600060405180830381600087803b1580156119ea57600080fd5b505af11580156119fe573d6000803e3d6000fd5b50505050505050565b60008184841115611a2b5760405162461bcd60e51b815260040161092791906122be565b505050900390565b6000828152600360205260409020611a51908263ffffffff61189c16565b15610b5157611a5e6118c6565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600360205260409020611ac0908263ffffffff611f5f16565b15610b5157611acd6118c6565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600061115683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a07565b6001600160a01b038216611b795760405162461bcd60e51b815260040161092790612587565b611b8582600083611114565b611bc8816040518060600160405280602281526020016127fa602291396001600160a01b038516600090815260208190526040902054919063ffffffff611a0716565b6001600160a01b038316600090815260208190526040902055600254611bf4908263ffffffff611b1116565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061130e9085906122b5565b60006111568383611f74565b611c4b8282611b53565b610b5182611c576118c6565b610a208460405180606001604052806024815260200161286a602491396001600160a01b0388166000908152600160205260408120906109f96118c6565b6001600160a01b038216611cbb5760405162461bcd60e51b81526004016109279061279f565b611cc760008383611114565b600254611cda908263ffffffff61187716565b6002556001600160a01b038216600090815260208190526040902054611d06908263ffffffff61187716565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061130e9085906122b5565b600082611d64575060006108e2565b82820282848281611d7157fe5b04146111565760405162461bcd60e51b815260040161092790612546565b600061115683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611fb9565b60006108e282611ff0565b6000611de88383611e26565b611e1e575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108e2565b5060006108e2565b60009081526001919091016020526040902054151590565b6001600160a01b038316611e645760405162461bcd60e51b8152600401610927906125c8565b6001600160a01b038216611e8a5760405162461bcd60e51b815260040161092790612371565b611e95838383611114565b611ed88160405180606001604052806026815260200161281c602691396001600160a01b038616600090815260208190526040902054919063ffffffff611a0716565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f0d908263ffffffff61187716565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119719085906122b5565b6000611156836001600160a01b038416611ff4565b81546000908210611f975760405162461bcd60e51b81526004016109279061232f565b826000018281548110611fa657fe5b9060005260206000200154905092915050565b60008183611fda5760405162461bcd60e51b815260040161092791906122be565b506000838581611fe657fe5b0495945050505050565b5490565b600081815260018301602052604081205480156120b0578354600019808301919081019060009087908390811061202757fe5b906000526020600020015490508087600001848154811061204457fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061207457fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108e2565b60009150506108e2565b6000602082840312156120cb578081fd5b8135611156816127e4565b6000602082840312156120e7578081fd5b8151611156816127e4565b60008060408385031215612104578081fd5b823561210f816127e4565b9150602083013561211f816127e4565b809150509250929050565b60008060006060848603121561213e578081fd5b8335612149816127e4565b92506020840135612159816127e4565b929592945050506040919091013590565b6000806040838503121561217c578182fd5b8235612187816127e4565b946020939093013593505050565b6000602082840312156121a6578081fd5b81518015158114611156578182fd5b6000602082840312156121c6578081fd5b5035919050565b600080604083850312156121df578182fd5b82359150602083013561211f816127e4565b60008060408385031215612203578182fd5b50508035926020909101359150565b600060208284031215612223578081fd5b5051919050565b7f434f4c4c41544552414c5f524154494f5f504155534552000000000000000000815260170190565b6001600160a01b0391909116815260200190565b6001600160a01b039485168152928416602084015292166040820152606081019190915260800190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b818110156122ea578581018301518582016040015282016122ce565b818111156122fb5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600490820152632175736560e01b604082015260600190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601d908201527f6164647265737320646f65736e277420657869737420616c7265616479000000604082015260600190565b60208082526023908201527f596f7520617265206e6f7420746865206f776e65722c20206f722074696d656c6040820152626f636b60e81b606082015260800190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526035908201527f4d757374207761697420666f7220746865207265667265736820636f6f6c646f6040820152740eedc40e6d2dcc6ca40d8c2e6e840e4cacce4cae6d605b1b606082015260800190565b60208082526025908201527f4f6e6c792055534520706f6f6c732063616e2063616c6c20746869732066756e60408201526431ba34b7b760d91b606082015260800190565b6020808252818101527f436f6c6c61746572616c20526174696f20686173206265656e20706175736564604082015260600190565b6020808252601690820152756164647265737320616c72656164792065786973747360501b604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60ff91909116815260200190565b6001600160a01b0381168114610fc557600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a9d917cc1b8924a0bb314869adfd89a65a596ef091562c419a9a8e5d9e1b308f64736f6c634300060b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000292b1cae42d10d4ef3f16944e7623e06cab9eae60000000000000000000000000000000000000000000000000000000000000008456c656e6155534400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035553450000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103a35760003560e01c806370a08231116101e9578063b4f56b261161010f578063d547741f116100ad578063dc6663c71161007c578063dc6663c7146106fe578063dd62ed3e14610706578063e26e6ce214610719578063f8249f1314610721576103a3565b8063d547741f146106b2578063d914cd4b146106c5578063d9583579146106d8578063da7cd9e1146106eb576103a3565b8063bef40ec8116100e9578063bef40ec814610687578063c03f7be31461068f578063ca15c87314610697578063d2d97b06146106aa576103a3565b8063b4f56b2614610659578063b5955e9d1461066c578063bdacb30314610674576103a3565b806395d89b4111610187578063a8a778ae11610156578063a8a778ae14610623578063a9059cbb14610636578063aeafdb9c14610649578063b0f188a314610651576103a3565b806395d89b41146105ed578063a217fddf146105f5578063a457c2d7146105fd578063a5c9ec1f14610610576103a3565b806380edef8e116101c357806380edef8e146105b757806387a140c3146105bf5780639010d07c146105c757806391d14854146105da576103a3565b806370a08231146105895780637387f41b1461059c57806379cc6790146105a4576103a3565b806335467d5d116102ce578063408ab10f1161026c57806351e238e31161023b57806351e238e314610553578063545055171461055b5780636060663e146105635780636140133b14610576576103a3565b8063408ab10f146105125780634125caa31461052557806342966c68146105385780634bd0be231461054b576103a3565b806339509351116102a857806339509351146104d15780633b7d0946146104e45780633ea441e0146104f75780634013124a1461050a576103a3565b806335467d5d146104a157806335b5670a146104b657806336568abe146104be576103a3565b806323b872dd116103465780632da146da116103155780632da146da146104695780632eb9771b146104715780632f2ff15d14610479578063313ce5671461048c576103a3565b806323b872dd14610433578063248a9ca3146104465780632853fb10146104595780632cb4f63e14610461576103a3565b806313af40351161038257806313af4035146103fb57806318160ddd146104105780631c5df1e5146104185780632258750a1461042b576103a3565b806278f4c7146103a857806306fdde03146103c6578063095ea7b3146103db575b600080fd5b6103b0610734565b6040516103bd91906122b5565b60405180910390f35b6103ce61083c565b6040516103bd91906122be565b6103ee6103e936600461216a565b6108ca565b6040516103bd91906122aa565b61040e6104093660046120ba565b6108e8565b005b6103b0610952565b61040e6104263660046121b5565b610958565b6103b061099c565b6103ee61044136600461212a565b6109a2565b6103b06104543660046121b5565b610a2f565b6103b0610a44565b6103b0610a4a565b6103b0610a50565b6103b0610b07565b61040e6104873660046121cd565b610b0d565b610494610b55565b6040516103bd91906127d6565b6104a9610b5a565b6040516103bd9190612253565b6104a9610b69565b61040e6104cc3660046121cd565b610b78565b6103ee6104df36600461216a565b610bba565b61040e6104f23660046120ba565b610c0e565b6104a96105053660046121b5565b610d31565b61040e610d58565b61040e6105203660046121b5565b610e91565b61040e6105333660046120ba565b610ed5565b61040e6105463660046121b5565b610fc8565b6104a9610fd9565b6103b0610fe8565b6103b0610ff5565b61040e6105713660046121b5565b61100c565b61040e6105843660046121b5565b611050565b6103b06105973660046120ba565b611094565b6104a96110af565b61040e6105b236600461216a565b6110be565b6104a9611119565b6103ee611128565b6104a96105d53660046121f1565b611138565b6103ee6105e83660046121cd565b61115d565b6103ce61117b565b6103b06111d6565b6103ee61060b36600461216a565b6111db565b61040e61061e3660046121b5565b611249565b61040e61063136600461216a565b61128d565b6103ee61064436600461216a565b61131a565b6103b061132e565b6103b06113b9565b61040e61066736600461216a565b6113bf565b6103b0611440565b61040e6106823660046120ba565b611478565b61040e6114d9565b6103b0611512565b6103b06106a53660046121b5565b611518565b6103b061152f565b61040e6106c03660046121cd565b61161f565b61040e6106d33660046120ba565b611659565b6103ee6106e63660046120ba565b611737565b61040e6106f93660046120ba565b61174c565b6104a96117cd565b6103b06107143660046120f2565b6117dc565b6104a9611807565b61040e61072f3660046120ba565b611816565b600480546040516371c59d7b60e01b815260009283926001600160a01b0316916371c59d7b9161076691309101612253565b60206040518083038186803b15801561077e57600080fd5b505afa158015610792573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b691906120d6565b6004805460405163777f89d160e11b81529293506001600160a01b03169163eeff13a2916107e691859101612253565b60206040518083038186803b1580156107fe57600080fd5b505afa158015610812573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108369190612212565b91505090565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b505050505081565b60006108de6108d76118c6565b84846118ca565b5060015b92915050565b6008546001600160a01b031633148061090b5750600a546001600160a01b031633145b6109305760405162461bcd60e51b8152600401610927906124b3565b60405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b6008546001600160a01b031633148061097b5750600a546001600160a01b031633145b6109975760405162461bcd60e51b8152600401610927906124b3565b601055565b60145481565b60006109af84848461197e565b610a25846109bb6118c6565b610a2085604051806060016040528060288152602001612842602891396001600160a01b038a166000908152600160205260408120906109f96118c6565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611a0716565b6118ca565b5060019392505050565b60009081526003602052604090206002015490565b60125481565b60115481565b600480546040516371c59d7b60e01b815260009283926001600160a01b0316916371c59d7b91610a8291309101612253565b60206040518083038186803b158015610a9a57600080fd5b505afa158015610aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad291906120d6565b60048054604051633ddac95360e01b81529293506001600160a01b031691633ddac953916107e6918591620f42409101612291565b600e5481565b600082815260036020526040902060020154610b2b906105e86118c6565b610b475760405162461bcd60e51b8152600401610927906123b4565b610b518282611a33565b5050565b601281565b6013546001600160a01b031681565b600b546001600160a01b031681565b610b806118c6565b6001600160a01b0316816001600160a01b031614610bb05760405162461bcd60e51b815260040161092790612750565b610b518282611aa2565b60006108de610bc76118c6565b84610a208560016000610bd86118c6565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61187716565b6008546001600160a01b0316331480610c315750600a546001600160a01b031633145b610c4d5760405162461bcd60e51b8152600401610927906124b3565b6001600160a01b0381166000908152600d602052604090205460ff161515600114610c8a5760405162461bcd60e51b81526004016109279061247c565b6001600160a01b0381166000908152600d60205260408120805460ff191690555b600c54811015610b5157816001600160a01b0316600c8281548110610ccc57fe5b6000918252602090912001546001600160a01b03161415610d29576000600c8281548110610cf657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610b51565b600101610cab565b600c8181548110610d3e57fe5b6000918252602090912001546001600160a01b0316905081565b610d75604051610d679061222a565b60405180910390203361115d565b610d7e57600080fd5b601354600160a01b900460ff1615610da85760405162461bcd60e51b8152600401610927906126eb565b6000610db2611440565b905060105460145442031015610dda5760405162461bcd60e51b815260040161092790612651565b601254601154610def9163ffffffff61187716565b811115610e2957600f54600e5411610e0b576000600e55610e24565b600f54600e54610e209163ffffffff611b1116565b600e555b610e8a565b601254601154610e3e9163ffffffff611b1116565b811015610e8a57620f4240610e60600f54600e5461187790919063ffffffff16565b10610e7157620f4240600e55610e8a565b600f54600e54610e869163ffffffff61187716565b600e555b5042601455565b6008546001600160a01b0316331480610eb45750600a546001600160a01b031633145b610ed05760405162461bcd60e51b8152600401610927906124b3565b601155565b6008546001600160a01b0316331480610ef85750600a546001600160a01b031633145b610f145760405162461bcd60e51b8152600401610927906124b3565b600580546001600160a01b0319166001600160a01b03838116919091179182905560405163733d805360e01b815291169063733d805390610f59903090600401612253565b60206040518083038186803b158015610f7157600080fd5b505afa158015610f85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa99190612195565b610fc55760405162461bcd60e51b815260040161092790612311565b50565b610fc5610fd36118c6565b82611b53565b6009546001600160a01b031681565b683635c9adc5dea0000081565b6040516110019061222a565b604051809103902081565b6008546001600160a01b031633148061102f5750600a546001600160a01b031633145b61104b5760405162461bcd60e51b8152600401610927906124b3565b600e55565b6008546001600160a01b03163314806110735750600a546001600160a01b031633145b61108f5760405162461bcd60e51b8152600401610927906124b3565b601255565b6001600160a01b031660009081526020819052604090205490565b6004546001600160a01b031681565b60006110f68260405180606001604052806024815260200161286a602491396110e9866107146118c6565b919063ffffffff611a0716565b905061110a836111046118c6565b836118ca565b6111148383611b53565b505050565b6008546001600160a01b031681565b601354600160a01b900460ff1681565b6000828152600360205260408120611156908363ffffffff611c3516565b9392505050565b6000828152600360205260408120611156908363ffffffff6118b116565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108c25780601f10610897576101008083540402835291602001916108c2565b600081565b60006108de6111e86118c6565b84610a208560405180606001604052806025815260200161288e60259139600160006112126118c6565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611a0716565b6008546001600160a01b031633148061126c5750600a546001600160a01b031633145b6112885760405162461bcd60e51b8152600401610927906124b3565b600f55565b336000908152600d602052604090205460ff1615156001146112c15760405162461bcd60e51b8152600401610927906126a6565b6112cb8282611c41565b336001600160a01b0316826001600160a01b03167f167eecf047f4ab2300ae6c391a4e5dadc24c0f85bcdb5db183e4cf2811785daf8360405161130e91906122b5565b60405180910390a35050565b60006108de6113276118c6565b848461197e565b600554604051633ddac95360e01b81526000916001600160a01b031690633ddac95390611364903090620f424090600401612291565b60206040518083038186803b15801561137c57600080fd5b505afa158015611390573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b49190612212565b905090565b600f5481565b336000908152600d602052604090205460ff1615156001146113f35760405162461bcd60e51b8152600401610927906126a6565b6113fd8282611c95565b816001600160a01b0316336001600160a01b03167fc26a91f13b7646eb39313c44e6f80e57bd6fbbe2bb13f4b40ff345e89acd4f6b8360405161130e91906122b5565b60008061144b610a50565b9050610836620f424061146c8361146061132e565b9063ffffffff611d5516565b9063ffffffff611d8f16565b6008546001600160a01b031633148061149b5750600a546001600160a01b031633145b6114b75760405162461bcd60e51b8152600401610927906124b3565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6114e8604051610d679061222a565b6114f157600080fd5b6013805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60105481565b60008181526003602052604081206108e290611dd1565b600080805b600c548110156116195760006001600160a01b0316600c828154811061155657fe5b6000918252602090912001546001600160a01b0316146116115761160e600c828154811061158057fe5b60009182526020918290200154604080516305ca132560e21b815290516001600160a01b03909216926317284c9492600480840193829003018186803b1580156115c957600080fd5b505afa1580156115dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116019190612212565b839063ffffffff61187716565b91505b600101611534565b50905090565b60008281526003602052604090206002015461163d906105e86118c6565b610bb05760405162461bcd60e51b8152600401610927906124f6565b6008546001600160a01b031633148061167c5750600a546001600160a01b031633145b6116985760405162461bcd60e51b8152600401610927906124b3565b6001600160a01b0381166000908152600d602052604090205460ff16156116d15760405162461bcd60e51b815260040161092790612720565b6001600160a01b03166000818152600d60205260408120805460ff19166001908117909155600c805491820181559091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319169091179055565b600d6020526000908152604090205460ff1681565b6008546001600160a01b031633148061176f5750600a546001600160a01b031633145b61178b5760405162461bcd60e51b8152600401610927906124b3565b600480546001600160a01b0319166001600160a01b038381169190911780835560405163733d805360e01b815291169163733d805391610f5991309101612253565b600a546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031681565b6008546001600160a01b03163314806118395750600a546001600160a01b031633145b6118555760405162461bcd60e51b8152600401610927906124b3565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000828201838110156111565760405162461bcd60e51b815260040161092790612445565b6000611156836001600160a01b038416611ddc565b6000611156836001600160a01b038416611e26565b3390565b6001600160a01b0383166118f05760405162461bcd60e51b81526004016109279061260d565b6001600160a01b0382166119165760405162461bcd60e51b815260040161092790612403565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906119719085906122b5565b60405180910390a3505050565b611989838383611e3e565b600b546001600160a01b03161561111457600b546040516347fdb0d560e11b81526001600160a01b0390911690638ffb61aa906119d0908690869033908790600401612267565b600060405180830381600087803b1580156119ea57600080fd5b505af11580156119fe573d6000803e3d6000fd5b50505050505050565b60008184841115611a2b5760405162461bcd60e51b815260040161092791906122be565b505050900390565b6000828152600360205260409020611a51908263ffffffff61189c16565b15610b5157611a5e6118c6565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600360205260409020611ac0908263ffffffff611f5f16565b15610b5157611acd6118c6565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600061115683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a07565b6001600160a01b038216611b795760405162461bcd60e51b815260040161092790612587565b611b8582600083611114565b611bc8816040518060600160405280602281526020016127fa602291396001600160a01b038516600090815260208190526040902054919063ffffffff611a0716565b6001600160a01b038316600090815260208190526040902055600254611bf4908263ffffffff611b1116565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061130e9085906122b5565b60006111568383611f74565b611c4b8282611b53565b610b5182611c576118c6565b610a208460405180606001604052806024815260200161286a602491396001600160a01b0388166000908152600160205260408120906109f96118c6565b6001600160a01b038216611cbb5760405162461bcd60e51b81526004016109279061279f565b611cc760008383611114565b600254611cda908263ffffffff61187716565b6002556001600160a01b038216600090815260208190526040902054611d06908263ffffffff61187716565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061130e9085906122b5565b600082611d64575060006108e2565b82820282848281611d7157fe5b04146111565760405162461bcd60e51b815260040161092790612546565b600061115683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611fb9565b60006108e282611ff0565b6000611de88383611e26565b611e1e575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108e2565b5060006108e2565b60009081526001919091016020526040902054151590565b6001600160a01b038316611e645760405162461bcd60e51b8152600401610927906125c8565b6001600160a01b038216611e8a5760405162461bcd60e51b815260040161092790612371565b611e95838383611114565b611ed88160405180606001604052806026815260200161281c602691396001600160a01b038616600090815260208190526040902054919063ffffffff611a0716565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f0d908263ffffffff61187716565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119719085906122b5565b6000611156836001600160a01b038416611ff4565b81546000908210611f975760405162461bcd60e51b81526004016109279061232f565b826000018281548110611fa657fe5b9060005260206000200154905092915050565b60008183611fda5760405162461bcd60e51b815260040161092791906122be565b506000838581611fe657fe5b0495945050505050565b5490565b600081815260018301602052604081205480156120b0578354600019808301919081019060009087908390811061202757fe5b906000526020600020015490508087600001848154811061204457fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061207457fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108e2565b60009150506108e2565b6000602082840312156120cb578081fd5b8135611156816127e4565b6000602082840312156120e7578081fd5b8151611156816127e4565b60008060408385031215612104578081fd5b823561210f816127e4565b9150602083013561211f816127e4565b809150509250929050565b60008060006060848603121561213e578081fd5b8335612149816127e4565b92506020840135612159816127e4565b929592945050506040919091013590565b6000806040838503121561217c578182fd5b8235612187816127e4565b946020939093013593505050565b6000602082840312156121a6578081fd5b81518015158114611156578182fd5b6000602082840312156121c6578081fd5b5035919050565b600080604083850312156121df578182fd5b82359150602083013561211f816127e4565b60008060408385031215612203578182fd5b50508035926020909101359150565b600060208284031215612223578081fd5b5051919050565b7f434f4c4c41544552414c5f524154494f5f504155534552000000000000000000815260170190565b6001600160a01b0391909116815260200190565b6001600160a01b039485168152928416602084015292166040820152606081019190915260800190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b818110156122ea578581018301518582016040015282016122ce565b818111156122fb5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600490820152632175736560e01b604082015260600190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601d908201527f6164647265737320646f65736e277420657869737420616c7265616479000000604082015260600190565b60208082526023908201527f596f7520617265206e6f7420746865206f776e65722c20206f722074696d656c6040820152626f636b60e81b606082015260800190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526035908201527f4d757374207761697420666f7220746865207265667265736820636f6f6c646f6040820152740eedc40e6d2dcc6ca40d8c2e6e840e4cacce4cae6d605b1b606082015260800190565b60208082526025908201527f4f6e6c792055534520706f6f6c732063616e2063616c6c20746869732066756e60408201526431ba34b7b760d91b606082015260800190565b6020808252818101527f436f6c6c61746572616c20526174696f20686173206265656e20706175736564604082015260600190565b6020808252601690820152756164647265737320616c72656164792065786973747360501b604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60ff91909116815260200190565b6001600160a01b0381168114610fc557600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a9d917cc1b8924a0bb314869adfd89a65a596ef091562c419a9a8e5d9e1b308f64736f6c634300060b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000292b1cae42d10d4ef3f16944e7623e06cab9eae60000000000000000000000000000000000000000000000000000000000000008456c656e6155534400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035553450000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): ElenaUSD
Arg [1] : _symbol (string): USE
Arg [2] : _timelock_address (address): 0x292B1Cae42D10D4Ef3f16944E7623E06CaB9EAe6
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000292b1cae42d10d4ef3f16944e7623e06cab9eae6
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 456c656e61555344000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5553450000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
51297:10651:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58204:206;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51591:18;;;:::i;:::-;;;;;;;:::i;40628:169::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59934:124::-;;;;;;:::i;:::-;;:::i;:::-;;39565:100;;;:::i;60490:130::-;;;;;;:::i;:::-;;:::i;56865:29::-;;;:::i;41267:321::-;;;;;;:::i;:::-;;:::i;28057:114::-;;;;;;:::i;:::-;;:::i;52844:25::-;;;:::i;52624:27::-;;;:::i;55489:209::-;;;:::i;52301:38::-;;;:::i;28431:225::-;;;;;;:::i;:::-;;:::i;51616:35::-;;;:::i;:::-;;;;;;;:::i;52997:36::-;;;:::i;:::-;;;;;;;:::i;51799:::-;;;:::i;29632:207::-;;;;;;:::i;:::-;;:::i;41995:218::-;;;;;;:::i;:::-;;:::i;59335:593::-;;;;;;:::i;:::-;;:::i;52066:32::-;;;;;;:::i;:::-;;:::i;56961:1237::-;;;:::i;60350:134::-;;;;;;:::i;:::-;;:::i;61333:211::-;;;;;;:::i;:::-;;:::i;44773:91::-;;;;;;:::i;:::-;;:::i;51693:30::-;;;:::i;51843:48::-;;;:::i;53040:86::-;;;:::i;60626:127::-;;;;;;:::i;:::-;;:::i;60893:119::-;;;;;;:::i;:::-;;:::i;39726:::-;;;;;;:::i;:::-;;:::i;51471:38::-;;;:::i;45179:293::-;;;;;;:::i;:::-;;:::i;51658:28::-;;;:::i;53133:43::-;;;:::i;27732:138::-;;;;;;:::i;:::-;;:::i;26697:139::-;;;;;;:::i;:::-;;:::i;51564:20::-;;;:::i;25450:49::-;;;:::i;42714:269::-;;;;;;:::i;:::-;;:::i;60231:111::-;;;;;;:::i;:::-;;:::i;58510:196::-;;;;;;:::i;:::-;;:::i;40056:175::-;;;;;;:::i;:::-;;:::i;55736:152::-;;;:::i;52398:25::-;;;:::i;58785:187::-;;;;;;:::i;:::-;;:::i;55926:181::-;;;:::i;60760:126::-;;;;;;:::i;:::-;;:::i;61550:135::-;;;:::i;52511:31::-;;;:::i;27008:127::-;;;;;;:::i;:::-;;:::i;56212:473::-;;;:::i;28899:228::-;;;;;;:::i;:::-;;:::i;59063:243::-;;;;;;:::i;:::-;;:::i;52158:41::-;;;;;;:::i;:::-;;:::i;61072:204::-;;;;;;:::i;:::-;;:::i;51730:31::-;;;:::i;40292:151::-;;;;;;:::i;:::-;;:::i;51516:41::-;;;:::i;60064:160::-;;;;;;:::i;:::-;;:::i;58204:206::-;58299:12;;;:40;;-1:-1:-1;;;58299:40:0;;58258:7;;;;-1:-1:-1;;;;;58299:12:0;;:25;;:40;;58333:4;;58299:40;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58357:12;;;:45;;-1:-1:-1;;;58357:45:0;;58277:62;;-1:-1:-1;;;;;;58357:12:0;;:32;;:45;;58277:62;;58357:45;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58350:52;;;58204:206;:::o;51591:18::-;;;;;;;;;;;;;;;-1:-1:-1;;51591:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40628:169::-;40711:4;40728:39;40737:12;:10;:12::i;:::-;40751:7;40760:6;40728:8;:39::i;:::-;-1:-1:-1;40785:4:0;40628:169;;;;;:::o;59934:124::-;53558:13;;-1:-1:-1;;;;;53558:13:0;53544:10;:27;;:61;;-1:-1:-1;53589:16:0;;-1:-1:-1;;;;;53589:16:0;53575:10;:30;53544:61;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;;;;;;;;;60020:13:::1;:30:::0;;-1:-1:-1;;;;;;60020:30:0::1;-1:-1:-1::0;;;;;60020:30:0;;;::::1;::::0;;;::::1;::::0;;59934:124::o;39565:100::-;39645:12;;39565:100;:::o;60490:130::-;53558:13;;-1:-1:-1;;;;;53558:13:0;53544:10;:27;;:61;;-1:-1:-1;53589:16:0;;-1:-1:-1;;;;;53589:16:0;53575:10;:30;53544:61;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;60580:16:::1;:32:::0;60490:130::o;56865:29::-;;;;:::o;41267:321::-;41373:4;41390:36;41400:6;41408:9;41419:6;41390:9;:36::i;:::-;41437:121;41446:6;41454:12;:10;:12::i;:::-;41468:89;41506:6;41468:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41468:19:0;;;;;;:11;:19;;;;;;41488:12;:10;:12::i;:::-;-1:-1:-1;;;;;41468:33:0;;;;;;;;;;;;-1:-1:-1;41468:33:0;;;:89;;:37;:89;:::i;:::-;41437:8;:121::i;:::-;-1:-1:-1;41576:4:0;41267:321;;;;;:::o;28057:114::-;28114:7;28141:12;;;:6;:12;;;;;:22;;;;28057:114::o;52844:25::-;;;;:::o;52624:27::-;;;;:::o;55489:209::-;55573:12;;;:40;;-1:-1:-1;;;55573:40:0;;55531:7;;;;-1:-1:-1;;;;;55573:12:0;;:25;;:40;;55607:4;;55573:40;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55639:12;;;:50;;-1:-1:-1;;;55639:50:0;;55551:62;;-1:-1:-1;;;;;;55639:12:0;;:20;;:50;;55551:62;;52291:3;;55639:50;;:::i;52301:38::-;;;;:::o;28431:225::-;28523:12;;;;:6;:12;;;;;:22;;;28515:45;;28547:12;:10;:12::i;28515:45::-;28507:105;;;;-1:-1:-1;;;28507:105:0;;;;;;;:::i;:::-;28623:25;28634:4;28640:7;28623:10;:25::i;:::-;28431:225;;:::o;51616:35::-;51649:2;51616:35;:::o;52997:36::-;;;-1:-1:-1;;;;;52997:36:0;;:::o;51799:::-;;;-1:-1:-1;;;;;51799:36:0;;:::o;29632:207::-;29730:12;:10;:12::i;:::-;-1:-1:-1;;;;;29719:23:0;:7;-1:-1:-1;;;;;29719:23:0;;29711:83;;;;-1:-1:-1;;;29711:83:0;;;;;;;:::i;:::-;29805:26;29817:4;29823:7;29805:11;:26::i;41995:218::-;42083:4;42100:83;42109:12;:10;:12::i;:::-;42123:7;42132:50;42171:10;42132:11;:25;42144:12;:10;:12::i;:::-;-1:-1:-1;;;;;42132:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;42132:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;59335:593::-;53558:13;;-1:-1:-1;;;;;53558:13:0;53544:10;:27;;:61;;-1:-1:-1;53589:16:0;;-1:-1:-1;;;;;53589:16:0;53575:10;:30;53544:61;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59427:23:0;::::1;;::::0;;;:9:::1;:23;::::0;;;;;::::1;;:31;;:23:::0;:31:::1;59419:73;;;;-1:-1:-1::0;;;59419:73:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;59546:23:0;::::1;;::::0;;;:9:::1;:23;::::0;;;;59539:30;;-1:-1:-1;;59539:30:0::1;::::0;;59646:275:::1;59667:15;:22:::0;59663:26;::::1;59646:275;;;59737:12;-1:-1:-1::0;;;;;59715:34:0::1;:15;59731:1;59715:18;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;59715:18:0::1;:34;59711:199;;;59799:1;59770:15;59786:1;59770:18;;;;;;;;;;;;;;;;:31;;;;;-1:-1:-1::0;;;;;59770:31:0::1;;;;;-1:-1:-1::0;;;;;59770:31:0::1;;;;;;59889:5;;59711:199;59691:3;;59646:275;;52066:32:::0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52066:32:0;;-1:-1:-1;52066:32:0;:::o;56961:1237::-;53282:44;53090:36;;;;;:::i;:::-;;;;;;;;53315:10;53282:7;:44::i;:::-;53274:53;;;;;;57046:23:::1;::::0;-1:-1:-1;;;57046:23:0;::::1;;;:32;57038:77;;;;-1:-1:-1::0;;;57038:77:0::1;;;;;;;:::i;:::-;57126:23;57152:13;:11;:13::i;:::-;57126:39;;57220:16;;57202:14;;57184:15;:32;:52;;57176:118;;;;-1:-1:-1::0;;;57176:118:0::1;;;;;;;:::i;:::-;57425:10;::::0;57408:12:::1;::::0;:28:::1;::::0;::::1;:16;:28;:::i;:::-;57390:15;:46;57386:724;;;57511:10;;57484:23;;:37;57481:242;;57600:1;57574:23;:27:::0;57481:242:::1;;;57696:10;::::0;57668:23:::1;::::0;:39:::1;::::0;::::1;:27;:39;:::i;:::-;57642:23;:65:::0;57481:242:::1;57386:724;;;57779:10;::::0;57762:12:::1;::::0;:28:::1;::::0;::::1;:16;:28;:::i;:::-;57744:15;:46;57740:370;;;57881:7;57838:39;57866:10;;57838:23;;:27;;:39;;;;:::i;:::-;:50;57835:264;;57934:7;57908:23;:33:::0;57835:264:::1;;;58072:10;::::0;58044:23:::1;::::0;:39:::1;::::0;::::1;:27;:39;:::i;:::-;58018:23;:65:::0;57835:264:::1;-1:-1:-1::0;58137:15:0::1;58120:14;:32:::0;56961:1237::o;60350:134::-;53558:13;;-1:-1:-1;;;;;53558:13:0;53544:10;:27;;:61;;-1:-1:-1;53589:16:0;;-1:-1:-1;;;;;53589:16:0;53575:10;:30;53544:61;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;60444:12:::1;:32:::0;60350:134::o;61333:211::-;53558:13;;-1:-1:-1;;;;;53558:13:0;53544:10;:27;;:61;;-1:-1:-1;53589:16:0;;-1:-1:-1;;;;;53589:16:0;53575:10;:30;53544:61;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;61420:15:::1;:45:::0;;-1:-1:-1;;;;;;61420:45:0::1;-1:-1:-1::0;;;;;61420:45:0;;::::1;::::0;;;::::1;::::0;;;;61484:44:::1;::::0;-1:-1:-1;;;61484:44:0;;:15;::::1;::::0;:29:::1;::::0;:44:::1;::::0;61522:4:::1;::::0;61484:44:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61476:60;;;;-1:-1:-1::0;;;61476:60:0::1;;;;;;;:::i;:::-;61333:211:::0;:::o;44773:91::-;44829:27;44835:12;:10;:12::i;:::-;44849:6;44829:5;:27::i;51693:30::-;;;-1:-1:-1;;;;;51693:30:0;;:::o;51843:48::-;51884:7;51843:48;:::o;53040:86::-;53090:36;;;;;:::i;:::-;;;;;;;;53040:86;:::o;60626:127::-;53558:13;;-1:-1:-1;;;;;53558:13:0;53544:10;:27;;:61;;-1:-1:-1;53589:16:0;;-1:-1:-1;;;;;53589:16:0;53575:10;:30;53544:61;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;60713:23:::1;:32:::0;60626:127::o;60893:119::-;53558:13;;-1:-1:-1;;;;;53558:13:0;53544:10;:27;;:61;;-1:-1:-1;53589:16:0;;-1:-1:-1;;;;;53589:16:0;53575:10;:30;53544:61;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;60980:10:::1;:24:::0;60893:119::o;39726:::-;-1:-1:-1;;;;;39819:18:0;39792:7;39819:18;;;;;;;;;;;;39726:119::o;51471:38::-;;;-1:-1:-1;;;;;51471:38:0;;:::o;45179:293::-;45256:26;45285:84;45322:6;45285:84;;;;;;;;;;;;;;;;;:32;45295:7;45304:12;:10;:12::i;45285:32::-;:36;:84;;:36;:84;:::i;:::-;45256:113;;45380:51;45389:7;45398:12;:10;:12::i;:::-;45412:18;45380:8;:51::i;:::-;45442:22;45448:7;45457:6;45442:5;:22::i;:::-;45179:293;;;:::o;51658:28::-;;;-1:-1:-1;;;;;51658:28:0;;:::o;53133:43::-;;;-1:-1:-1;;;53133:43:0;;;;;:::o;27732:138::-;27805:7;27832:12;;;:6;:12;;;;;:30;;27856:5;27832:30;:23;:30;:::i;:::-;27825:37;27732:138;-1:-1:-1;;;27732:138:0:o;26697:139::-;26766:4;26790:12;;;:6;:12;;;;;:38;;26820:7;26790:38;:29;:38;:::i;51564:20::-;;;;;;;;;;;;;;;-1:-1:-1;;51564:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25450:49;25495:4;25450:49;:::o;42714:269::-;42807:4;42824:129;42833:12;:10;:12::i;:::-;42847:7;42856:96;42895:15;42856:96;;;;;;;;;;;;;;;;;:11;:25;42868:12;:10;:12::i;:::-;-1:-1:-1;;;;;42856:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;42856:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;60231:111::-;53558:13;;-1:-1:-1;;;;;53558:13:0;53544:10;:27;;:61;;-1:-1:-1;53589:16:0;;-1:-1:-1;;;;;53589:16:0;53575:10;:30;53544:61;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;60312:10:::1;:22:::0;60231:111::o;58510:196::-;53402:10;53392:21;;;;:9;:21;;;;;;;;:29;;:21;:29;53384:79;;;;-1:-1:-1;;;53384:79:0;;;;;;;:::i;:::-;58599:36:::1;58615:9;58626:8;58599:15;:36::i;:::-;58677:10;-1:-1:-1::0;;;;;58651:47:0::1;58666:9;-1:-1:-1::0;;;;;58651:47:0::1;;58689:8;58651:47;;;;;;:::i;:::-;;;;;;;;58510:196:::0;;:::o;40056:175::-;40142:4;40159:42;40169:12;:10;:12::i;:::-;40183:9;40194:6;40159:9;:42::i;55736:152::-;55824:15;;:55;;-1:-1:-1;;;55824:55:0;;55788:7;;-1:-1:-1;;;;;55824:15:0;;:23;;:55;;55856:4;;52291:3;;55824:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55808:72;;55736:152;:::o;52398:25::-;;;;:::o;58785:187::-;53402:10;53392:21;;;;:9;:21;;;;;;;;:29;;:21;:29;53384:79;;;;-1:-1:-1;;;53384:79:0;;;;;;;:::i;:::-;58869:32:::1;58881:9;58892:8;58869:11;:32::i;:::-;58944:9;-1:-1:-1::0;;;;;58917:47:0::1;58932:10;-1:-1:-1::0;;;;;58917:47:0::1;;58955:8;58917:47;;;;;;:::i;55926:181::-:0;55971:7;55991:18;56012:11;:9;:11::i;:::-;55991:32;;56042:57;52291:3;56042:36;56067:10;56042:20;:18;:20::i;:::-;:24;:36;:24;:36;:::i;:::-;:40;:57;:40;:57;:::i;60760:126::-;53558:13;;-1:-1:-1;;;;;53558:13:0;53544:10;:27;;:61;;-1:-1:-1;53589:16:0;;-1:-1:-1;;;;;53589:16:0;53575:10;:30;53544:61;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;60847:16:::1;:31:::0;;-1:-1:-1;;;;;;60847:31:0::1;-1:-1:-1::0;;;;;60847:31:0;;;::::1;::::0;;;::::1;::::0;;60760:126::o;61550:135::-;53282:44;53090:36;;;;;:::i;53282:44::-;53274:53;;;;;;61654:23:::1;::::0;;-1:-1:-1;;;;61627:50:0;::::1;-1:-1:-1::0;;;61654:23:0;;;::::1;;;61653:24;61627:50:::0;;::::1;;::::0;;61550:135::o;52511:31::-;;;;:::o;27008:127::-;27071:7;27098:12;;;:6;:12;;;;;:29;;:27;:29::i;56212:473::-;56266:7;;;56336:298;56357:15;:22;56353:26;;56336:298;;;56474:1;-1:-1:-1;;;;;56444:32:0;:15;56460:1;56444:18;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56444:18:0;:32;56440:183;;56525:82;56565:15;56581:1;56565:18;;;;;;;;;;;;;;;;;;;56556:50;;;-1:-1:-1;;;56556:50:0;;;;-1:-1:-1;;;;;56565:18:0;;;;56556:48;;:50;;;;;;;;;;56565:18;56556:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56525:26;;:82;:30;:82;:::i;:::-;56496:111;;56440:183;56381:3;;56336:298;;;-1:-1:-1;56651:26:0;-1:-1:-1;56212:473:0;:::o;28899:228::-;28992:12;;;;:6;:12;;;;;:22;;;28984:45;;29016:12;:10;:12::i;28984:45::-;28976:106;;;;-1:-1:-1;;;28976:106:0;;;;;;;:::i;59063:243::-;53558:13;;-1:-1:-1;;;;;53558:13:0;53544:10;:27;;:61;;-1:-1:-1;53589:16:0;;-1:-1:-1;;;;;53589:16:0;53575:10;:30;53544:61;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59152:23:0;::::1;;::::0;;;:9:::1;:23;::::0;;;;;::::1;;:32;59144:67;;;;-1:-1:-1::0;;;59144:67:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;59222:23:0::1;;::::0;;;:9:::1;:23;::::0;;;;:30;;-1:-1:-1;;59222:30:0::1;59248:4;59222:30:::0;;::::1;::::0;;;59264:15:::1;:34:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;59264:34:0::1;::::0;;::::1;::::0;;59063:243::o;52158:41::-;;;;;;;;;;;;;;;:::o;61072:204::-;53558:13;;-1:-1:-1;;;;;53558:13:0;53544:10;:27;;:61;;-1:-1:-1;53589:16:0;;-1:-1:-1;;;;;53589:16:0;53575:10;:30;53544:61;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;61156:12:::1;:42:::0;;-1:-1:-1;;;;;;61156:42:0::1;-1:-1:-1::0;;;;;61156:42:0;;::::1;::::0;;;::::1;::::0;;;61219:41:::1;::::0;-1:-1:-1;;;61219:41:0;;:12;::::1;::::0;:26:::1;::::0;:41:::1;::::0;61254:4:::1;::::0;61219:41:::1;;:::i;51730:31::-:0;;;-1:-1:-1;;;;;51730:31:0;;:::o;40292:151::-;-1:-1:-1;;;;;40408:18:0;;;40381:7;40408:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;40292:151::o;51516:41::-;;;-1:-1:-1;;;;;51516:41:0;;:::o;60064:160::-;53558:13;;-1:-1:-1;;;;;53558:13:0;53544:10;:27;;:61;;-1:-1:-1;53589:16:0;;-1:-1:-1;;;;;53589:16:0;53575:10;:30;53544:61;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;60166:16:::1;:50:::0;;-1:-1:-1;;;;;;60166:50:0::1;-1:-1:-1::0;;;;;60166:50:0;;;::::1;::::0;;;::::1;::::0;;60064:160::o;2055:179::-;2113:7;2145:5;;;2169:6;;;;2161:46;;;;-1:-1:-1;;;2161:46:0;;;;;;;:::i;14740:143::-;14810:4;14834:41;14839:3;-1:-1:-1;;;;;14859:14:0;;14834:4;:41::i;15290:158::-;15370:4;15394:46;15404:3;-1:-1:-1;;;;;15424:14:0;;15394:9;:46::i;7113:106::-;7201:10;7113:106;:::o;46654:344::-;-1:-1:-1;;;;;46756:19:0;;46748:68;;;;-1:-1:-1;;;46748:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46835:21:0;;46827:68;;;;-1:-1:-1;;;46827:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46906:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;46958:32;;;;;46936:6;;46958:32;:::i;:::-;;;;;;;;46654:344;;;:::o;55117:297::-;55215:42;55231:6;55239:9;55250:6;55215:15;:42::i;:::-;55280:16;;-1:-1:-1;;;;;55280:16:0;55272:39;55268:139;;55328:16;;:67;;-1:-1:-1;;;55328:67:0;;-1:-1:-1;;;;;55328:16:0;;;;:28;;:67;;55357:6;;55365:9;;55376:10;;55388:6;;55328:67;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55117:297;;;:::o;2952:190::-;3038:7;3074:12;3066:6;;;;3058:29;;;;-1:-1:-1;;;3058:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;3110:5:0;;;2952:190::o;30867:188::-;30941:12;;;;:6;:12;;;;;:33;;30966:7;30941:33;:24;:33;:::i;:::-;30937:111;;;31023:12;:10;:12::i;:::-;-1:-1:-1;;;;;30996:40:0;31014:7;-1:-1:-1;;;;;30996:40:0;31008:4;30996:40;;;;;;;;;;30867:188;;:::o;31061:192::-;31136:12;;;;:6;:12;;;;;:36;;31164:7;31136:36;:27;:36;:::i;:::-;31132:114;;;31221:12;:10;:12::i;:::-;-1:-1:-1;;;;;31194:40:0;31212:7;-1:-1:-1;;;;;31194:40:0;31206:4;31194:40;;;;;;;;;;31061:192;;:::o;2515:136::-;2573:7;2600:43;2604:1;2607;2600:43;;;;;;;;;;;;;;;;;:3;:43::i;45802:414::-;-1:-1:-1;;;;;45886:21:0;;45878:67;;;;-1:-1:-1;;;45878:67:0;;;;;;;:::i;:::-;45956:49;45977:7;45994:1;45998:6;45956:20;:49::i;:::-;46037:68;46060:6;46037:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46037:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;46016:18:0;;:9;:18;;;;;;;;;;:89;46131:12;;:24;;46148:6;46131:24;:16;:24;:::i;:::-;46116:12;:39;46171:37;;46197:1;;-1:-1:-1;;;;;46171:37:0;;;;;;;46201:6;;46171:37;:::i;15991:149::-;16065:7;16108:22;16112:3;16124:5;16108:3;:22::i;47182:240::-;47262:22;47268:7;47277:6;47262:5;:22::i;:::-;47295:119;47304:7;47313:12;:10;:12::i;:::-;47327:86;47366:6;47327:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47327:20:0;;;;;;:11;:20;;;;;;47348:12;:10;:12::i;44285:374::-;-1:-1:-1;;;;;44369:21:0;;44361:65;;;;-1:-1:-1;;;44361:65:0;;;;;;;:::i;:::-;44437:49;44466:1;44470:7;44479:6;44437:20;:49::i;:::-;44512:12;;:24;;44529:6;44512:24;:16;:24;:::i;:::-;44497:12;:39;-1:-1:-1;;;;;44568:18:0;;:9;:18;;;;;;;;;;;:30;;44591:6;44568:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;44547:18:0;;:9;:18;;;;;;;;;;;:51;;;;44614:37;;44547:18;;:9;44614:37;;;;44644:6;;44614:37;:::i;3399:467::-;3457:7;3702:6;3698:47;;-1:-1:-1;3732:1:0;3725:8;;3698:47;3767:5;;;3771:1;3767;:5;:1;3791:5;;;;;:10;3783:56;;;;-1:-1:-1;;;3783:56:0;;;;;;;:::i;4340:132::-;4398:7;4425:39;4429:1;4432;4425:39;;;;;;;;;;;;;;;;;:3;:39::i;15532:117::-;15595:7;15622:19;15630:3;15622:7;:19::i;11424:414::-;11487:4;11509:21;11519:3;11524:5;11509:9;:21::i;:::-;11504:327;;-1:-1:-1;11547:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;11730:18;;11708:19;;;:12;;;:19;;;;;;:40;;;;11763:11;;11504:327;-1:-1:-1;11814:5:0;11807:12;;13624:129;13697:4;13721:19;;;:12;;;;;:19;;;;;;:24;;;13624:129::o;43471:535::-;-1:-1:-1;;;;;43577:20:0;;43569:70;;;;-1:-1:-1;;;43569:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43658:23:0;;43650:71;;;;-1:-1:-1;;;43650:71:0;;;;;;;:::i;:::-;43732:47;43753:6;43761:9;43772:6;43732:20;:47::i;:::-;43810:71;43832:6;43810:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43810:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;43790:17:0;;;:9;:17;;;;;;;;;;;:91;;;;43915:20;;;;;;;:32;;43940:6;43915:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;43892:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;43963:35;;;;;;;;;;43991:6;;43963:35;:::i;15057:149::-;15130:4;15154:44;15162:3;-1:-1:-1;;;;;15182:14:0;;15154:7;:44::i;14288:204::-;14383:18;;14355:7;;14383:26;-1:-1:-1;14375:73:0;;;;-1:-1:-1;;;14375:73:0;;;;;;;:::i;:::-;14466:3;:11;;14478:5;14466:18;;;;;;;;;;;;;;;;14459:25;;14288:204;;;;:::o;4966:276::-;5052:7;5087:12;5080:5;5072:28;;;;-1:-1:-1;;;5072:28:0;;;;;;;;:::i;:::-;;5111:9;5127:1;5123;:5;;;;;;;4966:276;-1:-1:-1;;;;;4966:276:0:o;13837:109::-;13920:18;;13837:109::o;12012:1528::-;12078:4;12217:19;;;:12;;;:19;;;;;;12251:15;;12247:1286;;12684:18;;-1:-1:-1;;12635:14:0;;;;12684:22;;;;12611:21;;12684:3;;:22;;12967;;;;;;;;;;;;;;12947:42;;13111:9;13082:3;:11;;13094:13;13082:26;;;;;;;;;;;;;;;;;;;:38;;;;13188:23;;;13230:1;13188:12;;;:23;;;;;;13214:17;;;13188:43;;13338:17;;13188:3;;13338:17;;;;;;;;;;;;;;;;;;;;;;13431:3;:12;;:19;13444:5;13431:19;;;;;;;;;;;13424:26;;;13472:4;13465:11;;;;;;;;12247:1286;13516:5;13509:12;;;;;833:241:-1;;937:2;925:9;916:7;912:23;908:32;905:2;;;-1:-1;;943:12;905:2;85:6;72:20;97:33;124:5;97:33;:::i;1081:263::-;;1196:2;1184:9;1175:7;1171:23;1167:32;1164:2;;;-1:-1;;1202:12;1164:2;226:6;220:13;238:33;265:5;238:33;:::i;1351:366::-;;;1472:2;1460:9;1451:7;1447:23;1443:32;1440:2;;;-1:-1;;1478:12;1440:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1530:63;-1:-1;1630:2;1669:22;;72:20;97:33;72:20;97:33;:::i;:::-;1638:63;;;;1434:283;;;;;:::o;1724:491::-;;;;1862:2;1850:9;1841:7;1837:23;1833:32;1830:2;;;-1:-1;;1868:12;1830:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1920:63;-1:-1;2020:2;2059:22;;72:20;97:33;72:20;97:33;:::i;:::-;1824:391;;2028:63;;-1:-1;;;2128:2;2167:22;;;;622:20;;1824:391::o;2222:366::-;;;2343:2;2331:9;2322:7;2318:23;2314:32;2311:2;;;-1:-1;;2349:12;2311:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2401:63;2501:2;2540:22;;;;622:20;;-1:-1;;;2305:283::o;2595:257::-;;2707:2;2695:9;2686:7;2682:23;2678:32;2675:2;;;-1:-1;;2713:12;2675:2;364:6;358:13;27149:5;25153:13;25146:21;27127:5;27124:32;27114:2;;-1:-1;;27160:12;2859:241;;2963:2;2951:9;2942:7;2938:23;2934:32;2931:2;;;-1:-1;;2969:12;2931:2;-1:-1;485:20;;2925:175;-1:-1;2925:175::o;3107:366::-;;;3228:2;3216:9;3207:7;3203:23;3199:32;3196:2;;;-1:-1;;3234:12;3196:2;498:6;485:20;3286:63;;3386:2;3429:9;3425:22;72:20;97:33;124:5;97:33;:::i;3480:366::-;;;3601:2;3589:9;3580:7;3576:23;3572:32;3569:2;;;-1:-1;;3607:12;3569:2;-1:-1;;485:20;;;3759:2;3798:22;;;622:20;;-1:-1;3563:283::o;4101:263::-;;4216:2;4204:9;4195:7;4191:23;4187:32;4184:2;;;-1:-1;;4222:12;4184:2;-1:-1;770:13;;4178:186;-1:-1;4178:186::o;13194:381::-;9937:25;9917:46;;9901:2;9982:12;;13383:192::o;13582:222::-;-1:-1;;;;;25320:54;;;;4591:37;;13709:2;13694:18;;13680:124::o;13811:572::-;-1:-1;;;;;25320:54;;;4591:37;;25320:54;;;14195:2;14180:18;;4591:37;25320:54;;14286:2;14271:18;;4450:58;14369:2;14354:18;;4822:37;;;;14030:3;14015:19;;14001:382::o;14390:333::-;-1:-1;;;;;25320:54;;;;4591:37;;14709:2;14694:18;;4822:37;14545:2;14530:18;;14516:207::o;14730:210::-;25153:13;;25146:21;4705:34;;14851:2;14836:18;;14822:118::o;14947:222::-;4822:37;;;15074:2;15059:18;;15045:124::o;15730:310::-;;15877:2;;15898:17;15891:47;5378:5;24622:12;24779:6;15877:2;15866:9;15862:18;24767:19;-1:-1;26635:101;26649:6;26646:1;26643:13;26635:101;;;26716:11;;;;;26710:18;26697:11;;;24807:14;26697:11;26690:39;26664:10;;26635:101;;;26751:6;26748:1;26745:13;26742:2;;;-1:-1;24807:14;26807:6;15866:9;26798:16;;26791:27;26742:2;-1:-1;26923:7;26907:14;-1:-1;;26903:28;5536:39;;;;24807:14;5536:39;;15848:192;-1:-1;;;15848:192::o;16047:416::-;16247:2;16261:47;;;5812:1;16232:18;;;24767:19;-1:-1;;;24807:14;;;5827:27;5873:12;;;16218:245::o;16470:416::-;16670:2;16684:47;;;6124:2;16655:18;;;24767:19;6160:34;24807:14;;;6140:55;-1:-1;;;6215:12;;;6208:26;6253:12;;;16641:245::o;16893:416::-;17093:2;17107:47;;;6504:2;17078:18;;;24767:19;6540:34;24807:14;;;6520:55;-1:-1;;;6595:12;;;6588:27;6634:12;;;17064:245::o;17316:416::-;17516:2;17530:47;;;6885:2;17501:18;;;24767:19;6921:34;24807:14;;;6901:55;-1:-1;;;6976:12;;;6969:39;7027:12;;;17487:245::o;17739:416::-;17939:2;17953:47;;;7278:2;17924:18;;;24767:19;7314:34;24807:14;;;7294:55;-1:-1;;;7369:12;;;7362:26;7407:12;;;17910:245::o;18162:416::-;18362:2;18376:47;;;7658:2;18347:18;;;24767:19;7694:29;24807:14;;;7674:50;7743:12;;;18333:245::o;18585:416::-;18785:2;18799:47;;;7994:2;18770:18;;;24767:19;8030:31;24807:14;;;8010:52;8081:12;;;18756:245::o;19008:416::-;19208:2;19222:47;;;8332:2;19193:18;;;24767:19;8368:34;24807:14;;;8348:55;-1:-1;;;8423:12;;;8416:27;8462:12;;;19179:245::o;19431:416::-;19631:2;19645:47;;;8713:2;19616:18;;;24767:19;8749:34;24807:14;;;8729:55;-1:-1;;;8804:12;;;8797:40;8856:12;;;19602:245::o;19854:416::-;20054:2;20068:47;;;9107:2;20039:18;;;24767:19;9143:34;24807:14;;;9123:55;-1:-1;;;9198:12;;;9191:25;9235:12;;;20025:245::o;20277:416::-;20477:2;20491:47;;;9486:2;20462:18;;;24767:19;9522:34;24807:14;;;9502:55;-1:-1;;;9577:12;;;9570:25;9614:12;;;20448:245::o;20700:416::-;20900:2;20914:47;;;10233:2;20885:18;;;24767:19;10269:34;24807:14;;;10249:55;-1:-1;;;10324:12;;;10317:29;10365:12;;;20871:245::o;21123:416::-;21323:2;21337:47;;;10616:2;21308:18;;;24767:19;10652:34;24807:14;;;10632:55;-1:-1;;;10707:12;;;10700:28;10747:12;;;21294:245::o;21546:416::-;21746:2;21760:47;;;10998:2;21731:18;;;24767:19;11034:34;24807:14;;;11014:55;-1:-1;;;11089:12;;;11082:45;11146:12;;;21717:245::o;21969:416::-;22169:2;22183:47;;;11397:2;22154:18;;;24767:19;11433:34;24807:14;;;11413:55;-1:-1;;;11488:12;;;11481:29;11529:12;;;22140:245::o;22392:416::-;22592:2;22606:47;;;22577:18;;;24767:19;11816:34;24807:14;;;11796:55;11870:12;;;22563:245::o;22815:416::-;23015:2;23029:47;;;12121:2;23000:18;;;24767:19;-1:-1;;;24807:14;;;12137:45;12201:12;;;22986:245::o;23238:416::-;23438:2;23452:47;;;12452:2;23423:18;;;24767:19;12488:34;24807:14;;;12468:55;-1:-1;;;12543:12;;;12536:39;12594:12;;;23409:245::o;23661:416::-;23861:2;23875:47;;;12845:2;23846:18;;;24767:19;12881:33;24807:14;;;12861:54;12934:12;;;23832:245::o;24313:214::-;25536:4;25525:16;;;;13147:35;;24436:2;24421:18;;24407:120::o;26944:117::-;-1:-1;;;;;25320:54;;27003:35;;26993:2;;27052:1;;27042:12
Swarm Source
ipfs://a9d917cc1b8924a0bb314869adfd89a65a596ef091562c419a9a8e5d9e1b308f
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.