Overview
ETH Balance
0.00001 ETH
Eth Value
$0.03 (@ $3,308.46/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 5,534 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 20087139 | 192 days ago | IN | 0.00001 ETH | 0.00014807 | ||||
Admin Withdraw E... | 20021905 | 201 days ago | IN | 0 ETH | 0.00086239 | ||||
Buy ERC20 | 20020689 | 201 days ago | IN | 0 ETH | 0.00059433 | ||||
Buy ETH | 20020669 | 201 days ago | IN | 0.05109 ETH | 0.00028832 | ||||
Buy ETH | 20020664 | 201 days ago | IN | 0.381 ETH | 0.0002692 | ||||
Buy ETH | 20020659 | 201 days ago | IN | 0.014 ETH | 0.00029272 | ||||
Buy ETH | 20020649 | 201 days ago | IN | 0.3033 ETH | 0.00031652 | ||||
Buy ETH | 20020645 | 201 days ago | IN | 0.002641 ETH | 0.00031505 | ||||
Buy ETH | 20020637 | 201 days ago | IN | 0.135 ETH | 0.00029804 | ||||
Buy ETH | 20020605 | 201 days ago | IN | 0.86 ETH | 0.00037247 | ||||
Buy ETH | 20020579 | 201 days ago | IN | 0.05088 ETH | 0.00050169 | ||||
Buy ETH | 20020552 | 201 days ago | IN | 0.0991 ETH | 0.0002818 | ||||
Buy ETH | 20020543 | 201 days ago | IN | 0.012 ETH | 0.00027058 | ||||
Buy ETH | 20020536 | 201 days ago | IN | 0.1 ETH | 0.00028981 | ||||
Buy ETH | 20020534 | 201 days ago | IN | 0.1289 ETH | 0.00027565 | ||||
Buy ETH | 20020523 | 201 days ago | IN | 0.003344 ETH | 0.00027466 | ||||
Buy ETH | 20020486 | 201 days ago | IN | 0.02922 ETH | 0.0003828 | ||||
Buy ETH | 20020208 | 201 days ago | IN | 0.004454 ETH | 0.00028866 | ||||
Buy ETH | 20020176 | 201 days ago | IN | 0.008675 ETH | 0.00033905 | ||||
Buy ETH | 20020175 | 201 days ago | IN | 0.272 ETH | 0.00034383 | ||||
Buy ETH | 20020174 | 201 days ago | IN | 0.01303 ETH | 0.00036902 | ||||
Buy ETH | 20020169 | 201 days ago | IN | 0.132 ETH | 0.00041617 | ||||
Buy ETH | 20020166 | 201 days ago | IN | 0.006555 ETH | 0.00038757 | ||||
Buy ETH | 20020158 | 201 days ago | IN | 0.08237 ETH | 0.0003827 | ||||
Buy ETH | 20020142 | 201 days ago | IN | 0.007629 ETH | 0.00040093 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20021905 | 201 days ago | 6.91463 ETH | ||||
20014736 | 202 days ago | 3.61172309 ETH | ||||
20007580 | 203 days ago | 7.9202806 ETH | ||||
20000419 | 204 days ago | 4.43060766 ETH | ||||
19993252 | 205 days ago | 7.2492389 ETH | ||||
19986095 | 206 days ago | 9.011336 ETH | ||||
19978949 | 207 days ago | 8.0621944 ETH | ||||
19971805 | 208 days ago | 9.9894608 ETH | ||||
19964645 | 209 days ago | 5.2693045 ETH | ||||
19957491 | 210 days ago | 6.53255319 ETH | ||||
19950331 | 211 days ago | 1.4894499 ETH | ||||
19943179 | 212 days ago | 6.0413247 ETH | ||||
19936021 | 213 days ago | 4.977272 ETH | ||||
19928864 | 214 days ago | 8.3400725 ETH | ||||
19921723 | 215 days ago | 7.133555 ETH | ||||
19914565 | 216 days ago | 4.6492679 ETH | ||||
19907423 | 217 days ago | 5.155455 ETH | ||||
19900271 | 218 days ago | 1.346242 ETH | ||||
19893125 | 219 days ago | 6.173363 ETH | ||||
19885981 | 220 days ago | 1.515085 ETH | ||||
19878822 | 221 days ago | 2.624126 ETH | ||||
19871654 | 222 days ago | 5.6616946 ETH | ||||
19864537 | 223 days ago | 6.32976499 ETH | ||||
19857382 | 224 days ago | 3.2179424 ETH | ||||
19850231 | 225 days ago | 3.163834 ETH |
Loading...
Loading
Contract Name:
BuyWithToken
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/interfaces/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract BuyWithToken { using SafeMath for uint256; using SafeERC20 for IERC20; constructor(address _feeClaimer, address _tokenAddress, address _adminAddress) { feeClaimer = _feeClaimer; tokenAddress = _tokenAddress; adminAddress = _adminAddress; } event Buy(address token, uint256 payAmount); address public immutable feeClaimer; address public immutable tokenAddress; address public immutable adminAddress; mapping(address => uint256) buyRecord; struct ClaimRecord { address user; uint256 amount; } function recoverRecords(ClaimRecord[] memory records) public { require(msg.sender == adminAddress, "Only admin can recover claim records"); for (uint256 i = 0; i < records.length; i++) { buyRecord[records[i].user] = records[i].amount; } } function buyERC20(address erc20, uint256 payAmount) public { require(erc20 != address(0), "Invalid token address"); require(payAmount > 0, "Invalid token amount"); require(IERC20(erc20).allowance(msg.sender, address(this)) >= payAmount, "Insufficient allowance"); require(IERC20(erc20).balanceOf(msg.sender) >= payAmount, "Insufficient balance"); IERC20(erc20).safeTransferFrom(msg.sender, address(this), payAmount); emit Buy(erc20, payAmount); } function buyETH() public payable { emit Buy(address(0), msg.value); } function userClaimToken() public { require(buyRecord[msg.sender] > 0, "No token to claim"); require(address(tokenAddress) != address(0), "Meme address not set"); uint256 amount = buyRecord[msg.sender]; IERC20 meme = IERC20(tokenAddress); meme.safeApprove(address(this), amount * (10 ** 18)); meme.safeTransferFrom(address(this), msg.sender, amount * (10 ** 18)); buyRecord[msg.sender] = 0; } function getPurchasedToken(address user) public view returns (uint256) { return buyRecord[user]; } function adminWithdrawERC20(address[] memory tokenTypes, uint256 ethAmount) public { address target = feeClaimer; for (uint256 i = 0; i < tokenTypes.length; i++) { IERC20 token = IERC20(tokenTypes[i]); uint256 withdrawAmount = token.balanceOf(address(this)); require(token.balanceOf(address(this)) >= withdrawAmount, "Insufficient ERC20 balance"); token.safeApprove(address(this), withdrawAmount); token.safeTransferFrom(address(this), target, withdrawAmount); } address payable ethTarget = payable(feeClaimer); require(address(this).balance >= ethAmount, "Insufficient ETH balance"); (bool success, ) = ethTarget.call{ value: ethAmount }(""); require(success, "ETH transfer failed"); } function adminWithdrawETH(uint256 amount) public {} receive() external payable { // Handle the received Ether emit Buy(address(0), msg.value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../token/ERC20/extensions/IERC20Metadata.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (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. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ 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]. * * CAUTION: See Security Considerations above. */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @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. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ 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)); } }
// SPDX-License-Identifier: MIT // 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); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_feeClaimer","type":"address"},{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_adminAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"payAmount","type":"uint256"}],"name":"Buy","type":"event"},{"inputs":[],"name":"adminAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokenTypes","type":"address[]"},{"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"adminWithdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"adminWithdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20","type":"address"},{"internalType":"uint256","name":"payAmount","type":"uint256"}],"name":"buyERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"feeClaimer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getPurchasedToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct BuyWithToken.ClaimRecord[]","name":"records","type":"tuple[]"}],"name":"recoverRecords","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"userClaimToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e06040523480156200001157600080fd5b506040516200217e3803806200217e833981810160405281019062000037919062000146565b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050505050620001a2565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200010e82620000e1565b9050919050565b620001208162000101565b81146200012c57600080fd5b50565b600081519050620001408162000115565b92915050565b600080600060608486031215620001625762000161620000dc565b5b600062000172868287016200012f565b935050602062000185868287016200012f565b925050604062000198868287016200012f565b9150509250925092565b60805160a05160c051611f89620001f5600039600081816105730152610c460152600081816106c701528181610a650152610b210152600081816102620152818161045a01526106a30152611f896000f3fe6080604052600436106100955760003560e01c8063b10804ef11610059578063b10804ef146101ac578063b706477f146101e9578063d3de5d0814610212578063fba7d65014610229578063fc6f946814610233576100d6565b806375cab59a146100db57806380bef7a01461010457806381cbd3ea1461012d5780639d76ea5814610158578063a724001914610183576100d6565b366100d6577fe3d4187f6ca4248660cc0ac8b8056515bac4a8132be2eca31d6d0cc170722a7e6000346040516100cc92919061112f565b60405180910390a1005b600080fd5b3480156100e757600080fd5b5061010260048036038101906100fd919061131d565b61025e565b005b34801561011057600080fd5b5061012b60048036038101906101269190611491565b610571565b005b34801561013957600080fd5b506101426106a1565b60405161014f91906114da565b60405180910390f35b34801561016457600080fd5b5061016d6106c5565b60405161017a91906114da565b60405180910390f35b34801561018f57600080fd5b506101aa60048036038101906101a591906114f5565b6106e9565b005b3480156101b857600080fd5b506101d360048036038101906101ce9190611535565b61097f565b6040516101e09190611562565b60405180910390f35b3480156101f557600080fd5b50610210600480360381019061020b919061157d565b6109c7565b005b34801561021e57600080fd5b506102276109ca565b005b610231610c08565b005b34801561023f57600080fd5b50610248610c44565b60405161025591906114da565b60405180910390f35b60007f0000000000000000000000000000000000000000000000000000000000000000905060005b83518110156104555760008482815181106102a4576102a36115aa565b5b6020026020010151905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016102e991906114da565b602060405180830381865afa158015610306573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061032a91906115ee565b9050808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161036691906114da565b602060405180830381865afa158015610383573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103a791906115ee565b10156103e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103df90611678565b60405180910390fd5b61041330828473ffffffffffffffffffffffffffffffffffffffff16610c689092919063ffffffff16565b6104403085838573ffffffffffffffffffffffffffffffffffffffff16610db7909392919063ffffffff16565b5050808061044d906116c7565b915050610286565b5060007f00000000000000000000000000000000000000000000000000000000000000009050824710156104be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b59061175b565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff16846040516104e4906117ac565b60006040518083038185875af1925050503d8060008114610521576040519150601f19603f3d011682016040523d82523d6000602084013e610526565b606091505b505090508061056a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105619061180d565b60405180910390fd5b5050505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f69061189f565b60405180910390fd5b60005b815181101561069d5781818151811061061e5761061d6115aa565b5b6020026020010151602001516000808484815181106106405761063f6115aa565b5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610695906116c7565b915050610602565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f9061190b565b60405180910390fd5b6000811161079b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079290611977565b60405180910390fd5b808273ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b81526004016107d7929190611997565b602060405180830381865afa1580156107f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081891906115ee565b1015610859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085090611a0c565b60405180910390fd5b808273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161089391906114da565b602060405180830381865afa1580156108b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d491906115ee565b1015610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90611a78565b60405180910390fd5b6109423330838573ffffffffffffffffffffffffffffffffffffffff16610db7909392919063ffffffff16565b7fe3d4187f6ca4248660cc0ac8b8056515bac4a8132be2eca31d6d0cc170722a7e828260405161097392919061112f565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b50565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290611ae4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1603610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190611b50565b60405180910390fd5b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060007f00000000000000000000000000000000000000000000000000000000000000009050610b8030670de0b6b3a764000084610b5a9190611b70565b8373ffffffffffffffffffffffffffffffffffffffff16610c689092919063ffffffff16565b610bc03033670de0b6b3a764000085610b999190611b70565b8473ffffffffffffffffffffffffffffffffffffffff16610db7909392919063ffffffff16565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b7fe3d4187f6ca4248660cc0ac8b8056515bac4a8132be2eca31d6d0cc170722a7e600034604051610c3a92919061112f565b60405180910390a1565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000811480610cf2575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401610caf929190611997565b602060405180830381865afa158015610ccc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf091906115ee565b145b610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890611c24565b60405180910390fd5b610db28363095ea7b360e01b8484604051602401610d5092919061112f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610e40565b505050565b610e3a846323b872dd60e01b858585604051602401610dd893929190611c44565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610e40565b50505050565b6000610ea2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610f089092919063ffffffff16565b9050600081511480610ec4575080806020019051810190610ec39190611cb3565b5b610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90611d52565b60405180910390fd5b505050565b6060610f178484600085610f20565b90509392505050565b606082471015610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90611de4565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610f8e9190611e6a565b60006040518083038185875af1925050503d8060008114610fcb576040519150601f19603f3d011682016040523d82523d6000602084013e610fd0565b606091505b5091509150610fe187838387610fed565b92505050949350505050565b6060831561104f5760008351036110475761100785611062565b611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90611ecd565b60405180910390fd5b5b82905061105a565b6110598383611085565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156110985781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc9190611f31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611100826110d5565b9050919050565b611110816110f5565b82525050565b6000819050919050565b61112981611116565b82525050565b60006040820190506111446000830185611107565b6111516020830184611120565b9392505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6111ba82611171565b810181811067ffffffffffffffff821117156111d9576111d8611182565b5b80604052505050565b60006111ec611158565b90506111f882826111b1565b919050565b600067ffffffffffffffff82111561121857611217611182565b5b602082029050602081019050919050565b600080fd5b611237816110f5565b811461124257600080fd5b50565b6000813590506112548161122e565b92915050565b600061126d611268846111fd565b6111e2565b905080838252602082019050602084028301858111156112905761128f611229565b5b835b818110156112b957806112a58882611245565b845260208401935050602081019050611292565b5050509392505050565b600082601f8301126112d8576112d761116c565b5b81356112e884826020860161125a565b91505092915050565b6112fa81611116565b811461130557600080fd5b50565b600081359050611317816112f1565b92915050565b6000806040838503121561133457611333611162565b5b600083013567ffffffffffffffff81111561135257611351611167565b5b61135e858286016112c3565b925050602061136f85828601611308565b9150509250929050565b600067ffffffffffffffff82111561139457611393611182565b5b602082029050602081019050919050565b600080fd5b6000604082840312156113c0576113bf6113a5565b5b6113ca60406111e2565b905060006113da84828501611245565b60008301525060206113ee84828501611308565b60208301525092915050565b600061140d61140884611379565b6111e2565b905080838252602082019050604084028301858111156114305761142f611229565b5b835b81811015611459578061144588826113aa565b845260208401935050604081019050611432565b5050509392505050565b600082601f8301126114785761147761116c565b5b81356114888482602086016113fa565b91505092915050565b6000602082840312156114a7576114a6611162565b5b600082013567ffffffffffffffff8111156114c5576114c4611167565b5b6114d184828501611463565b91505092915050565b60006020820190506114ef6000830184611107565b92915050565b6000806040838503121561150c5761150b611162565b5b600061151a85828601611245565b925050602061152b85828601611308565b9150509250929050565b60006020828403121561154b5761154a611162565b5b600061155984828501611245565b91505092915050565b60006020820190506115776000830184611120565b92915050565b60006020828403121561159357611592611162565b5b60006115a184828501611308565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506115e8816112f1565b92915050565b60006020828403121561160457611603611162565b5b6000611612848285016115d9565b91505092915050565b600082825260208201905092915050565b7f496e73756666696369656e742045524332302062616c616e6365000000000000600082015250565b6000611662601a8361161b565b915061166d8261162c565b602082019050919050565b6000602082019050818103600083015261169181611655565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116d282611116565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361170457611703611698565b5b600182019050919050565b7f496e73756666696369656e74204554482062616c616e63650000000000000000600082015250565b600061174560188361161b565b91506117508261170f565b602082019050919050565b6000602082019050818103600083015261177481611738565b9050919050565b600081905092915050565b50565b600061179660008361177b565b91506117a182611786565b600082019050919050565b60006117b782611789565b9150819050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b60006117f760138361161b565b9150611802826117c1565b602082019050919050565b60006020820190508181036000830152611826816117ea565b9050919050565b7f4f6e6c792061646d696e2063616e207265636f76657220636c61696d2072656360008201527f6f72647300000000000000000000000000000000000000000000000000000000602082015250565b600061188960248361161b565b91506118948261182d565b604082019050919050565b600060208201905081810360008301526118b88161187c565b9050919050565b7f496e76616c696420746f6b656e20616464726573730000000000000000000000600082015250565b60006118f560158361161b565b9150611900826118bf565b602082019050919050565b60006020820190508181036000830152611924816118e8565b9050919050565b7f496e76616c696420746f6b656e20616d6f756e74000000000000000000000000600082015250565b600061196160148361161b565b915061196c8261192b565b602082019050919050565b6000602082019050818103600083015261199081611954565b9050919050565b60006040820190506119ac6000830185611107565b6119b96020830184611107565b9392505050565b7f496e73756666696369656e7420616c6c6f77616e636500000000000000000000600082015250565b60006119f660168361161b565b9150611a01826119c0565b602082019050919050565b60006020820190508181036000830152611a25816119e9565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b6000611a6260148361161b565b9150611a6d82611a2c565b602082019050919050565b60006020820190508181036000830152611a9181611a55565b9050919050565b7f4e6f20746f6b656e20746f20636c61696d000000000000000000000000000000600082015250565b6000611ace60118361161b565b9150611ad982611a98565b602082019050919050565b60006020820190508181036000830152611afd81611ac1565b9050919050565b7f4d656d652061646472657373206e6f7420736574000000000000000000000000600082015250565b6000611b3a60148361161b565b9150611b4582611b04565b602082019050919050565b60006020820190508181036000830152611b6981611b2d565b9050919050565b6000611b7b82611116565b9150611b8683611116565b9250828202611b9481611116565b91508282048414831517611bab57611baa611698565b5b5092915050565b7f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60008201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000602082015250565b6000611c0e60368361161b565b9150611c1982611bb2565b604082019050919050565b60006020820190508181036000830152611c3d81611c01565b9050919050565b6000606082019050611c596000830186611107565b611c666020830185611107565b611c736040830184611120565b949350505050565b60008115159050919050565b611c9081611c7b565b8114611c9b57600080fd5b50565b600081519050611cad81611c87565b92915050565b600060208284031215611cc957611cc8611162565b5b6000611cd784828501611c9e565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000611d3c602a8361161b565b9150611d4782611ce0565b604082019050919050565b60006020820190508181036000830152611d6b81611d2f565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000611dce60268361161b565b9150611dd982611d72565b604082019050919050565b60006020820190508181036000830152611dfd81611dc1565b9050919050565b600081519050919050565b60005b83811015611e2d578082015181840152602081019050611e12565b60008484015250505050565b6000611e4482611e04565b611e4e818561177b565b9350611e5e818560208601611e0f565b80840191505092915050565b6000611e768284611e39565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000611eb7601d8361161b565b9150611ec282611e81565b602082019050919050565b60006020820190508181036000830152611ee681611eaa565b9050919050565b600081519050919050565b6000611f0382611eed565b611f0d818561161b565b9350611f1d818560208601611e0f565b611f2681611171565b840191505092915050565b60006020820190508181036000830152611f4b8184611ef8565b90509291505056fea26469706673582212205d2b624122479e4bd0fdacd7aaaf698e31d3793c8ba6c5ebde5b930c9dd1e42764736f6c6343000811003300000000000000000000000072896938a32ccbd9e3bd68057e7f9b88217a58980000000000000000000000009f9cc070487257654d0e19c11f4bff1c8a7a460d000000000000000000000000ed0530d16721751e8ac4747e93ec726621f6c85f
Deployed Bytecode
0x6080604052600436106100955760003560e01c8063b10804ef11610059578063b10804ef146101ac578063b706477f146101e9578063d3de5d0814610212578063fba7d65014610229578063fc6f946814610233576100d6565b806375cab59a146100db57806380bef7a01461010457806381cbd3ea1461012d5780639d76ea5814610158578063a724001914610183576100d6565b366100d6577fe3d4187f6ca4248660cc0ac8b8056515bac4a8132be2eca31d6d0cc170722a7e6000346040516100cc92919061112f565b60405180910390a1005b600080fd5b3480156100e757600080fd5b5061010260048036038101906100fd919061131d565b61025e565b005b34801561011057600080fd5b5061012b60048036038101906101269190611491565b610571565b005b34801561013957600080fd5b506101426106a1565b60405161014f91906114da565b60405180910390f35b34801561016457600080fd5b5061016d6106c5565b60405161017a91906114da565b60405180910390f35b34801561018f57600080fd5b506101aa60048036038101906101a591906114f5565b6106e9565b005b3480156101b857600080fd5b506101d360048036038101906101ce9190611535565b61097f565b6040516101e09190611562565b60405180910390f35b3480156101f557600080fd5b50610210600480360381019061020b919061157d565b6109c7565b005b34801561021e57600080fd5b506102276109ca565b005b610231610c08565b005b34801561023f57600080fd5b50610248610c44565b60405161025591906114da565b60405180910390f35b60007f00000000000000000000000072896938a32ccbd9e3bd68057e7f9b88217a5898905060005b83518110156104555760008482815181106102a4576102a36115aa565b5b6020026020010151905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016102e991906114da565b602060405180830381865afa158015610306573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061032a91906115ee565b9050808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161036691906114da565b602060405180830381865afa158015610383573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103a791906115ee565b10156103e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103df90611678565b60405180910390fd5b61041330828473ffffffffffffffffffffffffffffffffffffffff16610c689092919063ffffffff16565b6104403085838573ffffffffffffffffffffffffffffffffffffffff16610db7909392919063ffffffff16565b5050808061044d906116c7565b915050610286565b5060007f00000000000000000000000072896938a32ccbd9e3bd68057e7f9b88217a58989050824710156104be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b59061175b565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff16846040516104e4906117ac565b60006040518083038185875af1925050503d8060008114610521576040519150601f19603f3d011682016040523d82523d6000602084013e610526565b606091505b505090508061056a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105619061180d565b60405180910390fd5b5050505050565b7f000000000000000000000000ed0530d16721751e8ac4747e93ec726621f6c85f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f69061189f565b60405180910390fd5b60005b815181101561069d5781818151811061061e5761061d6115aa565b5b6020026020010151602001516000808484815181106106405761063f6115aa565b5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610695906116c7565b915050610602565b5050565b7f00000000000000000000000072896938a32ccbd9e3bd68057e7f9b88217a589881565b7f0000000000000000000000009f9cc070487257654d0e19c11f4bff1c8a7a460d81565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f9061190b565b60405180910390fd5b6000811161079b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079290611977565b60405180910390fd5b808273ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b81526004016107d7929190611997565b602060405180830381865afa1580156107f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081891906115ee565b1015610859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085090611a0c565b60405180910390fd5b808273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161089391906114da565b602060405180830381865afa1580156108b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d491906115ee565b1015610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90611a78565b60405180910390fd5b6109423330838573ffffffffffffffffffffffffffffffffffffffff16610db7909392919063ffffffff16565b7fe3d4187f6ca4248660cc0ac8b8056515bac4a8132be2eca31d6d0cc170722a7e828260405161097392919061112f565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b50565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290611ae4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff167f0000000000000000000000009f9cc070487257654d0e19c11f4bff1c8a7a460d73ffffffffffffffffffffffffffffffffffffffff1603610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190611b50565b60405180910390fd5b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060007f0000000000000000000000009f9cc070487257654d0e19c11f4bff1c8a7a460d9050610b8030670de0b6b3a764000084610b5a9190611b70565b8373ffffffffffffffffffffffffffffffffffffffff16610c689092919063ffffffff16565b610bc03033670de0b6b3a764000085610b999190611b70565b8473ffffffffffffffffffffffffffffffffffffffff16610db7909392919063ffffffff16565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b7fe3d4187f6ca4248660cc0ac8b8056515bac4a8132be2eca31d6d0cc170722a7e600034604051610c3a92919061112f565b60405180910390a1565b7f000000000000000000000000ed0530d16721751e8ac4747e93ec726621f6c85f81565b6000811480610cf2575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401610caf929190611997565b602060405180830381865afa158015610ccc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf091906115ee565b145b610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890611c24565b60405180910390fd5b610db28363095ea7b360e01b8484604051602401610d5092919061112f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610e40565b505050565b610e3a846323b872dd60e01b858585604051602401610dd893929190611c44565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610e40565b50505050565b6000610ea2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610f089092919063ffffffff16565b9050600081511480610ec4575080806020019051810190610ec39190611cb3565b5b610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90611d52565b60405180910390fd5b505050565b6060610f178484600085610f20565b90509392505050565b606082471015610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90611de4565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610f8e9190611e6a565b60006040518083038185875af1925050503d8060008114610fcb576040519150601f19603f3d011682016040523d82523d6000602084013e610fd0565b606091505b5091509150610fe187838387610fed565b92505050949350505050565b6060831561104f5760008351036110475761100785611062565b611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90611ecd565b60405180910390fd5b5b82905061105a565b6110598383611085565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156110985781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc9190611f31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611100826110d5565b9050919050565b611110816110f5565b82525050565b6000819050919050565b61112981611116565b82525050565b60006040820190506111446000830185611107565b6111516020830184611120565b9392505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6111ba82611171565b810181811067ffffffffffffffff821117156111d9576111d8611182565b5b80604052505050565b60006111ec611158565b90506111f882826111b1565b919050565b600067ffffffffffffffff82111561121857611217611182565b5b602082029050602081019050919050565b600080fd5b611237816110f5565b811461124257600080fd5b50565b6000813590506112548161122e565b92915050565b600061126d611268846111fd565b6111e2565b905080838252602082019050602084028301858111156112905761128f611229565b5b835b818110156112b957806112a58882611245565b845260208401935050602081019050611292565b5050509392505050565b600082601f8301126112d8576112d761116c565b5b81356112e884826020860161125a565b91505092915050565b6112fa81611116565b811461130557600080fd5b50565b600081359050611317816112f1565b92915050565b6000806040838503121561133457611333611162565b5b600083013567ffffffffffffffff81111561135257611351611167565b5b61135e858286016112c3565b925050602061136f85828601611308565b9150509250929050565b600067ffffffffffffffff82111561139457611393611182565b5b602082029050602081019050919050565b600080fd5b6000604082840312156113c0576113bf6113a5565b5b6113ca60406111e2565b905060006113da84828501611245565b60008301525060206113ee84828501611308565b60208301525092915050565b600061140d61140884611379565b6111e2565b905080838252602082019050604084028301858111156114305761142f611229565b5b835b81811015611459578061144588826113aa565b845260208401935050604081019050611432565b5050509392505050565b600082601f8301126114785761147761116c565b5b81356114888482602086016113fa565b91505092915050565b6000602082840312156114a7576114a6611162565b5b600082013567ffffffffffffffff8111156114c5576114c4611167565b5b6114d184828501611463565b91505092915050565b60006020820190506114ef6000830184611107565b92915050565b6000806040838503121561150c5761150b611162565b5b600061151a85828601611245565b925050602061152b85828601611308565b9150509250929050565b60006020828403121561154b5761154a611162565b5b600061155984828501611245565b91505092915050565b60006020820190506115776000830184611120565b92915050565b60006020828403121561159357611592611162565b5b60006115a184828501611308565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506115e8816112f1565b92915050565b60006020828403121561160457611603611162565b5b6000611612848285016115d9565b91505092915050565b600082825260208201905092915050565b7f496e73756666696369656e742045524332302062616c616e6365000000000000600082015250565b6000611662601a8361161b565b915061166d8261162c565b602082019050919050565b6000602082019050818103600083015261169181611655565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116d282611116565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361170457611703611698565b5b600182019050919050565b7f496e73756666696369656e74204554482062616c616e63650000000000000000600082015250565b600061174560188361161b565b91506117508261170f565b602082019050919050565b6000602082019050818103600083015261177481611738565b9050919050565b600081905092915050565b50565b600061179660008361177b565b91506117a182611786565b600082019050919050565b60006117b782611789565b9150819050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b60006117f760138361161b565b9150611802826117c1565b602082019050919050565b60006020820190508181036000830152611826816117ea565b9050919050565b7f4f6e6c792061646d696e2063616e207265636f76657220636c61696d2072656360008201527f6f72647300000000000000000000000000000000000000000000000000000000602082015250565b600061188960248361161b565b91506118948261182d565b604082019050919050565b600060208201905081810360008301526118b88161187c565b9050919050565b7f496e76616c696420746f6b656e20616464726573730000000000000000000000600082015250565b60006118f560158361161b565b9150611900826118bf565b602082019050919050565b60006020820190508181036000830152611924816118e8565b9050919050565b7f496e76616c696420746f6b656e20616d6f756e74000000000000000000000000600082015250565b600061196160148361161b565b915061196c8261192b565b602082019050919050565b6000602082019050818103600083015261199081611954565b9050919050565b60006040820190506119ac6000830185611107565b6119b96020830184611107565b9392505050565b7f496e73756666696369656e7420616c6c6f77616e636500000000000000000000600082015250565b60006119f660168361161b565b9150611a01826119c0565b602082019050919050565b60006020820190508181036000830152611a25816119e9565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b6000611a6260148361161b565b9150611a6d82611a2c565b602082019050919050565b60006020820190508181036000830152611a9181611a55565b9050919050565b7f4e6f20746f6b656e20746f20636c61696d000000000000000000000000000000600082015250565b6000611ace60118361161b565b9150611ad982611a98565b602082019050919050565b60006020820190508181036000830152611afd81611ac1565b9050919050565b7f4d656d652061646472657373206e6f7420736574000000000000000000000000600082015250565b6000611b3a60148361161b565b9150611b4582611b04565b602082019050919050565b60006020820190508181036000830152611b6981611b2d565b9050919050565b6000611b7b82611116565b9150611b8683611116565b9250828202611b9481611116565b91508282048414831517611bab57611baa611698565b5b5092915050565b7f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60008201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000602082015250565b6000611c0e60368361161b565b9150611c1982611bb2565b604082019050919050565b60006020820190508181036000830152611c3d81611c01565b9050919050565b6000606082019050611c596000830186611107565b611c666020830185611107565b611c736040830184611120565b949350505050565b60008115159050919050565b611c9081611c7b565b8114611c9b57600080fd5b50565b600081519050611cad81611c87565b92915050565b600060208284031215611cc957611cc8611162565b5b6000611cd784828501611c9e565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000611d3c602a8361161b565b9150611d4782611ce0565b604082019050919050565b60006020820190508181036000830152611d6b81611d2f565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000611dce60268361161b565b9150611dd982611d72565b604082019050919050565b60006020820190508181036000830152611dfd81611dc1565b9050919050565b600081519050919050565b60005b83811015611e2d578082015181840152602081019050611e12565b60008484015250505050565b6000611e4482611e04565b611e4e818561177b565b9350611e5e818560208601611e0f565b80840191505092915050565b6000611e768284611e39565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000611eb7601d8361161b565b9150611ec282611e81565b602082019050919050565b60006020820190508181036000830152611ee681611eaa565b9050919050565b600081519050919050565b6000611f0382611eed565b611f0d818561161b565b9350611f1d818560208601611e0f565b611f2681611171565b840191505092915050565b60006020820190508181036000830152611f4b8184611ef8565b90509291505056fea26469706673582212205d2b624122479e4bd0fdacd7aaaf698e31d3793c8ba6c5ebde5b930c9dd1e42764736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000072896938a32ccbd9e3bd68057e7f9b88217a58980000000000000000000000009f9cc070487257654d0e19c11f4bff1c8a7a460d000000000000000000000000ed0530d16721751e8ac4747e93ec726621f6c85f
-----Decoded View---------------
Arg [0] : _feeClaimer (address): 0x72896938A32CCBd9E3BD68057E7F9b88217A5898
Arg [1] : _tokenAddress (address): 0x9f9cc070487257654d0e19C11f4bFF1c8A7A460D
Arg [2] : _adminAddress (address): 0xEd0530D16721751e8aC4747E93Ec726621F6C85f
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000072896938a32ccbd9e3bd68057e7f9b88217a5898
Arg [1] : 0000000000000000000000009f9cc070487257654d0e19c11f4bff1c8a7a460d
Arg [2] : 000000000000000000000000ed0530d16721751e8ac4747e93ec726621f6c85f
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.