Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 988 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Swap | 21411047 | 19 days ago | IN | 0 ETH | 0.00073036 | ||||
Swap | 21410096 | 20 days ago | IN | 0 ETH | 0.00088382 | ||||
Swap | 21408408 | 20 days ago | IN | 0 ETH | 0.00076382 | ||||
Swap | 21407560 | 20 days ago | IN | 0 ETH | 0.00038325 | ||||
Swap | 21407231 | 20 days ago | IN | 0 ETH | 0.00054409 | ||||
Swap | 21407093 | 20 days ago | IN | 0 ETH | 0.00043329 | ||||
Swap | 21401737 | 21 days ago | IN | 0 ETH | 0.00099328 | ||||
Swap | 21400852 | 21 days ago | IN | 0 ETH | 0.00076471 | ||||
Swap | 21398356 | 21 days ago | IN | 0 ETH | 0.00091471 | ||||
Swap | 21395939 | 22 days ago | IN | 0 ETH | 0.00113947 | ||||
Swap | 21394654 | 22 days ago | IN | 0 ETH | 0.00197498 | ||||
Swap | 21394174 | 22 days ago | IN | 0 ETH | 0.00130989 | ||||
Swap | 21393625 | 22 days ago | IN | 0 ETH | 0.00093738 | ||||
Swap | 21391035 | 22 days ago | IN | 0 ETH | 0.00085197 | ||||
Swap | 21390970 | 22 days ago | IN | 0 ETH | 0.00075218 | ||||
Swap | 21389190 | 23 days ago | IN | 0 ETH | 0.0016712 | ||||
Swap | 21383080 | 23 days ago | IN | 0 ETH | 0.00140169 | ||||
Swap | 21380592 | 24 days ago | IN | 0 ETH | 0.00208381 | ||||
Swap | 21373631 | 25 days ago | IN | 0 ETH | 0.0031411 | ||||
Swap | 21367273 | 26 days ago | IN | 0 ETH | 0.00232435 | ||||
Swap | 21366516 | 26 days ago | IN | 0 ETH | 0.0022788 | ||||
Swap | 21366381 | 26 days ago | IN | 0 ETH | 0.00283314 | ||||
Swap | 21366246 | 26 days ago | IN | 0 ETH | 0.00214846 | ||||
Swap | 21365744 | 26 days ago | IN | 0 ETH | 0.00334188 | ||||
Swap | 21365443 | 26 days ago | IN | 0 ETH | 0.00320829 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Swap
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-21 */ // Sources flattened with hardhat v2.15.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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"); (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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @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 Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ 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' 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)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to * 0 before setting it to a non-zero value. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @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). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // 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 cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } } // File contracts/Swap.sol // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; contract Swap is Ownable { using SafeERC20 for IERC20; address private constant BURN_ADDR = 0x000000000000000000000000000000000000dEaD; uint256 private immutable IN_RATE; // Input rate amount (conversion_rate = IN_RATE / OUT_RATE) IERC20 private immutable OLD_TOKEN; uint256 private immutable OUT_RATE; // Output rate amount (conversion_rate = IN_RATE / OUT_RATE) IERC20 private immutable NEW_TOKEN; /** * @dev Emitted when swap function successfully executes */ event Swapped( address indexed account, uint256 indexed iAmount, uint256 indexed oAmount ); constructor( address contractOwner, address oldToken, address newToken, uint256 iRate, uint256 oRate ) { require( contractOwner != address(0) && oldToken != address(0) && newToken != address(0) && iRate > 0 && oRate > 0, "Invalid settings" ); IN_RATE = iRate; OLD_TOKEN = IERC20(oldToken); OUT_RATE = oRate; NEW_TOKEN = IERC20(newToken); // Ownable() set `msg.sender` as Owner by default // Setting non-sender as `owner` is available in the version v5 // Thus, must call _transferOwnership() again at this point _transferOwnership(contractOwner); } /** @notice Get information settings of the Swap contract @dev Caller can be ANY @return oldToken Address of MITx-V1 Token contract @return inAmount Swapping Ratio (input) @return newToken Address of MITx-V2 Token contract @return outAmount Swapping Ratio (output) */ function info() external view returns ( address oldToken, uint256 inAmount, address newToken, uint256 outAmount ) { return (address(OLD_TOKEN), IN_RATE, address(NEW_TOKEN), OUT_RATE); } /** @notice Calculate `oAmount` with respect to `iAmount` @dev Caller can be ANY @param account Account address to check @param iAmount Amount of the MITx-V1 to be swapped @return oAmount Amount of the MITx-V2 to be received */ function calculate( address account, uint256 iAmount ) public view returns (uint256 oAmount) { uint256 balance = OLD_TOKEN.balanceOf(account); require(balance >= iAmount, "Swapping amount exceeds balance"); oAmount = (iAmount * OUT_RATE) / IN_RATE; } /** @notice Swap `iAmount` of the MITx-V1 Token @dev Caller can be ANY @param iAmount Amount of the MITx-V1 to be swapped */ function swap(uint256 iAmount) external { // First, calculate receiving amount of the new Token // calculate() already check whether `iAmount` exceeds a current balance of `msg.sender` address caller = msg.sender; uint256 oAmount = calculate(caller, iAmount); require(oAmount > 0, "Receiving amount is 0"); // burn `iAmount` of the old Token // Note: MITx-V1 Token didn't have burning function // thus, transfer to 0x....dEaD will be used as alternative instead OLD_TOKEN.safeTransferFrom(caller, BURN_ADDR, iAmount); // after burning, transfer `oAmount` to `msg.sender` NEW_TOKEN.safeTransfer(caller, oAmount); emit Swapped(caller, iAmount, oAmount); } /** @notice Emergency transfer `token` to `owner` @dev Caller must be Owner @param token Address of token contract (Native Coin = 0x00) @param amount Amount of MITx-V2 Token being burnt Note: - This function allows `owner` can withdraw any tokens that mistakenly sent to this contract - Or withdraw an amount of MITx-V2 Token that a Swap Contract is currently holding - Two types of token can be withdrawed: Native Coin, and ERC-20 */ function emergency(address token, uint256 amount) external onlyOwner { address receiver = owner(); if (token == address(0)) Address.sendValue(payable(receiver), amount); else IERC20(token).safeTransfer(receiver, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"contractOwner","type":"address"},{"internalType":"address","name":"oldToken","type":"address"},{"internalType":"address","name":"newToken","type":"address"},{"internalType":"uint256","name":"iRate","type":"uint256"},{"internalType":"uint256","name":"oRate","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"iAmount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oAmount","type":"uint256"}],"name":"Swapped","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"iAmount","type":"uint256"}],"name":"calculate","outputs":[{"internalType":"uint256","name":"oAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergency","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"info","outputs":[{"internalType":"address","name":"oldToken","type":"address"},{"internalType":"uint256","name":"inAmount","type":"uint256"},{"internalType":"address","name":"newToken","type":"address"},{"internalType":"uint256","name":"outAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"iAmount","type":"uint256"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101006040523480156200001257600080fd5b50604051620019dc380380620019dc83398181016040528101906200003891906200035e565b620000586200004c620001ed60201b60201c565b620001f560201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015620000c35750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015620000fd5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156200010a5750600082115b8015620001175750600081115b62000159576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001509062000447565b60405180910390fd5b81608081815250508373ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508060c081815250508273ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff1681525050620001e285620001f560201b60201c565b505050505062000469565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002eb82620002be565b9050919050565b620002fd81620002de565b81146200030957600080fd5b50565b6000815190506200031d81620002f2565b92915050565b6000819050919050565b620003388162000323565b81146200034457600080fd5b50565b60008151905062000358816200032d565b92915050565b600080600080600060a086880312156200037d576200037c620002b9565b5b60006200038d888289016200030c565b9550506020620003a0888289016200030c565b9450506040620003b3888289016200030c565b9350506060620003c68882890162000347565b9250506080620003d98882890162000347565b9150509295509295909350565b600082825260208201905092915050565b7f496e76616c69642073657474696e677300000000000000000000000000000000600082015250565b60006200042f601083620003e6565b91506200043c82620003f7565b602082019050919050565b60006020820190508181036000830152620004628162000420565b9050919050565b60805160a05160c05160e051611516620004c660003960008181610199015261049a0152600081816101ba015261037401526000818161015701528181610274015261044e015260008181610178015261035301526115166000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c8063715018a61161005b578063715018a6146100ef5780638da5cb5b146100f957806394b918de14610117578063f2fde38b146101335761007d565b8063370158ea146100825780633ec9ef2e146100a35780636e908ca3146100bf575b600080fd5b61008a61014f565b60405161009a9493929190610be7565b60405180910390f35b6100bd60048036038101906100b89190610c89565b6101e7565b005b6100d960048036038101906100d49190610c89565b61026f565b6040516100e69190610cc9565b60405180910390f35b6100f76103b1565b005b6101016103c5565b60405161010e9190610ce4565b60405180910390f35b610131600480360381019061012c9190610cff565b6103ee565b005b61014d60048036038101906101489190610d2c565b610528565b005b6000806000807f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000935093509350935090919293565b6101ef6105ab565b60006101f96103c5565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361023e576102398183610629565b61026a565b61026981838573ffffffffffffffffffffffffffffffffffffffff1661071d9092919063ffffffff16565b5b505050565b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016102cb9190610ce4565b602060405180830381865afa1580156102e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061030c9190610d6e565b905082811015610351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034890610df8565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000008461039e9190610e47565b6103a89190610eb8565b91505092915050565b6103b96105ab565b6103c360006107a3565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600033905060006103ff828461026f565b905060008111610444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b90610f35565b60405180910390fd5b6104938261dead857f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16610867909392919063ffffffff16565b6104de82827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661071d9092919063ffffffff16565b80838373ffffffffffffffffffffffffffffffffffffffff167f3a9a9f34f5831e9c8ecb66ab3aa308b2ff31eaca434615f6c9cadc656a9af71c60405160405180910390a4505050565b6105306105ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690610fc7565b60405180910390fd5b6105a8816107a3565b50565b6105b36108f0565b73ffffffffffffffffffffffffffffffffffffffff166105d16103c5565b73ffffffffffffffffffffffffffffffffffffffff1614610627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061e90611033565b60405180910390fd5b565b8047101561066c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106639061109f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610692906110f0565b60006040518083038185875af1925050503d80600081146106cf576040519150601f19603f3d011682016040523d82523d6000602084013e6106d4565b606091505b5050905080610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f90611177565b60405180910390fd5b505050565b61079e8363a9059cbb60e01b848460405160240161073c929190611197565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506108f8565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6108ea846323b872dd60e01b858585604051602401610888939291906111c0565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506108f8565b50505050565b600033905090565b600061095a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166109c09092919063ffffffff16565b905060008151148061097c57508080602001905181019061097b919061122f565b5b6109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b2906112ce565b60405180910390fd5b505050565b60606109cf84846000856109d8565b90509392505050565b606082471015610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1490611360565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610a4691906113e6565b60006040518083038185875af1925050503d8060008114610a83576040519150601f19603f3d011682016040523d82523d6000602084013e610a88565b606091505b5091509150610a9987838387610aa5565b92505050949350505050565b60608315610b07576000835103610aff57610abf85610b1a565b610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af590611449565b60405180910390fd5b5b829050610b12565b610b118383610b3d565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115610b505781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8491906114be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610bb882610b8d565b9050919050565b610bc881610bad565b82525050565b6000819050919050565b610be181610bce565b82525050565b6000608082019050610bfc6000830187610bbf565b610c096020830186610bd8565b610c166040830185610bbf565b610c236060830184610bd8565b95945050505050565b600080fd5b610c3a81610bad565b8114610c4557600080fd5b50565b600081359050610c5781610c31565b92915050565b610c6681610bce565b8114610c7157600080fd5b50565b600081359050610c8381610c5d565b92915050565b60008060408385031215610ca057610c9f610c2c565b5b6000610cae85828601610c48565b9250506020610cbf85828601610c74565b9150509250929050565b6000602082019050610cde6000830184610bd8565b92915050565b6000602082019050610cf96000830184610bbf565b92915050565b600060208284031215610d1557610d14610c2c565b5b6000610d2384828501610c74565b91505092915050565b600060208284031215610d4257610d41610c2c565b5b6000610d5084828501610c48565b91505092915050565b600081519050610d6881610c5d565b92915050565b600060208284031215610d8457610d83610c2c565b5b6000610d9284828501610d59565b91505092915050565b600082825260208201905092915050565b7f5377617070696e6720616d6f756e7420657863656564732062616c616e636500600082015250565b6000610de2601f83610d9b565b9150610ded82610dac565b602082019050919050565b60006020820190508181036000830152610e1181610dd5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610e5282610bce565b9150610e5d83610bce565b9250828202610e6b81610bce565b91508282048414831517610e8257610e81610e18565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000610ec382610bce565b9150610ece83610bce565b925082610ede57610edd610e89565b5b828204905092915050565b7f526563656976696e6720616d6f756e7420697320300000000000000000000000600082015250565b6000610f1f601583610d9b565b9150610f2a82610ee9565b602082019050919050565b60006020820190508181036000830152610f4e81610f12565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610fb1602683610d9b565b9150610fbc82610f55565b604082019050919050565b60006020820190508181036000830152610fe081610fa4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061101d602083610d9b565b915061102882610fe7565b602082019050919050565b6000602082019050818103600083015261104c81611010565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000611089601d83610d9b565b915061109482611053565b602082019050919050565b600060208201905081810360008301526110b88161107c565b9050919050565b600081905092915050565b50565b60006110da6000836110bf565b91506110e5826110ca565b600082019050919050565b60006110fb826110cd565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000611161603a83610d9b565b915061116c82611105565b604082019050919050565b6000602082019050818103600083015261119081611154565b9050919050565b60006040820190506111ac6000830185610bbf565b6111b96020830184610bd8565b9392505050565b60006060820190506111d56000830186610bbf565b6111e26020830185610bbf565b6111ef6040830184610bd8565b949350505050565b60008115159050919050565b61120c816111f7565b811461121757600080fd5b50565b60008151905061122981611203565b92915050565b60006020828403121561124557611244610c2c565b5b60006112538482850161121a565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006112b8602a83610d9b565b91506112c38261125c565b604082019050919050565b600060208201905081810360008301526112e7816112ab565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b600061134a602683610d9b565b9150611355826112ee565b604082019050919050565b600060208201905081810360008301526113798161133d565b9050919050565b600081519050919050565b60005b838110156113a957808201518184015260208101905061138e565b60008484015250505050565b60006113c082611380565b6113ca81856110bf565b93506113da81856020860161138b565b80840191505092915050565b60006113f282846113b5565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000611433601d83610d9b565b915061143e826113fd565b602082019050919050565b6000602082019050818103600083015261146281611426565b9050919050565b600081519050919050565b6000601f19601f8301169050919050565b600061149082611469565b61149a8185610d9b565b93506114aa81856020860161138b565b6114b381611474565b840191505092915050565b600060208201905081810360008301526114d88184611485565b90509291505056fea26469706673582212207b0d1338b89b804cb043e3227c69500583dbb50bf2845b38180c398a2873e0f464736f6c63430008110033000000000000000000000000899e985b18b140aefca18dd7b40d01ef39cc4c960000000000000000000000004a527d8fc13c5203ab24ba0944f4cb14658d1db6000000000000000000000000c9eb61ffb66d5815d643bbb8195e17c49687ae1e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061007d5760003560e01c8063715018a61161005b578063715018a6146100ef5780638da5cb5b146100f957806394b918de14610117578063f2fde38b146101335761007d565b8063370158ea146100825780633ec9ef2e146100a35780636e908ca3146100bf575b600080fd5b61008a61014f565b60405161009a9493929190610be7565b60405180910390f35b6100bd60048036038101906100b89190610c89565b6101e7565b005b6100d960048036038101906100d49190610c89565b61026f565b6040516100e69190610cc9565b60405180910390f35b6100f76103b1565b005b6101016103c5565b60405161010e9190610ce4565b60405180910390f35b610131600480360381019061012c9190610cff565b6103ee565b005b61014d60048036038101906101489190610d2c565b610528565b005b6000806000807f0000000000000000000000004a527d8fc13c5203ab24ba0944f4cb14658d1db67f00000000000000000000000000000000000000000000000000000000000000027f000000000000000000000000c9eb61ffb66d5815d643bbb8195e17c49687ae1e7f0000000000000000000000000000000000000000000000000000000000000003935093509350935090919293565b6101ef6105ab565b60006101f96103c5565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361023e576102398183610629565b61026a565b61026981838573ffffffffffffffffffffffffffffffffffffffff1661071d9092919063ffffffff16565b5b505050565b6000807f0000000000000000000000004a527d8fc13c5203ab24ba0944f4cb14658d1db673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016102cb9190610ce4565b602060405180830381865afa1580156102e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061030c9190610d6e565b905082811015610351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034890610df8565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000027f00000000000000000000000000000000000000000000000000000000000000038461039e9190610e47565b6103a89190610eb8565b91505092915050565b6103b96105ab565b6103c360006107a3565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600033905060006103ff828461026f565b905060008111610444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b90610f35565b60405180910390fd5b6104938261dead857f0000000000000000000000004a527d8fc13c5203ab24ba0944f4cb14658d1db673ffffffffffffffffffffffffffffffffffffffff16610867909392919063ffffffff16565b6104de82827f000000000000000000000000c9eb61ffb66d5815d643bbb8195e17c49687ae1e73ffffffffffffffffffffffffffffffffffffffff1661071d9092919063ffffffff16565b80838373ffffffffffffffffffffffffffffffffffffffff167f3a9a9f34f5831e9c8ecb66ab3aa308b2ff31eaca434615f6c9cadc656a9af71c60405160405180910390a4505050565b6105306105ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690610fc7565b60405180910390fd5b6105a8816107a3565b50565b6105b36108f0565b73ffffffffffffffffffffffffffffffffffffffff166105d16103c5565b73ffffffffffffffffffffffffffffffffffffffff1614610627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061e90611033565b60405180910390fd5b565b8047101561066c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106639061109f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610692906110f0565b60006040518083038185875af1925050503d80600081146106cf576040519150601f19603f3d011682016040523d82523d6000602084013e6106d4565b606091505b5050905080610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f90611177565b60405180910390fd5b505050565b61079e8363a9059cbb60e01b848460405160240161073c929190611197565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506108f8565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6108ea846323b872dd60e01b858585604051602401610888939291906111c0565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506108f8565b50505050565b600033905090565b600061095a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166109c09092919063ffffffff16565b905060008151148061097c57508080602001905181019061097b919061122f565b5b6109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b2906112ce565b60405180910390fd5b505050565b60606109cf84846000856109d8565b90509392505050565b606082471015610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1490611360565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610a4691906113e6565b60006040518083038185875af1925050503d8060008114610a83576040519150601f19603f3d011682016040523d82523d6000602084013e610a88565b606091505b5091509150610a9987838387610aa5565b92505050949350505050565b60608315610b07576000835103610aff57610abf85610b1a565b610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af590611449565b60405180910390fd5b5b829050610b12565b610b118383610b3d565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115610b505781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8491906114be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610bb882610b8d565b9050919050565b610bc881610bad565b82525050565b6000819050919050565b610be181610bce565b82525050565b6000608082019050610bfc6000830187610bbf565b610c096020830186610bd8565b610c166040830185610bbf565b610c236060830184610bd8565b95945050505050565b600080fd5b610c3a81610bad565b8114610c4557600080fd5b50565b600081359050610c5781610c31565b92915050565b610c6681610bce565b8114610c7157600080fd5b50565b600081359050610c8381610c5d565b92915050565b60008060408385031215610ca057610c9f610c2c565b5b6000610cae85828601610c48565b9250506020610cbf85828601610c74565b9150509250929050565b6000602082019050610cde6000830184610bd8565b92915050565b6000602082019050610cf96000830184610bbf565b92915050565b600060208284031215610d1557610d14610c2c565b5b6000610d2384828501610c74565b91505092915050565b600060208284031215610d4257610d41610c2c565b5b6000610d5084828501610c48565b91505092915050565b600081519050610d6881610c5d565b92915050565b600060208284031215610d8457610d83610c2c565b5b6000610d9284828501610d59565b91505092915050565b600082825260208201905092915050565b7f5377617070696e6720616d6f756e7420657863656564732062616c616e636500600082015250565b6000610de2601f83610d9b565b9150610ded82610dac565b602082019050919050565b60006020820190508181036000830152610e1181610dd5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610e5282610bce565b9150610e5d83610bce565b9250828202610e6b81610bce565b91508282048414831517610e8257610e81610e18565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000610ec382610bce565b9150610ece83610bce565b925082610ede57610edd610e89565b5b828204905092915050565b7f526563656976696e6720616d6f756e7420697320300000000000000000000000600082015250565b6000610f1f601583610d9b565b9150610f2a82610ee9565b602082019050919050565b60006020820190508181036000830152610f4e81610f12565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610fb1602683610d9b565b9150610fbc82610f55565b604082019050919050565b60006020820190508181036000830152610fe081610fa4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061101d602083610d9b565b915061102882610fe7565b602082019050919050565b6000602082019050818103600083015261104c81611010565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000611089601d83610d9b565b915061109482611053565b602082019050919050565b600060208201905081810360008301526110b88161107c565b9050919050565b600081905092915050565b50565b60006110da6000836110bf565b91506110e5826110ca565b600082019050919050565b60006110fb826110cd565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000611161603a83610d9b565b915061116c82611105565b604082019050919050565b6000602082019050818103600083015261119081611154565b9050919050565b60006040820190506111ac6000830185610bbf565b6111b96020830184610bd8565b9392505050565b60006060820190506111d56000830186610bbf565b6111e26020830185610bbf565b6111ef6040830184610bd8565b949350505050565b60008115159050919050565b61120c816111f7565b811461121757600080fd5b50565b60008151905061122981611203565b92915050565b60006020828403121561124557611244610c2c565b5b60006112538482850161121a565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006112b8602a83610d9b565b91506112c38261125c565b604082019050919050565b600060208201905081810360008301526112e7816112ab565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b600061134a602683610d9b565b9150611355826112ee565b604082019050919050565b600060208201905081810360008301526113798161133d565b9050919050565b600081519050919050565b60005b838110156113a957808201518184015260208101905061138e565b60008484015250505050565b60006113c082611380565b6113ca81856110bf565b93506113da81856020860161138b565b80840191505092915050565b60006113f282846113b5565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000611433601d83610d9b565b915061143e826113fd565b602082019050919050565b6000602082019050818103600083015261146281611426565b9050919050565b600081519050919050565b6000601f19601f8301169050919050565b600061149082611469565b61149a8185610d9b565b93506114aa81856020860161138b565b6114b381611474565b840191505092915050565b600060208201905081810360008301526114d88184611485565b90509291505056fea26469706673582212207b0d1338b89b804cb043e3227c69500583dbb50bf2845b38180c398a2873e0f464736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000899e985b18b140aefca18dd7b40d01ef39cc4c960000000000000000000000004a527d8fc13c5203ab24ba0944f4cb14658d1db6000000000000000000000000c9eb61ffb66d5815d643bbb8195e17c49687ae1e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003
-----Decoded View---------------
Arg [0] : contractOwner (address): 0x899E985B18b140AEFca18Dd7b40D01Ef39CC4C96
Arg [1] : oldToken (address): 0x4a527d8fc13C5203AB24BA0944F4Cb14658D1Db6
Arg [2] : newToken (address): 0xc9EB61FFb66d5815d643bBB8195e17C49687aE1E
Arg [3] : iRate (uint256): 2
Arg [4] : oRate (uint256): 3
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000899e985b18b140aefca18dd7b40d01ef39cc4c96
Arg [1] : 0000000000000000000000004a527d8fc13c5203ab24ba0944f4cb14658d1db6
Arg [2] : 000000000000000000000000c9eb61ffb66d5815d643bbb8195e17c49687ae1e
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Deployed Bytecode Sourcemap
25611:4536:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27450:292;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;29890:254;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28069:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2838:103;;;:::i;:::-;;2197:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28558:778;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3096:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27450:292;27530:16;27561;27592;27623:17;27684:9;27696:7;27713:9;27725:8;27668:66;;;;;;;;27450:292;;;;:::o;29890:254::-;2083:13;:11;:13::i;:::-;29970:16:::1;29989:7;:5;:7::i;:::-;29970:26;;30028:1;30011:19;;:5;:19;;::::0;30007:129:::1;;30032:44;30058:8;30069:6;30032:17;:44::i;:::-;30007:129;;;30092:44;30119:8;30129:6;30099:5;30092:26;;;;:44;;;;;:::i;:::-;30007:129;29959:185;29890:254:::0;;:::o;28069:305::-;28168:15;28196;28214:9;:19;;;28234:7;28214:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28196:46;;28272:7;28261;:18;;28253:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28359:7;28347:8;28337:7;:18;;;;:::i;:::-;28336:30;;;;:::i;:::-;28326:40;;28185:189;28069:305;;;;:::o;2838:103::-;2083:13;:11;:13::i;:::-;2903:30:::1;2930:1;2903:18;:30::i;:::-;2838:103::o:0;2197:87::-;2243:7;2270:6;;;;;;;;;;;2263:13;;2197:87;:::o;28558:778::-;28772:14;28789:10;28772:27;;28810:15;28828:26;28838:6;28846:7;28828:9;:26::i;:::-;28810:44;;28883:1;28873:7;:11;28865:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;29108:54;29135:6;25724:42;29154:7;29108:9;:26;;;;:54;;;;;;:::i;:::-;29238:39;29261:6;29269:7;29238:9;:22;;;;:39;;;;;:::i;:::-;29320:7;29311;29303:6;29295:33;;;;;;;;;;;;28598:738;;28558:778;:::o;3096:201::-;2083:13;:11;:13::i;:::-;3205:1:::1;3185:22;;:8;:22;;::::0;3177:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3261:28;3280:8;3261:18;:28::i;:::-;3096:201:::0;:::o;2362:132::-;2437:12;:10;:12::i;:::-;2426:23;;:7;:5;:7::i;:::-;:23;;;2418:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2362:132::o;11613:317::-;11728:6;11703:21;:31;;11695:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11782:12;11800:9;:14;;11822:6;11800:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11781:52;;;11852:7;11844:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11684:246;11613:317;;:::o;19417:177::-;19500:86;19520:5;19550:23;;;19575:2;19579:5;19527:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19500:19;:86::i;:::-;19417:177;;;:::o;3457:191::-;3531:16;3550:6;;;;;;;;;;;3531:25;;3576:8;3567:6;;:17;;;;;;;;;;;;;;;;;;3631:8;3600:40;;3621:8;3600:40;;;;;;;;;;;;3520:128;3457:191;:::o;19839:205::-;19940:96;19960:5;19990:27;;;20019:4;20025:2;20029:5;19967:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19940:19;:96::i;:::-;19839:205;;;;:::o;746:98::-;799:7;826:10;819:17;;746:98;:::o;23740:649::-;24164:23;24190:69;24218:4;24190:69;;;;;;;;;;;;;;;;;24198:5;24190:27;;;;:69;;;;;:::i;:::-;24164:95;;24299:1;24278:10;:17;:22;:56;;;;24315:10;24304:30;;;;;;;;;;;;:::i;:::-;24278:56;24270:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;23810:579;23740:649;;:::o;13109:229::-;13246:12;13278:52;13300:6;13308:4;13314:1;13317:12;13278:21;:52::i;:::-;13271:59;;13109:229;;;;;:::o;14195:455::-;14365:12;14423:5;14398:21;:30;;14390:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;14483:12;14497:23;14524:6;:11;;14543:5;14550:4;14524:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14482:73;;;;14573:69;14600:6;14608:7;14617:10;14629:12;14573:26;:69::i;:::-;14566:76;;;;14195:455;;;;;;:::o;16768:644::-;16953:12;16982:7;16978:427;;;17031:1;17010:10;:17;:22;17006:290;;17228:18;17239:6;17228:10;:18::i;:::-;17220:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;17006:290;17317:10;17310:17;;;;16978:427;17360:33;17368:10;17380:12;17360:7;:33::i;:::-;16768:644;;;;;;;:::o;10354:326::-;10414:4;10671:1;10649:7;:19;;;:23;10642:30;;10354:326;;;:::o;17954:552::-;18135:1;18115:10;:17;:21;18111:388;;;18347:10;18341:17;18404:15;18391:10;18387:2;18383:19;18376:44;18111:388;18474:12;18467:20;;;;;;;;;;;:::i;:::-;;;;;;;;7:126:1;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:77::-;402:7;431:5;420:16;;365:77;;;:::o;448:118::-;535:24;553:5;535:24;:::i;:::-;530:3;523:37;448:118;;:::o;572:553::-;749:4;787:3;776:9;772:19;764:27;;801:71;869:1;858:9;854:17;845:6;801:71;:::i;:::-;882:72;950:2;939:9;935:18;926:6;882:72;:::i;:::-;964;1032:2;1021:9;1017:18;1008:6;964:72;:::i;:::-;1046;1114:2;1103:9;1099:18;1090:6;1046:72;:::i;:::-;572:553;;;;;;;:::o;1212:117::-;1321:1;1318;1311:12;1458:122;1531:24;1549:5;1531:24;:::i;:::-;1524:5;1521:35;1511:63;;1570:1;1567;1560:12;1511:63;1458:122;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1731:122::-;1804:24;1822:5;1804:24;:::i;:::-;1797:5;1794:35;1784:63;;1843:1;1840;1833:12;1784:63;1731:122;:::o;1859:139::-;1905:5;1943:6;1930:20;1921:29;;1959:33;1986:5;1959:33;:::i;:::-;1859:139;;;;:::o;2004:474::-;2072:6;2080;2129:2;2117:9;2108:7;2104:23;2100:32;2097:119;;;2135:79;;:::i;:::-;2097:119;2255:1;2280:53;2325:7;2316:6;2305:9;2301:22;2280:53;:::i;:::-;2270:63;;2226:117;2382:2;2408:53;2453:7;2444:6;2433:9;2429:22;2408:53;:::i;:::-;2398:63;;2353:118;2004:474;;;;;:::o;2484:222::-;2577:4;2615:2;2604:9;2600:18;2592:26;;2628:71;2696:1;2685:9;2681:17;2672:6;2628:71;:::i;:::-;2484:222;;;;:::o;2712:::-;2805:4;2843:2;2832:9;2828:18;2820:26;;2856:71;2924:1;2913:9;2909:17;2900:6;2856:71;:::i;:::-;2712:222;;;;:::o;2940:329::-;2999:6;3048:2;3036:9;3027:7;3023:23;3019:32;3016:119;;;3054:79;;:::i;:::-;3016:119;3174:1;3199:53;3244:7;3235:6;3224:9;3220:22;3199:53;:::i;:::-;3189:63;;3145:117;2940:329;;;;:::o;3275:::-;3334:6;3383:2;3371:9;3362:7;3358:23;3354:32;3351:119;;;3389:79;;:::i;:::-;3351:119;3509:1;3534:53;3579:7;3570:6;3559:9;3555:22;3534:53;:::i;:::-;3524:63;;3480:117;3275:329;;;;:::o;3610:143::-;3667:5;3698:6;3692:13;3683:22;;3714:33;3741:5;3714:33;:::i;:::-;3610:143;;;;:::o;3759:351::-;3829:6;3878:2;3866:9;3857:7;3853:23;3849:32;3846:119;;;3884:79;;:::i;:::-;3846:119;4004:1;4029:64;4085:7;4076:6;4065:9;4061:22;4029:64;:::i;:::-;4019:74;;3975:128;3759:351;;;;:::o;4116:169::-;4200:11;4234:6;4229:3;4222:19;4274:4;4269:3;4265:14;4250:29;;4116:169;;;;:::o;4291:181::-;4431:33;4427:1;4419:6;4415:14;4408:57;4291:181;:::o;4478:366::-;4620:3;4641:67;4705:2;4700:3;4641:67;:::i;:::-;4634:74;;4717:93;4806:3;4717:93;:::i;:::-;4835:2;4830:3;4826:12;4819:19;;4478:366;;;:::o;4850:419::-;5016:4;5054:2;5043:9;5039:18;5031:26;;5103:9;5097:4;5093:20;5089:1;5078:9;5074:17;5067:47;5131:131;5257:4;5131:131;:::i;:::-;5123:139;;4850:419;;;:::o;5275:180::-;5323:77;5320:1;5313:88;5420:4;5417:1;5410:15;5444:4;5441:1;5434:15;5461:410;5501:7;5524:20;5542:1;5524:20;:::i;:::-;5519:25;;5558:20;5576:1;5558:20;:::i;:::-;5553:25;;5613:1;5610;5606:9;5635:30;5653:11;5635:30;:::i;:::-;5624:41;;5814:1;5805:7;5801:15;5798:1;5795:22;5775:1;5768:9;5748:83;5725:139;;5844:18;;:::i;:::-;5725:139;5509:362;5461:410;;;;:::o;5877:180::-;5925:77;5922:1;5915:88;6022:4;6019:1;6012:15;6046:4;6043:1;6036:15;6063:185;6103:1;6120:20;6138:1;6120:20;:::i;:::-;6115:25;;6154:20;6172:1;6154:20;:::i;:::-;6149:25;;6193:1;6183:35;;6198:18;;:::i;:::-;6183:35;6240:1;6237;6233:9;6228:14;;6063:185;;;;:::o;6254:171::-;6394:23;6390:1;6382:6;6378:14;6371:47;6254:171;:::o;6431:366::-;6573:3;6594:67;6658:2;6653:3;6594:67;:::i;:::-;6587:74;;6670:93;6759:3;6670:93;:::i;:::-;6788:2;6783:3;6779:12;6772:19;;6431:366;;;:::o;6803:419::-;6969:4;7007:2;6996:9;6992:18;6984:26;;7056:9;7050:4;7046:20;7042:1;7031:9;7027:17;7020:47;7084:131;7210:4;7084:131;:::i;:::-;7076:139;;6803:419;;;:::o;7228:225::-;7368:34;7364:1;7356:6;7352:14;7345:58;7437:8;7432:2;7424:6;7420:15;7413:33;7228:225;:::o;7459:366::-;7601:3;7622:67;7686:2;7681:3;7622:67;:::i;:::-;7615:74;;7698:93;7787:3;7698:93;:::i;:::-;7816:2;7811:3;7807:12;7800:19;;7459:366;;;:::o;7831:419::-;7997:4;8035:2;8024:9;8020:18;8012:26;;8084:9;8078:4;8074:20;8070:1;8059:9;8055:17;8048:47;8112:131;8238:4;8112:131;:::i;:::-;8104:139;;7831:419;;;:::o;8256:182::-;8396:34;8392:1;8384:6;8380:14;8373:58;8256:182;:::o;8444:366::-;8586:3;8607:67;8671:2;8666:3;8607:67;:::i;:::-;8600:74;;8683:93;8772:3;8683:93;:::i;:::-;8801:2;8796:3;8792:12;8785:19;;8444:366;;;:::o;8816:419::-;8982:4;9020:2;9009:9;9005:18;8997:26;;9069:9;9063:4;9059:20;9055:1;9044:9;9040:17;9033:47;9097:131;9223:4;9097:131;:::i;:::-;9089:139;;8816:419;;;:::o;9241:179::-;9381:31;9377:1;9369:6;9365:14;9358:55;9241:179;:::o;9426:366::-;9568:3;9589:67;9653:2;9648:3;9589:67;:::i;:::-;9582:74;;9665:93;9754:3;9665:93;:::i;:::-;9783:2;9778:3;9774:12;9767:19;;9426:366;;;:::o;9798:419::-;9964:4;10002:2;9991:9;9987:18;9979:26;;10051:9;10045:4;10041:20;10037:1;10026:9;10022:17;10015:47;10079:131;10205:4;10079:131;:::i;:::-;10071:139;;9798:419;;;:::o;10223:147::-;10324:11;10361:3;10346:18;;10223:147;;;;:::o;10376:114::-;;:::o;10496:398::-;10655:3;10676:83;10757:1;10752:3;10676:83;:::i;:::-;10669:90;;10768:93;10857:3;10768:93;:::i;:::-;10886:1;10881:3;10877:11;10870:18;;10496:398;;;:::o;10900:379::-;11084:3;11106:147;11249:3;11106:147;:::i;:::-;11099:154;;11270:3;11263:10;;10900:379;;;:::o;11285:245::-;11425:34;11421:1;11413:6;11409:14;11402:58;11494:28;11489:2;11481:6;11477:15;11470:53;11285:245;:::o;11536:366::-;11678:3;11699:67;11763:2;11758:3;11699:67;:::i;:::-;11692:74;;11775:93;11864:3;11775:93;:::i;:::-;11893:2;11888:3;11884:12;11877:19;;11536:366;;;:::o;11908:419::-;12074:4;12112:2;12101:9;12097:18;12089:26;;12161:9;12155:4;12151:20;12147:1;12136:9;12132:17;12125:47;12189:131;12315:4;12189:131;:::i;:::-;12181:139;;11908:419;;;:::o;12333:332::-;12454:4;12492:2;12481:9;12477:18;12469:26;;12505:71;12573:1;12562:9;12558:17;12549:6;12505:71;:::i;:::-;12586:72;12654:2;12643:9;12639:18;12630:6;12586:72;:::i;:::-;12333:332;;;;;:::o;12671:442::-;12820:4;12858:2;12847:9;12843:18;12835:26;;12871:71;12939:1;12928:9;12924:17;12915:6;12871:71;:::i;:::-;12952:72;13020:2;13009:9;13005:18;12996:6;12952:72;:::i;:::-;13034;13102:2;13091:9;13087:18;13078:6;13034:72;:::i;:::-;12671:442;;;;;;:::o;13119:90::-;13153:7;13196:5;13189:13;13182:21;13171:32;;13119:90;;;:::o;13215:116::-;13285:21;13300:5;13285:21;:::i;:::-;13278:5;13275:32;13265:60;;13321:1;13318;13311:12;13265:60;13215:116;:::o;13337:137::-;13391:5;13422:6;13416:13;13407:22;;13438:30;13462:5;13438:30;:::i;:::-;13337:137;;;;:::o;13480:345::-;13547:6;13596:2;13584:9;13575:7;13571:23;13567:32;13564:119;;;13602:79;;:::i;:::-;13564:119;13722:1;13747:61;13800:7;13791:6;13780:9;13776:22;13747:61;:::i;:::-;13737:71;;13693:125;13480:345;;;;:::o;13831:229::-;13971:34;13967:1;13959:6;13955:14;13948:58;14040:12;14035:2;14027:6;14023:15;14016:37;13831:229;:::o;14066:366::-;14208:3;14229:67;14293:2;14288:3;14229:67;:::i;:::-;14222:74;;14305:93;14394:3;14305:93;:::i;:::-;14423:2;14418:3;14414:12;14407:19;;14066:366;;;:::o;14438:419::-;14604:4;14642:2;14631:9;14627:18;14619:26;;14691:9;14685:4;14681:20;14677:1;14666:9;14662:17;14655:47;14719:131;14845:4;14719:131;:::i;:::-;14711:139;;14438:419;;;:::o;14863:225::-;15003:34;14999:1;14991:6;14987:14;14980:58;15072:8;15067:2;15059:6;15055:15;15048:33;14863:225;:::o;15094:366::-;15236:3;15257:67;15321:2;15316:3;15257:67;:::i;:::-;15250:74;;15333:93;15422:3;15333:93;:::i;:::-;15451:2;15446:3;15442:12;15435:19;;15094:366;;;:::o;15466:419::-;15632:4;15670:2;15659:9;15655:18;15647:26;;15719:9;15713:4;15709:20;15705:1;15694:9;15690:17;15683:47;15747:131;15873:4;15747:131;:::i;:::-;15739:139;;15466:419;;;:::o;15891:98::-;15942:6;15976:5;15970:12;15960:22;;15891:98;;;:::o;15995:246::-;16076:1;16086:113;16100:6;16097:1;16094:13;16086:113;;;16185:1;16180:3;16176:11;16170:18;16166:1;16161:3;16157:11;16150:39;16122:2;16119:1;16115:10;16110:15;;16086:113;;;16233:1;16224:6;16219:3;16215:16;16208:27;16057:184;15995:246;;;:::o;16247:386::-;16351:3;16379:38;16411:5;16379:38;:::i;:::-;16433:88;16514:6;16509:3;16433:88;:::i;:::-;16426:95;;16530:65;16588:6;16583:3;16576:4;16569:5;16565:16;16530:65;:::i;:::-;16620:6;16615:3;16611:16;16604:23;;16355:278;16247:386;;;;:::o;16639:271::-;16769:3;16791:93;16880:3;16871:6;16791:93;:::i;:::-;16784:100;;16901:3;16894:10;;16639:271;;;;:::o;16916:179::-;17056:31;17052:1;17044:6;17040:14;17033:55;16916:179;:::o;17101:366::-;17243:3;17264:67;17328:2;17323:3;17264:67;:::i;:::-;17257:74;;17340:93;17429:3;17340:93;:::i;:::-;17458:2;17453:3;17449:12;17442:19;;17101:366;;;:::o;17473:419::-;17639:4;17677:2;17666:9;17662:18;17654:26;;17726:9;17720:4;17716:20;17712:1;17701:9;17697:17;17690:47;17754:131;17880:4;17754:131;:::i;:::-;17746:139;;17473:419;;;:::o;17898:99::-;17950:6;17984:5;17978:12;17968:22;;17898:99;;;:::o;18003:102::-;18044:6;18095:2;18091:7;18086:2;18079:5;18075:14;18071:28;18061:38;;18003:102;;;:::o;18111:377::-;18199:3;18227:39;18260:5;18227:39;:::i;:::-;18282:71;18346:6;18341:3;18282:71;:::i;:::-;18275:78;;18362:65;18420:6;18415:3;18408:4;18401:5;18397:16;18362:65;:::i;:::-;18452:29;18474:6;18452:29;:::i;:::-;18447:3;18443:39;18436:46;;18203:285;18111:377;;;;:::o;18494:313::-;18607:4;18645:2;18634:9;18630:18;18622:26;;18694:9;18688:4;18684:20;18680:1;18669:9;18665:17;18658:47;18722:78;18795:4;18786:6;18722:78;:::i;:::-;18714:86;;18494:313;;;;:::o
Swarm Source
ipfs://7b0d1338b89b804cb043e3227c69500583dbb50bf2845b38180c398a2873e0f4
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.001922 | 108.5159 | $0.2085 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.