ETH Price: $3,094.98 (-3.55%)
Gas: 6 Gwei

Token

0xMix (0MX)
 

Overview

Max Total Supply

100,000,000 0MX

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.052383155466880792 0MX

Value
$0.00
0x93764f433f1eff622f9b7649272e14c5780a929d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Mixer

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-06
*/

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: 0xmixer.sol

//SPDX-License-Identifier: MIT



pragma solidity 0.8.19;

interface DexFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

interface DexRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract Mixer is ERC20, Ownable {


    uint256 private constant _totalSupply = 100_000_000 * 1e18;


    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;

    //Swapping

    bool public tradingEnabled = false;
    uint256 public startTradingBlock;

    //Events
    event Whitelist(address indexed _target, bool indexed _status);

    constructor() ERC20("0xMix", "0MX") {


        whitelisted[msg.sender] = true;

        whitelisted[address(this)] = true;       
        _mint(msg.sender, _totalSupply);

    }

    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        startTradingBlock = block.number;
    }


    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }


function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {

    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");

    if (!whitelisted[_from] && !whitelisted[_to] ) {
        require(tradingEnabled, "Trading not active");
    }
    super._transfer(_from, _to, _amount);
}



    receive() external payable {}
}

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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"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":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"enableTrading","outputs":[],"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":"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"stateMutability":"payable","type":"receive"}]

60806040526007805460ff191690553480156200001b57600080fd5b5060405180604001604052806005815260200164060f09ad2f60db1b815250604051806040016040528060038152602001620609ab60eb1b8152508160039081620000679190620002a5565b506004620000768282620002a5565b505050620000936200008d620000e060201b60201c565b620000e4565b336000818152600660205260408082208054600160ff1991821681179092553084529190922080549091169091179055620000da906a52b7d2dcc80cd2e400000062000136565b62000399565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001915760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001a5919062000371565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022c57607f821691505b6020821081036200024d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001fc57600081815260208120601f850160051c810160208610156200027c5750805b601f850160051c820191505b818110156200029d5782815560010162000288565b505050505050565b81516001600160401b03811115620002c157620002c162000201565b620002d981620002d2845462000217565b8462000253565b602080601f831160018114620003115760008415620002f85750858301515b600019600386901b1c1916600185901b1785556200029d565b600085815260208120601f198616915b82811015620003425788860151825594840194600190910190840162000321565b5085821015620003615787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200039357634e487b7160e01b600052601160045260246000fd5b92915050565b610e3f80620003a96000396000f3fe6080604052600436106101185760003560e01c806370a08231116100a057806395d89b411161006457806395d89b411461030d578063a457c2d714610322578063a9059cbb14610342578063dd62ed3e14610362578063f2fde38b1461038257600080fd5b806370a082311461026f578063715018a6146102a557806376be96f3146102ba5780638a8c523c146102d05780638da5cb5b146102e557600080fd5b80631950c218116100e75780631950c218146101c057806323b872dd146101f9578063313ce5671461021957806339509351146102355780634ada218b1461025557600080fd5b806306fdde0314610124578063095ea7b31461014f5780630c4242841461017f57806318160ddd146101a157600080fd5b3661011f57005b600080fd5b34801561013057600080fd5b506101396103a2565b6040516101469190610c4d565b60405180910390f35b34801561015b57600080fd5b5061016f61016a366004610cb7565b610434565b6040519015158152602001610146565b34801561018b57600080fd5b5061019f61019a366004610ce1565b61044e565b005b3480156101ad57600080fd5b506002545b604051908152602001610146565b3480156101cc57600080fd5b5061016f6101db366004610d1d565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561020557600080fd5b5061016f610214366004610d3f565b6104aa565b34801561022557600080fd5b5060405160128152602001610146565b34801561024157600080fd5b5061016f610250366004610cb7565b6104ce565b34801561026157600080fd5b5060075461016f9060ff1681565b34801561027b57600080fd5b506101b261028a366004610d1d565b6001600160a01b031660009081526020819052604090205490565b3480156102b157600080fd5b5061019f6104f0565b3480156102c657600080fd5b506101b260085481565b3480156102dc57600080fd5b5061019f610504565b3480156102f157600080fd5b506005546040516001600160a01b039091168152602001610146565b34801561031957600080fd5b50610139610577565b34801561032e57600080fd5b5061016f61033d366004610cb7565b610586565b34801561034e57600080fd5b5061016f61035d366004610cb7565b610601565b34801561036e57600080fd5b506101b261037d366004610d7b565b61060f565b34801561038e57600080fd5b5061019f61039d366004610d1d565b61063a565b6060600380546103b190610dae565b80601f01602080910402602001604051908101604052809291908181526020018280546103dd90610dae565b801561042a5780601f106103ff5761010080835404028352916020019161042a565b820191906000526020600020905b81548152906001019060200180831161040d57829003601f168201915b5050505050905090565b6000336104428185856106b3565b60019150505b92915050565b6104566107d7565b6001600160a01b038216600081815260066020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6000336104b8858285610831565b6104c38585856108ab565b506001949350505050565b6000336104428185856104e1838361060f565b6104eb9190610de8565b6106b3565b6104f86107d7565b6105026000610a57565b565b61050c6107d7565b60075460ff16156105645760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6007805460ff1916600117905543600855565b6060600480546103b190610dae565b60003381610594828661060f565b9050838110156105f45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161055b565b6104c382868684036106b3565b6000336104428185856108ab565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106426107d7565b6001600160a01b0381166106a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055b565b6106b081610a57565b50565b6001600160a01b0383166107155760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055b565b6001600160a01b0382166107765760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055b565b600061083d848461060f565b905060001981146108a557818110156108985760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161055b565b6108a584848484036106b3565b50505050565b6001600160a01b0383166109015760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f000000000000604482015260640161055b565b6001600160a01b0382166109575760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f0000000000000000604482015260640161055b565b600081116109b95760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161055b565b6001600160a01b03831660009081526006602052604090205460ff161580156109fb57506001600160a01b03821660009081526006602052604090205460ff16155b15610a475760075460ff16610a475760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b604482015260640161055b565b610a52838383610aa9565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610b0d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161055b565b6001600160a01b038216610b6f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161055b565b6001600160a01b03831660009081526020819052604090205481811015610be75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161055b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108a5565b600060208083528351808285015260005b81811015610c7a57858101830151858201604001528201610c5e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610cb257600080fd5b919050565b60008060408385031215610cca57600080fd5b610cd383610c9b565b946020939093013593505050565b60008060408385031215610cf457600080fd5b610cfd83610c9b565b915060208301358015158114610d1257600080fd5b809150509250929050565b600060208284031215610d2f57600080fd5b610d3882610c9b565b9392505050565b600080600060608486031215610d5457600080fd5b610d5d84610c9b565b9250610d6b60208501610c9b565b9150604084013590509250925092565b60008060408385031215610d8e57600080fd5b610d9783610c9b565b9150610da560208401610c9b565b90509250929050565b600181811c90821680610dc257607f821691505b602082108103610de257634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561044857634e487b7160e01b600052601160045260246000fdfea26469706673582212206c81efad5d6d122184effbbde7673f7268ef7dcc7ca4720ae85a142dbf7c19ed64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101185760003560e01c806370a08231116100a057806395d89b411161006457806395d89b411461030d578063a457c2d714610322578063a9059cbb14610342578063dd62ed3e14610362578063f2fde38b1461038257600080fd5b806370a082311461026f578063715018a6146102a557806376be96f3146102ba5780638a8c523c146102d05780638da5cb5b146102e557600080fd5b80631950c218116100e75780631950c218146101c057806323b872dd146101f9578063313ce5671461021957806339509351146102355780634ada218b1461025557600080fd5b806306fdde0314610124578063095ea7b31461014f5780630c4242841461017f57806318160ddd146101a157600080fd5b3661011f57005b600080fd5b34801561013057600080fd5b506101396103a2565b6040516101469190610c4d565b60405180910390f35b34801561015b57600080fd5b5061016f61016a366004610cb7565b610434565b6040519015158152602001610146565b34801561018b57600080fd5b5061019f61019a366004610ce1565b61044e565b005b3480156101ad57600080fd5b506002545b604051908152602001610146565b3480156101cc57600080fd5b5061016f6101db366004610d1d565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561020557600080fd5b5061016f610214366004610d3f565b6104aa565b34801561022557600080fd5b5060405160128152602001610146565b34801561024157600080fd5b5061016f610250366004610cb7565b6104ce565b34801561026157600080fd5b5060075461016f9060ff1681565b34801561027b57600080fd5b506101b261028a366004610d1d565b6001600160a01b031660009081526020819052604090205490565b3480156102b157600080fd5b5061019f6104f0565b3480156102c657600080fd5b506101b260085481565b3480156102dc57600080fd5b5061019f610504565b3480156102f157600080fd5b506005546040516001600160a01b039091168152602001610146565b34801561031957600080fd5b50610139610577565b34801561032e57600080fd5b5061016f61033d366004610cb7565b610586565b34801561034e57600080fd5b5061016f61035d366004610cb7565b610601565b34801561036e57600080fd5b506101b261037d366004610d7b565b61060f565b34801561038e57600080fd5b5061019f61039d366004610d1d565b61063a565b6060600380546103b190610dae565b80601f01602080910402602001604051908101604052809291908181526020018280546103dd90610dae565b801561042a5780601f106103ff5761010080835404028352916020019161042a565b820191906000526020600020905b81548152906001019060200180831161040d57829003601f168201915b5050505050905090565b6000336104428185856106b3565b60019150505b92915050565b6104566107d7565b6001600160a01b038216600081815260066020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6000336104b8858285610831565b6104c38585856108ab565b506001949350505050565b6000336104428185856104e1838361060f565b6104eb9190610de8565b6106b3565b6104f86107d7565b6105026000610a57565b565b61050c6107d7565b60075460ff16156105645760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6007805460ff1916600117905543600855565b6060600480546103b190610dae565b60003381610594828661060f565b9050838110156105f45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161055b565b6104c382868684036106b3565b6000336104428185856108ab565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106426107d7565b6001600160a01b0381166106a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055b565b6106b081610a57565b50565b6001600160a01b0383166107155760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055b565b6001600160a01b0382166107765760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055b565b600061083d848461060f565b905060001981146108a557818110156108985760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161055b565b6108a584848484036106b3565b50505050565b6001600160a01b0383166109015760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f000000000000604482015260640161055b565b6001600160a01b0382166109575760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f0000000000000000604482015260640161055b565b600081116109b95760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161055b565b6001600160a01b03831660009081526006602052604090205460ff161580156109fb57506001600160a01b03821660009081526006602052604090205460ff16155b15610a475760075460ff16610a475760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b604482015260640161055b565b610a52838383610aa9565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610b0d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161055b565b6001600160a01b038216610b6f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161055b565b6001600160a01b03831660009081526020819052604090205481811015610be75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161055b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108a5565b600060208083528351808285015260005b81811015610c7a57858101830151858201604001528201610c5e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610cb257600080fd5b919050565b60008060408385031215610cca57600080fd5b610cd383610c9b565b946020939093013593505050565b60008060408385031215610cf457600080fd5b610cfd83610c9b565b915060208301358015158114610d1257600080fd5b809150509250929050565b600060208284031215610d2f57600080fd5b610d3882610c9b565b9392505050565b600080600060608486031215610d5457600080fd5b610d5d84610c9b565b9250610d6b60208501610c9b565b9150604084013590509250925092565b60008060408385031215610d8e57600080fd5b610d9783610c9b565b9150610da560208401610c9b565b90509250929050565b600181811c90821680610dc257607f821691505b602082108103610de257634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561044857634e487b7160e01b600052601160045260246000fdfea26469706673582212206c81efad5d6d122184effbbde7673f7268ef7dcc7ca4720ae85a142dbf7c19ed64736f6c63430008130033

Deployed Bytecode Sourcemap

21230:1643:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9314:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11674:201;;;;;;;;;;-1:-1:-1;11674:201:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11674:201:0;1004:187:1;22030:195:0;;;;;;;;;;-1:-1:-1;22030:195:0;;;;;:::i;:::-;;:::i;:::-;;10443:108;;;;;;;;;;-1:-1:-1;10531:12:0;;10443:108;;;1694:25:1;;;1682:2;1667:18;10443:108:0;1548:177:1;22233:116:0;;;;;;;;;;-1:-1:-1;22233:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;22321:20:0;22297:4;22321:20;;;:11;:20;;;;;;;;;22233:116;12455:261;;;;;;;;;;-1:-1:-1;12455:261:0;;;;;:::i;:::-;;:::i;10285:93::-;;;;;;;;;;-1:-1:-1;10285:93:0;;10368:2;2396:36:1;;2384:2;2369:18;10285:93:0;2254:184:1;13125:238:0;;;;;;;;;;-1:-1:-1;13125:238:0;;;;;:::i;:::-;;:::i;21467:34::-;;;;;;;;;;-1:-1:-1;21467:34:0;;;;;;;;10614:127;;;;;;;;;;-1:-1:-1;10614:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10715:18:0;10688:7;10715:18;;;;;;;;;;;;10614:127;2769:103;;;;;;;;;;;;;:::i;21508:32::-;;;;;;;;;;;;;;;;21828:192;;;;;;;;;;;;;:::i;2128:87::-;;;;;;;;;;-1:-1:-1;2201:6:0;;2128:87;;-1:-1:-1;;;;;2201:6:0;;;2589:51:1;;2577:2;2562:18;2128:87:0;2443:203:1;9533:104:0;;;;;;;;;;;;;:::i;13866:436::-;;;;;;;;;;-1:-1:-1;13866:436:0;;;;;:::i;:::-;;:::i;10947:193::-;;;;;;;;;;-1:-1:-1;10947:193:0;;;;;:::i;:::-;;:::i;11203:151::-;;;;;;;;;;-1:-1:-1;11203:151:0;;;;;:::i;:::-;;:::i;3027:201::-;;;;;;;;;;-1:-1:-1;3027:201:0;;;;;:::i;:::-;;:::i;9314:100::-;9368:13;9401:5;9394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9314:100;:::o;11674:201::-;11757:4;759:10;11813:32;759:10;11829:7;11838:6;11813:8;:32::i;:::-;11863:4;11856:11;;;11674:201;;;;;:::o;22030:195::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;22144:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;22144:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;22190:27;;22144:30;;:20;22190:27:::1;::::0;::::1;22030:195:::0;;:::o;12455:261::-;12552:4;759:10;12610:38;12626:4;759:10;12641:6;12610:15;:38::i;:::-;12659:27;12669:4;12675:2;12679:6;12659:9;:27::i;:::-;-1:-1:-1;12704:4:0;;12455:261;-1:-1:-1;;;;12455:261:0:o;13125:238::-;13213:4;759:10;13269:64;759:10;13285:7;13322:10;13294:25;759:10;13285:7;13294:9;:25::i;:::-;:38;;;;:::i;:::-;13269:8;:64::i;2769:103::-;2014:13;:11;:13::i;:::-;2834:30:::1;2861:1;2834:18;:30::i;:::-;2769:103::o:0;21828:192::-;2014:13;:11;:13::i;:::-;21892:14:::1;::::0;::::1;;21891:15;21883:54;;;::::0;-1:-1:-1;;;21883:54:0;;3730:2:1;21883:54:0::1;::::0;::::1;3712:21:1::0;3769:2;3749:18;;;3742:30;3808:28;3788:18;;;3781:56;3854:18;;21883:54:0::1;;;;;;;;;21948:14;:21:::0;;-1:-1:-1;;21948:21:0::1;21965:4;21948:21;::::0;;22000:12:::1;21980:17;:32:::0;21828:192::o;9533:104::-;9589:13;9622:7;9615:14;;;;;:::i;13866:436::-;13959:4;759:10;13959:4;14042:25;759:10;14059:7;14042:9;:25::i;:::-;14015:52;;14106:15;14086:16;:35;;14078:85;;;;-1:-1:-1;;;14078:85:0;;4085:2:1;14078:85:0;;;4067:21:1;4124:2;4104:18;;;4097:30;4163:34;4143:18;;;4136:62;-1:-1:-1;;;4214:18:1;;;4207:35;4259:19;;14078:85:0;3883:401:1;14078:85:0;14199:60;14208:5;14215:7;14243:15;14224:16;:34;14199:8;:60::i;10947:193::-;11026:4;759:10;11082:28;759:10;11099:2;11103:6;11082:9;:28::i;11203:151::-;-1:-1:-1;;;;;11319:18:0;;;11292:7;11319:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11203:151::o;3027:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3116:22:0;::::1;3108:73;;;::::0;-1:-1:-1;;;3108:73:0;;4491:2:1;3108:73:0::1;::::0;::::1;4473:21:1::0;4530:2;4510:18;;;4503:30;4569:34;4549:18;;;4542:62;-1:-1:-1;;;4620:18:1;;;4613:36;4666:19;;3108:73:0::1;4289:402:1::0;3108:73:0::1;3192:28;3211:8;3192:18;:28::i;:::-;3027:201:::0;:::o;17859:346::-;-1:-1:-1;;;;;17961:19:0;;17953:68;;;;-1:-1:-1;;;17953:68:0;;4898:2:1;17953:68:0;;;4880:21:1;4937:2;4917:18;;;4910:30;4976:34;4956:18;;;4949:62;-1:-1:-1;;;5027:18:1;;;5020:34;5071:19;;17953:68:0;4696:400:1;17953:68:0;-1:-1:-1;;;;;18040:21:0;;18032:68;;;;-1:-1:-1;;;18032:68:0;;5303:2:1;18032:68:0;;;5285:21:1;5342:2;5322:18;;;5315:30;5381:34;5361:18;;;5354:62;-1:-1:-1;;;5432:18:1;;;5425:32;5474:19;;18032:68:0;5101:398:1;18032:68:0;-1:-1:-1;;;;;18113:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18165:32;;1694:25:1;;;18165:32:0;;1667:18:1;18165:32:0;;;;;;;17859:346;;;:::o;2293:132::-;2201:6;;-1:-1:-1;;;;;2201:6:0;759:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;5706:2:1;2349:68:0;;;5688:21:1;;;5725:18;;;5718:30;5784:34;5764:18;;;5757:62;5836:18;;2349:68:0;5504:356:1;18496:419:0;18597:24;18624:25;18634:5;18641:7;18624:9;:25::i;:::-;18597:52;;-1:-1:-1;;18664:16:0;:37;18660:248;;18746:6;18726:16;:26;;18718:68;;;;-1:-1:-1;;;18718:68:0;;6067:2:1;18718:68:0;;;6049:21:1;6106:2;6086:18;;;6079:30;6145:31;6125:18;;;6118:59;6194:18;;18718:68:0;5865:353:1;18718:68:0;18830:51;18839:5;18846:7;18874:6;18855:16;:25;18830:8;:51::i;:::-;18586:329;18496:419;;;:::o;22355:474::-;-1:-1:-1;;;;;22480:19:0;;22472:58;;;;-1:-1:-1;;;22472:58:0;;6425:2:1;22472:58:0;;;6407:21:1;6464:2;6444:18;;;6437:30;6503:28;6483:18;;;6476:56;6549:18;;22472:58:0;6223:350:1;22472:58:0;-1:-1:-1;;;;;22545:17:0;;22537:54;;;;-1:-1:-1;;;22537:54:0;;6780:2:1;22537:54:0;;;6762:21:1;6819:2;6799:18;;;6792:30;6858:26;6838:18;;;6831:54;6902:18;;22537:54:0;6578:348:1;22537:54:0;22616:1;22606:7;:11;22598:65;;;;-1:-1:-1;;;22598:65:0;;7133:2:1;22598:65:0;;;7115:21:1;7172:2;7152:18;;;7145:30;7211:34;7191:18;;;7184:62;-1:-1:-1;;;7262:18:1;;;7255:39;7311:19;;22598:65:0;6931:405:1;22598:65:0;-1:-1:-1;;;;;22677:18:0;;;;;;:11;:18;;;;;;;;22676:19;:40;;;;-1:-1:-1;;;;;;22700:16:0;;;;;;:11;:16;;;;;;;;22699:17;22676:40;22672:111;;;22738:14;;;;22730:45;;;;-1:-1:-1;;;22730:45:0;;7543:2:1;22730:45:0;;;7525:21:1;7582:2;7562:18;;;7555:30;-1:-1:-1;;;7601:18:1;;;7594:48;7659:18;;22730:45:0;7341:342:1;22730:45:0;22789:36;22805:5;22812:3;22817:7;22789:15;:36::i;:::-;22355:474;;;:::o;3388:191::-;3481:6;;;-1:-1:-1;;;;;3498:17:0;;;-1:-1:-1;;;;;;3498:17:0;;;;;;;3531:40;;3481:6;;;3498:17;3481:6;;3531:40;;3462:16;;3531:40;3451:128;3388:191;:::o;14772:806::-;-1:-1:-1;;;;;14869:18:0;;14861:68;;;;-1:-1:-1;;;14861:68:0;;7890:2:1;14861:68:0;;;7872:21:1;7929:2;7909:18;;;7902:30;7968:34;7948:18;;;7941:62;-1:-1:-1;;;8019:18:1;;;8012:35;8064:19;;14861:68:0;7688:401:1;14861:68:0;-1:-1:-1;;;;;14948:16:0;;14940:64;;;;-1:-1:-1;;;14940:64:0;;8296:2:1;14940:64:0;;;8278:21:1;8335:2;8315:18;;;8308:30;8374:34;8354:18;;;8347:62;-1:-1:-1;;;8425:18:1;;;8418:33;8468:19;;14940:64:0;8094:399:1;14940:64:0;-1:-1:-1;;;;;15090:15:0;;15068:19;15090:15;;;;;;;;;;;15124:21;;;;15116:72;;;;-1:-1:-1;;;15116:72:0;;8700:2:1;15116:72:0;;;8682:21:1;8739:2;8719:18;;;8712:30;8778:34;8758:18;;;8751:62;-1:-1:-1;;;8829:18:1;;;8822:36;8875:19;;15116:72:0;8498:402:1;15116:72:0;-1:-1:-1;;;;;15224:15:0;;;:9;:15;;;;;;;;;;;15242:20;;;15224:38;;15442:13;;;;;;;;;;:23;;;;;;15494:26;;1694:25:1;;;15442:13:0;;15494:26;;1667:18:1;15494:26:0;;;;;;;15533:37;22355:474;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:347::-;1261:6;1269;1322:2;1310:9;1301:7;1297:23;1293:32;1290:52;;;1338:1;1335;1328:12;1290:52;1361:29;1380:9;1361:29;:::i;:::-;1351:39;;1440:2;1429:9;1425:18;1412:32;1487:5;1480:13;1473:21;1466:5;1463:32;1453:60;;1509:1;1506;1499:12;1453:60;1532:5;1522:15;;;1196:347;;;;;:::o;1730:186::-;1789:6;1842:2;1830:9;1821:7;1817:23;1813:32;1810:52;;;1858:1;1855;1848:12;1810:52;1881:29;1900:9;1881:29;:::i;:::-;1871:39;1730:186;-1:-1:-1;;;1730:186:1:o;1921:328::-;1998:6;2006;2014;2067:2;2055:9;2046:7;2042:23;2038:32;2035:52;;;2083:1;2080;2073:12;2035:52;2106:29;2125:9;2106:29;:::i;:::-;2096:39;;2154:38;2188:2;2177:9;2173:18;2154:38;:::i;:::-;2144:48;;2239:2;2228:9;2224:18;2211:32;2201:42;;1921:328;;;;;:::o;2651:260::-;2719:6;2727;2780:2;2768:9;2759:7;2755:23;2751:32;2748:52;;;2796:1;2793;2786:12;2748:52;2819:29;2838:9;2819:29;:::i;:::-;2809:39;;2867:38;2901:2;2890:9;2886:18;2867:38;:::i;:::-;2857:48;;2651:260;;;;;:::o;2916:380::-;2995:1;2991:12;;;;3038;;;3059:61;;3113:4;3105:6;3101:17;3091:27;;3059:61;3166:2;3158:6;3155:14;3135:18;3132:38;3129:161;;3212:10;3207:3;3203:20;3200:1;3193:31;3247:4;3244:1;3237:15;3275:4;3272:1;3265:15;3129:161;;2916:380;;;:::o;3301:222::-;3366:9;;;3387:10;;;3384:133;;;3439:10;3434:3;3430:20;3427:1;3420:31;3474:4;3471:1;3464:15;3502:4;3499:1;3492:15

Swarm Source

ipfs://6c81efad5d6d122184effbbde7673f7268ef7dcc7ca4720ae85a142dbf7c19ed
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.