More Info
Private Name Tags
ContractCreator
Multi Chain
Multichain Addresses
1 address found via
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 12647935 | 720 days 11 hrs ago | IN | Contract Creation | 0 ETH | 0.01226536 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x317F96...f8A3Cb7b
Contract Name:
SimpleVault
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-04 */ // SPDX-License-Identifier: GPL-3.0-only pragma experimental ABIEncoderV2; // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <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 () 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: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @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: @openzeppelin/contracts/utils/Address.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity >=0.6.0 <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 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/SimpleVault.sol pragma solidity ^0.6.0; contract SimpleVault is Ownable { using SafeERC20 for IERC20; constructor (address _owner) public { transferOwnership(_owner); } function withdraw(address _token, address _to, uint256 _amount) external onlyOwner { IERC20(_token).safeTransfer(_to, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"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"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001197380380620011978339818101604052810190620000379190620002ee565b600062000049620000ff60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620000f8816200010760201b60201c565b5062000467565b600033905090565b62000117620000ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620001a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019e90620003e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200021a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021190620003c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600081519050620002e8816200044d565b92915050565b6000602082840312156200030157600080fd5b60006200031184828501620002d7565b91505092915050565b60006200032960268362000408565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006200039160208362000408565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620003df816200031a565b9050919050565b60006020820190508181036000830152620004018162000382565b9050919050565b600082825260208201905092915050565b600062000426826200042d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b620004588162000419565b81146200046457600080fd5b50565b610d2080620004776000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063715018a6146100515780638da5cb5b1461005b578063d9caed1214610079578063f2fde38b14610095575b600080fd5b6100596100b1565b005b610063610204565b6040516100709190610ae1565b60405180910390f35b610093600480360381019061008e9190610818565b61022d565b005b6100af60048036038101906100aa91906107ef565b6102f2565b005b6100b96104b4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161013d90610b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6102356104b4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146102c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102b990610b87565b60405180910390fd5b6102ed82828573ffffffffffffffffffffffffffffffffffffffff166104bc9092919063ffffffff16565b505050565b6102fa6104b4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161037e90610b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156103f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ee90610b47565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b61053d8363a9059cbb60e01b84846040516024016104db929190610afc565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610542565b505050565b60606105a4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166106099092919063ffffffff16565b905060008151111561060457808060200190518101906105c49190610867565b610603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fa90610bc7565b60405180910390fd5b5b505050565b60606106188484600085610621565b90509392505050565b606082471015610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d90610b67565b60405180910390fd5b61066f85610736565b6106ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a590610ba7565b60405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040516106d89190610aca565b60006040518083038185875af1925050503d8060008114610715576040519150601f19603f3d011682016040523d82523d6000602084013e61071a565b606091505b509150915061072a828286610749565b92505050949350505050565b600080823b905060008111915050919050565b60608315610759578290506107a9565b60008351111561076c5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a09190610b25565b60405180910390fd5b9392505050565b6000813590506107bf81610ca5565b92915050565b6000815190506107d481610cbc565b92915050565b6000813590506107e981610cd3565b92915050565b60006020828403121561080157600080fd5b600061080f848285016107b0565b91505092915050565b60008060006060848603121561082d57600080fd5b600061083b868287016107b0565b935050602061084c868287016107b0565b925050604061085d868287016107da565b9150509250925092565b60006020828403121561087957600080fd5b6000610887848285016107c5565b91505092915050565b61089981610c19565b82525050565b60006108aa82610be7565b6108b48185610bfd565b93506108c4818560208601610c61565b80840191505092915050565b60006108db82610bf2565b6108e58185610c08565b93506108f5818560208601610c61565b6108fe81610c94565b840191505092915050565b6000610916602683610c08565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061097c602683610c08565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006109e2602083610c08565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000610a22601d83610c08565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000610a62602a83610c08565b91507f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008301527f6f742073756363656564000000000000000000000000000000000000000000006020830152604082019050919050565b610ac481610c57565b82525050565b6000610ad6828461089f565b915081905092915050565b6000602082019050610af66000830184610890565b92915050565b6000604082019050610b116000830185610890565b610b1e6020830184610abb565b9392505050565b60006020820190508181036000830152610b3f81846108d0565b905092915050565b60006020820190508181036000830152610b6081610909565b9050919050565b60006020820190508181036000830152610b808161096f565b9050919050565b60006020820190508181036000830152610ba0816109d5565b9050919050565b60006020820190508181036000830152610bc081610a15565b9050919050565b60006020820190508181036000830152610be081610a55565b9050919050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000610c2482610c37565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015610c7f578082015181840152602081019050610c64565b83811115610c8e576000848401525b50505050565b6000601f19601f8301169050919050565b610cae81610c19565b8114610cb957600080fd5b50565b610cc581610c2b565b8114610cd057600080fd5b50565b610cdc81610c57565b8114610ce757600080fd5b5056fea2646970667358221220f1f69f5d6a8e8d205057c487ca1eb9b04f87349289ee6f33c4c9c77d7f91f5fa64736f6c634300060c0033000000000000000000000000c718e5a5b06ce7fed722b128c0c0eb9c5c902d92
Deployed ByteCode Sourcemap
22405:286:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2816:148;;;:::i;:::-;;2174:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22552:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3119:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2816:148;2396:12;:10;:12::i;:::-;2386:22;;:6;;;;;;;;;;:22;;;2378:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2923:1:::1;2886:40;;2907:6;::::0;::::1;;;;;;;;2886:40;;;;;;;;;;;;2954:1;2937:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2816:148::o:0;2174:79::-;2212:7;2239:6;;;;;;;;;;;2232:13;;2174:79;:::o;22552:136::-;2396:12;:10;:12::i;:::-;2386:22;;:6;;;;;;;;;;:22;;;2378:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22642:41:::1;22670:3;22675:7;22649:6;22642:27;;;;:41;;;;;:::i;:::-;22552:136:::0;;;:::o;3119:244::-;2396:12;:10;:12::i;:::-;2386:22;;:6;;;;;;;;;;:22;;;2378:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;3228:1:::1;3208:22;;:8;:22;;;;3200:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3318:8;3289:38;;3310:6;::::0;::::1;;;;;;;;3289:38;;;;;;;;;;;;3347:8;3338:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;3119:244:::0;:::o;711:106::-;764:15;799:10;792:17;;711:106;:::o;19261:177::-;19344:86;19364:5;19394:23;;;19419:2;19423:5;19371:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19344:19;:86::i;:::-;19261:177;;;:::o;21566:761::-;21990:23;22016:69;22044:4;22016:69;;;;;;;;;;;;;;;;;22024:5;22016:27;;;;:69;;;;;:::i;:::-;21990:95;;22120:1;22100:10;:17;:21;22096:224;;;22242:10;22231:30;;;;;;;;;;;;:::i;:::-;22223:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;22096:224;21566:761;;;:::o;15260:195::-;15363:12;15395:52;15417:6;15425:4;15431:1;15434:12;15395:21;:52::i;:::-;15388:59;;15260:195;;;;;:::o;16312:530::-;16439:12;16497:5;16472:21;:30;;16464:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;16564:18;16575:6;16564:10;:18::i;:::-;16556:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;16690:12;16704:23;16731:6;:11;;16751:5;16759:4;16731:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16689:75;;;;16782:52;16800:7;16809:10;16821:12;16782:17;:52::i;:::-;16775:59;;;;16312:530;;;;;;:::o;12342:422::-;12402:4;12610:12;12721:7;12709:20;12701:28;;12755:1;12748:4;:8;12741:15;;;12342:422;;;:::o;17848:742::-;17963:12;17992:7;17988:595;;;18023:10;18016:17;;;;17988:595;18157:1;18137:10;:17;:21;18133:439;;;18400:10;18394:17;18461:15;18448:10;18444:2;18440:19;18433:44;18348:148;18543:12;18536:20;;;;;;;;;;;:::i;:::-;;;;;;;;17848:742;;;;;;:::o;5:130:-1:-;;85:6;72:20;63:29;;97:33;124:5;97:33;:::i;:::-;57:78;;;;:::o;142:128::-;;223:6;217:13;208:22;;235:30;259:5;235:30;:::i;:::-;202:68;;;;:::o;277:130::-;;357:6;344:20;335:29;;369:33;396:5;369:33;:::i;:::-;329:78;;;;:::o;414:241::-;;518:2;506:9;497:7;493:23;489:32;486:2;;;534:1;531;524:12;486:2;569:1;586:53;631:7;622:6;611:9;607:22;586:53;:::i;:::-;576:63;;548:97;480:175;;;;:::o;662:491::-;;;;800:2;788:9;779:7;775:23;771:32;768:2;;;816:1;813;806:12;768:2;851:1;868:53;913:7;904:6;893:9;889:22;868:53;:::i;:::-;858:63;;830:97;958:2;976:53;1021:7;1012:6;1001:9;997:22;976:53;:::i;:::-;966:63;;937:98;1066:2;1084:53;1129:7;1120:6;1109:9;1105:22;1084:53;:::i;:::-;1074:63;;1045:98;762:391;;;;;:::o;1160:257::-;;1272:2;1260:9;1251:7;1247:23;1243:32;1240:2;;;1288:1;1285;1278:12;1240:2;1323:1;1340:61;1393:7;1384:6;1373:9;1369:22;1340:61;:::i;:::-;1330:71;;1302:105;1234:183;;;;:::o;1424:113::-;1507:24;1525:5;1507:24;:::i;:::-;1502:3;1495:37;1489:48;;:::o;1544:356::-;;1672:38;1704:5;1672:38;:::i;:::-;1722:88;1803:6;1798:3;1722:88;:::i;:::-;1715:95;;1815:52;1860:6;1855:3;1848:4;1841:5;1837:16;1815:52;:::i;:::-;1888:6;1883:3;1879:16;1872:23;;1652:248;;;;;:::o;1907:347::-;;2019:39;2052:5;2019:39;:::i;:::-;2070:71;2134:6;2129:3;2070:71;:::i;:::-;2063:78;;2146:52;2191:6;2186:3;2179:4;2172:5;2168:16;2146:52;:::i;:::-;2219:29;2241:6;2219:29;:::i;:::-;2214:3;2210:39;2203:46;;1999:255;;;;;:::o;2262:375::-;;2422:67;2486:2;2481:3;2422:67;:::i;:::-;2415:74;;2522:34;2518:1;2513:3;2509:11;2502:55;2591:8;2586:2;2581:3;2577:12;2570:30;2628:2;2623:3;2619:12;2612:19;;2408:229;;;:::o;2646:375::-;;2806:67;2870:2;2865:3;2806:67;:::i;:::-;2799:74;;2906:34;2902:1;2897:3;2893:11;2886:55;2975:8;2970:2;2965:3;2961:12;2954:30;3012:2;3007:3;3003:12;2996:19;;2792:229;;;:::o;3030:332::-;;3190:67;3254:2;3249:3;3190:67;:::i;:::-;3183:74;;3290:34;3286:1;3281:3;3277:11;3270:55;3353:2;3348:3;3344:12;3337:19;;3176:186;;;:::o;3371:329::-;;3531:67;3595:2;3590:3;3531:67;:::i;:::-;3524:74;;3631:31;3627:1;3622:3;3618:11;3611:52;3691:2;3686:3;3682:12;3675:19;;3517:183;;;:::o;3709:379::-;;3869:67;3933:2;3928:3;3869:67;:::i;:::-;3862:74;;3969:34;3965:1;3960:3;3956:11;3949:55;4038:12;4033:2;4028:3;4024:12;4017:34;4079:2;4074:3;4070:12;4063:19;;3855:233;;;:::o;4096:113::-;4179:24;4197:5;4179:24;:::i;:::-;4174:3;4167:37;4161:48;;:::o;4216:271::-;;4369:93;4458:3;4449:6;4369:93;:::i;:::-;4362:100;;4479:3;4472:10;;4350:137;;;;:::o;4494:222::-;;4621:2;4610:9;4606:18;4598:26;;4635:71;4703:1;4692:9;4688:17;4679:6;4635:71;:::i;:::-;4592:124;;;;:::o;4723:333::-;;4878:2;4867:9;4863:18;4855:26;;4892:71;4960:1;4949:9;4945:17;4936:6;4892:71;:::i;:::-;4974:72;5042:2;5031:9;5027:18;5018:6;4974:72;:::i;:::-;4849:207;;;;;:::o;5063:310::-;;5210:2;5199:9;5195:18;5187:26;;5260:9;5254:4;5250:20;5246:1;5235:9;5231:17;5224:47;5285:78;5358:4;5349:6;5285:78;:::i;:::-;5277:86;;5181:192;;;;:::o;5380:416::-;;5580:2;5569:9;5565:18;5557:26;;5630:9;5624:4;5620:20;5616:1;5605:9;5601:17;5594:47;5655:131;5781:4;5655:131;:::i;:::-;5647:139;;5551:245;;;:::o;5803:416::-;;6003:2;5992:9;5988:18;5980:26;;6053:9;6047:4;6043:20;6039:1;6028:9;6024:17;6017:47;6078:131;6204:4;6078:131;:::i;:::-;6070:139;;5974:245;;;:::o;6226:416::-;;6426:2;6415:9;6411:18;6403:26;;6476:9;6470:4;6466:20;6462:1;6451:9;6447:17;6440:47;6501:131;6627:4;6501:131;:::i;:::-;6493:139;;6397:245;;;:::o;6649:416::-;;6849:2;6838:9;6834:18;6826:26;;6899:9;6893:4;6889:20;6885:1;6874:9;6870:17;6863:47;6924:131;7050:4;6924:131;:::i;:::-;6916:139;;6820:245;;;:::o;7072:416::-;;7272:2;7261:9;7257:18;7249:26;;7322:9;7316:4;7312:20;7308:1;7297:9;7293:17;7286:47;7347:131;7473:4;7347:131;:::i;:::-;7339:139;;7243:245;;;:::o;7495:121::-;;7588:5;7582:12;7572:22;;7553:63;;;:::o;7623:122::-;;7717:5;7711:12;7701:22;;7682:63;;;:::o;7753:144::-;;7888:3;7873:18;;7866:31;;;;:::o;7906:163::-;;8021:6;8016:3;8009:19;8058:4;8053:3;8049:14;8034:29;;8002:67;;;;:::o;8077:91::-;;8139:24;8157:5;8139:24;:::i;:::-;8128:35;;8122:46;;;:::o;8175:85::-;;8248:5;8241:13;8234:21;8223:32;;8217:43;;;:::o;8267:121::-;;8340:42;8333:5;8329:54;8318:65;;8312:76;;;:::o;8395:72::-;;8457:5;8446:16;;8440:27;;;:::o;8475:268::-;8540:1;8547:101;8561:6;8558:1;8555:13;8547:101;;;8637:1;8632:3;8628:11;8622:18;8618:1;8613:3;8609:11;8602:39;8583:2;8580:1;8576:10;8571:15;;8547:101;;;8663:6;8660:1;8657:13;8654:2;;;8728:1;8719:6;8714:3;8710:16;8703:27;8654:2;8524:219;;;;:::o;8751:97::-;;8839:2;8835:7;8830:2;8823:5;8819:14;8815:28;8805:38;;8799:49;;;:::o;8856:117::-;8925:24;8943:5;8925:24;:::i;:::-;8918:5;8915:35;8905:2;;8964:1;8961;8954:12;8905:2;8899:74;:::o;8980:111::-;9046:21;9061:5;9046:21;:::i;:::-;9039:5;9036:32;9026:2;;9082:1;9079;9072:12;9026:2;9020:71;:::o;9098:117::-;9167:24;9185:5;9167:24;:::i;:::-;9160:5;9157:35;9147:2;;9206:1;9203;9196:12;9147:2;9141:74;:::o
Swarm Source
ipfs://f1f69f5d6a8e8d205057c487ca1eb9b04f87349289ee6f33c4c9c77d7f91f5fa
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
[ 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.