POL Price: $0.605304 (+2.88%)
Gas: 60 GWei
 

Overview

Max Total Supply

99,999,920.735 YTEM

Holders

404

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
YtemToken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2023-11-16
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;

library Address {
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in construction,
        // since the code is only stored at the end of the constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/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/IERC20Metadata.sol

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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)
    {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        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)
    {
        // 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)
    {
        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)
    {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

pragma solidity 0.8.10;

contract YtemToken is ERC20, Ownable {
    using Address for address;
    using SafeMath for uint256;

    mapping(address => bool) public isExcludedFromFee;
    mapping(address => bool) public whiteListedPair;
    mapping(address => bool) public isBurner;

    event BurnerRoleAssigned(address indexed _user, address indexed _account);
    event BurnerRoleRevoked(address indexed _user, address indexed _account);
    event FeeUpdated(address indexed _user, uint256 _fee);
    event FeeWalletUpdated(address indexed _user, address _feeWallet);
    event TaxStatusUpdated(address indexed _user, bool _status);
    event ToggleV2Pair(
        address indexed _user,
        address indexed _pair,
        bool _flag
    );

    uint256 public SELL_FEE = 2000;

    bool public TAX_ACTIVE = false;

    uint256 public totalTax = 0;

    address public feeWallet;

    modifier hasBurnerRole() {
        require(isBurner[_msgSender()], "YTEM: You don't have the permission!");
        _;
    }

    constructor(uint256 _initialSupply, address _feeWallet) ERC20("YTEM Token", "YTEM")
    {
        require(_feeWallet != address(0), "YTEM: feeWallet the zero address");
        feeWallet = _feeWallet;
        _mint(msg.sender, _initialSupply);
    }

    function multisend(address[] memory to, uint256[] memory values)
        external
        onlyOwner
    {
        require(
            to.length == values.length,
            "YTEMToken::multisend: values and to must be equal length"
        );
        require(
            to.length < 200,
            "YTEMToken::multisend: Values length must be max 200"
        );

        for (uint256 i; i < to.length; i++) {
            transfer(to[i], values[i]);
        }
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        if (TAX_ACTIVE) {
            uint256 taxFee;
            if (whiteListedPair[recipient]) {
                taxFee = SELL_FEE;
            }

            if (
                (isExcludedFromFee[sender] || isExcludedFromFee[recipient]) ||
                (!whiteListedPair[sender] && !whiteListedPair[recipient])
            ) {
                taxFee = 0;
            }

            uint256 taxFeeAmount = amount.mul(taxFee).div(10000);

            if (taxFeeAmount > 0) {
                totalTax = totalTax.add(taxFeeAmount);
                super._transfer(sender, feeWallet, taxFeeAmount);
                amount = amount.sub(taxFeeAmount);
            }
        }

        super._transfer(sender, recipient, amount);
    }

    function enableV2PairFee(address _account, bool _flag) external onlyOwner {
        whiteListedPair[_account] = _flag;

        emit ToggleV2Pair(_msgSender(), _account, _flag);
    }

    function burn(address _user, uint256 _amount) external hasBurnerRole {
        _burn(_user, _amount);
    }

    function assignBurnerRole(address _account) public onlyOwner {
        isBurner[_account] = true;

        emit BurnerRoleAssigned(_msgSender(), _account);
    }

    function revokeBurnerRole(address _account) public onlyOwner {
        isBurner[_account] = false;

        emit BurnerRoleRevoked(_msgSender(), _account);
    }

    function updateFee(uint256 _fee) external onlyOwner {
        SELL_FEE = _fee;

        emit FeeUpdated(_msgSender(), _fee);
    }

    function updateFeeWallet(address _feeWallet) external onlyOwner {
        feeWallet = _feeWallet;

        emit FeeWalletUpdated(_msgSender(), _feeWallet);
    }

    function updateTaxStatus(bool _status) external onlyOwner {
        TAX_ACTIVE = _status;

        emit TaxStatusUpdated(_msgSender(), _status);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"address","name":"_feeWallet","type":"address"}],"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":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"BurnerRoleAssigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"BurnerRoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"address","name":"_feeWallet","type":"address"}],"name":"FeeWalletUpdated","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":"_user","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"TaxStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_pair","type":"address"},{"indexed":false,"internalType":"bool","name":"_flag","type":"bool"}],"name":"ToggleV2Pair","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":"SELL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAX_ACTIVE","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":"assignBurnerRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"_account","type":"address"},{"internalType":"bool","name":"_flag","type":"bool"}],"name":"enableV2PairFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isBurner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"multisend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"revokeBurnerRole","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":[],"name":"totalTax","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":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeWallet","type":"address"}],"name":"updateFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateTaxStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListedPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526107d0600955600a805460ff191690556000600b553480156200002657600080fd5b5060405162001c7038038062001c70833981016040819052620000499162000336565b604080518082018252600a8152692caa22a6902a37b5b2b760b11b6020808301918252835180850190945260048452635954454d60e01b908401528151919291620000979160039162000290565b508051620000ad90600490602084019062000290565b505050620000ca620000c46200015560201b60201c565b62000159565b6001600160a01b038116620001265760405162461bcd60e51b815260206004820181905260248201527f5954454d3a2066656557616c6c657420746865207a65726f206164647265737360448201526064015b60405180910390fd5b600c80546001600160a01b0319166001600160a01b0383161790556200014d3383620001ab565b5050620003d9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002035760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200011d565b806002600082825462000217919062000375565b90915550506001600160a01b038216600090815260208190526040812080548392906200024690849062000375565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200029e906200039c565b90600052602060002090601f016020900481019282620002c257600085556200030d565b82601f10620002dd57805160ff19168380011785556200030d565b828001600101855582156200030d579182015b828111156200030d578251825591602001919060010190620002f0565b506200031b9291506200031f565b5090565b5b808211156200031b576000815560010162000320565b600080604083850312156200034a57600080fd5b825160208401519092506001600160a01b03811681146200036a57600080fd5b809150509250929050565b600082198211156200039757634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620003b157607f821691505b60208210811415620003d357634e487b7160e01b600052602260045260246000fd5b50919050565b61188780620003e96000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638da5cb5b11610104578063aad41a41116100a2578063f2fde38b11610071578063f2fde38b14610425578063f55e44b014610438578063fa6fd6d71461044b578063fe85b42b1461045857600080fd5b8063aad41a41146103b3578063c3052ffc146103c6578063dd62ed3e146103d9578063f25f4b561461041257600080fd5b806395d89b41116100de57806395d89b41146103725780639dc29fac1461037a578063a457c2d71461038d578063a9059cbb146103a057600080fd5b80638da5cb5b146103275780639012c4a81461034c578063953920941461035f57600080fd5b806339509351116101715780635342acb41161014b5780635342acb4146102c057806366718524146102e357806370a08231146102f6578063715018a61461031f57600080fd5b806339509351146102815780634334614a146102945780634773a6a9146102b757600080fd5b80631a54b5bb116101ad5780631a54b5bb1461022757806323b872dd1461023c578063284628131461024f578063313ce5671461027257600080fd5b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610215575b600080fd5b6101dc610461565b6040516101e99190611379565b60405180910390f35b6102056102003660046113ea565b6104f3565b60405190151581526020016101e9565b6002545b6040519081526020016101e9565b61023a610235366004611414565b61050a565b005b61020561024a36600461142f565b61059f565b61020561025d366004611414565b60076020526000908152604090205460ff1681565b604051601281526020016101e9565b61020561028f3660046113ea565b610649565b6102056102a2366004611414565b60086020526000908152604090205460ff1681565b61021960095481565b6102056102ce366004611414565b60066020526000908152604090205460ff1681565b61023a6102f1366004611414565b610685565b610219610304366004611414565b6001600160a01b031660009081526020819052604090205490565b61023a610706565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016101e9565b61023a61035a36600461146b565b61073c565b61023a61036d366004611494565b61079d565b6101dc610834565b61023a6103883660046113ea565b610843565b61020561039b3660046113ea565b6108bc565b6102056103ae3660046113ea565b610955565b61023a6103c136600461159d565b610962565b61023a6103d4366004611414565b610ad0565b6102196103e736600461165d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600c54610334906001600160a01b031681565b61023a610433366004611414565b610b44565b61023a610446366004611687565b610bdf565b600a546102059060ff1681565b610219600b5481565b606060038054610470906116a2565b80601f016020809104026020016040519081016040528092919081815260200182805461049c906116a2565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b6000610500338484610c54565b5060015b92915050565b6005546001600160a01b0316331461053d5760405162461bcd60e51b8152600401610534906116dd565b60405180910390fd5b6001600160a01b0381166000818152600860205260409020805460ff191660011790556105673390565b6001600160a01b03167f9df2608c4328f24081b6796e406dd6977277a9133387f227079ada90060956bb60405160405180910390a350565b60006105ac848484610d78565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106315760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610534565b61063e8533858403610c54565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610500918590610680908690611728565b610c54565b6005546001600160a01b031633146106af5760405162461bcd60e51b8152600401610534906116dd565b600c80546001600160a01b0319166001600160a01b03831690811790915560405190815233907f362a006325d32978b283e449d254cfcf93e2cccc321603ead9a74238d8dbf36e906020015b60405180910390a250565b6005546001600160a01b031633146107305760405162461bcd60e51b8152600401610534906116dd565b61073a6000610ee8565b565b6005546001600160a01b031633146107665760405162461bcd60e51b8152600401610534906116dd565b600981905560405181815233907f6f0eaf2c2f89fb4cfe96a1dee5e764d60b52c7f48aaa590f0850e308aa1b953a906020016106fb565b6005546001600160a01b031633146107c75760405162461bcd60e51b8152600401610534906116dd565b6001600160a01b0382166000818152600760205260409020805460ff1916831515179055336001600160a01b03167f1b0acd114abe3e45107dfd0d7da1fcae9eacf8c21eaf12480c6e9acf4fa212e083604051610828911515815260200190565b60405180910390a35050565b606060048054610470906116a2565b3360009081526008602052604090205460ff166108ae5760405162461bcd60e51b8152602060048201526024808201527f5954454d3a20596f7520646f6e2774206861766520746865207065726d697373604482015263696f6e2160e01b6064820152608401610534565b6108b88282610f3a565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561093e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610534565b61094b3385858403610c54565b5060019392505050565b6000610500338484610d78565b6005546001600160a01b0316331461098c5760405162461bcd60e51b8152600401610534906116dd565b8051825114610a035760405162461bcd60e51b815260206004820152603860248201527f5954454d546f6b656e3a3a6d756c746973656e643a2076616c75657320616e6460448201527f20746f206d75737420626520657175616c206c656e67746800000000000000006064820152608401610534565b60c8825110610a705760405162461bcd60e51b815260206004820152603360248201527f5954454d546f6b656e3a3a6d756c746973656e643a2056616c756573206c656e6044820152720677468206d757374206265206d61782032303606c1b6064820152608401610534565b60005b8251811015610acb57610ab8838281518110610a9157610a91611740565b6020026020010151838381518110610aab57610aab611740565b6020026020010151610955565b5080610ac381611756565b915050610a73565b505050565b6005546001600160a01b03163314610afa5760405162461bcd60e51b8152600401610534906116dd565b6001600160a01b038116600081815260086020526040808220805460ff191690555133917f23e562b34eeb1a88a06309924a1cbe6c097756d40fa7891c405b117b9bcb68c591a350565b6005546001600160a01b03163314610b6e5760405162461bcd60e51b8152600401610534906116dd565b6001600160a01b038116610bd35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610534565b610bdc81610ee8565b50565b6005546001600160a01b03163314610c095760405162461bcd60e51b8152600401610534906116dd565b600a805460ff1916821515179055336001600160a01b03167f6cccb45c83dd7502f4d55297e5cda25e6572ae82eae9084b72a9a7a4e3fa9c15826040516106fb911515815260200190565b6001600160a01b038316610cb65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610534565b6001600160a01b038216610d175760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610534565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d9e5760405162461bcd60e51b815260040161053490611771565b6001600160a01b038216610dc45760405162461bcd60e51b8152600401610534906117b6565b600a5460ff1615610edd576001600160a01b03821660009081526007602052604081205460ff1615610df557506009545b6001600160a01b03841660009081526006602052604090205460ff1680610e3457506001600160a01b03831660009081526006602052604090205460ff165b80610e7c57506001600160a01b03841660009081526007602052604090205460ff16158015610e7c57506001600160a01b03831660009081526007602052604090205460ff16155b15610e85575060005b6000610e9d612710610e978585611088565b9061110e565b90508015610eda57600b54610eb29082611169565b600b55600c54610ecd9086906001600160a01b0316836111c8565b610ed7838261131d565b92505b50505b610acb8383836111c8565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610f9a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610534565b6001600160a01b0382166000908152602081905260409020548181101561100e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610534565b6001600160a01b038316600090815260208190526040812083830390556002805484929061103d9084906117f9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60008261109757506000610504565b60006110a38385611810565b9050826110b0858361182f565b146111075760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610534565b9392505050565b600080821161115f5760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610534565b611107828461182f565b6000806111768385611728565b9050838110156111075760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610534565b6001600160a01b0383166111ee5760405162461bcd60e51b815260040161053490611771565b6001600160a01b0382166112145760405162461bcd60e51b8152600401610534906117b6565b6001600160a01b0383166000908152602081905260409020548181101561128c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610534565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112c3908490611728565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161130f91815260200190565b60405180910390a350505050565b60008282111561136f5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610534565b61110782846117f9565b600060208083528351808285015260005b818110156113a65785810183015185820160400152820161138a565b818111156113b8576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146113e557600080fd5b919050565b600080604083850312156113fd57600080fd5b611406836113ce565b946020939093013593505050565b60006020828403121561142657600080fd5b611107826113ce565b60008060006060848603121561144457600080fd5b61144d846113ce565b925061145b602085016113ce565b9150604084013590509250925092565b60006020828403121561147d57600080fd5b5035919050565b803580151581146113e557600080fd5b600080604083850312156114a757600080fd5b6114b0836113ce565b91506114be60208401611484565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611506576115066114c7565b604052919050565b600067ffffffffffffffff821115611528576115286114c7565b5060051b60200190565b600082601f83011261154357600080fd5b813560206115586115538361150e565b6114dd565b82815260059290921b8401810191818101908684111561157757600080fd5b8286015b84811015611592578035835291830191830161157b565b509695505050505050565b600080604083850312156115b057600080fd5b823567ffffffffffffffff808211156115c857600080fd5b818501915085601f8301126115dc57600080fd5b813560206115ec6115538361150e565b82815260059290921b8401810191818101908984111561160b57600080fd5b948201945b8386101561163057611621866113ce565b82529482019490820190611610565b9650508601359250508082111561164657600080fd5b5061165385828601611532565b9150509250929050565b6000806040838503121561167057600080fd5b611679836113ce565b91506114be602084016113ce565b60006020828403121561169957600080fd5b61110782611484565b600181811c908216806116b657607f821691505b602082108114156116d757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561173b5761173b611712565b500190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561176a5761176a611712565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561180b5761180b611712565b500390565b600081600019048311821515161561182a5761182a611712565b500290565b60008261184c57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220ea1faf89ae659d8b6387e5f97bbfad8eab9fc585a5d0612bdfaa39baa2051d0964736f6c634300080a003300000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000897d7d957c9eaad5752a6010e31082b803b0ba52

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638da5cb5b11610104578063aad41a41116100a2578063f2fde38b11610071578063f2fde38b14610425578063f55e44b014610438578063fa6fd6d71461044b578063fe85b42b1461045857600080fd5b8063aad41a41146103b3578063c3052ffc146103c6578063dd62ed3e146103d9578063f25f4b561461041257600080fd5b806395d89b41116100de57806395d89b41146103725780639dc29fac1461037a578063a457c2d71461038d578063a9059cbb146103a057600080fd5b80638da5cb5b146103275780639012c4a81461034c578063953920941461035f57600080fd5b806339509351116101715780635342acb41161014b5780635342acb4146102c057806366718524146102e357806370a08231146102f6578063715018a61461031f57600080fd5b806339509351146102815780634334614a146102945780634773a6a9146102b757600080fd5b80631a54b5bb116101ad5780631a54b5bb1461022757806323b872dd1461023c578063284628131461024f578063313ce5671461027257600080fd5b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610215575b600080fd5b6101dc610461565b6040516101e99190611379565b60405180910390f35b6102056102003660046113ea565b6104f3565b60405190151581526020016101e9565b6002545b6040519081526020016101e9565b61023a610235366004611414565b61050a565b005b61020561024a36600461142f565b61059f565b61020561025d366004611414565b60076020526000908152604090205460ff1681565b604051601281526020016101e9565b61020561028f3660046113ea565b610649565b6102056102a2366004611414565b60086020526000908152604090205460ff1681565b61021960095481565b6102056102ce366004611414565b60066020526000908152604090205460ff1681565b61023a6102f1366004611414565b610685565b610219610304366004611414565b6001600160a01b031660009081526020819052604090205490565b61023a610706565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016101e9565b61023a61035a36600461146b565b61073c565b61023a61036d366004611494565b61079d565b6101dc610834565b61023a6103883660046113ea565b610843565b61020561039b3660046113ea565b6108bc565b6102056103ae3660046113ea565b610955565b61023a6103c136600461159d565b610962565b61023a6103d4366004611414565b610ad0565b6102196103e736600461165d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600c54610334906001600160a01b031681565b61023a610433366004611414565b610b44565b61023a610446366004611687565b610bdf565b600a546102059060ff1681565b610219600b5481565b606060038054610470906116a2565b80601f016020809104026020016040519081016040528092919081815260200182805461049c906116a2565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b6000610500338484610c54565b5060015b92915050565b6005546001600160a01b0316331461053d5760405162461bcd60e51b8152600401610534906116dd565b60405180910390fd5b6001600160a01b0381166000818152600860205260409020805460ff191660011790556105673390565b6001600160a01b03167f9df2608c4328f24081b6796e406dd6977277a9133387f227079ada90060956bb60405160405180910390a350565b60006105ac848484610d78565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106315760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610534565b61063e8533858403610c54565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610500918590610680908690611728565b610c54565b6005546001600160a01b031633146106af5760405162461bcd60e51b8152600401610534906116dd565b600c80546001600160a01b0319166001600160a01b03831690811790915560405190815233907f362a006325d32978b283e449d254cfcf93e2cccc321603ead9a74238d8dbf36e906020015b60405180910390a250565b6005546001600160a01b031633146107305760405162461bcd60e51b8152600401610534906116dd565b61073a6000610ee8565b565b6005546001600160a01b031633146107665760405162461bcd60e51b8152600401610534906116dd565b600981905560405181815233907f6f0eaf2c2f89fb4cfe96a1dee5e764d60b52c7f48aaa590f0850e308aa1b953a906020016106fb565b6005546001600160a01b031633146107c75760405162461bcd60e51b8152600401610534906116dd565b6001600160a01b0382166000818152600760205260409020805460ff1916831515179055336001600160a01b03167f1b0acd114abe3e45107dfd0d7da1fcae9eacf8c21eaf12480c6e9acf4fa212e083604051610828911515815260200190565b60405180910390a35050565b606060048054610470906116a2565b3360009081526008602052604090205460ff166108ae5760405162461bcd60e51b8152602060048201526024808201527f5954454d3a20596f7520646f6e2774206861766520746865207065726d697373604482015263696f6e2160e01b6064820152608401610534565b6108b88282610f3a565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561093e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610534565b61094b3385858403610c54565b5060019392505050565b6000610500338484610d78565b6005546001600160a01b0316331461098c5760405162461bcd60e51b8152600401610534906116dd565b8051825114610a035760405162461bcd60e51b815260206004820152603860248201527f5954454d546f6b656e3a3a6d756c746973656e643a2076616c75657320616e6460448201527f20746f206d75737420626520657175616c206c656e67746800000000000000006064820152608401610534565b60c8825110610a705760405162461bcd60e51b815260206004820152603360248201527f5954454d546f6b656e3a3a6d756c746973656e643a2056616c756573206c656e6044820152720677468206d757374206265206d61782032303606c1b6064820152608401610534565b60005b8251811015610acb57610ab8838281518110610a9157610a91611740565b6020026020010151838381518110610aab57610aab611740565b6020026020010151610955565b5080610ac381611756565b915050610a73565b505050565b6005546001600160a01b03163314610afa5760405162461bcd60e51b8152600401610534906116dd565b6001600160a01b038116600081815260086020526040808220805460ff191690555133917f23e562b34eeb1a88a06309924a1cbe6c097756d40fa7891c405b117b9bcb68c591a350565b6005546001600160a01b03163314610b6e5760405162461bcd60e51b8152600401610534906116dd565b6001600160a01b038116610bd35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610534565b610bdc81610ee8565b50565b6005546001600160a01b03163314610c095760405162461bcd60e51b8152600401610534906116dd565b600a805460ff1916821515179055336001600160a01b03167f6cccb45c83dd7502f4d55297e5cda25e6572ae82eae9084b72a9a7a4e3fa9c15826040516106fb911515815260200190565b6001600160a01b038316610cb65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610534565b6001600160a01b038216610d175760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610534565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d9e5760405162461bcd60e51b815260040161053490611771565b6001600160a01b038216610dc45760405162461bcd60e51b8152600401610534906117b6565b600a5460ff1615610edd576001600160a01b03821660009081526007602052604081205460ff1615610df557506009545b6001600160a01b03841660009081526006602052604090205460ff1680610e3457506001600160a01b03831660009081526006602052604090205460ff165b80610e7c57506001600160a01b03841660009081526007602052604090205460ff16158015610e7c57506001600160a01b03831660009081526007602052604090205460ff16155b15610e85575060005b6000610e9d612710610e978585611088565b9061110e565b90508015610eda57600b54610eb29082611169565b600b55600c54610ecd9086906001600160a01b0316836111c8565b610ed7838261131d565b92505b50505b610acb8383836111c8565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610f9a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610534565b6001600160a01b0382166000908152602081905260409020548181101561100e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610534565b6001600160a01b038316600090815260208190526040812083830390556002805484929061103d9084906117f9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60008261109757506000610504565b60006110a38385611810565b9050826110b0858361182f565b146111075760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610534565b9392505050565b600080821161115f5760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610534565b611107828461182f565b6000806111768385611728565b9050838110156111075760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610534565b6001600160a01b0383166111ee5760405162461bcd60e51b815260040161053490611771565b6001600160a01b0382166112145760405162461bcd60e51b8152600401610534906117b6565b6001600160a01b0383166000908152602081905260409020548181101561128c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610534565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112c3908490611728565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161130f91815260200190565b60405180910390a350505050565b60008282111561136f5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610534565b61110782846117f9565b600060208083528351808285015260005b818110156113a65785810183015185820160400152820161138a565b818111156113b8576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146113e557600080fd5b919050565b600080604083850312156113fd57600080fd5b611406836113ce565b946020939093013593505050565b60006020828403121561142657600080fd5b611107826113ce565b60008060006060848603121561144457600080fd5b61144d846113ce565b925061145b602085016113ce565b9150604084013590509250925092565b60006020828403121561147d57600080fd5b5035919050565b803580151581146113e557600080fd5b600080604083850312156114a757600080fd5b6114b0836113ce565b91506114be60208401611484565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611506576115066114c7565b604052919050565b600067ffffffffffffffff821115611528576115286114c7565b5060051b60200190565b600082601f83011261154357600080fd5b813560206115586115538361150e565b6114dd565b82815260059290921b8401810191818101908684111561157757600080fd5b8286015b84811015611592578035835291830191830161157b565b509695505050505050565b600080604083850312156115b057600080fd5b823567ffffffffffffffff808211156115c857600080fd5b818501915085601f8301126115dc57600080fd5b813560206115ec6115538361150e565b82815260059290921b8401810191818101908984111561160b57600080fd5b948201945b8386101561163057611621866113ce565b82529482019490820190611610565b9650508601359250508082111561164657600080fd5b5061165385828601611532565b9150509250929050565b6000806040838503121561167057600080fd5b611679836113ce565b91506114be602084016113ce565b60006020828403121561169957600080fd5b61110782611484565b600181811c908216806116b657607f821691505b602082108114156116d757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561173b5761173b611712565b500190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561176a5761176a611712565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561180b5761180b611712565b500390565b600081600019048311821515161561182a5761182a611712565b500290565b60008261184c57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220ea1faf89ae659d8b6387e5f97bbfad8eab9fc585a5d0612bdfaa39baa2051d0964736f6c634300080a0033

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

00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000897d7d957c9eaad5752a6010e31082b803b0ba52

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 100000000000000000000000000
Arg [1] : _feeWallet (address): 0x897D7D957c9EAad5752A6010e31082b803b0Ba52

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [1] : 000000000000000000000000897d7d957c9eaad5752a6010e31082b803b0ba52


Deployed Bytecode Sourcemap

27375:3971:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9320:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11628:210;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11628:210:0;1053:187:1;10440:108:0;10528:12;;10440:108;;;1391:25:1;;;1379:2;1364:18;10440:108:0;1245:177:1;30528:165:0;;;;;;:::i;:::-;;:::i;:::-;;12320:529;;;;;;:::i;:::-;;:::i;27542:47::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10282:93;;;10365:2;2093:36:1;;2081:2;2066:18;10282:93:0;1951:184:1;13258:297:0;;;;;;:::i;:::-;;:::i;27596:40::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28121:30;;;;;;27486:49;;;;;;:::i;:::-;;;;;;;;;;;;;;;;31016:165;;;;;;:::i;:::-;;:::i;10611:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10762:18:0;10730:7;10762:18;;;;;;;;;;;;10611:177;3028:94;;;:::i;2377:87::-;2450:6;;-1:-1:-1;;;;;2450:6:0;2377:87;;;-1:-1:-1;;;;;2304:32:1;;;2286:51;;2274:2;2259:18;2377:87:0;2140:203:1;30874:134:0;;;;;;:::i;:::-;;:::i;30216:187::-;;;;;;:::i;:::-;;:::i;9539:104::-;;;:::i;30411:109::-;;;;;;:::i;:::-;;:::i;14058:482::-;;;;;;:::i;:::-;;:::i;11001:216::-;;;;;;:::i;:::-;;:::i;28665:486::-;;;;;;:::i;:::-;;:::i;30701:165::-;;;;;;:::i;:::-;;:::i;11280:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11446:18:0;;;11414:7;11446:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11280:201;28235:24;;;;;-1:-1:-1;;;;;28235:24:0;;;3277:229;;;;;;:::i;:::-;;:::i;31189:154::-;;;;;;:::i;:::-;;:::i;28160:30::-;;;;;;;;;28199:27;;;;;;9320:100;9374:13;9407:5;9400:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9320:100;:::o;11628:210::-;11747:4;11769:39;1226:10;11792:7;11801:6;11769:8;:39::i;:::-;-1:-1:-1;11826:4:0;11628:210;;;;;:::o;30528:165::-;2450:6;;-1:-1:-1;;;;;2450:6:0;1226:10;2597:23;2589:68;;;;-1:-1:-1;;;2589:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;30600:18:0;::::1;;::::0;;;:8:::1;:18;::::0;;;;:25;;-1:-1:-1;;30600:25:0::1;30621:4;30600:25;::::0;;30662:12:::1;1226:10:::0;;1146:98;30662:12:::1;-1:-1:-1::0;;;;;30643:42:0::1;;;;;;;;;;;30528:165:::0;:::o;12320:529::-;12460:4;12477:36;12487:6;12495:9;12506:6;12477:9;:36::i;:::-;-1:-1:-1;;;;;12553:19:0;;12526:24;12553:19;;;:11;:19;;;;;;;;1226:10;12553:33;;;;;;;;12619:26;;;;12597:116;;;;-1:-1:-1;;;12597:116:0;;6773:2:1;12597:116:0;;;6755:21:1;6812:2;6792:18;;;6785:30;6851:34;6831:18;;;6824:62;-1:-1:-1;;;6902:18:1;;;6895:38;6950:19;;12597:116:0;6571:404:1;12597:116:0;12749:57;12758:6;1226:10;12799:6;12780:16;:25;12749:8;:57::i;:::-;-1:-1:-1;12837:4:0;;12320:529;-1:-1:-1;;;;12320:529:0:o;13258:297::-;1226:10;13373:4;13467:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13467:34:0;;;;;;;;;;13373:4;;13395:130;;13445:7;;13467:47;;13504:10;;13467:47;:::i;:::-;13395:8;:130::i;31016:165::-;2450:6;;-1:-1:-1;;;;;2450:6:0;1226:10;2597:23;2589:68;;;;-1:-1:-1;;;2589:68:0;;;;;;;:::i;:::-;31091:9:::1;:22:::0;;-1:-1:-1;;;;;;31091:22:0::1;-1:-1:-1::0;;;;;31091:22:0;::::1;::::0;;::::1;::::0;;;31131:42:::1;::::0;2286:51:1;;;1226:10:0;;31131:42:::1;::::0;2274:2:1;2259:18;31131:42:0::1;;;;;;;;31016:165:::0;:::o;3028:94::-;2450:6;;-1:-1:-1;;;;;2450:6:0;1226:10;2597:23;2589:68;;;;-1:-1:-1;;;2589:68:0;;;;;;;:::i;:::-;3093:21:::1;3111:1;3093:9;:21::i;:::-;3028:94::o:0;30874:134::-;2450:6;;-1:-1:-1;;;;;2450:6:0;1226:10;2597:23;2589:68;;;;-1:-1:-1;;;2589:68:0;;;;;;;:::i;:::-;30937:8:::1;:15:::0;;;30970:30:::1;::::0;1391:25:1;;;1226:10:0;;30970:30:::1;::::0;1379:2:1;1364:18;30970:30:0::1;1245:177:1::0;30216:187:0;2450:6;;-1:-1:-1;;;;;2450:6:0;1226:10;2597:23;2589:68;;;;-1:-1:-1;;;2589:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30301:25:0;::::1;;::::0;;;:15:::1;:25;::::0;;;;:33;;-1:-1:-1;;30301:33:0::1;::::0;::::1;;;::::0;;1226:10;-1:-1:-1;;;;;30352:43:0::1;;30389:5;30352:43;;;;1218:14:1::0;1211:22;1193:41;;1181:2;1166:18;;1053:187;30352:43:0::1;;;;;;;;30216:187:::0;;:::o;9539:104::-;9595:13;9628:7;9621:14;;;;;:::i;30411:109::-;1226:10;28312:22;;;;:8;:22;;;;;;;;28304:71;;;;-1:-1:-1;;;28304:71:0;;7447:2:1;28304:71:0;;;7429:21:1;7486:2;7466:18;;;7459:30;7525:34;7505:18;;;7498:62;-1:-1:-1;;;7576:18:1;;;7569:34;7620:19;;28304:71:0;7245:400:1;28304:71:0;30491:21:::1;30497:5;30504:7;30491:5;:21::i;:::-;30411:109:::0;;:::o;14058:482::-;1226:10;14178:4;14227:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14227:34:0;;;;;;;;;;14294:35;;;;14272:122;;;;-1:-1:-1;;;14272:122:0;;7852:2:1;14272:122:0;;;7834:21:1;7891:2;7871:18;;;7864:30;7930:34;7910:18;;;7903:62;-1:-1:-1;;;7981:18:1;;;7974:35;8026:19;;14272:122:0;7650:401:1;14272:122:0;14430:67;1226:10;14453:7;14481:15;14462:16;:34;14430:8;:67::i;:::-;-1:-1:-1;14528:4:0;;14058:482;-1:-1:-1;;;14058:482:0:o;11001:216::-;11123:4;11145:42;1226:10;11169:9;11180:6;11145:9;:42::i;28665:486::-;2450:6;;-1:-1:-1;;;;;2450:6:0;1226:10;2597:23;2589:68;;;;-1:-1:-1;;;2589:68:0;;;;;;;:::i;:::-;28818:6:::1;:13;28805:2;:9;:26;28783:132;;;::::0;-1:-1:-1;;;28783:132:0;;8258:2:1;28783:132:0::1;::::0;::::1;8240:21:1::0;8297:2;8277:18;;;8270:30;8336:34;8316:18;;;8309:62;8407:26;8387:18;;;8380:54;8451:19;;28783:132:0::1;8056:420:1::0;28783:132:0::1;28960:3;28948:2;:9;:15;28926:116;;;::::0;-1:-1:-1;;;28926:116:0;;8683:2:1;28926:116:0::1;::::0;::::1;8665:21:1::0;8722:2;8702:18;;;8695:30;8761:34;8741:18;;;8734:62;-1:-1:-1;;;8812:18:1;;;8805:49;8871:19;;28926:116:0::1;8481:415:1::0;28926:116:0::1;29060:9;29055:89;29075:2;:9;29071:1;:13;29055:89;;;29106:26;29115:2;29118:1;29115:5;;;;;;;;:::i;:::-;;;;;;;29122:6;29129:1;29122:9;;;;;;;;:::i;:::-;;;;;;;29106:8;:26::i;:::-;-1:-1:-1::0;29086:3:0;::::1;::::0;::::1;:::i;:::-;;;;29055:89;;;;28665:486:::0;;:::o;30701:165::-;2450:6;;-1:-1:-1;;;;;2450:6:0;1226:10;2597:23;2589:68;;;;-1:-1:-1;;;2589:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30773:18:0;::::1;30794:5;30773:18:::0;;;:8:::1;:18;::::0;;;;;:26;;-1:-1:-1;;30773:26:0::1;::::0;;30817:41;1226:10;;30817:41:::1;::::0;::::1;30701:165:::0;:::o;3277:229::-;2450:6;;-1:-1:-1;;;;;2450:6:0;1226:10;2597:23;2589:68;;;;-1:-1:-1;;;2589:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3380:22:0;::::1;3358:110;;;::::0;-1:-1:-1;;;3358:110:0;;9375:2:1;3358:110:0::1;::::0;::::1;9357:21:1::0;9414:2;9394:18;;;9387:30;9453:34;9433:18;;;9426:62;-1:-1:-1;;;9504:18:1;;;9497:36;9550:19;;3358:110:0::1;9173:402:1::0;3358:110:0::1;3479:19;3489:8;3479:9;:19::i;:::-;3277:229:::0;:::o;31189:154::-;2450:6;;-1:-1:-1;;;;;2450:6:0;1226:10;2597:23;2589:68;;;;-1:-1:-1;;;2589:68:0;;;;;;;:::i;:::-;31258:10:::1;:20:::0;;-1:-1:-1;;31258:20:0::1;::::0;::::1;;;::::0;;1226:10;-1:-1:-1;;;;;31296:39:0::1;;31327:7;31296:39;;;;1218:14:1::0;1211:22;1193:41;;1181:2;1166:18;;1053:187;17848:380:0;-1:-1:-1;;;;;17984:19:0;;17976:68;;;;-1:-1:-1;;;17976:68:0;;9782:2:1;17976:68:0;;;9764:21:1;9821:2;9801:18;;;9794:30;9860:34;9840:18;;;9833:62;-1:-1:-1;;;9911:18:1;;;9904:34;9955:19;;17976:68:0;9580:400:1;17976:68:0;-1:-1:-1;;;;;18063:21:0;;18055:68;;;;-1:-1:-1;;;18055:68:0;;10187:2:1;18055:68:0;;;10169:21:1;10226:2;10206:18;;;10199:30;10265:34;10245:18;;;10238:62;-1:-1:-1;;;10316:18:1;;;10309:32;10358:19;;18055:68:0;9985:398:1;18055:68:0;-1:-1:-1;;;;;18136:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18188:32;;1391:25:1;;;18188:32:0;;1364:18:1;18188:32:0;;;;;;;17848:380;;;:::o;29159:1049::-;-1:-1:-1;;;;;29300:20:0;;29292:70;;;;-1:-1:-1;;;29292:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29381:23:0;;29373:71;;;;-1:-1:-1;;;29373:71:0;;;;;;;:::i;:::-;29461:10;;;;29457:689;;;-1:-1:-1;;;;;29521:26:0;;29488:14;29521:26;;;:15;:26;;;;;;;;29517:84;;;-1:-1:-1;29577:8:0;;29517:84;-1:-1:-1;;;;;29640:25:0;;;;;;:17;:25;;;;;;;;;:57;;-1:-1:-1;;;;;;29669:28:0;;;;;;:17;:28;;;;;;;;29640:57;29639:137;;;-1:-1:-1;;;;;;29721:23:0;;;;;;:15;:23;;;;;;;;29720:24;:55;;;;-1:-1:-1;;;;;;29749:26:0;;;;;;:15;:26;;;;;;;;29748:27;29720:55;29617:220;;;-1:-1:-1;29820:1:0;29617:220;29853:20;29876:29;29899:5;29876:18;:6;29887;29876:10;:18::i;:::-;:22;;:29::i;:::-;29853:52;-1:-1:-1;29926:16:0;;29922:213;;29974:8;;:26;;29987:12;29974;:26::i;:::-;29963:8;:37;30043:9;;30019:48;;30035:6;;-1:-1:-1;;;;;30043:9:0;30054:12;30019:15;:48::i;:::-;30095:24;:6;30106:12;30095:10;:24::i;:::-;30086:33;;29922:213;29473:673;;29457:689;30158:42;30174:6;30182:9;30193:6;30158:15;:42::i;3514:173::-;3589:6;;;-1:-1:-1;;;;;3606:17:0;;;-1:-1:-1;;;;;;3606:17:0;;;;;;;3639:40;;3589:6;;;3606:17;3589:6;;3639:40;;3570:16;;3639:40;3559:128;3514:173;:::o;16819:591::-;-1:-1:-1;;;;;16903:21:0;;16895:67;;;;-1:-1:-1;;;16895:67:0;;11400:2:1;16895:67:0;;;11382:21:1;11439:2;11419:18;;;11412:30;11478:34;11458:18;;;11451:62;-1:-1:-1;;;11529:18:1;;;11522:31;11570:19;;16895:67:0;11198:397:1;16895:67:0;-1:-1:-1;;;;;17062:18:0;;17037:22;17062:18;;;;;;;;;;;17099:24;;;;17091:71;;;;-1:-1:-1;;;17091:71:0;;11802:2:1;17091:71:0;;;11784:21:1;11841:2;11821:18;;;11814:30;11880:34;11860:18;;;11853:62;-1:-1:-1;;;11931:18:1;;;11924:32;11973:19;;17091:71:0;11600:398:1;17091:71:0;-1:-1:-1;;;;;17198:18:0;;:9;:18;;;;;;;;;;17219:23;;;17198:44;;17264:12;:22;;17236:6;;17198:9;17264:22;;17236:6;;17264:22;:::i;:::-;;;;-1:-1:-1;;17304:37:0;;1391:25:1;;;17330:1:0;;-1:-1:-1;;;;;17304:37:0;;;;;1379:2:1;1364:18;17304:37:0;;;;;;;29055:89:::1;28665:486:::0;;:::o;23458:220::-;23516:7;23540:6;23536:20;;-1:-1:-1;23555:1:0;23548:8;;23536:20;23567:9;23579:5;23583:1;23579;:5;:::i;:::-;23567:17;-1:-1:-1;23612:1:0;23603:5;23607:1;23567:17;23603:5;:::i;:::-;:10;23595:56;;;;-1:-1:-1;;;23595:56:0;;12730:2:1;23595:56:0;;;12712:21:1;12769:2;12749:18;;;12742:30;12808:34;12788:18;;;12781:62;-1:-1:-1;;;12859:18:1;;;12852:31;12900:19;;23595:56:0;12528:397:1;23595:56:0;23669:1;23458:220;-1:-1:-1;;;23458:220:0:o;24156:153::-;24214:7;24246:1;24242;:5;24234:44;;;;-1:-1:-1;;;24234:44:0;;13132:2:1;24234:44:0;;;13114:21:1;13171:2;13151:18;;;13144:30;13210:28;13190:18;;;13183:56;13256:18;;24234:44:0;12930:350:1;24234:44:0;24296:5;24300:1;24296;:5;:::i;22579:179::-;22637:7;;22669:5;22673:1;22669;:5;:::i;:::-;22657:17;;22698:1;22693;:6;;22685:46;;;;-1:-1:-1;;;22685:46:0;;13487:2:1;22685:46:0;;;13469:21:1;13526:2;13506:18;;;13499:30;13565:29;13545:18;;;13538:57;13612:18;;22685:46:0;13285:351:1;15030:770:0;-1:-1:-1;;;;;15170:20:0;;15162:70;;;;-1:-1:-1;;;15162:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15251:23:0;;15243:71;;;;-1:-1:-1;;;15243:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15411:17:0;;15387:21;15411:17;;;;;;;;;;;15461:23;;;;15439:111;;;;-1:-1:-1;;;15439:111:0;;13843:2:1;15439:111:0;;;13825:21:1;13882:2;13862:18;;;13855:30;13921:34;13901:18;;;13894:62;-1:-1:-1;;;13972:18:1;;;13965:36;14018:19;;15439:111:0;13641:402:1;15439:111:0;-1:-1:-1;;;;;15586:17:0;;;:9;:17;;;;;;;;;;;15606:22;;;15586:42;;15650:20;;;;;;;;:30;;15622:6;;15586:9;15650:30;;15622:6;;15650:30;:::i;:::-;;;;;;;;15715:9;-1:-1:-1;;;;;15698:35:0;15707:6;-1:-1:-1;;;;;15698:35:0;;15726:6;15698:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;15698:35:0;;;;;;;;15151:649;15030:770;;;:::o;23041:158::-;23099:7;23132:1;23127;:6;;23119:49;;;;-1:-1:-1;;;23119:49:0;;14250:2:1;23119:49:0;;;14232:21:1;14289:2;14269:18;;;14262:30;14328:32;14308:18;;;14301:60;14378:18;;23119:49:0;14048:354:1;23119:49:0;23186:5;23190:1;23186;:5;:::i;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:186::-;1486:6;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;1578:29;1597:9;1578:29;:::i;1618:328::-;1695:6;1703;1711;1764:2;1752:9;1743:7;1739:23;1735:32;1732:52;;;1780:1;1777;1770:12;1732:52;1803:29;1822:9;1803:29;:::i;:::-;1793:39;;1851:38;1885:2;1874:9;1870:18;1851:38;:::i;:::-;1841:48;;1936:2;1925:9;1921:18;1908:32;1898:42;;1618:328;;;;;:::o;2348:180::-;2407:6;2460:2;2448:9;2439:7;2435:23;2431:32;2428:52;;;2476:1;2473;2466:12;2428:52;-1:-1:-1;2499:23:1;;2348:180;-1:-1:-1;2348:180:1:o;2533:160::-;2598:20;;2654:13;;2647:21;2637:32;;2627:60;;2683:1;2680;2673:12;2698:254;2763:6;2771;2824:2;2812:9;2803:7;2799:23;2795:32;2792:52;;;2840:1;2837;2830:12;2792:52;2863:29;2882:9;2863:29;:::i;:::-;2853:39;;2911:35;2942:2;2931:9;2927:18;2911:35;:::i;:::-;2901:45;;2698:254;;;;;:::o;2957:127::-;3018:10;3013:3;3009:20;3006:1;2999:31;3049:4;3046:1;3039:15;3073:4;3070:1;3063:15;3089:275;3160:2;3154:9;3225:2;3206:13;;-1:-1:-1;;3202:27:1;3190:40;;3260:18;3245:34;;3281:22;;;3242:62;3239:88;;;3307:18;;:::i;:::-;3343:2;3336:22;3089:275;;-1:-1:-1;3089:275:1:o;3369:183::-;3429:4;3462:18;3454:6;3451:30;3448:56;;;3484:18;;:::i;:::-;-1:-1:-1;3529:1:1;3525:14;3541:4;3521:25;;3369:183::o;3557:662::-;3611:5;3664:3;3657:4;3649:6;3645:17;3641:27;3631:55;;3682:1;3679;3672:12;3631:55;3718:6;3705:20;3744:4;3768:60;3784:43;3824:2;3784:43;:::i;:::-;3768:60;:::i;:::-;3862:15;;;3948:1;3944:10;;;;3932:23;;3928:32;;;3893:12;;;;3972:15;;;3969:35;;;4000:1;3997;3990:12;3969:35;4036:2;4028:6;4024:15;4048:142;4064:6;4059:3;4056:15;4048:142;;;4130:17;;4118:30;;4168:12;;;;4081;;4048:142;;;-1:-1:-1;4208:5:1;3557:662;-1:-1:-1;;;;;;3557:662:1:o;4224:1146::-;4342:6;4350;4403:2;4391:9;4382:7;4378:23;4374:32;4371:52;;;4419:1;4416;4409:12;4371:52;4459:9;4446:23;4488:18;4529:2;4521:6;4518:14;4515:34;;;4545:1;4542;4535:12;4515:34;4583:6;4572:9;4568:22;4558:32;;4628:7;4621:4;4617:2;4613:13;4609:27;4599:55;;4650:1;4647;4640:12;4599:55;4686:2;4673:16;4708:4;4732:60;4748:43;4788:2;4748:43;:::i;4732:60::-;4826:15;;;4908:1;4904:10;;;;4896:19;;4892:28;;;4857:12;;;;4932:19;;;4929:39;;;4964:1;4961;4954:12;4929:39;4988:11;;;;5008:148;5024:6;5019:3;5016:15;5008:148;;;5090:23;5109:3;5090:23;:::i;:::-;5078:36;;5041:12;;;;5134;;;;5008:148;;;5175:5;-1:-1:-1;;5218:18:1;;5205:32;;-1:-1:-1;;5249:16:1;;;5246:36;;;5278:1;5275;5268:12;5246:36;;5301:63;5356:7;5345:8;5334:9;5330:24;5301:63;:::i;:::-;5291:73;;;4224:1146;;;;;:::o;5375:260::-;5443:6;5451;5504:2;5492:9;5483:7;5479:23;5475:32;5472:52;;;5520:1;5517;5510:12;5472:52;5543:29;5562:9;5543:29;:::i;:::-;5533:39;;5591:38;5625:2;5614:9;5610:18;5591:38;:::i;5640:180::-;5696:6;5749:2;5737:9;5728:7;5724:23;5720:32;5717:52;;;5765:1;5762;5755:12;5717:52;5788:26;5804:9;5788:26;:::i;5825:380::-;5904:1;5900:12;;;;5947;;;5968:61;;6022:4;6014:6;6010:17;6000:27;;5968:61;6075:2;6067:6;6064:14;6044:18;6041:38;6038:161;;;6121:10;6116:3;6112:20;6109:1;6102:31;6156:4;6153:1;6146:15;6184:4;6181:1;6174:15;6038:161;;5825:380;;;:::o;6210:356::-;6412:2;6394:21;;;6431:18;;;6424:30;6490:34;6485:2;6470:18;;6463:62;6557:2;6542:18;;6210:356::o;6980:127::-;7041:10;7036:3;7032:20;7029:1;7022:31;7072:4;7069:1;7062:15;7096:4;7093:1;7086:15;7112:128;7152:3;7183:1;7179:6;7176:1;7173:13;7170:39;;;7189:18;;:::i;:::-;-1:-1:-1;7225:9:1;;7112:128::o;8901:127::-;8962:10;8957:3;8953:20;8950:1;8943:31;8993:4;8990:1;8983:15;9017:4;9014:1;9007:15;9033:135;9072:3;-1:-1:-1;;9093:17:1;;9090:43;;;9113:18;;:::i;:::-;-1:-1:-1;9160:1:1;9149:13;;9033:135::o;10388:401::-;10590:2;10572:21;;;10629:2;10609:18;;;10602:30;10668:34;10663:2;10648:18;;10641:62;-1:-1:-1;;;10734:2:1;10719:18;;10712:35;10779:3;10764:19;;10388:401::o;10794:399::-;10996:2;10978:21;;;11035:2;11015:18;;;11008:30;11074:34;11069:2;11054:18;;11047:62;-1:-1:-1;;;11140:2:1;11125:18;;11118:33;11183:3;11168:19;;10794:399::o;12003:125::-;12043:4;12071:1;12068;12065:8;12062:34;;;12076:18;;:::i;:::-;-1:-1:-1;12113:9:1;;12003:125::o;12133:168::-;12173:7;12239:1;12235;12231:6;12227:14;12224:1;12221:21;12216:1;12209:9;12202:17;12198:45;12195:71;;;12246:18;;:::i;:::-;-1:-1:-1;12286:9:1;;12133:168::o;12306:217::-;12346:1;12372;12362:132;;12416:10;12411:3;12407:20;12404:1;12397:31;12451:4;12448:1;12441:15;12479:4;12476:1;12469:15;12362:132;-1:-1:-1;12508:9:1;;12306:217::o

Swarm Source

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