POL Price: $0.699614 (-1.59%)
 

Overview

Max Total Supply

125,000,000 Eagon

Holders

7,262

Market

Price

$0.0001 @ 0.000115 POL

Onchain Market Cap

$10,021.25

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,432.54222218 Eagon

Value
$0.36 ( ~0.514569434720816 POL) [0.0035%]
0xd9df5e4b47afc79b6a1bec08017eb7bb17849a87
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Eagon is the native token of EagonSwap Dex with utility values acting as the EagonSwap Dex Token, staking/yield farming protocols token, NFT and gaming token, and as well the governance token for the Eagon pad IDO platform.

Market

Volume (24H):$0.68
Market Capitalization:$0.00
Circulating Supply:0.00 Eagon
Market Data Source: Coinmarketcap

Contract Source Code Verified (Exact Match)

Contract Name:
Eagonswap

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2021-09-17
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.3;

/**
 * @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, 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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * 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);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    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;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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

/*
 * @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 GSN 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 payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
    
 /* @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.
 */
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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @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 guidelines: functions revert instead
 * of 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 Eagonswap is IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint256 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     */
    constructor () {
        _name = "Eagonswap";
        _symbol = "Eagon";
        _decimals = 18;
        uint256 _maxSupply = 150000000;
        _mintOnce(msg.sender, _maxSupply.mul(10 ** _decimals));
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint256) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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
     *
     * - `to` cannot be the zero address.
     */
    function _mintOnce(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
    
    receive() external payable {
       revert();
    }

    function withdrawToken(IERC20 _token) external onlyOwner {
        uint256 balance = _token.balanceOf(address(this));
        require(balance > 0, "Not enough token balance");
        _token.transfer(owner(), balance);
    } 
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506040805180820190915260098082526804561676f6e737761760bc1b60209092019182526200008591600491620002f9565b506040805180820190915260058082526422b0b3b7b760d91b6020909201918252620000b29181620002f9565b50601260068190556308f0d18090620000f4903390620000ee90620000d990600a62000428565b84620000fb60201b620008421790919060201c565b6200018f565b5062000592565b6000826200010c5750600062000189565b60006200011a83856200051d565b905082620001298583620003ba565b14620001865760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b90505b92915050565b6001600160a01b038216620001e75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200017d565b62000203816003546200029660201b620008c81790919060201c565b6003556001600160a01b03821660009081526001602090815260409091205462000238918390620008c862000296821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200028a9085815260200190565b60405180910390a35050565b600080620002a583856200039f565b905083811015620001865760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200017d565b82805462000307906200053f565b90600052602060002090601f0160209004810192826200032b576000855562000376565b82601f106200034657805160ff191683800117855562000376565b8280016001018555821562000376579182015b828111156200037657825182559160200191906001019062000359565b506200038492915062000388565b5090565b5b8082111562000384576000815560010162000389565b60008219821115620003b557620003b56200057c565b500190565b600082620003d657634e487b7160e01b81526012600452602481fd5b500490565b80825b6001808611620003ef57506200041f565b8187048211156200040457620004046200057c565b808616156200041257918102915b9490941c938002620003de565b94509492505050565b600062000439600019848462000440565b9392505050565b600082620004515750600162000439565b81620004605750600062000439565b81600181146200047957600281146200048457620004b8565b600191505062000439565b60ff8411156200049857620004986200057c565b6001841b915084821115620004b157620004b16200057c565b5062000439565b5060208310610133831016604e8410600b8410161715620004f0575081810a83811115620004ea57620004ea6200057c565b62000439565b620004ff8484846001620003db565b8086048211156200051457620005146200057c565b02949350505050565b60008160001904831182151516156200053a576200053a6200057c565b500290565b600181811c908216806200055457607f821691505b602082108114156200057657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61107e80620005a26000396000f3fe6080604052600436106100f75760003560e01c806379cc67901161008a578063a457c2d711610059578063a457c2d7146102aa578063a9059cbb146102ca578063dd62ed3e146102ea578063f2fde38b1461033057610101565b806379cc67901461022d578063894760691461024d5780638da5cb5b1461026d57806395d89b411461029557610101565b8063313ce567116100c6578063313ce567146101a057806339509351146101b557806342966c68146101d557806370a08231146101f757610101565b806306fdde0314610106578063095ea7b31461013157806318160ddd1461016157806323b872dd1461018057610101565b3661010157600080fd5b600080fd5b34801561011257600080fd5b5061011b610350565b6040516101289190610e68565b60405180910390f35b34801561013d57600080fd5b5061015161014c366004610ded565b6103e2565b6040519015158152602001610128565b34801561016d57600080fd5b506003545b604051908152602001610128565b34801561018c57600080fd5b5061015161019b366004610dad565b6103f9565b3480156101ac57600080fd5b50600654610172565b3480156101c157600080fd5b506101516101d0366004610ded565b610462565b3480156101e157600080fd5b506101f56101f0366004610e38565b610498565b005b34801561020357600080fd5b50610172610212366004610d59565b6001600160a01b031660009081526001602052604090205490565b34801561023957600080fd5b506101f5610248366004610ded565b6104a5565b34801561025957600080fd5b506101f5610268366004610d59565b6104f1565b34801561027957600080fd5b506000546040516001600160a01b039091168152602001610128565b3480156102a157600080fd5b5061011b6106bd565b3480156102b657600080fd5b506101516102c5366004610ded565b6106cc565b3480156102d657600080fd5b506101516102e5366004610ded565b61071b565b3480156102f657600080fd5b50610172610305366004610d75565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561033c57600080fd5b506101f561034b366004610d59565b610728565b60606004805461035f90610f29565b80601f016020809104026020016040519081016040528092919081815260200182805461038b90610f29565b80156103d85780601f106103ad576101008083540402835291602001916103d8565b820191906000526020600020905b8154815290600101906020018083116103bb57829003601f168201915b5050505050905090565b60006103ef338484610927565b5060015b92915050565b6000610406848484610a4c565b610458843361045385604051806060016040528060288152602001610fd8602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610bd2565b610927565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103ef91859061045390866108c8565b6104a23382610c0c565b50565b60006104d582604051806060016040528060248152602001611000602491396104ce8633610305565b9190610bd2565b90506104e2833383610927565b6104ec8383610c0c565b505050565b6000546001600160a01b031633146105505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561059257600080fd5b505afa1580156105a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ca9190610e50565b90506000811161061c5760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656e6f75676820746f6b656e2062616c616e636500000000000000006044820152606401610547565b816001600160a01b031663a9059cbb61063d6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b15801561068557600080fd5b505af1158015610699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ec9190610e18565b60606005805461035f90610f29565b60006103ef338461045385604051806060016040528060258152602001611024602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610bd2565b60006103ef338484610a4c565b6000546001600160a01b031633146107825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610547565b6001600160a01b0381166107e75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610547565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082610851575060006103f3565b600061085d8385610ef3565b90508261086a8583610ed3565b146108c15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610547565b9392505050565b6000806108d58385610ebb565b9050838110156108c15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610547565b6001600160a01b0383166109895760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610547565b6001600160a01b0382166109ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610547565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610ab05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610547565b6001600160a01b038216610b125760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610547565b610b4f81604051806060016040528060268152602001610fb2602691396001600160a01b0386166000908152600160205260409020549190610bd2565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610b7e90826108c8565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a3f9085815260200190565b60008184841115610bf65760405162461bcd60e51b81526004016105479190610e68565b506000610c038486610f12565b95945050505050565b6001600160a01b038216610c6c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610547565b610ca981604051806060016040528060228152602001610f90602291396001600160a01b0385166000908152600160205260409020549190610bd2565b6001600160a01b038316600090815260016020526040902055600354610ccf9082610d17565b6003556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006108c183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610bd2565b600060208284031215610d6a578081fd5b81356108c181610f7a565b60008060408385031215610d87578081fd5b8235610d9281610f7a565b91506020830135610da281610f7a565b809150509250929050565b600080600060608486031215610dc1578081fd5b8335610dcc81610f7a565b92506020840135610ddc81610f7a565b929592945050506040919091013590565b60008060408385031215610dff578182fd5b8235610e0a81610f7a565b946020939093013593505050565b600060208284031215610e29578081fd5b815180151581146108c1578182fd5b600060208284031215610e49578081fd5b5035919050565b600060208284031215610e61578081fd5b5051919050565b6000602080835283518082850152825b81811015610e9457858101830151858201604001528201610e78565b81811115610ea55783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610ece57610ece610f64565b500190565b600082610eee57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610f0d57610f0d610f64565b500290565b600082821015610f2457610f24610f64565b500390565b600181811c90821680610f3d57607f821691505b60208210811415610f5e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146104a257600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d9626570fa065eb513231765dbfd7057e2cd4ad986d9d28ca9df841b35ff612e64736f6c63430008030033

Deployed Bytecode

0x6080604052600436106100f75760003560e01c806379cc67901161008a578063a457c2d711610059578063a457c2d7146102aa578063a9059cbb146102ca578063dd62ed3e146102ea578063f2fde38b1461033057610101565b806379cc67901461022d578063894760691461024d5780638da5cb5b1461026d57806395d89b411461029557610101565b8063313ce567116100c6578063313ce567146101a057806339509351146101b557806342966c68146101d557806370a08231146101f757610101565b806306fdde0314610106578063095ea7b31461013157806318160ddd1461016157806323b872dd1461018057610101565b3661010157600080fd5b600080fd5b34801561011257600080fd5b5061011b610350565b6040516101289190610e68565b60405180910390f35b34801561013d57600080fd5b5061015161014c366004610ded565b6103e2565b6040519015158152602001610128565b34801561016d57600080fd5b506003545b604051908152602001610128565b34801561018c57600080fd5b5061015161019b366004610dad565b6103f9565b3480156101ac57600080fd5b50600654610172565b3480156101c157600080fd5b506101516101d0366004610ded565b610462565b3480156101e157600080fd5b506101f56101f0366004610e38565b610498565b005b34801561020357600080fd5b50610172610212366004610d59565b6001600160a01b031660009081526001602052604090205490565b34801561023957600080fd5b506101f5610248366004610ded565b6104a5565b34801561025957600080fd5b506101f5610268366004610d59565b6104f1565b34801561027957600080fd5b506000546040516001600160a01b039091168152602001610128565b3480156102a157600080fd5b5061011b6106bd565b3480156102b657600080fd5b506101516102c5366004610ded565b6106cc565b3480156102d657600080fd5b506101516102e5366004610ded565b61071b565b3480156102f657600080fd5b50610172610305366004610d75565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561033c57600080fd5b506101f561034b366004610d59565b610728565b60606004805461035f90610f29565b80601f016020809104026020016040519081016040528092919081815260200182805461038b90610f29565b80156103d85780601f106103ad576101008083540402835291602001916103d8565b820191906000526020600020905b8154815290600101906020018083116103bb57829003601f168201915b5050505050905090565b60006103ef338484610927565b5060015b92915050565b6000610406848484610a4c565b610458843361045385604051806060016040528060288152602001610fd8602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610bd2565b610927565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103ef91859061045390866108c8565b6104a23382610c0c565b50565b60006104d582604051806060016040528060248152602001611000602491396104ce8633610305565b9190610bd2565b90506104e2833383610927565b6104ec8383610c0c565b505050565b6000546001600160a01b031633146105505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561059257600080fd5b505afa1580156105a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ca9190610e50565b90506000811161061c5760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656e6f75676820746f6b656e2062616c616e636500000000000000006044820152606401610547565b816001600160a01b031663a9059cbb61063d6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b15801561068557600080fd5b505af1158015610699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ec9190610e18565b60606005805461035f90610f29565b60006103ef338461045385604051806060016040528060258152602001611024602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610bd2565b60006103ef338484610a4c565b6000546001600160a01b031633146107825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610547565b6001600160a01b0381166107e75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610547565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082610851575060006103f3565b600061085d8385610ef3565b90508261086a8583610ed3565b146108c15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610547565b9392505050565b6000806108d58385610ebb565b9050838110156108c15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610547565b6001600160a01b0383166109895760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610547565b6001600160a01b0382166109ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610547565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610ab05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610547565b6001600160a01b038216610b125760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610547565b610b4f81604051806060016040528060268152602001610fb2602691396001600160a01b0386166000908152600160205260409020549190610bd2565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610b7e90826108c8565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a3f9085815260200190565b60008184841115610bf65760405162461bcd60e51b81526004016105479190610e68565b506000610c038486610f12565b95945050505050565b6001600160a01b038216610c6c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610547565b610ca981604051806060016040528060228152602001610f90602291396001600160a01b0385166000908152600160205260409020549190610bd2565b6001600160a01b038316600090815260016020526040902055600354610ccf9082610d17565b6003556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006108c183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610bd2565b600060208284031215610d6a578081fd5b81356108c181610f7a565b60008060408385031215610d87578081fd5b8235610d9281610f7a565b91506020830135610da281610f7a565b809150509250929050565b600080600060608486031215610dc1578081fd5b8335610dcc81610f7a565b92506020840135610ddc81610f7a565b929592945050506040919091013590565b60008060408385031215610dff578182fd5b8235610e0a81610f7a565b946020939093013593505050565b600060208284031215610e29578081fd5b815180151581146108c1578182fd5b600060208284031215610e49578081fd5b5035919050565b600060208284031215610e61578081fd5b5051919050565b6000602080835283518082850152825b81811015610e9457858101830151858201604001528201610e78565b81811115610ea55783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610ece57610ece610f64565b500190565b600082610eee57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610f0d57610f0d610f64565b500290565b600082821015610f2457610f24610f64565b500390565b600181811c90821680610f3d57607f821691505b60208210811415610f5e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146104a257600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d9626570fa065eb513231765dbfd7057e2cd4ad986d9d28ca9df841b35ff612e64736f6c63430008030033

Deployed Bytecode Sourcemap

17830:10728:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28302:8;;;17830:10728;;;;18615:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20723:169;;;;;;;;;;-1:-1:-1;20723:169:0;;;;;:::i;:::-;;:::i;:::-;;;3104:14:1;;3097:22;3079:41;;3067:2;3052:18;20723:169:0;3034:92:1;19692:100:0;;;;;;;;;;-1:-1:-1;19772:12:0;;19692:100;;;7784:25:1;;;7772:2;7757:18;19692:100:0;7739:76:1;21366:321:0;;;;;;;;;;-1:-1:-1;21366:321:0;;;;;:::i;:::-;;:::i;19542:85::-;;;;;;;;;;-1:-1:-1;19610:9:0;;19542:85;;22096:218;;;;;;;;;;-1:-1:-1;22096:218:0;;;;;:::i;:::-;;:::i;27550:91::-;;;;;;;;;;-1:-1:-1;27550:91:0;;;;;:::i;:::-;;:::i;:::-;;19855:119;;;;;;;;;;-1:-1:-1;19855:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;19948:18:0;19921:7;19948:18;;;:9;:18;;;;;;;19855:119;27960:293;;;;;;;;;;-1:-1:-1;27960:293:0;;;;;:::i;:::-;;:::i;28326:228::-;;;;;;;;;;-1:-1:-1;28326:228:0;;;;;:::i;:::-;;:::i;15946:79::-;;;;;;;;;;-1:-1:-1;15984:7:0;16011:6;15946:79;;-1:-1:-1;;;;;16011:6:0;;;2598:51:1;;2586:2;2571:18;15946:79:0;2553:102:1;18817:87:0;;;;;;;;;;;;;:::i;22817:269::-;;;;;;;;;;-1:-1:-1;22817:269:0;;;;;:::i;:::-;;:::i;20187:175::-;;;;;;;;;;-1:-1:-1;20187:175:0;;;;;:::i;:::-;;:::i;20425:151::-;;;;;;;;;;-1:-1:-1;20425:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;20541:18:0;;;20514:7;20541:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20425:151;16392:244;;;;;;;;;;-1:-1:-1;16392:244:0;;;;;:::i;:::-;;:::i;18615:83::-;18652:13;18685:5;18678:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18615:83;:::o;20723:169::-;20806:4;20823:39;14680:10;20846:7;20855:6;20823:8;:39::i;:::-;-1:-1:-1;20880:4:0;20723:169;;;;;:::o;21366:321::-;21472:4;21489:36;21499:6;21507:9;21518:6;21489:9;:36::i;:::-;21536:121;21545:6;14680:10;21567:89;21605:6;21567:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21567:19:0;;;;;;:11;:19;;;;;;;;14680:10;21567:33;;;;;;;;;;:37;:89::i;:::-;21536:8;:121::i;:::-;-1:-1:-1;21675:4:0;21366:321;;;;;:::o;22096:218::-;14680:10;22184:4;22233:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;22233:34:0;;;;;;;;;;22184:4;;22201:83;;22224:7;;22233:50;;22272:10;22233:38;:50::i;27550:91::-;27606:27;14680:10;27626:6;27606:5;:27::i;:::-;27550:91;:::o;27960:293::-;28037:26;28066:84;28103:6;28066:84;;;;;;;;;;;;;;;;;:32;28076:7;14680:10;28085:12;14584:115;28066:32;:36;:84;:36;:84::i;:::-;28037:113;-1:-1:-1;28161:51:0;28170:7;14680:10;28193:18;28161:8;:51::i;:::-;28223:22;28229:7;28238:6;28223:5;:22::i;:::-;27960:293;;;:::o;28326:228::-;16158:6;;-1:-1:-1;;;;;16158:6:0;14680:10;16158:22;16150:67;;;;-1:-1:-1;;;16150:67:0;;5913:2:1;16150:67:0;;;5895:21:1;;;5932:18;;;5925:30;5991:34;5971:18;;;5964:62;6043:18;;16150:67:0;;;;;;;;;28412:31:::1;::::0;-1:-1:-1;;;28412:31:0;;28437:4:::1;28412:31;::::0;::::1;2598:51:1::0;28394:15:0::1;::::0;-1:-1:-1;;;;;28412:16:0;::::1;::::0;::::1;::::0;2571:18:1;;28412:31:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28394:49;;28472:1;28462:7;:11;28454:48;;;::::0;-1:-1:-1;;;28454:48:0;;7487:2:1;28454:48:0::1;::::0;::::1;7469:21:1::0;7526:2;7506:18;;;7499:30;7565:26;7545:18;;;7538:54;7609:18;;28454:48:0::1;7459:174:1::0;28454:48:0::1;28513:6;-1:-1:-1::0;;;;;28513:15:0::1;;28529:7;15984::::0;16011:6;-1:-1:-1;;;;;16011:6:0;15946:79;;28529:7:::1;28513:33;::::0;-1:-1:-1;;;;;;28513:33:0::1;::::0;;;;;;-1:-1:-1;;;;;2852:32:1;;;28513:33:0::1;::::0;::::1;2834:51:1::0;2901:18;;;2894:34;;;2807:18;;28513:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;18817:87::-:0;18856:13;18889:7;18882:14;;;;;:::i;22817:269::-;22910:4;22927:129;14680:10;22950:7;22959:96;22998:15;22959:96;;;;;;;;;;;;;;;;;14680:10;22959:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;22959:34:0;;;;;;;;;;;;:38;:96::i;20187:175::-;20273:4;20290:42;14680:10;20314:9;20325:6;20290:9;:42::i;16392:244::-;16158:6;;-1:-1:-1;;;;;16158:6:0;14680:10;16158:22;16150:67;;;;-1:-1:-1;;;16150:67:0;;5913:2:1;16150:67:0;;;5895:21:1;;;5932:18;;;5925:30;5991:34;5971:18;;;5964:62;6043:18;;16150:67:0;5885:182:1;16150:67:0;-1:-1:-1;;;;;16481:22:0;::::1;16473:73;;;::::0;-1:-1:-1;;;16473:73:0;;4345:2:1;16473:73:0::1;::::0;::::1;4327:21:1::0;4384:2;4364:18;;;4357:30;4423:34;4403:18;;;4396:62;-1:-1:-1;;;4474:18:1;;;4467:36;4520:19;;16473:73:0::1;4317:228:1::0;16473:73:0::1;16583:6;::::0;;16562:38:::1;::::0;-1:-1:-1;;;;;16562:38:0;;::::1;::::0;16583:6;::::1;::::0;16562:38:::1;::::0;::::1;16611:6;:17:::0;;-1:-1:-1;;;;;;16611:17:0::1;-1:-1:-1::0;;;;;16611:17:0;;;::::1;::::0;;;::::1;::::0;;16392:244::o;2256:471::-;2314:7;2559:6;2555:47;;-1:-1:-1;2589:1:0;2582:8;;2555:47;2614:9;2626:5;2630:1;2626;:5;:::i;:::-;2614:17;-1:-1:-1;2659:1:0;2650:5;2654:1;2614:17;2650:5;:::i;:::-;:10;2642:56;;;;-1:-1:-1;;;2642:56:0;;5511:2:1;2642:56:0;;;5493:21:1;5550:2;5530:18;;;5523:30;5589:34;5569:18;;;5562:62;-1:-1:-1;;;5640:18:1;;;5633:31;5681:19;;2642:56:0;5483:223:1;2642:56:0;2718:1;2256:471;-1:-1:-1;;;2256:471:0:o;902:181::-;960:7;;992:5;996:1;992;:5;:::i;:::-;980:17;;1021:1;1016;:6;;1008:46;;;;-1:-1:-1;;;1008:46:0;;5155:2:1;1008:46:0;;;5137:21:1;5194:2;5174:18;;;5167:30;5233:29;5213:18;;;5206:57;5280:18;;1008:46:0;5127:177:1;25966:346:0;-1:-1:-1;;;;;26068:19:0;;26060:68;;;;-1:-1:-1;;;26060:68:0;;7082:2:1;26060:68:0;;;7064:21:1;7121:2;7101:18;;;7094:30;7160:34;7140:18;;;7133:62;-1:-1:-1;;;7211:18:1;;;7204:34;7255:19;;26060:68:0;7054:226:1;26060:68:0;-1:-1:-1;;;;;26147:21:0;;26139:68;;;;-1:-1:-1;;;26139:68:0;;4752:2:1;26139:68:0;;;4734:21:1;4791:2;4771:18;;;4764:30;4830:34;4810:18;;;4803:62;-1:-1:-1;;;4881:18:1;;;4874:32;4923:19;;26139:68:0;4724:224:1;26139:68:0;-1:-1:-1;;;;;26220:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26272:32;;7784:25:1;;;26272:32:0;;7757:18:1;26272:32:0;;;;;;;;25966:346;;;:::o;23576:539::-;-1:-1:-1;;;;;23682:20:0;;23674:70;;;;-1:-1:-1;;;23674:70:0;;6676:2:1;23674:70:0;;;6658:21:1;6715:2;6695:18;;;6688:30;6754:34;6734:18;;;6727:62;-1:-1:-1;;;6805:18:1;;;6798:35;6850:19;;23674:70:0;6648:227:1;23674:70:0;-1:-1:-1;;;;;23763:23:0;;23755:71;;;;-1:-1:-1;;;23755:71:0;;3941:2:1;23755:71:0;;;3923:21:1;3980:2;3960:18;;;3953:30;4019:34;3999:18;;;3992:62;-1:-1:-1;;;4070:18:1;;;4063:33;4113:19;;23755:71:0;3913:225:1;23755:71:0;23919;23941:6;23919:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23919:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;23899:17:0;;;;;;;:9;:17;;;;;;:91;;;;24024:20;;;;;;;:32;;24049:6;24024:24;:32::i;:::-;-1:-1:-1;;;;;24001:20:0;;;;;;;:9;:20;;;;;;;:55;;;;24072:35;;;;;;;;;;24100:6;7784:25:1;;7772:2;7757:18;;7739:76;1805:192:0;1891:7;1927:12;1919:6;;;;1911:29;;;;-1:-1:-1;;;1911:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1951:9:0;1963:5;1967:1;1963;:5;:::i;:::-;1951:17;1805:192;-1:-1:-1;;;;;1805:192:0:o;25110:418::-;-1:-1:-1;;;;;25194:21:0;;25186:67;;;;-1:-1:-1;;;25186:67:0;;6274:2:1;25186:67:0;;;6256:21:1;6313:2;6293:18;;;6286:30;6352:34;6332:18;;;6325:62;-1:-1:-1;;;6403:18:1;;;6396:31;6444:19;;25186:67:0;6246:223:1;25186:67:0;25349:68;25372:6;25349:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25349:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;25328:18:0;;;;;;:9;:18;;;;;:89;25443:12;;:24;;25460:6;25443:16;:24::i;:::-;25428:12;:39;25483:37;;7784:25:1;;;25509:1:0;;-1:-1:-1;;;;;25483:37:0;;;;;7772:2:1;7757:18;25483:37:0;;;;;;;25110:418;;:::o;1366:136::-;1424:7;1451:43;1455:1;1458;1451:43;;;;;;;;;;;;;;;;;:3;:43::i;14:257:1:-;;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:398::-;;;405:2;393:9;384:7;380:23;376:32;373:2;;;426:6;418;411:22;373:2;470:9;457:23;489:31;514:5;489:31;:::i;:::-;539:5;-1:-1:-1;596:2:1;581:18;;568:32;609:33;568:32;609:33;:::i;:::-;661:7;651:17;;;363:311;;;;;:::o;679:466::-;;;;825:2;813:9;804:7;800:23;796:32;793:2;;;846:6;838;831:22;793:2;890:9;877:23;909:31;934:5;909:31;:::i;:::-;959:5;-1:-1:-1;1016:2:1;1001:18;;988:32;1029:33;988:32;1029:33;:::i;:::-;783:362;;1081:7;;-1:-1:-1;;;1135:2:1;1120:18;;;;1107:32;;783:362::o;1150:325::-;;;1279:2;1267:9;1258:7;1254:23;1250:32;1247:2;;;1300:6;1292;1285:22;1247:2;1344:9;1331:23;1363:31;1388:5;1363:31;:::i;:::-;1413:5;1465:2;1450:18;;;;1437:32;;-1:-1:-1;;;1237:238:1:o;1480:297::-;;1600:2;1588:9;1579:7;1575:23;1571:32;1568:2;;;1621:6;1613;1606:22;1568:2;1658:9;1652:16;1711:5;1704:13;1697:21;1690:5;1687:32;1677:2;;1738:6;1730;1723:22;2058:190;;2170:2;2158:9;2149:7;2145:23;2141:32;2138:2;;;2191:6;2183;2176:22;2138:2;-1:-1:-1;2219:23:1;;2128:120;-1:-1:-1;2128:120:1:o;2253:194::-;;2376:2;2364:9;2355:7;2351:23;2347:32;2344:2;;;2397:6;2389;2382:22;2344:2;-1:-1:-1;2425:16:1;;2334:113;-1:-1:-1;2334:113:1:o;3131:603::-;;3272:2;3301;3290:9;3283:21;3333:6;3327:13;3376:6;3371:2;3360:9;3356:18;3349:34;3401:4;3414:140;3428:6;3425:1;3422:13;3414:140;;;3523:14;;;3519:23;;3513:30;3489:17;;;3508:2;3485:26;3478:66;3443:10;;3414:140;;;3572:6;3569:1;3566:13;3563:2;;;3642:4;3637:2;3628:6;3617:9;3613:22;3609:31;3602:45;3563:2;-1:-1:-1;3718:2:1;3697:15;-1:-1:-1;;3693:29:1;3678:45;;;;3725:2;3674:54;;3252:482;-1:-1:-1;;;3252:482:1:o;7820:128::-;;7891:1;7887:6;7884:1;7881:13;7878:2;;;7897:18;;:::i;:::-;-1:-1:-1;7933:9:1;;7868:80::o;7953:217::-;;8019:1;8009:2;;-1:-1:-1;;;8044:31:1;;8098:4;8095:1;8088:15;8126:4;8051:1;8116:15;8009:2;-1:-1:-1;8155:9:1;;7999:171::o;8175:168::-;;8281:1;8277;8273:6;8269:14;8266:1;8263:21;8258:1;8251:9;8244:17;8240:45;8237:2;;;8288:18;;:::i;:::-;-1:-1:-1;8328:9:1;;8227:116::o;8348:125::-;;8416:1;8413;8410:8;8407:2;;;8421:18;;:::i;:::-;-1:-1:-1;8458:9:1;;8397:76::o;8478:380::-;8557:1;8553:12;;;;8600;;;8621:2;;8675:4;8667:6;8663:17;8653:27;;8621:2;8728;8720:6;8717:14;8697:18;8694:38;8691:2;;;8774:10;8769:3;8765:20;8762:1;8755:31;8809:4;8806:1;8799:15;8837:4;8834:1;8827:15;8691:2;;8533:325;;;:::o;8863:127::-;8924:10;8919:3;8915:20;8912:1;8905:31;8955:4;8952:1;8945:15;8979:4;8976:1;8969:15;8995:131;-1:-1:-1;;;;;9070:31:1;;9060:42;;9050:2;;9116:1;9113;9106:12

Swarm Source

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