ETH Price: $2,115.99 (-3.23%)

Contract

0xC3d732815Ecddd8C7D044EEE2E3E428eDd7cdd7b
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim Vested Tok...132594522021-09-20 0:30:401648 days ago1632097840IN
0xC3d73281...eDd7cdd7b
0 ETH0.0019690783.82985348
Emergency Withdr...132062012021-09-11 18:52:551656 days ago1631386375IN
0xC3d73281...eDd7cdd7b
0 ETH0.0018924379.58412087
Claim Vested Tok...132061952021-09-11 18:51:591656 days ago1631386319IN
0xC3d73281...eDd7cdd7b
0 ETH0.0021244790.44563785
Claim Vested Tok...128275902021-07-14 21:42:451715 days ago1626298965IN
0xC3d73281...eDd7cdd7b
0 ETH0.0008690937
Claim Vested Tok...127882672021-07-08 18:14:531721 days ago1625768093IN
0xC3d73281...eDd7cdd7b
0 ETH0.0006459427.5
Claim Vested Tok...127007642021-06-25 2:56:461735 days ago1624589806IN
0xC3d73281...eDd7cdd7b
0 ETH0.0006107126
Transfer Ownersh...126942282021-06-24 2:32:481736 days ago1624501968IN
0xC3d73281...eDd7cdd7b
0 ETH0.000315713
Renounce Ownersh...126942282021-06-24 2:32:481736 days ago1624501968IN
0xC3d73281...eDd7cdd7b
0 ETH0.0002615611
Emergency Withdr...126939472021-06-24 1:30:361736 days ago1624498236IN
0xC3d73281...eDd7cdd7b
0 ETH0.0002377910
Emergency Withdr...126939472021-06-24 1:30:361736 days ago1624498236IN
0xC3d73281...eDd7cdd7b
0 ETH0.0002377910
Renounce Ownersh...126939472021-06-24 1:30:361736 days ago1624498236IN
0xC3d73281...eDd7cdd7b
0 ETH0.0002377910
Claim Vested Tok...126938392021-06-24 1:05:141736 days ago1624496714IN
0xC3d73281...eDd7cdd7b
0 ETH0.0002818612
Claim Vested Tok...126937882021-06-24 0:54:071736 days ago1624496047IN
0xC3d73281...eDd7cdd7b
0 ETH0.0002348910
Emergency Withdr...126910342021-06-23 14:54:431736 days ago1624460083IN
0xC3d73281...eDd7cdd7b
0 ETH0.0006765521
Claim Vested Tok...126182422021-06-12 7:03:151748 days ago1623481395IN
0xC3d73281...eDd7cdd7b
0 ETH0.0002583711
Claim Vested Tok...126117342021-06-11 6:48:131749 days ago1623394093IN
0xC3d73281...eDd7cdd7b
0 ETH0.0003523315
Emergency Pause126116462021-06-11 6:27:121749 days ago1623392832IN
0xC3d73281...eDd7cdd7b
0 ETH0.000491617
Claim Vested Tok...126116432021-06-11 6:25:041749 days ago1623392704IN
0xC3d73281...eDd7cdd7b
0 ETH0.0012651915
Claim Vested Tok...126116372021-06-11 6:23:451749 days ago1623392625IN
0xC3d73281...eDd7cdd7b
0 ETH0.0010086915
Claim Vested Tok...126116302021-06-11 6:22:361749 days ago1623392556IN
0xC3d73281...eDd7cdd7b
0 ETH0.0016197616
Claim Vested Tok...126116302021-06-11 6:22:361749 days ago1623392556IN
0xC3d73281...eDd7cdd7b
0 ETH0.0026147231.00000156
Claim Vested Tok...126116272021-06-11 6:21:231749 days ago1623392483IN
0xC3d73281...eDd7cdd7b
0 ETH0.0013495316
Claim Vested Tok...126116132021-06-11 6:19:041749 days ago1623392344IN
0xC3d73281...eDd7cdd7b
0 ETH0.000927811.00000156
Claim Vested Tok...126116072021-06-11 6:17:591749 days ago1623392279IN
0xC3d73281...eDd7cdd7b
0 ETH0.0023616828
Claim Vested Tok...126116062021-06-11 6:17:311749 days ago1623392251IN
0xC3d73281...eDd7cdd7b
0 ETH0.0018556122
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CardsVesting

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 2000 runs

Other Settings:
byzantium EvmVersion
pragma solidity ^0.6.12;

import "@openzeppelin/contracts/GSN/Context.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract CardsVesting is Ownable {
    using SafeMath for uint256;
    using Address for address;

    IERC20 _token;
    bool public paused;
    mapping (address => uint256) public _amounts;
    mapping (address => uint256) public _balances;
    mapping (address => uint256) public _cliffs;
    mapping (address => uint256) public _lasts;
    mapping (address => uint256) public _lastClaim;

    event Claim(address indexed account, uint256 timestamp, uint256 amount);

    constructor(address _tokenAdd) public {
        _token = IERC20(_tokenAdd);
    }

    function vestedTokens(address account) public view returns (uint256) {
        uint256 totTime = _lasts[account].sub(_cliffs[account]);
        uint accTime;
        if (_balances[account] == 0 || _lastClaim[account] >= now) { return 0; }
        else {
            if (_lastClaim[account] <= _cliffs[account] && now <= _cliffs[account]) {
                return 0;
            } else if (_lastClaim[account] <= _cliffs[account] && _cliffs[account] < now && _lasts[account] > now) {
                accTime = now.sub(_cliffs[account]);
                return (_amounts[account].mul(accTime).div(totTime));
            } else if (_lasts[account] <= now) {
                return _balances[account];
            } else if (_lastClaim[account] > _cliffs[account] && _lasts[account] > now) {
                accTime = now.sub(_lastClaim[account]);
                return (_amounts[account].mul(accTime).div(totTime));
            } else {
                return 0;
            }
        }
    }

    function addVesters(address [] memory owners, uint256 [] memory amounts, uint256 [] memory cliffs, uint256 [] memory durations) external onlyOwner() {
        require(amounts.length == cliffs.length && amounts.length == durations.length && owners.length == amounts.length, "Vesting: Incorrect vesting data");
        uint256 totalTokens = 0;
        for(uint i=0; i < owners.length; i++) {
            _amounts[owners[i]] = amounts[i];
            _balances[owners[i]] = amounts[i];
            _cliffs[owners[i]] = cliffs[i];
            _lasts[owners[i]] = cliffs[i].add(durations[i]);
            totalTokens += amounts[i];
        }
        _token.transferFrom(_msgSender(), address(this), totalTokens);
    }

    function emergencyPause(bool _state) external onlyOwner() {
        paused = _state;
    }

    function emergencyWithdraw() external onlyOwner() {
        uint256 tokenBal = _token.balanceOf(address(this));
        _token.transfer(_msgSender(), tokenBal);
    }

    function claimVestedTokens() external notPaused {
        require(_lastClaim[_msgSender()] < now, "Vesting: not enough time");
        uint256 vested = vestedTokens(_msgSender());
        require(vested > 0 && _balances[_msgSender()] > 0, "Vesting: No vested tokens");
        _lastClaim[_msgSender()] = now;
        if (_balances[_msgSender()] < vested) {
            vested = _balances[_msgSender()];
        }
        _balances[_msgSender()] = _balances[_msgSender()].sub(vested);
        _token.transfer(_msgSender(), vested);
        emit Claim(_msgSender(),now,vested);       
    }

    modifier notPaused() {
        require(!paused, "Vesting: claims paused");
        _;
    }
}

File 2 of 7 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/Context.sol";

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/Context.sol";
/**
 * @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 virtual 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;
    }
}

// SPDX-License-Identifier: MIT

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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        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) {
        // 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) {
        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) {
        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) {
        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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev 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;
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 2000
  },
  "evmVersion": "byzantium",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_tokenAdd","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_amounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_cliffs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_lastClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_lasts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256[]","name":"cliffs","type":"uint256[]"},{"internalType":"uint256[]","name":"durations","type":"uint256[]"}],"name":"addVesters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimVestedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"emergencyPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"account","type":"address"}],"name":"vestedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405234801561001057600080fd5b506040516117193803806117198339818101604052602081101561003357600080fd5b505160006100486401000000006100b7810204565b60008054600160a060020a031916600160a060020a0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018054600160a060020a031916600160a060020a03929092169190911790556100bb565b3390565b61164f806100ca6000396000f3fe608060405234801561001057600080fd5b5060043610610107576000357c0100000000000000000000000000000000000000000000000000000000900480638da5cb5b116100a9578063dbd6abe011610083578063dbd6abe014610254578063e74f3fbb14610483578063e8f6940e1461048b578063f2fde38b146104aa57610107565b80638da5cb5b14610202578063c0f86b9414610226578063db2e21bc1461024c57610107565b80635c975abb116100e55780635c975abb146101905780636ebcf607146101ac578063715018a6146101d257806375ef9248146101dc57610107565b80633dee03971461010c5780634d5496a8146101445780635bd389541461016a575b600080fd5b6101326004803603602081101561012257600080fd5b5035600160a060020a03166104d0565b60408051918252519081900360200190f35b6101326004803603602081101561015a57600080fd5b5035600160a060020a031661073b565b6101326004803603602081101561018057600080fd5b5035600160a060020a031661074d565b61019861075f565b604080519115158252519081900360200190f35b610132600480360360208110156101c257600080fd5b5035600160a060020a0316610780565b6101da610792565b005b610132600480360360208110156101f257600080fd5b5035600160a060020a0316610882565b61020a610894565b60408051600160a060020a039092168252519081900360200190f35b6101326004803603602081101561023c57600080fd5b5035600160a060020a03166108a3565b6101da6108b5565b6101da6004803603608081101561026a57600080fd5b81019060208101813564010000000081111561028557600080fd5b82018360208201111561029757600080fd5b803590602001918460208302840111640100000000831117156102b957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561030957600080fd5b82018360208201111561031b57600080fd5b8035906020019184602083028401116401000000008311171561033d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561038d57600080fd5b82018360208201111561039f57600080fd5b803590602001918460208302840111640100000000831117156103c157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561041157600080fd5b82018360208201111561042357600080fd5b8035906020019184602083028401116401000000008311171561044557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610a81945050505050565b6101da610de8565b6101da600480360360208110156104a157600080fd5b503515156111ab565b6101da600480360360208110156104c057600080fd5b5035600160a060020a0316611283565b600160a060020a0381166000908152600460209081526040808320546005909252822054829161050091906113e3565b600160a060020a0384166000908152600360205260408120549192509015806105415750600160a060020a0384166000908152600660205260409020544211155b1561055157600092505050610736565b600160a060020a0384166000908152600460209081526040808320546006909252909120541180159061059c5750600160a060020a0384166000908152600460205260409020544211155b156105ac57600092505050610736565b600160a060020a038416600090815260046020908152604080832054600690925290912054118015906105f65750600160a060020a03841660009081526004602052604090205442115b80156106195750600160a060020a03841660009081526005602052604090205442105b1561067d57600160a060020a0384166000908152600460205260409020546106429042906113e3565b600160a060020a03851660009081526002602052604090205490915061067490839061066e908461145f565b906114d9565b92505050610736565b600160a060020a03841660009081526005602052604090205442106106bd57505050600160a060020a038116600090815260036020526040902054610736565b600160a060020a0384166000908152600460209081526040808320546006909252909120541180156107065750600160a060020a03841660009081526005602052604090205442105b1561072f57600160a060020a0384166000908152600660205260409020546106429042906113e3565b6000925050505b919050565b60066020526000908152604090205481565b60056020526000908152604090205481565b60015474010000000000000000000000000000000000000000900460ff1681565b60036020526000908152604090205481565b61079a61155a565b600160a060020a03166107ab610894565b600160a060020a03161461082057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60046020526000908152604090205481565b600054600160a060020a031690565b60026020526000908152604090205481565b6108bd61155a565b600160a060020a03166108ce610894565b600160a060020a03161461094357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600154604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600092600160a060020a0316916370a08231916024808301926020929190829003018186803b1580156109a757600080fd5b505afa1580156109bb573d6000803e3d6000fd5b505050506040513d60208110156109d157600080fd5b5051600154909150600160a060020a031663a9059cbb6109ef61155a565b836040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610a5257600080fd5b505af1158015610a66573d6000803e3d6000fd5b505050506040513d6020811015610a7c57600080fd5b505050565b610a8961155a565b600160a060020a0316610a9a610894565b600160a060020a031614610b0f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b81518351148015610b21575080518351145b8015610b2e575082518451145b610b9957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f56657374696e673a20496e636f72726563742076657374696e67206461746100604482015290519081900360640190fd5b6000805b8551811015610d3057848181518110610bb257fe5b602002602001015160026000888481518110610bca57fe5b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002081905550848181518110610c0257fe5b602002602001015160036000888481518110610c1a57fe5b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002081905550838181518110610c5257fe5b602002602001015160046000888481518110610c6a57fe5b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002081905550610ccf838281518110610ca557fe5b6020026020010151858381518110610cb957fe5b602002602001015161155e90919063ffffffff16565b60056000888481518110610cdf57fe5b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002081905550848181518110610d1757fe5b6020026020010151820191508080600101915050610b9d565b50600154600160a060020a03166323b872dd610d4a61155a565b604080517c010000000000000000000000000000000000000000000000000000000063ffffffff8516028152600160a060020a039092166004830152306024830152604482018590525160648083019260209291908290030181600087803b158015610db557600080fd5b505af1158015610dc9573d6000803e3d6000fd5b505050506040513d6020811015610ddf57600080fd5b50505050505050565b60015474010000000000000000000000000000000000000000900460ff1615610e7257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f56657374696e673a20636c61696d732070617573656400000000000000000000604482015290519081900360640190fd5b4260066000610e7f61155a565b600160a060020a0316600160a060020a031681526020019081526020016000205410610f0c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f56657374696e673a206e6f7420656e6f7567682074696d650000000000000000604482015290519081900360640190fd5b6000610f1e610f1961155a565b6104d0565b9050600081118015610f5c5750600060036000610f3961155a565b600160a060020a0316600160a060020a0316815260200190815260200160002054115b610fc757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f56657374696e673a204e6f2076657374656420746f6b656e7300000000000000604482015290519081900360640190fd5b4260066000610fd461155a565b600160a060020a0316600160a060020a0316815260200190815260200160002081905550806003600061100561155a565b600160a060020a0316600160a060020a0316815260200190815260200160002054101561105c576003600061103861155a565b600160a060020a0316600160a060020a031681526020019081526020016000205490505b61108c816003600061106c61155a565b600160a060020a03168152602081019190915260400160002054906113e3565b6003600061109861155a565b600160a060020a0390811682526020820192909252604001600020919091556001541663a9059cbb6110c861155a565b836040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316815260200182815260200192505050602060405180830381600087803b15801561112b57600080fd5b505af115801561113f573d6000803e3d6000fd5b505050506040513d602081101561115557600080fd5b50611160905061155a565b600160a060020a03167f34fcbac0073d7c3d388e51312faf357774904998eeb8fca628b9e6f65ee1cbf74283604051808381526020018281526020019250505060405180910390a250565b6111b361155a565b600160a060020a03166111c4610894565b600160a060020a03161461123957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b61128b61155a565b600160a060020a031661129c610894565b600160a060020a03161461131157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600160a060020a038116611370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806115d36026913960400191505060405180910390fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff000000000000000000000000000000000000000016600160a060020a0392909216919091179055565b60008282111561145457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b508082035b92915050565b60008261146e57506000611459565b8282028284828161147b57fe5b04146114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806115f96021913960400191505060405180910390fd5b9392505050565b600080821161154957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161155257fe5b049392505050565b3390565b6000828201838110156114d257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220fe33f2746cc2e8988ae8f35e572017722f042aede7bb7b4caec50d79d15af0a864736f6c634300060c00330000000000000000000000003d6f0dea3ac3c607b3998e6ce14b6350721752d9

Deployed Bytecode

0x608060405234801561001057600080fd5b5060043610610107576000357c0100000000000000000000000000000000000000000000000000000000900480638da5cb5b116100a9578063dbd6abe011610083578063dbd6abe014610254578063e74f3fbb14610483578063e8f6940e1461048b578063f2fde38b146104aa57610107565b80638da5cb5b14610202578063c0f86b9414610226578063db2e21bc1461024c57610107565b80635c975abb116100e55780635c975abb146101905780636ebcf607146101ac578063715018a6146101d257806375ef9248146101dc57610107565b80633dee03971461010c5780634d5496a8146101445780635bd389541461016a575b600080fd5b6101326004803603602081101561012257600080fd5b5035600160a060020a03166104d0565b60408051918252519081900360200190f35b6101326004803603602081101561015a57600080fd5b5035600160a060020a031661073b565b6101326004803603602081101561018057600080fd5b5035600160a060020a031661074d565b61019861075f565b604080519115158252519081900360200190f35b610132600480360360208110156101c257600080fd5b5035600160a060020a0316610780565b6101da610792565b005b610132600480360360208110156101f257600080fd5b5035600160a060020a0316610882565b61020a610894565b60408051600160a060020a039092168252519081900360200190f35b6101326004803603602081101561023c57600080fd5b5035600160a060020a03166108a3565b6101da6108b5565b6101da6004803603608081101561026a57600080fd5b81019060208101813564010000000081111561028557600080fd5b82018360208201111561029757600080fd5b803590602001918460208302840111640100000000831117156102b957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561030957600080fd5b82018360208201111561031b57600080fd5b8035906020019184602083028401116401000000008311171561033d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561038d57600080fd5b82018360208201111561039f57600080fd5b803590602001918460208302840111640100000000831117156103c157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561041157600080fd5b82018360208201111561042357600080fd5b8035906020019184602083028401116401000000008311171561044557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610a81945050505050565b6101da610de8565b6101da600480360360208110156104a157600080fd5b503515156111ab565b6101da600480360360208110156104c057600080fd5b5035600160a060020a0316611283565b600160a060020a0381166000908152600460209081526040808320546005909252822054829161050091906113e3565b600160a060020a0384166000908152600360205260408120549192509015806105415750600160a060020a0384166000908152600660205260409020544211155b1561055157600092505050610736565b600160a060020a0384166000908152600460209081526040808320546006909252909120541180159061059c5750600160a060020a0384166000908152600460205260409020544211155b156105ac57600092505050610736565b600160a060020a038416600090815260046020908152604080832054600690925290912054118015906105f65750600160a060020a03841660009081526004602052604090205442115b80156106195750600160a060020a03841660009081526005602052604090205442105b1561067d57600160a060020a0384166000908152600460205260409020546106429042906113e3565b600160a060020a03851660009081526002602052604090205490915061067490839061066e908461145f565b906114d9565b92505050610736565b600160a060020a03841660009081526005602052604090205442106106bd57505050600160a060020a038116600090815260036020526040902054610736565b600160a060020a0384166000908152600460209081526040808320546006909252909120541180156107065750600160a060020a03841660009081526005602052604090205442105b1561072f57600160a060020a0384166000908152600660205260409020546106429042906113e3565b6000925050505b919050565b60066020526000908152604090205481565b60056020526000908152604090205481565b60015474010000000000000000000000000000000000000000900460ff1681565b60036020526000908152604090205481565b61079a61155a565b600160a060020a03166107ab610894565b600160a060020a03161461082057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60046020526000908152604090205481565b600054600160a060020a031690565b60026020526000908152604090205481565b6108bd61155a565b600160a060020a03166108ce610894565b600160a060020a03161461094357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600154604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600092600160a060020a0316916370a08231916024808301926020929190829003018186803b1580156109a757600080fd5b505afa1580156109bb573d6000803e3d6000fd5b505050506040513d60208110156109d157600080fd5b5051600154909150600160a060020a031663a9059cbb6109ef61155a565b836040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610a5257600080fd5b505af1158015610a66573d6000803e3d6000fd5b505050506040513d6020811015610a7c57600080fd5b505050565b610a8961155a565b600160a060020a0316610a9a610894565b600160a060020a031614610b0f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b81518351148015610b21575080518351145b8015610b2e575082518451145b610b9957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f56657374696e673a20496e636f72726563742076657374696e67206461746100604482015290519081900360640190fd5b6000805b8551811015610d3057848181518110610bb257fe5b602002602001015160026000888481518110610bca57fe5b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002081905550848181518110610c0257fe5b602002602001015160036000888481518110610c1a57fe5b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002081905550838181518110610c5257fe5b602002602001015160046000888481518110610c6a57fe5b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002081905550610ccf838281518110610ca557fe5b6020026020010151858381518110610cb957fe5b602002602001015161155e90919063ffffffff16565b60056000888481518110610cdf57fe5b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002081905550848181518110610d1757fe5b6020026020010151820191508080600101915050610b9d565b50600154600160a060020a03166323b872dd610d4a61155a565b604080517c010000000000000000000000000000000000000000000000000000000063ffffffff8516028152600160a060020a039092166004830152306024830152604482018590525160648083019260209291908290030181600087803b158015610db557600080fd5b505af1158015610dc9573d6000803e3d6000fd5b505050506040513d6020811015610ddf57600080fd5b50505050505050565b60015474010000000000000000000000000000000000000000900460ff1615610e7257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f56657374696e673a20636c61696d732070617573656400000000000000000000604482015290519081900360640190fd5b4260066000610e7f61155a565b600160a060020a0316600160a060020a031681526020019081526020016000205410610f0c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f56657374696e673a206e6f7420656e6f7567682074696d650000000000000000604482015290519081900360640190fd5b6000610f1e610f1961155a565b6104d0565b9050600081118015610f5c5750600060036000610f3961155a565b600160a060020a0316600160a060020a0316815260200190815260200160002054115b610fc757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f56657374696e673a204e6f2076657374656420746f6b656e7300000000000000604482015290519081900360640190fd5b4260066000610fd461155a565b600160a060020a0316600160a060020a0316815260200190815260200160002081905550806003600061100561155a565b600160a060020a0316600160a060020a0316815260200190815260200160002054101561105c576003600061103861155a565b600160a060020a0316600160a060020a031681526020019081526020016000205490505b61108c816003600061106c61155a565b600160a060020a03168152602081019190915260400160002054906113e3565b6003600061109861155a565b600160a060020a0390811682526020820192909252604001600020919091556001541663a9059cbb6110c861155a565b836040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316815260200182815260200192505050602060405180830381600087803b15801561112b57600080fd5b505af115801561113f573d6000803e3d6000fd5b505050506040513d602081101561115557600080fd5b50611160905061155a565b600160a060020a03167f34fcbac0073d7c3d388e51312faf357774904998eeb8fca628b9e6f65ee1cbf74283604051808381526020018281526020019250505060405180910390a250565b6111b361155a565b600160a060020a03166111c4610894565b600160a060020a03161461123957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b61128b61155a565b600160a060020a031661129c610894565b600160a060020a03161461131157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600160a060020a038116611370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806115d36026913960400191505060405180910390fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff000000000000000000000000000000000000000016600160a060020a0392909216919091179055565b60008282111561145457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b508082035b92915050565b60008261146e57506000611459565b8282028284828161147b57fe5b04146114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806115f96021913960400191505060405180910390fd5b9392505050565b600080821161154957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161155257fe5b049392505050565b3390565b6000828201838110156114d257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220fe33f2746cc2e8988ae8f35e572017722f042aede7bb7b4caec50d79d15af0a864736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000003d6f0dea3ac3c607b3998e6ce14b6350721752d9

-----Decoded View---------------
Arg [0] : _tokenAdd (address): 0x3d6F0DEa3AC3C607B3998e6Ce14b6350721752d9

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003d6f0dea3ac3c607b3998e6ce14b6350721752d9


Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.