ETH Price: $3,301.18 (-0.24%)

Token

CryptoAutos (AUTOS)
 

Overview

Max Total Supply

1,000,000,000 AUTOS

Holders

6,397

Market

Price

$0.03 @ 0.000008 ETH (-0.22%)

Onchain Market Cap

$27,611,890.00

Circulating Supply Market Cap

$8,960,601.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,697,250 AUTOS

Value
$157,311.84 ( ~47.6532 Eth) [0.5697%]
0xb6c0c934706dbb0a9ce17cdd012c27431b744daf
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Revolutionizing the car-buying experience, CryptoAutos marketplace empowers car dealers to showcase their vehicles to a global audience while enabling customers to seamlessly purchase cars using digital assets.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AUTOS

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-12-06
*/

//CryptoAutos (AUTOS) Token Contract 
//https://www.cryptoautos.com/
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (token/ERC20/ERC20.sol)

pragma solidity ^0.8.28;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
 */
/**
 * @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 `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);

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

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);
}
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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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;
        }
        _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;
        _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;
        }
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 {}
}

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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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);
    }
}
pragma solidity ^0.8.28;

contract AUTOS is ERC20, Ownable {
    using SafeMath for uint256;
    
    uint256 private _totalSupply = 1000000000 * 1e18;
    uint256 private _currentSupply = 0;

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    mapping(address => bool) public blacklisted;
    
    constructor() ERC20("CryptoAutos", "AUTOS") {
        // Mint the initial supply to the contract deployer
        _mint(msg.sender, 1000000000 * 10**18); // 1 billion tokens with 18 decimal places
    }

        function transfer(address to, uint256 amount) public override returns (bool) {
        address owner = _msgSender();
        require(!blacklisted[owner],'Blacklisted');
        _transfer(owner, to, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        require(!blacklisted[from],'Blacklisted');
        _transfer(from, to, amount);
        return true;
    }

    function setAsBlackListed(address _user, bool _enabled) external onlyOwner{
        blacklisted[_user] = _enabled;
    } 

}

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":"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":"","type":"address"}],"name":"blacklisted","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":[{"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":"_user","type":"address"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setAsBlackListed","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"}]

60806040526b033b2e3c9fd0803ce80000006006555f600755348015610023575f5ffd5b506040518060400160405280600b81526020016a43727970746f4175746f7360a81b815250604051806040016040528060058152602001644155544f5360d81b81525081600390816100759190610287565b5060046100828282610287565b50505061009b6100966100b660201b60201c565b6100ba565b6100b1336b033b2e3c9fd0803ce800000061010b565b610366565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166101655760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546101769190610341565b90915550506001600160a01b0382165f90815260208190526040812080548392906101a2908490610341565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061021857607f821691505b60208210810361023657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156101eb57805f5260205f20601f840160051c810160208510156102615750805b601f840160051c820191505b81811015610280575f815560010161026d565b5050505050565b81516001600160401b038111156102a0576102a06101f0565b6102b4816102ae8454610204565b8461023c565b6020601f8211600181146102e6575f83156102cf5750848201515b5f19600385901b1c1916600184901b178455610280565b5f84815260208120601f198516915b8281101561031557878501518255602094850194600190920191016102f5565b508482101561033257868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561036057634e487b7160e01b5f52601160045260245ffd5b92915050565b610bd4806103735f395ff3fe608060405234801561000f575f5ffd5b50600436106100fb575f3560e01c8063715018a611610093578063a9059cbb11610063578063a9059cbb14610202578063dbac26e914610215578063dd62ed3e14610237578063f2fde38b1461026f575f5ffd5b8063715018a6146101c45780638da5cb5b146101cc57806395d89b41146101e7578063a457c2d7146101ef575f5ffd5b8063313ce567116100ce578063313ce5671461016557806339509351146101745780635c1026691461018757806370a082311461019c575f5ffd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f5ffd5b610107610282565b60405161011491906109d6565b60405180910390f35b61013061012b366004610a26565b610312565b6040519015158152602001610114565b6006545b604051908152602001610114565b610130610160366004610a4e565b61032b565b60405160128152602001610114565b610130610182366004610a26565b6103a9565b61019a610195366004610a88565b6103e7565b005b6101446101aa366004610ac1565b6001600160a01b03165f9081526020819052604090205490565b61019a61043b565b6005546040516001600160a01b039091168152602001610114565b610107610470565b6101306101fd366004610a26565b61047f565b610130610210366004610a26565b610510565b610130610223366004610ac1565b60086020525f908152604090205460ff1681565b610144610245366004610ae1565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61019a61027d366004610ac1565b61056b565b60606003805461029190610b12565b80601f01602080910402602001604051908101604052809291908181526020018280546102bd90610b12565b80156103085780601f106102df57610100808354040283529160200191610308565b820191905f5260205f20905b8154815290600101906020018083116102eb57829003601f168201915b5050505050905090565b5f3361031f818585610606565b60019150505b92915050565b5f33610338858285610729565b6001600160a01b0385165f9081526008602052604090205460ff16156103935760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064015b60405180910390fd5b61039e8585856107b9565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061031f90829086906103e2908790610b4a565b610606565b6005546001600160a01b031633146104115760405162461bcd60e51b815260040161038a90610b69565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146104655760405162461bcd60e51b815260040161038a90610b69565b61046e5f610985565b565b60606004805461029190610b12565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105035760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161038a565b61039e8286868403610606565b335f8181526008602052604081205490919060ff16156105605760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640161038a565b61031f8185856107b9565b6005546001600160a01b031633146105955760405162461bcd60e51b815260040161038a90610b69565b6001600160a01b0381166105fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161038a565b61060381610985565b50565b6001600160a01b0383166106685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038a565b6001600160a01b0382166106c95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146107b357818110156107a65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161038a565b6107b38484848403610606565b50505050565b6001600160a01b03831661081d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038a565b6001600160a01b03821661087f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038a565b6001600160a01b0383165f90815260208190526040902054818110156108f65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161038a565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061092c908490610b4a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161097891815260200190565b60405180910390a36107b3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610a21575f5ffd5b919050565b5f5f60408385031215610a37575f5ffd5b610a4083610a0b565b946020939093013593505050565b5f5f5f60608486031215610a60575f5ffd5b610a6984610a0b565b9250610a7760208501610a0b565b929592945050506040919091013590565b5f5f60408385031215610a99575f5ffd5b610aa283610a0b565b915060208301358015158114610ab6575f5ffd5b809150509250929050565b5f60208284031215610ad1575f5ffd5b610ada82610a0b565b9392505050565b5f5f60408385031215610af2575f5ffd5b610afb83610a0b565b9150610b0960208401610a0b565b90509250929050565b600181811c90821680610b2657607f821691505b602082108103610b4457634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561032557634e487b7160e01b5f52601160045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220ab0ce72d58d25641e5a1e10466afd34020a63dbeea1e614294926389139a282d64736f6c634300081c0033

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106100fb575f3560e01c8063715018a611610093578063a9059cbb11610063578063a9059cbb14610202578063dbac26e914610215578063dd62ed3e14610237578063f2fde38b1461026f575f5ffd5b8063715018a6146101c45780638da5cb5b146101cc57806395d89b41146101e7578063a457c2d7146101ef575f5ffd5b8063313ce567116100ce578063313ce5671461016557806339509351146101745780635c1026691461018757806370a082311461019c575f5ffd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f5ffd5b610107610282565b60405161011491906109d6565b60405180910390f35b61013061012b366004610a26565b610312565b6040519015158152602001610114565b6006545b604051908152602001610114565b610130610160366004610a4e565b61032b565b60405160128152602001610114565b610130610182366004610a26565b6103a9565b61019a610195366004610a88565b6103e7565b005b6101446101aa366004610ac1565b6001600160a01b03165f9081526020819052604090205490565b61019a61043b565b6005546040516001600160a01b039091168152602001610114565b610107610470565b6101306101fd366004610a26565b61047f565b610130610210366004610a26565b610510565b610130610223366004610ac1565b60086020525f908152604090205460ff1681565b610144610245366004610ae1565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61019a61027d366004610ac1565b61056b565b60606003805461029190610b12565b80601f01602080910402602001604051908101604052809291908181526020018280546102bd90610b12565b80156103085780601f106102df57610100808354040283529160200191610308565b820191905f5260205f20905b8154815290600101906020018083116102eb57829003601f168201915b5050505050905090565b5f3361031f818585610606565b60019150505b92915050565b5f33610338858285610729565b6001600160a01b0385165f9081526008602052604090205460ff16156103935760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064015b60405180910390fd5b61039e8585856107b9565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061031f90829086906103e2908790610b4a565b610606565b6005546001600160a01b031633146104115760405162461bcd60e51b815260040161038a90610b69565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146104655760405162461bcd60e51b815260040161038a90610b69565b61046e5f610985565b565b60606004805461029190610b12565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105035760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161038a565b61039e8286868403610606565b335f8181526008602052604081205490919060ff16156105605760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640161038a565b61031f8185856107b9565b6005546001600160a01b031633146105955760405162461bcd60e51b815260040161038a90610b69565b6001600160a01b0381166105fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161038a565b61060381610985565b50565b6001600160a01b0383166106685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038a565b6001600160a01b0382166106c95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146107b357818110156107a65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161038a565b6107b38484848403610606565b50505050565b6001600160a01b03831661081d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038a565b6001600160a01b03821661087f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038a565b6001600160a01b0383165f90815260208190526040902054818110156108f65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161038a565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061092c908490610b4a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161097891815260200190565b60405180910390a36107b3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610a21575f5ffd5b919050565b5f5f60408385031215610a37575f5ffd5b610a4083610a0b565b946020939093013593505050565b5f5f5f60608486031215610a60575f5ffd5b610a6984610a0b565b9250610a7760208501610a0b565b929592945050506040919091013590565b5f5f60408385031215610a99575f5ffd5b610aa283610a0b565b915060208301358015158114610ab6575f5ffd5b809150509250929050565b5f60208284031215610ad1575f5ffd5b610ada82610a0b565b9392505050565b5f5f60408385031215610af2575f5ffd5b610afb83610a0b565b9150610b0960208401610a0b565b90509250929050565b600181811c90821680610b2657607f821691505b602082108103610b4457634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561032557634e487b7160e01b5f52601160045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220ab0ce72d58d25641e5a1e10466afd34020a63dbeea1e614294926389139a282d64736f6c634300081c0033

Deployed Bytecode Sourcemap

25126:1279:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12425:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14776:201;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;14776:201:0;920:187:1;25303:100:0;25383:12;;25303:100;;;1258:25:1;;;1246:2;1231:18;25303:100:0;1112:177:1;25930:339:0;;;;;;:::i;:::-;;:::i;13387:93::-;;;13470:2;1815:36:1;;1803:2;1788:18;13387:93:0;1673:184:1;16261:240:0;;;;;;:::i;:::-;;:::i;26277:122::-;;;;;;:::i;:::-;;:::i;:::-;;13716:127;;;;;;:::i;:::-;-1:-1:-1;;;;;13817:18:0;13790:7;13817:18;;;;;;;;;;;;13716:127;24283:103;;;:::i;23632:87::-;23705:6;;23632:87;;-1:-1:-1;;;;;23705:6:0;;;2551:51:1;;2539:2;2524:18;23632:87:0;2405:203:1;12644:104:0;;;:::i;17004:438::-;;;;;;:::i;:::-;;:::i;25684:238::-;;;;;;:::i;:::-;;:::i;25411:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;14305:151;;;;;;:::i;:::-;-1:-1:-1;;;;;14421:18:0;;;14394:7;14421:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14305:151;24541:201;;;;;;:::i;:::-;;:::i;12425:100::-;12479:13;12512:5;12505:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12425:100;:::o;14776:201::-;14859:4;7174:10;14915:32;7174:10;14931:7;14940:6;14915:8;:32::i;:::-;14965:4;14958:11;;;14776:201;;;;;:::o;25930:339::-;26053:4;7174:10;26111:38;26127:4;7174:10;26142:6;26111:15;:38::i;:::-;-1:-1:-1;;;;;26169:17:0;;;;;;:11;:17;;;;;;;;26168:18;26160:41;;;;-1:-1:-1;;;26160:41:0;;3465:2:1;26160:41:0;;;3447:21:1;3504:2;3484:18;;;3477:30;-1:-1:-1;;;3523:18:1;;;3516:41;3574:18;;26160:41:0;;;;;;;;;26212:27;26222:4;26228:2;26232:6;26212:9;:27::i;:::-;-1:-1:-1;26257:4:0;;25930:339;-1:-1:-1;;;;25930:339:0:o;16261:240::-;7174:10;16349:4;16430:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;16430:27:0;;;;;;;;;;16349:4;;7174:10;16405:66;;7174:10;;16430:27;;:40;;16460:10;;16430:40;:::i;:::-;16405:8;:66::i;26277:122::-;23705:6;;-1:-1:-1;;;;;23705:6:0;7174:10;23852:23;23844:68;;;;-1:-1:-1;;;23844:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26362:18:0;;;::::1;;::::0;;;:11:::1;:18;::::0;;;;:29;;-1:-1:-1;;26362:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26277:122::o;24283:103::-;23705:6;;-1:-1:-1;;;;;23705:6:0;7174:10;23852:23;23844:68;;;;-1:-1:-1;;;23844:68:0;;;;;;;:::i;:::-;24348:30:::1;24375:1;24348:18;:30::i;:::-;24283:103::o:0;12644:104::-;12700:13;12733:7;12726:14;;;;;:::i;17004:438::-;7174:10;17097:4;17180:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;17180:27:0;;;;;;;;;;17097:4;;7174:10;17226:35;;;;17218:85;;;;-1:-1:-1;;;17218:85:0;;4393:2:1;17218:85:0;;;4375:21:1;4432:2;4412:18;;;4405:30;4471:34;4451:18;;;4444:62;-1:-1:-1;;;4522:18:1;;;4515:35;4567:19;;17218:85:0;4191:401:1;17218:85:0;17339:60;17348:5;17355:7;17383:15;17364:16;:34;17339:8;:60::i;25684:238::-;7174:10;25755:4;25820:18;;;:11;:18;;;;;;25755:4;;7174:10;25820:18;;25819:19;25811:42;;;;-1:-1:-1;;;25811:42:0;;3465:2:1;25811:42:0;;;3447:21:1;3504:2;3484:18;;;3477:30;-1:-1:-1;;;3523:18:1;;;3516:41;3574:18;;25811:42:0;3263:335:1;25811:42:0;25864:28;25874:5;25881:2;25885:6;25864:9;:28::i;24541:201::-;23705:6;;-1:-1:-1;;;;;23705:6:0;7174:10;23852:23;23844:68;;;;-1:-1:-1;;;23844:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24630:22:0;::::1;24622:73;;;::::0;-1:-1:-1;;;24622:73:0;;4799:2:1;24622:73:0::1;::::0;::::1;4781:21:1::0;4838:2;4818:18;;;4811:30;4877:34;4857:18;;;4850:62;-1:-1:-1;;;4928:18:1;;;4921:36;4974:19;;24622:73:0::1;4597:402:1::0;24622:73:0::1;24706:28;24725:8;24706:18;:28::i;:::-;24541:201:::0;:::o;20640:380::-;-1:-1:-1;;;;;20776:19:0;;20768:68;;;;-1:-1:-1;;;20768:68:0;;5206:2:1;20768:68:0;;;5188:21:1;5245:2;5225:18;;;5218:30;5284:34;5264:18;;;5257:62;-1:-1:-1;;;5335:18:1;;;5328:34;5379:19;;20768:68:0;5004:400:1;20768:68:0;-1:-1:-1;;;;;20855:21:0;;20847:68;;;;-1:-1:-1;;;20847:68:0;;5611:2:1;20847:68:0;;;5593:21:1;5650:2;5630:18;;;5623:30;5689:34;5669:18;;;5662:62;-1:-1:-1;;;5740:18:1;;;5733:32;5782:19;;20847:68:0;5409:398:1;20847:68:0;-1:-1:-1;;;;;20928:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20980:32;;1258:25:1;;;20980:32:0;;1231:18:1;20980:32:0;;;;;;;20640:380;;;:::o;21307:453::-;-1:-1:-1;;;;;14421:18:0;;;21442:24;14421:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;21509:37:0;;21505:248;;21591:6;21571:16;:26;;21563:68;;;;-1:-1:-1;;;21563:68:0;;6014:2:1;21563:68:0;;;5996:21:1;6053:2;6033:18;;;6026:30;6092:31;6072:18;;;6065:59;6141:18;;21563:68:0;5812:353:1;21563:68:0;21675:51;21684:5;21691:7;21719:6;21700:16;:25;21675:8;:51::i;:::-;21431:329;21307:453;;;:::o;17921:671::-;-1:-1:-1;;;;;18052:18:0;;18044:68;;;;-1:-1:-1;;;18044:68:0;;6372:2:1;18044:68:0;;;6354:21:1;6411:2;6391:18;;;6384:30;6450:34;6430:18;;;6423:62;-1:-1:-1;;;6501:18:1;;;6494:35;6546:19;;18044:68:0;6170:401:1;18044:68:0;-1:-1:-1;;;;;18131:16:0;;18123:64;;;;-1:-1:-1;;;18123:64:0;;6778:2:1;18123:64:0;;;6760:21:1;6817:2;6797:18;;;6790:30;6856:34;6836:18;;;6829:62;-1:-1:-1;;;6907:18:1;;;6900:33;6950:19;;18123:64:0;6576:399:1;18123:64:0;-1:-1:-1;;;;;18273:15:0;;18251:19;18273:15;;;;;;;;;;;18307:21;;;;18299:72;;;;-1:-1:-1;;;18299:72:0;;7182:2:1;18299:72:0;;;7164:21:1;7221:2;7201:18;;;7194:30;7260:34;7240:18;;;7233:62;-1:-1:-1;;;7311:18:1;;;7304:36;7357:19;;18299:72:0;6980:402:1;18299:72:0;-1:-1:-1;;;;;18407:15:0;;;:9;:15;;;;;;;;;;;18425:20;;;18407:38;;18467:13;;;;;;;;:23;;18439:6;;18407:9;18467:23;;18439:6;;18467:23;:::i;:::-;;;;;;;;18523:2;-1:-1:-1;;;;;18508:26:0;18517:4;-1:-1:-1;;;;;18508:26:0;;18527:6;18508:26;;;;1258:25:1;;1246:2;1231:18;;1112:177;18508:26:0;;;;;;;;18547:37;22360:125;24902:191;24995:6;;;-1:-1:-1;;;;;25012:17:0;;;-1:-1:-1;;;;;;25012:17:0;;;;;;;25045:40;;24995:6;;;25012:17;24995:6;;25045:40;;24976:16;;25045:40;24965:128;24902:191;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:347::-;1927:6;1935;1988:2;1976:9;1967:7;1963:23;1959:32;1956:52;;;2004:1;2001;1994:12;1956:52;2027:29;2046:9;2027:29;:::i;:::-;2017:39;;2106:2;2095:9;2091:18;2078:32;2153:5;2146:13;2139:21;2132:5;2129:32;2119:60;;2175:1;2172;2165:12;2119:60;2198:5;2188:15;;;1862:347;;;;;:::o;2214:186::-;2273:6;2326:2;2314:9;2305:7;2301:23;2297:32;2294:52;;;2342:1;2339;2332:12;2294:52;2365:29;2384:9;2365:29;:::i;:::-;2355:39;2214:186;-1:-1:-1;;;2214:186:1:o;2613:260::-;2681:6;2689;2742:2;2730:9;2721:7;2717:23;2713:32;2710:52;;;2758:1;2755;2748:12;2710:52;2781:29;2800:9;2781:29;:::i;:::-;2771:39;;2829:38;2863:2;2852:9;2848:18;2829:38;:::i;:::-;2819:48;;2613:260;;;;;:::o;2878:380::-;2957:1;2953:12;;;;3000;;;3021:61;;3075:4;3067:6;3063:17;3053:27;;3021:61;3128:2;3120:6;3117:14;3097:18;3094:38;3091:161;;3174:10;3169:3;3165:20;3162:1;3155:31;3209:4;3206:1;3199:15;3237:4;3234:1;3227:15;3091:161;;2878:380;;;:::o;3603:222::-;3668:9;;;3689:10;;;3686:133;;;3741:10;3736:3;3732:20;3729:1;3722:31;3776:4;3773:1;3766:15;3804:4;3801:1;3794:15;3830:356;4032:2;4014:21;;;4051:18;;;4044:30;4110:34;4105:2;4090:18;;4083:62;4177:2;4162:18;;3830:356::o

Swarm Source

ipfs://ab0ce72d58d25641e5a1e10466afd34020a63dbeea1e614294926389139a282d
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.