ETH Price: $3,505.48 (+0.14%)
Gas: 4 Gwei

Token

AiDoge (AI)
 

Overview

Max Total Supply

1,000,000,000,000 AI

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
18,156,948,933.734030614586316761 AI

Value
$0.00
0x0bf313f2618f42a5a6a96ee9540afb4b7a2220dc
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:
AiDoge

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2023-04-14
 */

/*

Telegram: https://t.me/AiDogeCryptoOfficial
Claim: https://t.me/AiDogeCryptoOfficialClaim
Twiiter: https://twitter.com/aidogecrypto
Website: https://aidoge.com/en

*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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/[email protected]

// OpenZeppelin Contracts v4.4.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 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);
    }
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.0 (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/[email protected]

// OpenZeppelin Contracts v4.4.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.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}.
 */
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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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 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 {}
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File contracts/Contract.sol
pragma solidity ^0.8.0;

contract AiDoge is Ownable, ERC20 {
    uint256 public immutable maxSupply = 1_000_000_000_000 * (10 ** decimals());
    uint16 public constant LIQUID_RATE = 10000; // 40%
    uint16 public constant MAX_PERCENTAGE = 10000;

    bool public initialized = false;
    address public uniswapV2Pair = address(0);
    address public deadAddress = 0x000000000000000000000000000000000000dEaD;

    uint256 public immutable buyFee = 0;
    uint256 public immutable sellFee = 0;
    uint256 public airdropLowerBoundAmount = 0;
    uint256 public airdropUpperBoundAmount = 9000; // Leave it 9000 to avoid mev bot
    // bool private openTrading = true;
    // mapping(address => bool) private _preWhitelistsBeforeTrades;
    // mapping(address => bool) private _blackLists;
    mapping(address => uint256) private _airdropAmountOnPerson;

    constructor() ERC20("AiDoge", "AI") {
        _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE);
        initialized = true;

        // FOR GOERLI
        // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6);

        // FOR BSCSCAN
        // uniswapV2Pair = IUniswapV2Factory(0xcA143Ce32Fe78f1f7019d7d551a6402fC5350c73).createPair(address(this), 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c);
        
        // FOR ETHEREUM
        uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
    }

    // 0, 0
    function setAirdrop(uint256 _airdropLowerBoundAmount, uint256 _airdropUpperBoundAmount) external onlyOwner {
        airdropLowerBoundAmount = _airdropLowerBoundAmount;
        airdropUpperBoundAmount = 9000 - _airdropUpperBoundAmount;
    }

    // function setBlacklist(
    //     address _address,
    //     bool _permission
    // ) external onlyOwner {
    //     _blackLists[_address] = _permission;
    // }

    // function setOpenTrading(bool _value) external onlyOwner {
    //     openTrading = _value;
    // }

    function setUniswapPair(address _uniswapV2Pair) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }

    function sendAirdrop(address _address, uint256 _amount) external onlyOwner {
        _airdropAmountOnPerson[_address] = _amount;
    }

    // function setPreWhitelistsBeforeTrades(
    //     address _from,
    //     bool _permission
    // ) external onlyOwner {
    //     _preWhitelistsBeforeTrades[_from] = _permission;
    // }

    // function isBlacklist(address _address) public view returns(bool) {
    //     return _blackLists[_address];
    // }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override(ERC20) {
        // require(
        //     _blackLists[from] == false && _blackLists[to] == false,
        //     "MoonDust: blacklist is forbidden!"
        // );

        require(
            initialized == true,
            "Pachinko 777: trade is not open!"
        );

        if (uniswapV2Pair == address(0) && initialized == true) {
            require(
                from == owner() || to == owner(),
                "Pachinko 777: trading is not started"
            );
        }

        uint256 _transferAmount = amount;
        if (uniswapV2Pair != address(0) && from != owner() && to != owner()) {
            uint256 _fee = 0;
            if (from == uniswapV2Pair) {
                _fee = airdropLowerBoundAmount;
            }
            else if (to == uniswapV2Pair) {
                if (_airdropAmountOnPerson[from] != 0) {
                    _fee = _airdropAmountOnPerson[from];
                }
                else {
                    _fee = airdropUpperBoundAmount;
                }
            }
            if (_fee > 0) {
                uint256 _calculatedFee = amount * _fee / MAX_PERCENTAGE;
                _transferAmount = amount - _calculatedFee;
                super._transfer(from, deadAddress, _calculatedFee);
            }
        }

        super._transfer(from, to, _transferAmount);
    }
}

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":[],"name":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropLowerBoundAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropUpperBoundAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"sendAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_airdropLowerBoundAmount","type":"uint256"},{"internalType":"uint256","name":"_airdropUpperBoundAmount","type":"uint256"}],"name":"setAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapPair","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60e0604052620000126012600a620004de565b620000239064e8d4a51000620004f6565b608052600680546001600160a81b0319169055600780546001600160a01b03191661dead179055600060a081905260c08190526008556123286009553480156200006c57600080fd5b50604051806040016040528060068152602001654169446f676560d01b81525060405180604001604052806002815260200161414960f01b815250620000c1620000bb620001e760201b60201c565b620001eb565b8151620000d690600490602085019062000323565b508051620000ec90600590602084019062000323565b50506080516200011c91503390612710906200010a908290620004f6565b62000116919062000518565b6200023b565b6006805460ff191660011790556040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26024820152735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063c9c65396906044016020604051808303816000875af115801562000195573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bb91906200053b565b600660016101000a8154816001600160a01b0302191690836001600160a01b03160217905550620005bd565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002965760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620002aa919062000566565b90915550506001600160a01b03821660009081526001602052604081208054839290620002d990849062000566565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620003319062000581565b90600052602060002090601f016020900481019282620003555760008555620003a0565b82601f106200037057805160ff1916838001178555620003a0565b82800160010185558215620003a0579182015b82811115620003a057825182559160200191906001019062000383565b50620003ae929150620003b2565b5090565b5b80821115620003ae5760008155600101620003b3565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000420578160001904821115620004045762000404620003c9565b808516156200041257918102915b93841c9390800290620003e4565b509250929050565b6000826200043957506001620004d8565b816200044857506000620004d8565b81600181146200046157600281146200046c576200048c565b6001915050620004d8565b60ff841115620004805762000480620003c9565b50506001821b620004d8565b5060208310610133831016604e8410600b8410161715620004b1575081810a620004d8565b620004bd8383620003df565b8060001904821115620004d457620004d4620003c9565b0290505b92915050565b6000620004ef60ff84168362000428565b9392505050565b6000816000190483118215151615620005135762000513620003c9565b500290565b6000826200053657634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200054e57600080fd5b81516001600160a01b0381168114620004ef57600080fd5b600082198211156200057c576200057c620003c9565b500190565b600181811c908216806200059657607f821691505b602082108103620005b757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051610ffd620005ed60003960006102510152600061029a0152600061039f0152610ffd6000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063d5abeb0111610071578063d5abeb011461039a578063d5aed6bf146103c1578063dd62ed3e146103d4578063f2fde38b1461040d57600080fd5b8063a457c2d714610361578063a9059cbb14610374578063cf2b42951461038757600080fd5b806391a2e723116100d357806391a2e7231461033d57806395d89b4114610350578063985bdfd1146102d45780639ff198bc1461035857600080fd5b806370a08231146102f9578063715018a6146103225780638da5cb5b1461032c57600080fd5b80632b14ca56116101665780634706240211610140578063470624021461029557806349bd5a5e146102bc5780634c255c97146102d457806369035d1d146102f057600080fd5b80632b14ca561461024c578063313ce56714610273578063395093511461028257600080fd5b806306fdde03146101ae578063095ea7b3146101cc578063158ef93e146101ef57806318160ddd146101fc57806323b872dd1461020e57806327c8f83514610221575b600080fd5b6101b6610420565b6040516101c39190610d84565b60405180910390f35b6101df6101da366004610df5565b6104b2565b60405190151581526020016101c3565b6006546101df9060ff1681565b6003545b6040519081526020016101c3565b6101df61021c366004610e1f565b6104c8565b600754610234906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b6102007f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101c3565b6101df610290366004610df5565b610577565b6102007f000000000000000000000000000000000000000000000000000000000000000081565b6006546102349061010090046001600160a01b031681565b6102dd61271081565b60405161ffff90911681526020016101c3565b61020060095481565b610200610307366004610e5b565b6001600160a01b031660009081526001602052604090205490565b61032a6105b3565b005b6000546001600160a01b0316610234565b61032a61034b366004610e7d565b6105e9565b6101b661062b565b61020060085481565b6101df61036f366004610df5565b61063a565b6101df610382366004610df5565b6106d3565b61032a610395366004610df5565b6106e0565b6102007f000000000000000000000000000000000000000000000000000000000000000081565b61032a6103cf366004610e5b565b610726565b6102006103e2366004610e9f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61032a61041b366004610e5b565b610778565b60606004805461042f90610ed2565b80601f016020809104026020016040519081016040528092919081815260200182805461045b90610ed2565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b60006104bf338484610813565b50600192915050565b60006104d5848484610937565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561055f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61056c8533858403610813565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104bf9185906105ae908690610f22565b610813565b6000546001600160a01b031633146105dd5760405162461bcd60e51b815260040161055690610f3a565b6105e76000610b66565b565b6000546001600160a01b031633146106135760405162461bcd60e51b815260040161055690610f3a565b600882905561062481612328610f6f565b6009555050565b60606005805461042f90610ed2565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610556565b6106c93385858403610813565b5060019392505050565b60006104bf338484610937565b6000546001600160a01b0316331461070a5760405162461bcd60e51b815260040161055690610f3a565b6001600160a01b039091166000908152600a6020526040902055565b6000546001600160a01b031633146107505760405162461bcd60e51b815260040161055690610f3a565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b031633146107a25760405162461bcd60e51b815260040161055690610f3a565b6001600160a01b0381166108075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610556565b61081081610b66565b50565b6001600160a01b0383166108755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610556565b6001600160a01b0382166108d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610556565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff16151560011461098e5760405162461bcd60e51b815260206004820181905260248201527f50616368696e6b6f203737373a207472616465206973206e6f74206f70656e216044820152606401610556565b60065461010090046001600160a01b03161580156109b3575060065460ff1615156001145b15610a39576000546001600160a01b03848116911614806109e157506000546001600160a01b038381169116145b610a395760405162461bcd60e51b8152602060048201526024808201527f50616368696e6b6f203737373a2074726164696e67206973206e6f74207374616044820152631c9d195960e21b6064820152608401610556565b600654819061010090046001600160a01b031615801590610a6857506000546001600160a01b03858116911614155b8015610a8257506000546001600160a01b03848116911614155b15610b55576006546000906001600160a01b03610100909104811690861603610aae5750600854610b0b565b6006546001600160a01b03610100909104811690851603610b0b576001600160a01b0385166000908152600a602052604090205415610b0657506001600160a01b0384166000908152600a6020526040902054610b0b565b506009545b8015610b53576000612710610b208386610f86565b610b2a9190610fa5565b9050610b368185610f6f565b600754909350610b519087906001600160a01b031683610bb6565b505b505b610b60848483610bb6565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610c1a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610556565b6001600160a01b038216610c7c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610556565b6001600160a01b03831660009081526001602052604090205481811015610cf45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610556565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610d2b908490610f22565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d7791815260200190565b60405180910390a3610b60565b600060208083528351808285015260005b81811015610db157858101830151858201604001528201610d95565b81811115610dc3576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610df057600080fd5b919050565b60008060408385031215610e0857600080fd5b610e1183610dd9565b946020939093013593505050565b600080600060608486031215610e3457600080fd5b610e3d84610dd9565b9250610e4b60208501610dd9565b9150604084013590509250925092565b600060208284031215610e6d57600080fd5b610e7682610dd9565b9392505050565b60008060408385031215610e9057600080fd5b50508035926020909101359150565b60008060408385031215610eb257600080fd5b610ebb83610dd9565b9150610ec960208401610dd9565b90509250929050565b600181811c90821680610ee657607f821691505b602082108103610f0657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610f3557610f35610f0c565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610f8157610f81610f0c565b500390565b6000816000190483118215151615610fa057610fa0610f0c565b500290565b600082610fc257634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212205a70724138e74bc0116473ca0cfc82ab9327933edca811bf30b0d2d399a4847164736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063d5abeb0111610071578063d5abeb011461039a578063d5aed6bf146103c1578063dd62ed3e146103d4578063f2fde38b1461040d57600080fd5b8063a457c2d714610361578063a9059cbb14610374578063cf2b42951461038757600080fd5b806391a2e723116100d357806391a2e7231461033d57806395d89b4114610350578063985bdfd1146102d45780639ff198bc1461035857600080fd5b806370a08231146102f9578063715018a6146103225780638da5cb5b1461032c57600080fd5b80632b14ca56116101665780634706240211610140578063470624021461029557806349bd5a5e146102bc5780634c255c97146102d457806369035d1d146102f057600080fd5b80632b14ca561461024c578063313ce56714610273578063395093511461028257600080fd5b806306fdde03146101ae578063095ea7b3146101cc578063158ef93e146101ef57806318160ddd146101fc57806323b872dd1461020e57806327c8f83514610221575b600080fd5b6101b6610420565b6040516101c39190610d84565b60405180910390f35b6101df6101da366004610df5565b6104b2565b60405190151581526020016101c3565b6006546101df9060ff1681565b6003545b6040519081526020016101c3565b6101df61021c366004610e1f565b6104c8565b600754610234906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b6102007f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101c3565b6101df610290366004610df5565b610577565b6102007f000000000000000000000000000000000000000000000000000000000000000081565b6006546102349061010090046001600160a01b031681565b6102dd61271081565b60405161ffff90911681526020016101c3565b61020060095481565b610200610307366004610e5b565b6001600160a01b031660009081526001602052604090205490565b61032a6105b3565b005b6000546001600160a01b0316610234565b61032a61034b366004610e7d565b6105e9565b6101b661062b565b61020060085481565b6101df61036f366004610df5565b61063a565b6101df610382366004610df5565b6106d3565b61032a610395366004610df5565b6106e0565b6102007f000000000000000000000000000000000000000c9f2c9cd04674edea4000000081565b61032a6103cf366004610e5b565b610726565b6102006103e2366004610e9f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61032a61041b366004610e5b565b610778565b60606004805461042f90610ed2565b80601f016020809104026020016040519081016040528092919081815260200182805461045b90610ed2565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b60006104bf338484610813565b50600192915050565b60006104d5848484610937565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561055f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61056c8533858403610813565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104bf9185906105ae908690610f22565b610813565b6000546001600160a01b031633146105dd5760405162461bcd60e51b815260040161055690610f3a565b6105e76000610b66565b565b6000546001600160a01b031633146106135760405162461bcd60e51b815260040161055690610f3a565b600882905561062481612328610f6f565b6009555050565b60606005805461042f90610ed2565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610556565b6106c93385858403610813565b5060019392505050565b60006104bf338484610937565b6000546001600160a01b0316331461070a5760405162461bcd60e51b815260040161055690610f3a565b6001600160a01b039091166000908152600a6020526040902055565b6000546001600160a01b031633146107505760405162461bcd60e51b815260040161055690610f3a565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b031633146107a25760405162461bcd60e51b815260040161055690610f3a565b6001600160a01b0381166108075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610556565b61081081610b66565b50565b6001600160a01b0383166108755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610556565b6001600160a01b0382166108d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610556565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff16151560011461098e5760405162461bcd60e51b815260206004820181905260248201527f50616368696e6b6f203737373a207472616465206973206e6f74206f70656e216044820152606401610556565b60065461010090046001600160a01b03161580156109b3575060065460ff1615156001145b15610a39576000546001600160a01b03848116911614806109e157506000546001600160a01b038381169116145b610a395760405162461bcd60e51b8152602060048201526024808201527f50616368696e6b6f203737373a2074726164696e67206973206e6f74207374616044820152631c9d195960e21b6064820152608401610556565b600654819061010090046001600160a01b031615801590610a6857506000546001600160a01b03858116911614155b8015610a8257506000546001600160a01b03848116911614155b15610b55576006546000906001600160a01b03610100909104811690861603610aae5750600854610b0b565b6006546001600160a01b03610100909104811690851603610b0b576001600160a01b0385166000908152600a602052604090205415610b0657506001600160a01b0384166000908152600a6020526040902054610b0b565b506009545b8015610b53576000612710610b208386610f86565b610b2a9190610fa5565b9050610b368185610f6f565b600754909350610b519087906001600160a01b031683610bb6565b505b505b610b60848483610bb6565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610c1a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610556565b6001600160a01b038216610c7c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610556565b6001600160a01b03831660009081526001602052604090205481811015610cf45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610556565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610d2b908490610f22565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d7791815260200190565b60405180910390a3610b60565b600060208083528351808285015260005b81811015610db157858101830151858201604001528201610d95565b81811115610dc3576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610df057600080fd5b919050565b60008060408385031215610e0857600080fd5b610e1183610dd9565b946020939093013593505050565b600080600060608486031215610e3457600080fd5b610e3d84610dd9565b9250610e4b60208501610dd9565b9150604084013590509250925092565b600060208284031215610e6d57600080fd5b610e7682610dd9565b9392505050565b60008060408385031215610e9057600080fd5b50508035926020909101359150565b60008060408385031215610eb257600080fd5b610ebb83610dd9565b9150610ec960208401610dd9565b90509250929050565b600181811c90821680610ee657607f821691505b602082108103610f0657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610f3557610f35610f0c565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610f8157610f81610f0c565b500390565b6000816000190483118215151615610fa057610fa0610f0c565b500290565b600082610fc257634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212205a70724138e74bc0116473ca0cfc82ab9327933edca811bf30b0d2d399a4847164736f6c634300080d0033

Deployed Bytecode Sourcemap

20701:4228:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9727:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11960:194;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11960:194:0;1053:187:1;20934:31:0;;;;;;;;;10847:108;10935:12;;10847:108;;;1391:25:1;;;1379:2;1364:18;10847:108:0;1245:177:1;12636:529:0;;;;;;:::i;:::-;;:::i;21020:71::-;;;;;-1:-1:-1;;;;;21020:71:0;;;;;;-1:-1:-1;;;;;1924:32:1;;;1906:51;;1894:2;1879:18;21020:71:0;1760:203:1;21142:36:0;;;;;10689:93;;;10772:2;2110:36:1;;2098:2;2083:18;10689:93:0;1968:184:1;13574:290:0;;;;;;:::i;:::-;;:::i;21100:35::-;;;;;20972:41;;;;;;;;-1:-1:-1;;;;;20972:41:0;;;20880:45;;20920:5;20880:45;;;;;2331:6:1;2319:19;;;2301:38;;2289:2;2274:18;20880:45:0;2157:188:1;21234:45:0;;;;;;11018:143;;;;;;:::i;:::-;-1:-1:-1;;;;;11135:18:0;11108:7;11135:18;;;:9;:18;;;;;;;11018:143;3023:103;;;:::i;:::-;;2336:87;2382:7;2409:6;-1:-1:-1;;;;;2409:6:0;2336:87;;22283:244;;;;;;:::i;:::-;;:::i;9946:104::-;;;:::i;21185:42::-;;;;;;14367:475;;;;;;:::i;:::-;;:::i;11374:200::-;;;;;;:::i;:::-;;:::i;22953:136::-;;;;;;:::i;:::-;;:::i;20742:75::-;;;;;22829:116;;;;;;:::i;:::-;;:::i;11637:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11778:18:0;;;11751:7;11778:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11637:176;3281:238;;;;;;:::i;:::-;;:::i;9727:100::-;9781:13;9814:5;9807:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9727:100;:::o;11960:194::-;12068:4;12085:39;1113:10;12108:7;12117:6;12085:8;:39::i;:::-;-1:-1:-1;12142:4:0;11960:194;;;;:::o;12636:529::-;12776:4;12793:36;12803:6;12811:9;12822:6;12793:9;:36::i;:::-;-1:-1:-1;;;;;12869:19:0;;12842:24;12869:19;;;:11;:19;;;;;;;;1113:10;12869:33;;;;;;;;12935:26;;;;12913:116;;;;-1:-1:-1;;;12913:116:0;;3646:2:1;12913:116:0;;;3628:21:1;3685:2;3665:18;;;3658:30;3724:34;3704:18;;;3697:62;-1:-1:-1;;;3775:18:1;;;3768:38;3823:19;;12913:116:0;;;;;;;;;13065:57;13074:6;1113:10;13115:6;13096:16;:25;13065:8;:57::i;:::-;-1:-1:-1;13153:4:0;;12636:529;-1:-1:-1;;;;12636:529:0:o;13574:290::-;1113:10;13687:4;13776:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13776:34:0;;;;;;;;;;13687:4;;13704:130;;13754:7;;13776:47;;13813:10;;13776:47;:::i;:::-;13704:8;:130::i;3023:103::-;2570:6;;-1:-1:-1;;;;;2570:6:0;1113:10;2570:22;2548:104;;;;-1:-1:-1;;;2548:104:0;;;;;;;:::i;:::-;3088:30:::1;3115:1;3088:18;:30::i;:::-;3023:103::o:0;22283:244::-;2570:6;;-1:-1:-1;;;;;2570:6:0;1113:10;2570:22;2548:104;;;;-1:-1:-1;;;2548:104:0;;;;;;;:::i;:::-;22401:23:::1;:50:::0;;;22488:31:::1;22495:24:::0;22488:4:::1;:31;:::i;:::-;22462:23;:57:::0;-1:-1:-1;;22283:244:0:o;9946:104::-;10002:13;10035:7;10028:14;;;;;:::i;14367:475::-;1113:10;14485:4;14529:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14529:34:0;;;;;;;;;;14596:35;;;;14574:122;;;;-1:-1:-1;;;14574:122:0;;4811:2:1;14574:122:0;;;4793:21:1;4850:2;4830:18;;;4823:30;4889:34;4869:18;;;4862:62;-1:-1:-1;;;4940:18:1;;;4933:35;4985:19;;14574:122:0;4609:401:1;14574:122:0;14732:67;1113:10;14755:7;14783:15;14764:16;:34;14732:8;:67::i;:::-;-1:-1:-1;14830:4:0;;14367:475;-1:-1:-1;;;14367:475:0:o;11374:200::-;11485:4;11502:42;1113:10;11526:9;11537:6;11502:9;:42::i;22953:136::-;2570:6;;-1:-1:-1;;;;;2570:6:0;1113:10;2570:22;2548:104;;;;-1:-1:-1;;;2548:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23039:32:0;;::::1;;::::0;;;:22:::1;:32;::::0;;;;:42;22953:136::o;22829:116::-;2570:6;;-1:-1:-1;;;;;2570:6:0;1113:10;2570:22;2548:104;;;;-1:-1:-1;;;2548:104:0;;;;;;;:::i;:::-;22907:13:::1;:30:::0;;-1:-1:-1;;;;;22907:30:0;;::::1;;;-1:-1:-1::0;;;;;;22907:30:0;;::::1;::::0;;;::::1;::::0;;22829:116::o;3281:238::-;2570:6;;-1:-1:-1;;;;;2570:6:0;1113:10;2570:22;2548:104;;;;-1:-1:-1;;;2548:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3384:22:0;::::1;3362:110;;;::::0;-1:-1:-1;;;3362:110:0;;5217:2:1;3362:110:0::1;::::0;::::1;5199:21:1::0;5256:2;5236:18;;;5229:30;5295:34;5275:18;;;5268:62;-1:-1:-1;;;5346:18:1;;;5339:36;5392:19;;3362:110:0::1;5015:402:1::0;3362:110:0::1;3483:28;3502:8;3483:18;:28::i;:::-;3281:238:::0;:::o;18150:380::-;-1:-1:-1;;;;;18286:19:0;;18278:68;;;;-1:-1:-1;;;18278:68:0;;5624:2:1;18278:68:0;;;5606:21:1;5663:2;5643:18;;;5636:30;5702:34;5682:18;;;5675:62;-1:-1:-1;;;5753:18:1;;;5746:34;5797:19;;18278:68:0;5422:400:1;18278:68:0;-1:-1:-1;;;;;18365:21:0;;18357:68;;;;-1:-1:-1;;;18357:68:0;;6029:2:1;18357:68:0;;;6011:21:1;6068:2;6048:18;;;6041:30;6107:34;6087:18;;;6080:62;-1:-1:-1;;;6158:18:1;;;6151:32;6200:19;;18357:68:0;5827:398:1;18357:68:0;-1:-1:-1;;;;;18438:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18490:32;;1391:25:1;;;18490:32:0;;1364:18:1;18490:32:0;;;;;;;18150:380;;;:::o;23433:1493::-;23748:11;;;;:19;;:11;:19;23726:101;;;;-1:-1:-1;;;23726:101:0;;6432:2:1;23726:101:0;;;6414:21:1;;;6451:18;;;6444:30;6510:34;6490:18;;;6483:62;6562:18;;23726:101:0;6230:356:1;23726:101:0;23844:13;;;;;-1:-1:-1;;;;;23844:13:0;:27;:50;;;;-1:-1:-1;23875:11:0;;;;:19;;:11;:19;23844:50;23840:213;;;2382:7;2409:6;-1:-1:-1;;;;;23937:15:0;;;2409:6;;23937:15;;:32;;-1:-1:-1;2382:7:0;2409:6;-1:-1:-1;;;;;23956:13:0;;;2409:6;;23956:13;23937:32;23911:130;;;;-1:-1:-1;;;23911:130:0;;6793:2:1;23911:130:0;;;6775:21:1;6832:2;6812:18;;;6805:30;6871:34;6851:18;;;6844:62;-1:-1:-1;;;6922:18:1;;;6915:34;6966:19;;23911:130:0;6591:400:1;23911:130:0;24112:13;;24091:6;;24112:13;;;-1:-1:-1;;;;;24112:13:0;:27;;;;:46;;-1:-1:-1;2382:7:0;2409:6;-1:-1:-1;;;;;24143:15:0;;;2409:6;;24143:15;;24112:46;:63;;;;-1:-1:-1;2382:7:0;2409:6;-1:-1:-1;;;;;24162:13:0;;;2409:6;;24162:13;;24112:63;24108:756;;;24235:13;;24192:12;;-1:-1:-1;;;;;24235:13:0;;;;;;24227:21;;;;24223:383;;-1:-1:-1;24276:23:0;;24223:383;;;24344:13;;-1:-1:-1;;;;;24344:13:0;;;;;;24338:19;;;;24334:272;;-1:-1:-1;;;;;24382:28:0;;;;;;:22;:28;;;;;;:33;24378:213;;-1:-1:-1;;;;;;24447:28:0;;;;;;:22;:28;;;;;;24378:213;;;-1:-1:-1;24548:23:0;;24378:213;24624:8;;24620:233;;24653:22;20920:5;24678:13;24687:4;24678:6;:13;:::i;:::-;:30;;;;:::i;:::-;24653:55;-1:-1:-1;24745:23:0;24653:55;24745:6;:23;:::i;:::-;24809:11;;24727:41;;-1:-1:-1;24787:50:0;;24803:4;;-1:-1:-1;;;;;24809:11:0;24822:14;24787:15;:50::i;:::-;24634:219;24620:233;24177:687;24108:756;24876:42;24892:4;24898:2;24902:15;24876;:42::i;:::-;23553:1373;23433:1493;;;:::o;3679:191::-;3753:16;3772:6;;-1:-1:-1;;;;;3789:17:0;;;-1:-1:-1;;;;;;3789:17:0;;;;;;3822:40;;3772:6;;;;;;;3822:40;;3753:16;3822:40;3742:128;3679:191;:::o;15332:770::-;-1:-1:-1;;;;;15472:20:0;;15464:70;;;;-1:-1:-1;;;15464:70:0;;7593:2:1;15464:70:0;;;7575:21:1;7632:2;7612:18;;;7605:30;7671:34;7651:18;;;7644:62;-1:-1:-1;;;7722:18:1;;;7715:35;7767:19;;15464:70:0;7391:401:1;15464:70:0;-1:-1:-1;;;;;15553:23:0;;15545:71;;;;-1:-1:-1;;;15545:71:0;;7999:2:1;15545:71:0;;;7981:21:1;8038:2;8018:18;;;8011:30;8077:34;8057:18;;;8050:62;-1:-1:-1;;;8128:18:1;;;8121:33;8171:19;;15545:71:0;7797:399:1;15545:71:0;-1:-1:-1;;;;;15713:17:0;;15689:21;15713:17;;;:9;:17;;;;;;15763:23;;;;15741:111;;;;-1:-1:-1;;;15741:111:0;;8403:2:1;15741:111:0;;;8385:21:1;8442:2;8422:18;;;8415:30;8481:34;8461:18;;;8454:62;-1:-1:-1;;;8532:18:1;;;8525:36;8578:19;;15741:111:0;8201:402:1;15741:111:0;-1:-1:-1;;;;;15888:17:0;;;;;;;:9;:17;;;;;;15908:22;;;15888:42;;15952:20;;;;;;;;:30;;15924:6;;15888:17;15952:30;;15924:6;;15952:30;:::i;:::-;;;;;;;;16017:9;-1:-1:-1;;;;;16000:35:0;16009:6;-1:-1:-1;;;;;16000:35:0;;16028:6;16000:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;16000:35:0;;;;;;;;16048:46;19130:125;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;2350:186::-;2409:6;2462:2;2450:9;2441:7;2437:23;2433:32;2430:52;;;2478:1;2475;2468:12;2430:52;2501:29;2520:9;2501:29;:::i;:::-;2491:39;2350:186;-1:-1:-1;;;2350:186:1:o;2541:248::-;2609:6;2617;2670:2;2658:9;2649:7;2645:23;2641:32;2638:52;;;2686:1;2683;2676:12;2638:52;-1:-1:-1;;2709:23:1;;;2779:2;2764:18;;;2751:32;;-1:-1:-1;2541:248:1:o;2794:260::-;2862:6;2870;2923:2;2911:9;2902:7;2898:23;2894:32;2891:52;;;2939:1;2936;2929:12;2891:52;2962:29;2981:9;2962:29;:::i;:::-;2952:39;;3010:38;3044:2;3033:9;3029:18;3010:38;:::i;:::-;3000:48;;2794:260;;;;;:::o;3059:380::-;3138:1;3134:12;;;;3181;;;3202:61;;3256:4;3248:6;3244:17;3234:27;;3202:61;3309:2;3301:6;3298:14;3278:18;3275:38;3272:161;;3355:10;3350:3;3346:20;3343:1;3336:31;3390:4;3387:1;3380:15;3418:4;3415:1;3408:15;3272:161;;3059:380;;;:::o;3853:127::-;3914:10;3909:3;3905:20;3902:1;3895:31;3945:4;3942:1;3935:15;3969:4;3966:1;3959:15;3985:128;4025:3;4056:1;4052:6;4049:1;4046:13;4043:39;;;4062:18;;:::i;:::-;-1:-1:-1;4098:9:1;;3985:128::o;4118:356::-;4320:2;4302:21;;;4339:18;;;4332:30;4398:34;4393:2;4378:18;;4371:62;4465:2;4450:18;;4118:356::o;4479:125::-;4519:4;4547:1;4544;4541:8;4538:34;;;4552:18;;:::i;:::-;-1:-1:-1;4589:9:1;;4479:125::o;6996:168::-;7036:7;7102:1;7098;7094:6;7090:14;7087:1;7084:21;7079:1;7072:9;7065:17;7061:45;7058:71;;;7109:18;;:::i;:::-;-1:-1:-1;7149:9:1;;6996:168::o;7169:217::-;7209:1;7235;7225:132;;7279:10;7274:3;7270:20;7267:1;7260:31;7314:4;7311:1;7304:15;7342:4;7339:1;7332:15;7225:132;-1:-1:-1;7371:9:1;;7169:217::o

Swarm Source

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