ETH Price: $3,410.02 (+2.35%)

Contract

0x27AF23d8db2a3FbCe7d04E84f594285fB0059316
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve208982652024-10-05 8:53:4749 days ago1728118427IN
UniMex: UMEX Token
0 ETH0.000108874.5
Approve203224162024-07-16 23:39:11129 days ago1721173151IN
UniMex: UMEX Token
0 ETH0.000150786.23218582
Approve202952592024-07-13 4:40:23133 days ago1720845623IN
UniMex: UMEX Token
0 ETH0.000034451.42414347
Approve201676192024-06-25 8:51:47151 days ago1719305507IN
UniMex: UMEX Token
0 ETH0.000104434.31627687
Approve199510112024-05-26 2:16:59181 days ago1716689819IN
UniMex: UMEX Token
0 ETH0.000070562.9166788
Approve198525352024-05-12 7:44:47195 days ago1715499887IN
UniMex: UMEX Token
0 ETH0.000089173.68580996
Approve198524442024-05-12 7:26:11195 days ago1715498771IN
UniMex: UMEX Token
0 ETH0.000101154.18078467
Approve195935702024-04-06 2:01:11231 days ago1712368871IN
UniMex: UMEX Token
0 ETH0.0002744111.34179443
Approve195935702024-04-06 2:01:11231 days ago1712368871IN
UniMex: UMEX Token
0 ETH0.0002419510
Approve194776852024-03-20 18:26:23248 days ago1710959183IN
UniMex: UMEX Token
0 ETH0.0008071533.36036646
Approve194056422024-03-10 15:39:11258 days ago1710085151IN
UniMex: UMEX Token
0 ETH0.0015164262.70632448
Approve190786632024-01-24 19:45:11304 days ago1706125511IN
UniMex: UMEX Token
0 ETH0.0002782910.62403922
Approve190786632024-01-24 19:45:11304 days ago1706125511IN
UniMex: UMEX Token
0 ETH0.0002570410.62403922
Approve187226482023-12-05 20:53:11354 days ago1701809591IN
UniMex: UMEX Token
0 ETH0.0013145254.33036884
Approve182511372023-09-30 21:14:23420 days ago1696108463IN
UniMex: UMEX Token
0 ETH0.000182877.55856999
Approve176397102023-07-07 4:59:35505 days ago1688705975IN
UniMex: UMEX Token
0 ETH0.0006417426.52407208
Approve176147292023-07-03 16:49:59509 days ago1688402999IN
UniMex: UMEX Token
0 ETH0.0006990328.891586
Approve170368642023-04-13 6:11:35590 days ago1681366295IN
UniMex: UMEX Token
0 ETH0.0006210125.66709747
Approve170171942023-04-10 10:25:11593 days ago1681122311IN
UniMex: UMEX Token
0 ETH0.000467519.32222542
Approve170094232023-04-09 7:58:47594 days ago1681027127IN
UniMex: UMEX Token
0 ETH0.000519721.47983665
Approve170093512023-04-09 7:43:47594 days ago1681026227IN
UniMex: UMEX Token
0 ETH0.0005012520.71744172
Approve169557972023-04-01 17:31:23602 days ago1680370283IN
UniMex: UMEX Token
0 ETH0.0007016529
Approve168864612023-03-22 23:41:23611 days ago1679528483IN
UniMex: UMEX Token
0 ETH0.0004403118.19859996
Transfer From167858832023-03-08 20:23:47626 days ago1678307027IN
UniMex: UMEX Token
0 ETH0.0044371978.02901854
Approve167858822023-03-08 20:23:35626 days ago1678307015IN
UniMex: UMEX Token
0 ETH0.0036267178.02901854
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UniMex

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-27
*/

pragma solidity ^0.6.0;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

pragma solidity ^0.6.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);
}

contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

}

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;
    }
}

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


contract UniMex is ERC20("https://unimex.finance/", "UMEX"), Ownable {
 
   mapping(address => bool) public whitelist;
   bool public locked;
    
    constructor() public {
        locked = true;
    }

    function unlock() public onlyOwner {
        locked = false;
    } 

    function lock() public onlyOwner {
        locked = true;
    }

    function add(address _user) public onlyOwner {
        whitelist[_user] = true;
    }

    function remove(address _user) public onlyOwner {
        whitelist[_user] = false;
    }
    
    function mint(address _to, uint256 _amount) public onlyOwner {
        _mint(_to, _amount);
    }
    
    function transfer(address to, uint256 amount) public override returns (bool) {
        if(locked) {
            require(msg.sender == owner() || whitelist[msg.sender]);
        }
        return super.transfer(to, amount);
    }

    function transferFrom(address from, address to, uint256 amount) public override returns (bool) {
        if(locked) {
            require(from == owner() || whitelist[from]);
        }
        return super.transferFrom(from, to, amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"remove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601781527f68747470733a2f2f756e696d65782e66696e616e63652f0000000000000000006020808301918252835180850190945260048452630aa9a8ab60e31b90840152815191929162000073916003916200011c565b508051620000899060049060208401906200011c565b50506005805460ff19166012179055506000620000ae6001600160e01b036200011716565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506007805460ff19166001179055620001be565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b506200019d929150620001a1565b5090565b6200011991905b808211156200019d5760008155600101620001a8565b61115480620001ce6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a69df4b51161007c578063a69df4b5146103b9578063a9059cbb146103c1578063cf309012146103ed578063dd62ed3e146103f5578063f2fde38b14610423578063f83d08ba1461044957610137565b8063715018a6146103335780638da5cb5b1461033b57806395d89b411461035f5780639b19251a14610367578063a457c2d71461038d57610137565b806329092d0e116100ff57806329092d0e14610271578063313ce5671461029757806339509351146102b557806340c10f19146102e157806370a082311461030d57610137565b806306fdde031461013c578063095ea7b3146101b95780630a3b0a4f146101f957806318160ddd1461022157806323b872dd1461023b575b600080fd5b610144610451565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b0381351690602001356104e7565b604080519115158252519081900360200190f35b61021f6004803603602081101561020f57600080fd5b50356001600160a01b03166104fd565b005b61022961057e565b60408051918252519081900360200190f35b6101e56004803603606081101561025157600080fd5b506001600160a01b03813581169160208101359091169060400135610584565b61021f6004803603602081101561028757600080fd5b50356001600160a01b03166105ed565b61029f61066b565b6040805160ff9092168252519081900360200190f35b6101e5600480360360408110156102cb57600080fd5b506001600160a01b038135169060200135610674565b61021f600480360360408110156102f757600080fd5b506001600160a01b0381351690602001356106b5565b6102296004803603602081101561032357600080fd5b50356001600160a01b0316610720565b61021f61073b565b6103436107e8565b604080516001600160a01b039092168252519081900360200190f35b6101446107fc565b6101e56004803603602081101561037d57600080fd5b50356001600160a01b031661085d565b6101e5600480360360408110156103a357600080fd5b506001600160a01b038135169060200135610872565b61021f6108c7565b6101e5600480360360408110156103d757600080fd5b506001600160a01b038135169060200135610930565b6101e561098e565b6102296004803603604081101561040b57600080fd5b506001600160a01b0381358116916020013516610997565b61021f6004803603602081101561043957600080fd5b50356001600160a01b03166109c2565b61021f610acb565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104dd5780601f106104b2576101008083540402835291602001916104dd565b820191906000526020600020905b8154815290600101906020018083116104c057829003601f168201915b5050505050905090565b60006104f4338484610b37565b50600192915050565b610505610c23565b60055461010090046001600160a01b0390811691161461055a576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60025490565b60075460009060ff16156105da5761059a6107e8565b6001600160a01b0316846001600160a01b031614806105d157506001600160a01b03841660009081526006602052604090205460ff165b6105da57600080fd5b6105e5848484610c27565b949350505050565b6105f5610c23565b60055461010090046001600160a01b0390811691161461064a576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b60055460ff1690565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104f49185906106b0908663ffffffff610c9116565b610b37565b6106bd610c23565b60055461010090046001600160a01b03908116911614610712576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b61071c8282610ceb565b5050565b6001600160a01b031660009081526020819052604090205490565b610743610c23565b60055461010090046001600160a01b03908116911614610798576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104dd5780601f106104b2576101008083540402835291602001916104dd565b60066020526000908152604090205460ff1681565b60006104f433846106b0856040518060600160405280602581526020016110fa602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919063ffffffff610ddb16565b6108cf610c23565b60055461010090046001600160a01b03908116911614610924576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b6007805460ff19169055565b60075460009060ff161561097d576109466107e8565b6001600160a01b0316336001600160a01b0316148061097457503360009081526006602052604090205460ff165b61097d57600080fd5b6109878383610e72565b9392505050565b60075460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109ca610c23565b60055461010090046001600160a01b03908116911614610a1f576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b6001600160a01b038116610a645760405162461bcd60e51b8152600401808060200182810382526026815260200180610ffb6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610ad3610c23565b60055461010090046001600160a01b03908116911614610b28576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b6007805460ff19166001179055565b6001600160a01b038316610b7c5760405162461bcd60e51b81526004018080602001828103825260248152602001806110d66024913960400191505060405180910390fd5b6001600160a01b038216610bc15760405162461bcd60e51b81526004018080602001828103825260228152602001806110216022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b3390565b6000610c34848484610e7b565b610c8784336106b085604051806060016040528060288152602001611069602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919063ffffffff610ddb16565b5060019392505050565b600082820183811015610987576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216610d46576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610d59908263ffffffff610c9116565b6002556001600160a01b038216600090815260208190526040902054610d85908263ffffffff610c9116565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008184841115610e6a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e2f578181015183820152602001610e17565b50505050905090810190601f168015610e5c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006104f43384845b6001600160a01b038316610ec05760405162461bcd60e51b81526004018080602001828103825260258152602001806110b16025913960400191505060405180910390fd5b6001600160a01b038216610f055760405162461bcd60e51b8152600401808060200182810382526023815260200180610fd86023913960400191505060405180910390fd5b610f4881604051806060016040528060268152602001611043602691396001600160a01b038616600090815260208190526040902054919063ffffffff610ddb16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610f7d908263ffffffff610c9116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c8036214a1008fe2709c74fe8a8ccf30c7f1b54f67a19f63af63d27040136a6c64736f6c63430006060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a69df4b51161007c578063a69df4b5146103b9578063a9059cbb146103c1578063cf309012146103ed578063dd62ed3e146103f5578063f2fde38b14610423578063f83d08ba1461044957610137565b8063715018a6146103335780638da5cb5b1461033b57806395d89b411461035f5780639b19251a14610367578063a457c2d71461038d57610137565b806329092d0e116100ff57806329092d0e14610271578063313ce5671461029757806339509351146102b557806340c10f19146102e157806370a082311461030d57610137565b806306fdde031461013c578063095ea7b3146101b95780630a3b0a4f146101f957806318160ddd1461022157806323b872dd1461023b575b600080fd5b610144610451565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b0381351690602001356104e7565b604080519115158252519081900360200190f35b61021f6004803603602081101561020f57600080fd5b50356001600160a01b03166104fd565b005b61022961057e565b60408051918252519081900360200190f35b6101e56004803603606081101561025157600080fd5b506001600160a01b03813581169160208101359091169060400135610584565b61021f6004803603602081101561028757600080fd5b50356001600160a01b03166105ed565b61029f61066b565b6040805160ff9092168252519081900360200190f35b6101e5600480360360408110156102cb57600080fd5b506001600160a01b038135169060200135610674565b61021f600480360360408110156102f757600080fd5b506001600160a01b0381351690602001356106b5565b6102296004803603602081101561032357600080fd5b50356001600160a01b0316610720565b61021f61073b565b6103436107e8565b604080516001600160a01b039092168252519081900360200190f35b6101446107fc565b6101e56004803603602081101561037d57600080fd5b50356001600160a01b031661085d565b6101e5600480360360408110156103a357600080fd5b506001600160a01b038135169060200135610872565b61021f6108c7565b6101e5600480360360408110156103d757600080fd5b506001600160a01b038135169060200135610930565b6101e561098e565b6102296004803603604081101561040b57600080fd5b506001600160a01b0381358116916020013516610997565b61021f6004803603602081101561043957600080fd5b50356001600160a01b03166109c2565b61021f610acb565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104dd5780601f106104b2576101008083540402835291602001916104dd565b820191906000526020600020905b8154815290600101906020018083116104c057829003601f168201915b5050505050905090565b60006104f4338484610b37565b50600192915050565b610505610c23565b60055461010090046001600160a01b0390811691161461055a576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60025490565b60075460009060ff16156105da5761059a6107e8565b6001600160a01b0316846001600160a01b031614806105d157506001600160a01b03841660009081526006602052604090205460ff165b6105da57600080fd5b6105e5848484610c27565b949350505050565b6105f5610c23565b60055461010090046001600160a01b0390811691161461064a576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b60055460ff1690565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104f49185906106b0908663ffffffff610c9116565b610b37565b6106bd610c23565b60055461010090046001600160a01b03908116911614610712576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b61071c8282610ceb565b5050565b6001600160a01b031660009081526020819052604090205490565b610743610c23565b60055461010090046001600160a01b03908116911614610798576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104dd5780601f106104b2576101008083540402835291602001916104dd565b60066020526000908152604090205460ff1681565b60006104f433846106b0856040518060600160405280602581526020016110fa602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919063ffffffff610ddb16565b6108cf610c23565b60055461010090046001600160a01b03908116911614610924576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b6007805460ff19169055565b60075460009060ff161561097d576109466107e8565b6001600160a01b0316336001600160a01b0316148061097457503360009081526006602052604090205460ff165b61097d57600080fd5b6109878383610e72565b9392505050565b60075460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109ca610c23565b60055461010090046001600160a01b03908116911614610a1f576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b6001600160a01b038116610a645760405162461bcd60e51b8152600401808060200182810382526026815260200180610ffb6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610ad3610c23565b60055461010090046001600160a01b03908116911614610b28576040805162461bcd60e51b81526020600482018190526024820152600080516020611091833981519152604482015290519081900360640190fd5b6007805460ff19166001179055565b6001600160a01b038316610b7c5760405162461bcd60e51b81526004018080602001828103825260248152602001806110d66024913960400191505060405180910390fd5b6001600160a01b038216610bc15760405162461bcd60e51b81526004018080602001828103825260228152602001806110216022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b3390565b6000610c34848484610e7b565b610c8784336106b085604051806060016040528060288152602001611069602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919063ffffffff610ddb16565b5060019392505050565b600082820183811015610987576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216610d46576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610d59908263ffffffff610c9116565b6002556001600160a01b038216600090815260208190526040902054610d85908263ffffffff610c9116565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008184841115610e6a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e2f578181015183820152602001610e17565b50505050905090810190601f168015610e5c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006104f43384845b6001600160a01b038316610ec05760405162461bcd60e51b81526004018080602001828103825260258152602001806110b16025913960400191505060405180910390fd5b6001600160a01b038216610f055760405162461bcd60e51b8152600401808060200182810382526023815260200180610fd86023913960400191505060405180910390fd5b610f4881604051806060016040528060268152602001611043602691396001600160a01b038616600090815260208190526040902054919063ffffffff610ddb16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610f7d908263ffffffff610c9116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c8036214a1008fe2709c74fe8a8ccf30c7f1b54f67a19f63af63d27040136a6c64736f6c63430006060033

Deployed Bytecode Sourcemap

18365:1169:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18365:1169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;8355:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8355:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10459:167;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;10459:167:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18732:87;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18732:87:0;-1:-1:-1;;;;;18732:87:0;;:::i;:::-;;9430:100;;;:::i;:::-;;;;;;;;;;;;;;;;19281:248;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19281:248:0;;;;;;;;;;;;;;;;;:::i;18827:91::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18827:91:0;-1:-1:-1;;;;;18827:91:0;;:::i;9282:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11826:214;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;11826:214:0;;;;;;;;:::i;18930:99::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18930:99:0;;;;;;;;:::i;9593:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;9593:119:0;-1:-1:-1;;;;;9593:119:0;;:::i;17809:148::-;;;:::i;17167:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;17167:79:0;;;;;;;;;;;;;;8557:87;;;:::i;18443:41::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18443:41:0;-1:-1:-1;;;;;18443:41:0;;:::i;12543:265::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12543:265:0;;;;;;;;:::i;18582:68::-;;;:::i;19041:232::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19041:232:0;;;;;;;;:::i;18490:18::-;;;:::i;10161:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;10161:151:0;;;;;;;;;;:::i;18112:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18112:244:0;-1:-1:-1;;;;;18112:244:0;;:::i;18659:65::-;;;:::i;8355:83::-;8425:5;8418:12;;;;;;;;-1:-1:-1;;8418:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8392:13;;8418:12;;8425:5;;8418:12;;8425:5;8418:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8355:83;:::o;10459:167::-;10542:4;10559:37;10568:10;10580:7;10589:6;10559:8;:37::i;:::-;-1:-1:-1;10614:4:0;10459:167;;;;:::o;18732:87::-;17389:12;:10;:12::i;:::-;17379:6;;;;;-1:-1:-1;;;;;17379:6:0;;;:22;;;17371:67;;;;;-1:-1:-1;;;17371:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17371:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18788:16:0::1;;::::0;;;:9:::1;:16;::::0;;;;:23;;-1:-1:-1;;18788:23:0::1;18807:4;18788:23;::::0;;18732:87::o;9430:100::-;9510:12;;9430:100;:::o;19281:248::-;19390:6;;19370:4;;19390:6;;19387:81;;;19429:7;:5;:7::i;:::-;-1:-1:-1;;;;;19421:15:0;:4;-1:-1:-1;;;;;19421:15:0;;:34;;;-1:-1:-1;;;;;;19440:15:0;;;;;;:9;:15;;;;;;;;19421:34;19413:43;;12:1:-1;9;2:12;19413:43:0;19485:36;19504:4;19510:2;19514:6;19485:18;:36::i;:::-;19478:43;19281:248;-1:-1:-1;;;;19281:248:0:o;18827:91::-;17389:12;:10;:12::i;:::-;17379:6;;;;;-1:-1:-1;;;;;17379:6:0;;;:22;;;17371:67;;;;;-1:-1:-1;;;17371:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17371:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18886:16:0::1;18905:5;18886:16:::0;;;:9:::1;:16;::::0;;;;:24;;-1:-1:-1;;18886:24:0::1;::::0;;18827:91::o;9282:83::-;9348:9;;;;9282:83;:::o;11826:214::-;11940:10;11914:4;11961:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11961:32:0;;;;;;;;;;11914:4;;11931:79;;11952:7;;11961:48;;11998:10;11961:48;:36;:48;:::i;:::-;11931:8;:79::i;18930:99::-;17389:12;:10;:12::i;:::-;17379:6;;;;;-1:-1:-1;;;;;17379:6:0;;;:22;;;17371:67;;;;;-1:-1:-1;;;17371:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17371:67:0;;;;;;;;;;;;;;;19002:19:::1;19008:3;19013:7;19002:5;:19::i;:::-;18930:99:::0;;:::o;9593:119::-;-1:-1:-1;;;;;9686:18:0;9659:7;9686:18;;;;;;;;;;;;9593:119::o;17809:148::-;17389:12;:10;:12::i;:::-;17379:6;;;;;-1:-1:-1;;;;;17379:6:0;;;:22;;;17371:67;;;;;-1:-1:-1;;;17371:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17371:67:0;;;;;;;;;;;;;;;17900:6:::1;::::0;17879:40:::1;::::0;17916:1:::1;::::0;17900:6:::1;::::0;::::1;-1:-1:-1::0;;;;;17900:6:0::1;::::0;17879:40:::1;::::0;17916:1;;17879:40:::1;17930:6;:19:::0;;-1:-1:-1;;;;;;17930:19:0::1;::::0;;17809:148::o;17167:79::-;17232:6;;;;;-1:-1:-1;;;;;17232:6:0;;17167:79::o;8557:87::-;8629:7;8622:14;;;;;;;;-1:-1:-1;;8622:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8596:13;;8622:14;;8629:7;;8622:14;;8629:7;8622:14;;;;;;;;;;;;;;;;;;;;;;;;18443:41;;;;;;;;;;;;;;;:::o;12543:265::-;12636:4;12653:125;12662:10;12674:7;12683:94;12720:15;12683:94;;;;;;;;;;;;;;;;;12695:10;12683:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12683:32:0;;;;;;;;;;;:94;;:36;:94;:::i;18582:68::-;17389:12;:10;:12::i;:::-;17379:6;;;;;-1:-1:-1;;;;;17379:6:0;;;:22;;;17371:67;;;;;-1:-1:-1;;;17371:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17371:67:0;;;;;;;;;;;;;;;18628:6:::1;:14:::0;;-1:-1:-1;;18628:14:0::1;::::0;;18582:68::o;19041:232::-;19132:6;;19112:4;;19132:6;;19129:93;;;19177:7;:5;:7::i;:::-;-1:-1:-1;;;;;19163:21:0;:10;-1:-1:-1;;;;;19163:21:0;;:46;;;-1:-1:-1;19198:10:0;19188:21;;;;:9;:21;;;;;;;;19163:46;19155:55;;12:1:-1;9;2:12;19155:55:0;19239:26;19254:2;19258:6;19239:14;:26::i;:::-;19232:33;19041:232;-1:-1:-1;;;19041:232:0:o;18490:18::-;;;;;;:::o;10161:151::-;-1:-1:-1;;;;;10277:18:0;;;10250:7;10277:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10161:151::o;18112:244::-;17389:12;:10;:12::i;:::-;17379:6;;;;;-1:-1:-1;;;;;17379:6:0;;;:22;;;17371:67;;;;;-1:-1:-1;;;17371:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17371:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18201:22:0;::::1;18193:73;;;;-1:-1:-1::0;;;18193:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18303:6;::::0;18282:38:::1;::::0;-1:-1:-1;;;;;18282:38:0;;::::1;::::0;18303:6:::1;::::0;::::1;;::::0;18282:38:::1;::::0;;;::::1;18331:6;:17:::0;;-1:-1:-1;;;;;18331:17:0;;::::1;;;-1:-1:-1::0;;;;;;18331:17:0;;::::1;::::0;;;::::1;::::0;;18112:244::o;18659:65::-;17389:12;:10;:12::i;:::-;17379:6;;;;;-1:-1:-1;;;;;17379:6:0;;;:22;;;17371:67;;;;;-1:-1:-1;;;17371:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17371:67:0;;;;;;;;;;;;;;;18703:6:::1;:13:::0;;-1:-1:-1;;18703:13:0::1;18712:4;18703:13;::::0;;18659:65::o;15502:346::-;-1:-1:-1;;;;;15604:19:0;;15596:68;;;;-1:-1:-1;;;15596:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15683:21:0;;15675:68;;;;-1:-1:-1;;;15675:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15756:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15808:32;;;;;;;;;;;;;;;;;15502:346;;;:::o;16312:106::-;16400:10;16312:106;:::o;11100:317::-;11206:4;11223:36;11233:6;11241:9;11252:6;11223:9;:36::i;:::-;11270:117;11279:6;11287:10;11299:87;11335:6;11299:87;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11299:19:0;;;;;;:11;:19;;;;;;;;11319:10;11299:31;;;;;;;;;:87;;:35;:87;:::i;11270:117::-;-1:-1:-1;11405:4:0;11100:317;;;;;:::o;290:181::-;348:7;380:5;;;404:6;;;;396:46;;;;;-1:-1:-1;;;396:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;14058:316;-1:-1:-1;;;;;14142:21:0;;14134:65;;;;;-1:-1:-1;;;14134:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14227:12;;:24;;14244:6;14227:24;:16;:24;:::i;:::-;14212:12;:39;-1:-1:-1;;;;;14283:18:0;;:9;:18;;;;;;;;;;;:30;;14306:6;14283:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;14262:18:0;;:9;:18;;;;;;;;;;;:51;;;;14329:37;;;;;;;14262:18;;:9;;14329:37;;;;;;;;;;14058:316;;:::o;1193:192::-;1279:7;1315:12;1307:6;;;;1299:29;;;;-1:-1:-1;;;1299:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1299:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1351:5:0;;;1193:192::o;9925:173::-;10011:4;10028:40;10038:10;10050:9;10061:6;13298:479;-1:-1:-1;;;;;13404:20:0;;13396:70;;;;-1:-1:-1;;;13396:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13485:23:0;;13477:71;;;;-1:-1:-1;;;13477:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13581;13603:6;13581:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13581:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;13561:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13686:20;;;;;;;:32;;13711:6;13686:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;13663:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13734:35;;;;;;;13663:20;;13734:35;;;;;;;;;;;;;13298:479;;;:::o

Swarm Source

ipfs://c8036214a1008fe2709c74fe8a8ccf30c7f1b54f67a19f63af63d27040136a6c

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

UniMex is a Uniswap based borrowing platform which facilitates the margin trading of native Uniswap assets.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.