ETH Price: $2,670.74 (+1.21%)
Gas: 6 Gwei

Contract

0xA1AbECc1B3958da78259FA2793653FC48E976420
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Dogggo (DOGGGO) (@$0.0005)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer204098512024-07-29 4:32:5914 days ago1722227579IN
0xA1AbECc1...48E976420
0 ETH0.000046161.31273693
Transfer204098502024-07-29 4:32:4714 days ago1722227567IN
0xA1AbECc1...48E976420
0 ETH0.00007091.3572777
Approve203821072024-07-25 7:35:3518 days ago1721892935IN
0xA1AbECc1...48E976420
0 ETH0.000213644.52995471
Approve203499252024-07-20 19:46:4722 days ago1721504807IN
0xA1AbECc1...48E976420
0 ETH0.000149543.17081688
Transfer203499132024-07-20 19:44:2322 days ago1721504663IN
0xA1AbECc1...48E976420
0 ETH0.00017613.36932829
Approve202513922024-07-07 1:35:4736 days ago1720316147IN
0xA1AbECc1...48E976420
0 ETH0.000087361.85234177
Approve202421272024-07-05 18:34:2337 days ago1720204463IN
0xA1AbECc1...48E976420
0 ETH0.000234964.97555681
Transfer201572442024-06-23 22:03:3549 days ago1719180215IN
0xA1AbECc1...48E976420
0 ETH0.000108683.09072821
Transfer201572432024-06-23 22:03:2349 days ago1719180203IN
0xA1AbECc1...48E976420
0 ETH0.000106093.01701383
Transfer201572422024-06-23 22:03:1149 days ago1719180191IN
0xA1AbECc1...48E976420
0 ETH0.000159973.06150047
Approve201495972024-06-22 20:22:2350 days ago1719087743IN
0xA1AbECc1...48E976420
0 ETH0.000137212.90569943
Approve201495712024-06-22 20:17:1150 days ago1719087431IN
0xA1AbECc1...48E976420
0 ETH0.000118452.52306895
Approve201424322024-06-21 20:18:1151 days ago1719001091IN
0xA1AbECc1...48E976420
0 ETH0.000328066.95589103
Approve200188912024-06-04 13:55:3568 days ago1717509335IN
0xA1AbECc1...48E976420
0 ETH0.0005795212.27203936
Approve200188822024-06-04 13:53:4768 days ago1717509227IN
0xA1AbECc1...48E976420
0 ETH0.0002993411.09215268
Approve200188722024-06-04 13:51:4768 days ago1717509107IN
0xA1AbECc1...48E976420
0 ETH0.000296510.98682862
Approve200188672024-06-04 13:50:4768 days ago1717509047IN
0xA1AbECc1...48E976420
0 ETH0.0003283411.02310335
Approve200062862024-06-02 19:40:1170 days ago1717357211IN
0xA1AbECc1...48E976420
0 ETH0.0006157713.05622668
Approve199961102024-06-01 9:35:3572 days ago1717234535IN
0xA1AbECc1...48E976420
0 ETH0.000251365.32968841
Approve199941472024-06-01 3:00:5972 days ago1717210859IN
0xA1AbECc1...48E976420
0 ETH0.000237755.03479871
Approve199935922024-06-01 1:09:3572 days ago1717204175IN
0xA1AbECc1...48E976420
0 ETH0.0002815.95058357
Approve199934102024-06-01 0:32:3572 days ago1717201955IN
0xA1AbECc1...48E976420
0 ETH0.000263715.62299166
Approve199934012024-06-01 0:30:4772 days ago1717201847IN
0xA1AbECc1...48E976420
0 ETH0.000250995.35189023
Approve199858162024-05-30 23:04:4773 days ago1717110287IN
0xA1AbECc1...48E976420
0 ETH0.000259218.69861925
Approve199857502024-05-30 22:51:3573 days ago1717109495IN
0xA1AbECc1...48E976420
0 ETH0.000233087.83131922
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Dogggo

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Dogggo.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/// @custom:security-contact [email protected]
contract Dogggo is ERC20, Ownable {
    uint256 public constant MAX_TRADING_FEE = 30; // 3%
    uint256 public tradingFee;
    address public feeManager;
    bool public isFeeEnabled = true;
    mapping(address => bool) public taxedAddresses;

    event FeeManagerUpdated(address newFeeManager);
    event FeeEnabled(bool isFeeEnabled);
    event TradingFeeUpdated(uint256 tradingFee);
    event TaxedAddressesUpdated(address taxedAddress, bool isTaxed);

    constructor(
        address _feeManager,
        uint256 _tradingFee
    ) ERC20("Dogggo", "DOGGGO") {
        require(_tradingFee <= MAX_TRADING_FEE, "Fee too high");
        require(_feeManager != address(0), "Address invalid");

        tradingFee = _tradingFee;
        feeManager = _feeManager;
        _mint(msg.sender, 10 ** 8 * 10 ** decimals());
    }

    function setTradingFee(uint256 _tradingFee) external onlyOwner {
        require(_tradingFee <= MAX_TRADING_FEE, "Fee too high");

        tradingFee = _tradingFee;
        emit TradingFeeUpdated(_tradingFee);
    }

    function setFeeManager(address _feeManager) external onlyOwner {
        require(_feeManager != address(0), "Address invalid");

        feeManager = _feeManager;
        emit FeeManagerUpdated(_feeManager);
    }

    function toggleFee(bool _isFeeEnabled) external onlyOwner {
        isFeeEnabled = _isFeeEnabled;
        emit FeeEnabled(_isFeeEnabled);
    }

    function manageTaxedAddress(
        address _taxedAddress,
        bool _isTaxed
    ) external onlyOwner {
        require(_taxedAddress != address(0), "Address invalid");

        taxedAddresses[_taxedAddress] = _isTaxed;
        emit TaxedAddressesUpdated(_taxedAddress, _isTaxed);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        uint256 feeAmount = 0;

        if (
            (taxedAddresses[from] || taxedAddresses[to]) &&
            isFeeEnabled &&
            from != owner() &&
            from != feeManager
        ) {
            feeAmount = (amount * tradingFee) / 1000;
            super._transfer(from, feeManager, feeAmount);
        }

        super._transfer(from, to, amount - feeAmount);
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

File 4 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_feeManager","type":"address"},{"internalType":"uint256","name":"_tradingFee","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isFeeEnabled","type":"bool"}],"name":"FeeEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newFeeManager","type":"address"}],"name":"FeeManagerUpdated","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":false,"internalType":"address","name":"taxedAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"isTaxed","type":"bool"}],"name":"TaxedAddressesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tradingFee","type":"uint256"}],"name":"TradingFeeUpdated","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":"MAX_TRADING_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"feeManager","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":[],"name":"isFeeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_taxedAddress","type":"address"},{"internalType":"bool","name":"_isTaxed","type":"bool"}],"name":"manageTaxedAddress","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":"_feeManager","type":"address"}],"name":"setFeeManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tradingFee","type":"uint256"}],"name":"setTradingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taxedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isFeeEnabled","type":"bool"}],"name":"toggleFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600760146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162002bed38038062002bed833981810160405281019062000052919062000540565b6040518060400160405280600681526020017f446f6767676f00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f444f4747474f00000000000000000000000000000000000000000000000000008152508160039081620000cf9190620007f7565b508060049081620000e19190620007f7565b50505062000104620000f86200024d60201b60201c565b6200025560201b60201c565b601e8111156200014b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000142906200093f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b490620009b1565b60405180910390fd5b8060068190555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000245336200021a6200031b60201b60201c565b600a62000228919062000b63565b6305f5e10062000239919062000bb4565b6200032460201b60201c565b505062000cda565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000396576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038d9062000c4f565b60405180910390fd5b620003aa600083836200049160201b60201c565b8060026000828254620003be919062000c71565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000471919062000cbd565b60405180910390a36200048d600083836200049660201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004cd82620004a0565b9050919050565b620004df81620004c0565b8114620004eb57600080fd5b50565b600081519050620004ff81620004d4565b92915050565b6000819050919050565b6200051a8162000505565b81146200052657600080fd5b50565b6000815190506200053a816200050f565b92915050565b600080604083850312156200055a57620005596200049b565b5b60006200056a85828601620004ee565b92505060206200057d8582860162000529565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200060957607f821691505b6020821081036200061f576200061e620005c1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200064a565b6200069586836200064a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006d8620006d2620006cc8462000505565b620006ad565b62000505565b9050919050565b6000819050919050565b620006f483620006b7565b6200070c6200070382620006df565b84845462000657565b825550505050565b600090565b6200072362000714565b62000730818484620006e9565b505050565b5b8181101562000758576200074c60008262000719565b60018101905062000736565b5050565b601f821115620007a757620007718162000625565b6200077c846200063a565b810160208510156200078c578190505b620007a46200079b856200063a565b83018262000735565b50505b505050565b600082821c905092915050565b6000620007cc60001984600802620007ac565b1980831691505092915050565b6000620007e78383620007b9565b9150826002028217905092915050565b620008028262000587565b67ffffffffffffffff8111156200081e576200081d62000592565b5b6200082a8254620005f0565b620008378282856200075c565b600060209050601f8311600181146200086f57600084156200085a578287015190505b620008668582620007d9565b865550620008d6565b601f1984166200087f8662000625565b60005b82811015620008a95784890151825560018201915060208501945060208101905062000882565b86831015620008c95784890151620008c5601f891682620007b9565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b600062000927600c83620008de565b91506200093482620008ef565b602082019050919050565b600060208201905081810360008301526200095a8162000918565b9050919050565b7f4164647265737320696e76616c69640000000000000000000000000000000000600082015250565b600062000999600f83620008de565b9150620009a68262000961565b602082019050919050565b60006020820190508181036000830152620009cc816200098a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a615780860481111562000a395762000a38620009d3565b5b600185161562000a495780820291505b808102905062000a598562000a02565b945062000a19565b94509492505050565b60008262000a7c576001905062000b4f565b8162000a8c576000905062000b4f565b816001811462000aa5576002811462000ab05762000ae6565b600191505062000b4f565b60ff84111562000ac55762000ac4620009d3565b5b8360020a91508482111562000adf5762000ade620009d3565b5b5062000b4f565b5060208310610133831016604e8410600b841016171562000b205782820a90508381111562000b1a5762000b19620009d3565b5b62000b4f565b62000b2f848484600162000a0f565b9250905081840481111562000b495762000b48620009d3565b5b81810290505b9392505050565b600060ff82169050919050565b600062000b708262000505565b915062000b7d8362000b56565b925062000bac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a6a565b905092915050565b600062000bc18262000505565b915062000bce8362000505565b925082820262000bde8162000505565b9150828204841483151762000bf85762000bf7620009d3565b5b5092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c37601f83620008de565b915062000c448262000bff565b602082019050919050565b6000602082019050818103600083015262000c6a8162000c28565b9050919050565b600062000c7e8262000505565b915062000c8b8362000505565b925082820190508082111562000ca65762000ca5620009d3565b5b92915050565b62000cb78162000505565b82525050565b600060208201905062000cd4600083018462000cac565b92915050565b611f038062000cea6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063b0d54bcf1161007c578063b0d54bcf146103a2578063d0fb0203146103be578063d3f7b467146103dc578063dd62ed3e1461040c578063eeb7f65a1461043c578063f2fde38b1461045a5761014d565b8063715018a6146102e0578063868e4c61146102ea5780638da5cb5b1461030657806395d89b4114610324578063a457c2d714610342578063a9059cbb146103725761014d565b8063313ce56711610115578063313ce5671461020c578063395093511461022a57806340885eb31461025a578063472d35b91461027657806356f433521461029257806370a08231146102b05761014d565b806306fdde0314610152578063095ea7b3146101705780630e66dc69146101a057806318160ddd146101be57806323b872dd146101dc575b600080fd5b61015a610476565b604051610167919061141b565b60405180910390f35b61018a600480360381019061018591906114d6565b610508565b6040516101979190611531565b60405180910390f35b6101a861052b565b6040516101b59190611531565b60405180910390f35b6101c661053e565b6040516101d3919061155b565b60405180910390f35b6101f660048036038101906101f19190611576565b610548565b6040516102039190611531565b60405180910390f35b610214610577565b60405161022191906115e5565b60405180910390f35b610244600480360381019061023f91906114d6565b610580565b6040516102519190611531565b60405180910390f35b610274600480360381019061026f919061162c565b6105b7565b005b610290600480360381019061028b919061166c565b6106c2565b005b61029a6107b4565b6040516102a7919061155b565b60405180910390f35b6102ca60048036038101906102c5919061166c565b6107ba565b6040516102d7919061155b565b60405180910390f35b6102e8610802565b005b61030460048036038101906102ff9190611699565b610816565b005b61030e610872565b60405161031b91906116d5565b60405180910390f35b61032c61089c565b604051610339919061141b565b60405180910390f35b61035c600480360381019061035791906114d6565b61092e565b6040516103699190611531565b60405180910390f35b61038c600480360381019061038791906114d6565b6109a5565b6040516103999190611531565b60405180910390f35b6103bc60048036038101906103b791906116f0565b6109c8565b005b6103c6610a55565b6040516103d391906116d5565b60405180910390f35b6103f660048036038101906103f1919061166c565b610a7b565b6040516104039190611531565b60405180910390f35b6104266004803603810190610421919061171d565b610a9b565b604051610433919061155b565b60405180910390f35b610444610b22565b604051610451919061155b565b60405180910390f35b610474600480360381019061046f919061166c565b610b27565b005b6060600380546104859061178c565b80601f01602080910402602001604051908101604052809291908181526020018280546104b19061178c565b80156104fe5780601f106104d3576101008083540402835291602001916104fe565b820191906000526020600020905b8154815290600101906020018083116104e157829003601f168201915b5050505050905090565b600080610513610baa565b9050610520818585610bb2565b600191505092915050565b600760149054906101000a900460ff1681565b6000600254905090565b600080610553610baa565b9050610560858285610d7b565b61056b858585610e07565b60019150509392505050565b60006012905090565b60008061058b610baa565b90506105ac81858561059d8589610a9b565b6105a791906117ec565b610bb2565b600191505092915050565b6105bf610fc7565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361062e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106259061186c565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f2da962bdbdf8b4bc5a9235b880e60de8be97e6540b57d33089be1998cfc056dd82826040516106b692919061188c565b60405180910390a15050565b6106ca610fc7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610739576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107309061186c565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fe45f5e140399b0a7e12971ab020724b828fbed8ac408c420884dc7d1bbe506b4816040516107a991906116d5565b60405180910390a150565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61080a610fc7565b6108146000611045565b565b61081e610fc7565b80600760146101000a81548160ff0219169083151502179055507fe97fa32ceb811a18d1b14115b17ae0034db328b2e2ca987d9922cbf47b03fad6816040516108679190611531565b60405180910390a150565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108ab9061178c565b80601f01602080910402602001604051908101604052809291908181526020018280546108d79061178c565b80156109245780601f106108f957610100808354040283529160200191610924565b820191906000526020600020905b81548152906001019060200180831161090757829003601f168201915b5050505050905090565b600080610939610baa565b905060006109478286610a9b565b90508381101561098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098390611927565b60405180910390fd5b6109998286868403610bb2565b60019250505092915050565b6000806109b0610baa565b90506109bd818585610e07565b600191505092915050565b6109d0610fc7565b601e811115610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b90611993565b60405180910390fd5b806006819055507fa3dfe13986da4bcfdc32f544ebe130cb8ec20a2afc45e7c3994975076a08e57881604051610a4a919061155b565b60405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601e81565b610b2f610fc7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590611a25565b60405180910390fd5b610ba781611045565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890611ab7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8790611b49565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d6e919061155b565b60405180910390a3505050565b6000610d878484610a9b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e015781811015610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90611bb5565b60405180910390fd5b610e008484848403610bb2565b5b50505050565b6000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610eaa5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015610ec25750600760149054906101000a900460ff165b8015610f015750610ed1610872565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610f5b5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15610fab576103e860065483610f719190611bd5565b610f7b9190611c46565b9050610faa84600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361110b565b5b610fc184848385610fbc9190611c77565b61110b565b50505050565b610fcf610baa565b73ffffffffffffffffffffffffffffffffffffffff16610fed610872565b73ffffffffffffffffffffffffffffffffffffffff1614611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90611cf7565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190611d89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090611e1b565b60405180910390fd5b6111f4838383611381565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190611ead565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611368919061155b565b60405180910390a361137b848484611386565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113c55780820151818401526020810190506113aa565b60008484015250505050565b6000601f19601f8301169050919050565b60006113ed8261138b565b6113f78185611396565b93506114078185602086016113a7565b611410816113d1565b840191505092915050565b6000602082019050818103600083015261143581846113e2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061146d82611442565b9050919050565b61147d81611462565b811461148857600080fd5b50565b60008135905061149a81611474565b92915050565b6000819050919050565b6114b3816114a0565b81146114be57600080fd5b50565b6000813590506114d0816114aa565b92915050565b600080604083850312156114ed576114ec61143d565b5b60006114fb8582860161148b565b925050602061150c858286016114c1565b9150509250929050565b60008115159050919050565b61152b81611516565b82525050565b60006020820190506115466000830184611522565b92915050565b611555816114a0565b82525050565b6000602082019050611570600083018461154c565b92915050565b60008060006060848603121561158f5761158e61143d565b5b600061159d8682870161148b565b93505060206115ae8682870161148b565b92505060406115bf868287016114c1565b9150509250925092565b600060ff82169050919050565b6115df816115c9565b82525050565b60006020820190506115fa60008301846115d6565b92915050565b61160981611516565b811461161457600080fd5b50565b60008135905061162681611600565b92915050565b600080604083850312156116435761164261143d565b5b60006116518582860161148b565b925050602061166285828601611617565b9150509250929050565b6000602082840312156116825761168161143d565b5b60006116908482850161148b565b91505092915050565b6000602082840312156116af576116ae61143d565b5b60006116bd84828501611617565b91505092915050565b6116cf81611462565b82525050565b60006020820190506116ea60008301846116c6565b92915050565b6000602082840312156117065761170561143d565b5b6000611714848285016114c1565b91505092915050565b600080604083850312156117345761173361143d565b5b60006117428582860161148b565b92505060206117538582860161148b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117a457607f821691505b6020821081036117b7576117b661175d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117f7826114a0565b9150611802836114a0565b925082820190508082111561181a576118196117bd565b5b92915050565b7f4164647265737320696e76616c69640000000000000000000000000000000000600082015250565b6000611856600f83611396565b915061186182611820565b602082019050919050565b6000602082019050818103600083015261188581611849565b9050919050565b60006040820190506118a160008301856116c6565b6118ae6020830184611522565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611911602583611396565b915061191c826118b5565b604082019050919050565b6000602082019050818103600083015261194081611904565b9050919050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b600061197d600c83611396565b915061198882611947565b602082019050919050565b600060208201905081810360008301526119ac81611970565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a0f602683611396565b9150611a1a826119b3565b604082019050919050565b60006020820190508181036000830152611a3e81611a02565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611aa1602483611396565b9150611aac82611a45565b604082019050919050565b60006020820190508181036000830152611ad081611a94565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b33602283611396565b9150611b3e82611ad7565b604082019050919050565b60006020820190508181036000830152611b6281611b26565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b9f601d83611396565b9150611baa82611b69565b602082019050919050565b60006020820190508181036000830152611bce81611b92565b9050919050565b6000611be0826114a0565b9150611beb836114a0565b9250828202611bf9816114a0565b91508282048414831517611c1057611c0f6117bd565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c51826114a0565b9150611c5c836114a0565b925082611c6c57611c6b611c17565b5b828204905092915050565b6000611c82826114a0565b9150611c8d836114a0565b9250828203905081811115611ca557611ca46117bd565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ce1602083611396565b9150611cec82611cab565b602082019050919050565b60006020820190508181036000830152611d1081611cd4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d73602583611396565b9150611d7e82611d17565b604082019050919050565b60006020820190508181036000830152611da281611d66565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e05602383611396565b9150611e1082611da9565b604082019050919050565b60006020820190508181036000830152611e3481611df8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e97602683611396565b9150611ea282611e3b565b604082019050919050565b60006020820190508181036000830152611ec681611e8a565b905091905056fea26469706673582212201355561482b18fe2621367ecdc097971590b241bbab650acb8218c2510821a1f64736f6c63430008130033000000000000000000000000ec5a84149ca0bbbeb4ae35a5c3abaac790bb91c6000000000000000000000000000000000000000000000000000000000000001e

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063b0d54bcf1161007c578063b0d54bcf146103a2578063d0fb0203146103be578063d3f7b467146103dc578063dd62ed3e1461040c578063eeb7f65a1461043c578063f2fde38b1461045a5761014d565b8063715018a6146102e0578063868e4c61146102ea5780638da5cb5b1461030657806395d89b4114610324578063a457c2d714610342578063a9059cbb146103725761014d565b8063313ce56711610115578063313ce5671461020c578063395093511461022a57806340885eb31461025a578063472d35b91461027657806356f433521461029257806370a08231146102b05761014d565b806306fdde0314610152578063095ea7b3146101705780630e66dc69146101a057806318160ddd146101be57806323b872dd146101dc575b600080fd5b61015a610476565b604051610167919061141b565b60405180910390f35b61018a600480360381019061018591906114d6565b610508565b6040516101979190611531565b60405180910390f35b6101a861052b565b6040516101b59190611531565b60405180910390f35b6101c661053e565b6040516101d3919061155b565b60405180910390f35b6101f660048036038101906101f19190611576565b610548565b6040516102039190611531565b60405180910390f35b610214610577565b60405161022191906115e5565b60405180910390f35b610244600480360381019061023f91906114d6565b610580565b6040516102519190611531565b60405180910390f35b610274600480360381019061026f919061162c565b6105b7565b005b610290600480360381019061028b919061166c565b6106c2565b005b61029a6107b4565b6040516102a7919061155b565b60405180910390f35b6102ca60048036038101906102c5919061166c565b6107ba565b6040516102d7919061155b565b60405180910390f35b6102e8610802565b005b61030460048036038101906102ff9190611699565b610816565b005b61030e610872565b60405161031b91906116d5565b60405180910390f35b61032c61089c565b604051610339919061141b565b60405180910390f35b61035c600480360381019061035791906114d6565b61092e565b6040516103699190611531565b60405180910390f35b61038c600480360381019061038791906114d6565b6109a5565b6040516103999190611531565b60405180910390f35b6103bc60048036038101906103b791906116f0565b6109c8565b005b6103c6610a55565b6040516103d391906116d5565b60405180910390f35b6103f660048036038101906103f1919061166c565b610a7b565b6040516104039190611531565b60405180910390f35b6104266004803603810190610421919061171d565b610a9b565b604051610433919061155b565b60405180910390f35b610444610b22565b604051610451919061155b565b60405180910390f35b610474600480360381019061046f919061166c565b610b27565b005b6060600380546104859061178c565b80601f01602080910402602001604051908101604052809291908181526020018280546104b19061178c565b80156104fe5780601f106104d3576101008083540402835291602001916104fe565b820191906000526020600020905b8154815290600101906020018083116104e157829003601f168201915b5050505050905090565b600080610513610baa565b9050610520818585610bb2565b600191505092915050565b600760149054906101000a900460ff1681565b6000600254905090565b600080610553610baa565b9050610560858285610d7b565b61056b858585610e07565b60019150509392505050565b60006012905090565b60008061058b610baa565b90506105ac81858561059d8589610a9b565b6105a791906117ec565b610bb2565b600191505092915050565b6105bf610fc7565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361062e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106259061186c565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f2da962bdbdf8b4bc5a9235b880e60de8be97e6540b57d33089be1998cfc056dd82826040516106b692919061188c565b60405180910390a15050565b6106ca610fc7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610739576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107309061186c565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fe45f5e140399b0a7e12971ab020724b828fbed8ac408c420884dc7d1bbe506b4816040516107a991906116d5565b60405180910390a150565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61080a610fc7565b6108146000611045565b565b61081e610fc7565b80600760146101000a81548160ff0219169083151502179055507fe97fa32ceb811a18d1b14115b17ae0034db328b2e2ca987d9922cbf47b03fad6816040516108679190611531565b60405180910390a150565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108ab9061178c565b80601f01602080910402602001604051908101604052809291908181526020018280546108d79061178c565b80156109245780601f106108f957610100808354040283529160200191610924565b820191906000526020600020905b81548152906001019060200180831161090757829003601f168201915b5050505050905090565b600080610939610baa565b905060006109478286610a9b565b90508381101561098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098390611927565b60405180910390fd5b6109998286868403610bb2565b60019250505092915050565b6000806109b0610baa565b90506109bd818585610e07565b600191505092915050565b6109d0610fc7565b601e811115610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b90611993565b60405180910390fd5b806006819055507fa3dfe13986da4bcfdc32f544ebe130cb8ec20a2afc45e7c3994975076a08e57881604051610a4a919061155b565b60405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601e81565b610b2f610fc7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590611a25565b60405180910390fd5b610ba781611045565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890611ab7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8790611b49565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d6e919061155b565b60405180910390a3505050565b6000610d878484610a9b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e015781811015610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90611bb5565b60405180910390fd5b610e008484848403610bb2565b5b50505050565b6000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610eaa5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015610ec25750600760149054906101000a900460ff165b8015610f015750610ed1610872565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610f5b5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15610fab576103e860065483610f719190611bd5565b610f7b9190611c46565b9050610faa84600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361110b565b5b610fc184848385610fbc9190611c77565b61110b565b50505050565b610fcf610baa565b73ffffffffffffffffffffffffffffffffffffffff16610fed610872565b73ffffffffffffffffffffffffffffffffffffffff1614611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90611cf7565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190611d89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090611e1b565b60405180910390fd5b6111f4838383611381565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190611ead565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611368919061155b565b60405180910390a361137b848484611386565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113c55780820151818401526020810190506113aa565b60008484015250505050565b6000601f19601f8301169050919050565b60006113ed8261138b565b6113f78185611396565b93506114078185602086016113a7565b611410816113d1565b840191505092915050565b6000602082019050818103600083015261143581846113e2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061146d82611442565b9050919050565b61147d81611462565b811461148857600080fd5b50565b60008135905061149a81611474565b92915050565b6000819050919050565b6114b3816114a0565b81146114be57600080fd5b50565b6000813590506114d0816114aa565b92915050565b600080604083850312156114ed576114ec61143d565b5b60006114fb8582860161148b565b925050602061150c858286016114c1565b9150509250929050565b60008115159050919050565b61152b81611516565b82525050565b60006020820190506115466000830184611522565b92915050565b611555816114a0565b82525050565b6000602082019050611570600083018461154c565b92915050565b60008060006060848603121561158f5761158e61143d565b5b600061159d8682870161148b565b93505060206115ae8682870161148b565b92505060406115bf868287016114c1565b9150509250925092565b600060ff82169050919050565b6115df816115c9565b82525050565b60006020820190506115fa60008301846115d6565b92915050565b61160981611516565b811461161457600080fd5b50565b60008135905061162681611600565b92915050565b600080604083850312156116435761164261143d565b5b60006116518582860161148b565b925050602061166285828601611617565b9150509250929050565b6000602082840312156116825761168161143d565b5b60006116908482850161148b565b91505092915050565b6000602082840312156116af576116ae61143d565b5b60006116bd84828501611617565b91505092915050565b6116cf81611462565b82525050565b60006020820190506116ea60008301846116c6565b92915050565b6000602082840312156117065761170561143d565b5b6000611714848285016114c1565b91505092915050565b600080604083850312156117345761173361143d565b5b60006117428582860161148b565b92505060206117538582860161148b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117a457607f821691505b6020821081036117b7576117b661175d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117f7826114a0565b9150611802836114a0565b925082820190508082111561181a576118196117bd565b5b92915050565b7f4164647265737320696e76616c69640000000000000000000000000000000000600082015250565b6000611856600f83611396565b915061186182611820565b602082019050919050565b6000602082019050818103600083015261188581611849565b9050919050565b60006040820190506118a160008301856116c6565b6118ae6020830184611522565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611911602583611396565b915061191c826118b5565b604082019050919050565b6000602082019050818103600083015261194081611904565b9050919050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b600061197d600c83611396565b915061198882611947565b602082019050919050565b600060208201905081810360008301526119ac81611970565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a0f602683611396565b9150611a1a826119b3565b604082019050919050565b60006020820190508181036000830152611a3e81611a02565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611aa1602483611396565b9150611aac82611a45565b604082019050919050565b60006020820190508181036000830152611ad081611a94565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b33602283611396565b9150611b3e82611ad7565b604082019050919050565b60006020820190508181036000830152611b6281611b26565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b9f601d83611396565b9150611baa82611b69565b602082019050919050565b60006020820190508181036000830152611bce81611b92565b9050919050565b6000611be0826114a0565b9150611beb836114a0565b9250828202611bf9816114a0565b91508282048414831517611c1057611c0f6117bd565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c51826114a0565b9150611c5c836114a0565b925082611c6c57611c6b611c17565b5b828204905092915050565b6000611c82826114a0565b9150611c8d836114a0565b9250828203905081811115611ca557611ca46117bd565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ce1602083611396565b9150611cec82611cab565b602082019050919050565b60006020820190508181036000830152611d1081611cd4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d73602583611396565b9150611d7e82611d17565b604082019050919050565b60006020820190508181036000830152611da281611d66565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e05602383611396565b9150611e1082611da9565b604082019050919050565b60006020820190508181036000830152611e3481611df8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e97602683611396565b9150611ea282611e3b565b604082019050919050565b60006020820190508181036000830152611ec681611e8a565b905091905056fea26469706673582212201355561482b18fe2621367ecdc097971590b241bbab650acb8218c2510821a1f64736f6c63430008130033

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

000000000000000000000000ec5a84149ca0bbbeb4ae35a5c3abaac790bb91c6000000000000000000000000000000000000000000000000000000000000001e

-----Decoded View---------------
Arg [0] : _feeManager (address): 0xeC5A84149Ca0BBbEb4AE35A5c3aBaaC790Bb91C6
Arg [1] : _tradingFee (uint256): 30

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000ec5a84149ca0bbbeb4ae35a5c3abaac790bb91c6
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001e


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.