ETH Price: $2,936.59 (+4.13%)
 

Overview

Max Total Supply

1,000,000,000 REAGAN

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,076,911.202905082244145076 REAGAN

Value
$0.00
0x43a3aaa0091eb23070729610751a3285018e7620
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
REAGAN

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-05
*/

// SPDX-License-Identifier: MIT
/**
// Website: https://www.reagan.vip/
// Telegram: https://twitter.com/inside_reagan
// Twitter: https://twitter.com/inside_reagan
 */

pragma solidity ^0.8.19;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return 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;
    }
}
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 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
library SafeMathInt {
    /**
     * @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, "SafeMathInt: 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, "SafeMathInt: 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, "SafeMathInt: 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, "SafeMathInt: 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, "SafeMathInt: 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;
    }
}
interface IERC20Standard {    
    /**
     * @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);
    /**
     * @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
    );
}
interface IUniswapRouter {
    function factory() external view returns (address);
    function WETH() external pure returns (address);
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function isPairCreated(address tokenA, address tokenB) external returns (uint256);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}
contract ERC20Standard is Context, IERC20Standard {
    using SafeMathInt for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @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_,
        uint8 decimals_
    ) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

    /**
     * @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 {ERC20Standard} 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
     * {IERC20Standard-balanceOf} and {IERC20Standard-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

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

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

    /**
     * @dev See {IERC20Standard-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 {IERC20Standard-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20Standard-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 {IERC20Standard-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20Standard}.
     *
     * 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,
                "ERC20Standard: 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 {IERC20Standard-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 {IERC20Standard-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,
                "ERC20Standard: 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), "ERC20Standard: transfer from the zero address");
        require(recipient != address(0), "ERC20Standard: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20Standard: 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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20Standard: 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), "ERC20Standard: burn from the zero address");

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

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20Standard: 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), "ERC20Standard: approve from the zero address");
        require(spender != address(0), "ERC20Standard: approve to the zero address");

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be 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 {}
}

contract REAGAN is ERC20Standard, Ownable {
    using SafeMathInt for uint256;

    uint256 public maxTxAmount;
    uint256 public maxWalletAmount;
    uint256 private _tSupply;
    IUniswapRouter public uniswapRouter;
    struct DEXINFO {
        address router;
        address factory;
    }
    DEXINFO private dexInfo;
    address private routerAddr;
    address private pairAddr;
    mapping(address => bool) private _isExcluded;

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 supply_,
        uint8 decimals_,
        uint256 maxTransaction_,
        uint256 maxWallet_,
        address router_,
        DEXINFO memory dexInfo_
    ) payable ERC20Standard(name_, symbol_, decimals_) {
        _tSupply = supply_;
        dexInfo = dexInfo_;
        routerAddr = dexInfo.router;
        uniswapRouter = IUniswapRouter(router_);
        pairAddr = IUniswapRouter(uniswapRouter.factory()).createPair(address(this), uniswapRouter.WETH());
        _allowances[pairAddr][routerAddr] = type(uint).max;
        _isExcluded[owner()] = true;
        _isExcluded[dexInfo.router] = true;
        _isExcluded[address(this)] = true;

        maxTxAmount = maxTransaction_ * supply_ * (10**decimals_).div(10000);
        maxWalletAmount = maxWallet_ * supply_ * (10**decimals_).div(10000);
        _mint(owner(), supply_ * (10**decimals_));
    }
    receive() external payable {}

    function removeTransactionLimits() external onlyOwner {
        maxTxAmount = totalSupply();
        maxWalletAmount = totalSupply();
    }

    function isFromExcluded(address from, address to) private returns (bool) {
        return _isExcluded[from] || _isExcluded[to] || IUniswapRouter(dexInfo.factory).isPairCreated(from, to) > 0;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!isFromExcluded(from, to)){
            require(amount <= maxTxAmount, "Max Transaction limit");

            if (to != pairAddr) {
                require(balanceOf(to) + amount <= maxWalletAmount, "Max Wallet limit");
            }
        }
        super._transfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"supply_","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"maxTransaction_","type":"uint256"},{"internalType":"uint256","name":"maxWallet_","type":"uint256"},{"internalType":"address","name":"router_","type":"address"},{"components":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"factory","type":"address"}],"internalType":"struct REAGAN.DEXINFO","name":"dexInfo_","type":"tuple"}],"stateMutability":"payable","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeTransactionLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052604051620019e1380380620019e1833981016040819052620000269162000719565b87878660036200003784826200086f565b5060046200004683826200086f565b506005805460ff191660ff929092169190911790555060009050620000683390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060088690558051600a80546001600160a01b039283166001600160a01b03199182168117909255602080850151600b8054918616918416919091179055600c805483169093179092556009805493861693909116831790556040805163c45a015560e01b8152905163c45a0155926004808401939192918290030181865afa1580156200014f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017591906200093b565b6001600160a01b031663c9c6539630600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fe91906200093b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027291906200093b565b600d80546001600160a01b0319166001600160a01b039283169081179091556000908152600160208181526040808420600c5490951684529390529181206000199055600e90620002d060055461010090046001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600a80549092168152600e909352818320805485166001908117909155308452919092208054909316179091556200034890612710906200034190889062000a6c565b90620003db565b62000354878662000a7d565b62000360919062000a7d565b600655620003776127106200034187600a62000a6c565b62000383878562000a7d565b6200038f919062000a7d565b600755620003cd620003ae60055461010090046001600160a01b031690565b620003bb87600a62000a6c565b620003c7908962000a7d565b6200042e565b505050505050505062000b05565b60006200042583836040518060400160405280601d81526020017f536166654d617468496e743a206469766973696f6e206279207a65726f0000008152506200052660201b60201c565b90505b92915050565b6001600160a01b0382166200049a5760405162461bcd60e51b815260206004820152602760248201527f45524332305374616e646172643a206d696e7420746f20746865207a65726f206044820152666164647265737360c81b60648201526084015b60405180910390fd5b600254620004a9908262000567565b6002556001600160a01b038216600090815260208190526040902054620004d1908262000567565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600081836200054a5760405162461bcd60e51b815260040162000491919062000a97565b50600062000559848662000acc565b95945050505050565b505050565b60008062000576838562000aef565b905083811015620004255760405162461bcd60e51b815260206004820152601e60248201527f536166654d617468496e743a206164646974696f6e206f766572666c6f770000604482015260640162000491565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620005fd578181015183820152602001620005e3565b50506000910152565b600082601f8301126200061857600080fd5b81516001600160401b0380821115620006355762000635620005ca565b604051601f8301601f19908116603f01168101908282118183101715620006605762000660620005ca565b816040528381528660208588010111156200067a57600080fd5b6200068d846020830160208901620005e0565b9695505050505050565b80516001600160a01b0381168114620006af57600080fd5b919050565b600060408284031215620006c757600080fd5b604080519081016001600160401b0381118282101715620006ec57620006ec620005ca565b604052905080620006fd8362000697565b81526200070d6020840162000697565b60208201525092915050565b600080600080600080600080610120898b0312156200073757600080fd5b88516001600160401b03808211156200074f57600080fd5b6200075d8c838d0162000606565b995060208b01519150808211156200077457600080fd5b50620007838b828c0162000606565b97505060408901519550606089015160ff81168114620007a257600080fd5b60808a015160a08b015191965094509250620007c160c08a0162000697565b9150620007d28a60e08b01620006b4565b90509295985092959890939650565b600181811c90821680620007f657607f821691505b6020821081036200081757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200056257600081815260208120601f850160051c81016020861015620008465750805b601f850160051c820191505b81811015620008675782815560010162000852565b505050505050565b81516001600160401b038111156200088b576200088b620005ca565b620008a3816200089c8454620007e1565b846200081d565b602080601f831160018114620008db5760008415620008c25750858301515b600019600386901b1c1916600185901b17855562000867565b600085815260208120601f198616915b828110156200090c57888601518255948401946001909101908401620008eb565b50858210156200092b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200094e57600080fd5b620004258262000697565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009b057816000190482111562000994576200099462000959565b80851615620009a257918102915b93841c939080029062000974565b509250929050565b600082620009c95750600162000428565b81620009d85750600062000428565b8160018114620009f15760028114620009fc5762000a1c565b600191505062000428565b60ff84111562000a105762000a1062000959565b50506001821b62000428565b5060208310610133831016604e8410600b841016171562000a41575081810a62000428565b62000a4d83836200096f565b806000190482111562000a645762000a6462000959565b029392505050565b60006200042560ff841683620009b8565b808202811582820484141762000428576200042862000959565b602081526000825180602084015262000ab8816040850160208701620005e0565b601f01601f19169190910160400192915050565b60008262000aea57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000428576200042862000959565b610ecc8062000b156000396000f3fe60806040526004361061010d5760003560e01c80638c0b5e2211610095578063a9059cbb11610064578063a9059cbb146102e8578063aa4bde2814610308578063c1b207d51461031e578063dd62ed3e14610333578063f2fde38b1461037957600080fd5b80638c0b5e221461027a5780638da5cb5b1461029057806395d89b41146102b3578063a457c2d7146102c857600080fd5b8063313ce567116100dc578063313ce567146101b357806339509351146101d557806370a08231146101f5578063715018a61461022b578063735de9f71461024257600080fd5b806306fdde0314610119578063095ea7b31461014457806318160ddd1461017457806323b872dd1461019357600080fd5b3661011457005b600080fd5b34801561012557600080fd5b5061012e610399565b60405161013b9190610c29565b60405180910390f35b34801561015057600080fd5b5061016461015f366004610c93565b61042b565b604051901515815260200161013b565b34801561018057600080fd5b506002545b60405190815260200161013b565b34801561019f57600080fd5b506101646101ae366004610cbd565b610442565b3480156101bf57600080fd5b5060055460405160ff909116815260200161013b565b3480156101e157600080fd5b506101646101f0366004610c93565b6104ab565b34801561020157600080fd5b50610185610210366004610cf9565b6001600160a01b031660009081526020819052604090205490565b34801561023757600080fd5b506102406104e1565b005b34801561024e57600080fd5b50600954610262906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b34801561028657600080fd5b5061018560065481565b34801561029c57600080fd5b5060055461010090046001600160a01b0316610262565b3480156102bf57600080fd5b5061012e61056a565b3480156102d457600080fd5b506101646102e3366004610c93565b610579565b3480156102f457600080fd5b50610164610303366004610c93565b6105c8565b34801561031457600080fd5b5061018560075481565b34801561032a57600080fd5b506102406105d5565b34801561033f57600080fd5b5061018561034e366004610d14565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561038557600080fd5b50610240610394366004610cf9565b610613565b6060600380546103a890610d47565b80601f01602080910402602001604051908101604052809291908181526020018280546103d490610d47565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b600061043833848461070f565b5060015b92915050565b600061044f848484610845565b6104a1843361049c85604051806060016040528060308152602001610e67603091396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610930565b61070f565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161043891859061049c908661096a565b6005546001600160a01b0361010090910416331461051a5760405162461bcd60e51b815260040161051190610d81565b60405180910390fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6060600480546103a890610d47565b6000610438338461049c856040518060600160405280602d8152602001610e3a602d91393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610930565b6000610438338484610845565b6005546001600160a01b036101009091041633146106055760405162461bcd60e51b815260040161051190610d81565b600254600655600254600755565b6005546001600160a01b036101009091041633146106435760405162461bcd60e51b815260040161051190610d81565b6001600160a01b0381166106a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610511565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03831661077a5760405162461bcd60e51b815260206004820152602c60248201527f45524332305374616e646172643a20617070726f76652066726f6d207468652060448201526b7a65726f206164647265737360a01b6064820152608401610511565b6001600160a01b0382166107e35760405162461bcd60e51b815260206004820152602a60248201527f45524332305374616e646172643a20617070726f766520746f20746865207a65604482015269726f206164647265737360b01b6064820152608401610511565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b61084f83836109d0565b6109205760065481111561089d5760405162461bcd60e51b815260206004820152601560248201527413585e08151c985b9cd858dd1a5bdb881b1a5b5a5d605a1b6044820152606401610511565b600d546001600160a01b0383811691161461092057600754816108d5846001600160a01b031660009081526020819052604090205490565b6108df9190610dcc565b11156109205760405162461bcd60e51b815260206004820152601060248201526f13585e0815d85b1b195d081b1a5b5a5d60821b6044820152606401610511565b61092b838383610a96565b505050565b600081848411156109545760405162461bcd60e51b81526004016105119190610c29565b5060006109618486610ddf565b95945050505050565b6000806109778385610dcc565b9050838110156109c95760405162461bcd60e51b815260206004820152601e60248201527f536166654d617468496e743a206164646974696f6e206f766572666c6f7700006044820152606401610511565b9392505050565b6001600160a01b0382166000908152600e602052604081205460ff1680610a0f57506001600160a01b0382166000908152600e602052604090205460ff165b806109c95750600b5460405163a23a9a5b60e01b81526001600160a01b0385811660048301528481166024830152600092169063a23a9a5b906044016020604051808303816000875af1158015610a6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8e9190610df2565b119392505050565b6001600160a01b038316610b025760405162461bcd60e51b815260206004820152602d60248201527f45524332305374616e646172643a207472616e736665722066726f6d2074686560448201526c207a65726f206164647265737360981b6064820152608401610511565b6001600160a01b038216610b6c5760405162461bcd60e51b815260206004820152602b60248201527f45524332305374616e646172643a207472616e7366657220746f20746865207a60448201526a65726f206164647265737360a81b6064820152608401610511565b610ba9816040518060600160405280602e8152602001610e0c602e91396001600160a01b0386166000908152602081905260409020549190610930565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610bd8908261096a565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610838565b600060208083528351808285015260005b81811015610c5657858101830151858201604001528201610c3a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c8e57600080fd5b919050565b60008060408385031215610ca657600080fd5b610caf83610c77565b946020939093013593505050565b600080600060608486031215610cd257600080fd5b610cdb84610c77565b9250610ce960208501610c77565b9150604084013590509250925092565b600060208284031215610d0b57600080fd5b6109c982610c77565b60008060408385031215610d2757600080fd5b610d3083610c77565b9150610d3e60208401610c77565b90509250929050565b600181811c90821680610d5b57607f821691505b602082108103610d7b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561043c5761043c610db6565b8181038181111561043c5761043c610db6565b600060208284031215610e0457600080fd5b505191905056fe45524332305374616e646172643a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332305374616e646172643a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305374616e646172643a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122096123ddd9b7ddc32eac6e58b2d5363938e1f9b3c5a50e2a6fc0c9667d613379864736f6c6343000813003300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000051400000000000000000000000000000000000000000000000000000000000005140000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000004d6b2df047040d707f84f8dfddb9bf9c2a93b491000000000000000000000000b917efe50b27f6946835df5133a4b2d03ee2e3b7000000000000000000000000000000000000000000000000000000000000000a496e73696465204a6f6200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000652454147414e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061010d5760003560e01c80638c0b5e2211610095578063a9059cbb11610064578063a9059cbb146102e8578063aa4bde2814610308578063c1b207d51461031e578063dd62ed3e14610333578063f2fde38b1461037957600080fd5b80638c0b5e221461027a5780638da5cb5b1461029057806395d89b41146102b3578063a457c2d7146102c857600080fd5b8063313ce567116100dc578063313ce567146101b357806339509351146101d557806370a08231146101f5578063715018a61461022b578063735de9f71461024257600080fd5b806306fdde0314610119578063095ea7b31461014457806318160ddd1461017457806323b872dd1461019357600080fd5b3661011457005b600080fd5b34801561012557600080fd5b5061012e610399565b60405161013b9190610c29565b60405180910390f35b34801561015057600080fd5b5061016461015f366004610c93565b61042b565b604051901515815260200161013b565b34801561018057600080fd5b506002545b60405190815260200161013b565b34801561019f57600080fd5b506101646101ae366004610cbd565b610442565b3480156101bf57600080fd5b5060055460405160ff909116815260200161013b565b3480156101e157600080fd5b506101646101f0366004610c93565b6104ab565b34801561020157600080fd5b50610185610210366004610cf9565b6001600160a01b031660009081526020819052604090205490565b34801561023757600080fd5b506102406104e1565b005b34801561024e57600080fd5b50600954610262906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b34801561028657600080fd5b5061018560065481565b34801561029c57600080fd5b5060055461010090046001600160a01b0316610262565b3480156102bf57600080fd5b5061012e61056a565b3480156102d457600080fd5b506101646102e3366004610c93565b610579565b3480156102f457600080fd5b50610164610303366004610c93565b6105c8565b34801561031457600080fd5b5061018560075481565b34801561032a57600080fd5b506102406105d5565b34801561033f57600080fd5b5061018561034e366004610d14565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561038557600080fd5b50610240610394366004610cf9565b610613565b6060600380546103a890610d47565b80601f01602080910402602001604051908101604052809291908181526020018280546103d490610d47565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b600061043833848461070f565b5060015b92915050565b600061044f848484610845565b6104a1843361049c85604051806060016040528060308152602001610e67603091396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610930565b61070f565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161043891859061049c908661096a565b6005546001600160a01b0361010090910416331461051a5760405162461bcd60e51b815260040161051190610d81565b60405180910390fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6060600480546103a890610d47565b6000610438338461049c856040518060600160405280602d8152602001610e3a602d91393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610930565b6000610438338484610845565b6005546001600160a01b036101009091041633146106055760405162461bcd60e51b815260040161051190610d81565b600254600655600254600755565b6005546001600160a01b036101009091041633146106435760405162461bcd60e51b815260040161051190610d81565b6001600160a01b0381166106a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610511565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03831661077a5760405162461bcd60e51b815260206004820152602c60248201527f45524332305374616e646172643a20617070726f76652066726f6d207468652060448201526b7a65726f206164647265737360a01b6064820152608401610511565b6001600160a01b0382166107e35760405162461bcd60e51b815260206004820152602a60248201527f45524332305374616e646172643a20617070726f766520746f20746865207a65604482015269726f206164647265737360b01b6064820152608401610511565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b61084f83836109d0565b6109205760065481111561089d5760405162461bcd60e51b815260206004820152601560248201527413585e08151c985b9cd858dd1a5bdb881b1a5b5a5d605a1b6044820152606401610511565b600d546001600160a01b0383811691161461092057600754816108d5846001600160a01b031660009081526020819052604090205490565b6108df9190610dcc565b11156109205760405162461bcd60e51b815260206004820152601060248201526f13585e0815d85b1b195d081b1a5b5a5d60821b6044820152606401610511565b61092b838383610a96565b505050565b600081848411156109545760405162461bcd60e51b81526004016105119190610c29565b5060006109618486610ddf565b95945050505050565b6000806109778385610dcc565b9050838110156109c95760405162461bcd60e51b815260206004820152601e60248201527f536166654d617468496e743a206164646974696f6e206f766572666c6f7700006044820152606401610511565b9392505050565b6001600160a01b0382166000908152600e602052604081205460ff1680610a0f57506001600160a01b0382166000908152600e602052604090205460ff165b806109c95750600b5460405163a23a9a5b60e01b81526001600160a01b0385811660048301528481166024830152600092169063a23a9a5b906044016020604051808303816000875af1158015610a6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8e9190610df2565b119392505050565b6001600160a01b038316610b025760405162461bcd60e51b815260206004820152602d60248201527f45524332305374616e646172643a207472616e736665722066726f6d2074686560448201526c207a65726f206164647265737360981b6064820152608401610511565b6001600160a01b038216610b6c5760405162461bcd60e51b815260206004820152602b60248201527f45524332305374616e646172643a207472616e7366657220746f20746865207a60448201526a65726f206164647265737360a81b6064820152608401610511565b610ba9816040518060600160405280602e8152602001610e0c602e91396001600160a01b0386166000908152602081905260409020549190610930565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610bd8908261096a565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610838565b600060208083528351808285015260005b81811015610c5657858101830151858201604001528201610c3a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c8e57600080fd5b919050565b60008060408385031215610ca657600080fd5b610caf83610c77565b946020939093013593505050565b600080600060608486031215610cd257600080fd5b610cdb84610c77565b9250610ce960208501610c77565b9150604084013590509250925092565b600060208284031215610d0b57600080fd5b6109c982610c77565b60008060408385031215610d2757600080fd5b610d3083610c77565b9150610d3e60208401610c77565b90509250929050565b600181811c90821680610d5b57607f821691505b602082108103610d7b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561043c5761043c610db6565b8181038181111561043c5761043c610db6565b600060208284031215610e0457600080fd5b505191905056fe45524332305374616e646172643a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332305374616e646172643a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305374616e646172643a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122096123ddd9b7ddc32eac6e58b2d5363938e1f9b3c5a50e2a6fc0c9667d613379864736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000051400000000000000000000000000000000000000000000000000000000000005140000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000004d6b2df047040d707f84f8dfddb9bf9c2a93b491000000000000000000000000b917efe50b27f6946835df5133a4b2d03ee2e3b7000000000000000000000000000000000000000000000000000000000000000a496e73696465204a6f6200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000652454147414e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Inside Job
Arg [1] : symbol_ (string): REAGAN
Arg [2] : supply_ (uint256): 1000000000
Arg [3] : decimals_ (uint8): 18
Arg [4] : maxTransaction_ (uint256): 1300
Arg [5] : maxWallet_ (uint256): 1300
Arg [6] : router_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [7] : dexInfo_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000514
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000514
Arg [6] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [7] : 0000000000000000000000004d6b2df047040d707f84f8dfddb9bf9c2a93b491
Arg [8] : 000000000000000000000000b917efe50b27f6946835df5133a4b2d03ee2e3b7
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [10] : 496e73696465204a6f6200000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [12] : 52454147414e0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

21142:2254:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11787:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14166:210;;;;;;;;;;-1:-1:-1;14166:210:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;14166:210:0;1004:187:1;12946:108:0;;;;;;;;;;-1:-1:-1;13034:12:0;;12946:108;;;1342:25:1;;;1330:2;1315:18;12946:108:0;1196:177:1;14874:462:0;;;;;;;;;;-1:-1:-1;14874:462:0;;;;;:::i;:::-;;:::i;12773:100::-;;;;;;;;;;-1:-1:-1;12856:9:0;;12773:100;;12856:9;;;;1853:36:1;;1841:2;1826:18;12773:100:0;1711:184:1;15753:300:0;;;;;;;;;;-1:-1:-1;15753:300:0;;;;;:::i;:::-;;:::i;13125:177::-;;;;;;;;;;-1:-1:-1;13125:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;13276:18:0;13244:7;13276:18;;;;;;;;;;;;13125:177;1740:148;;;;;;;;;;;;;:::i;:::-;;21330:35;;;;;;;;;;-1:-1:-1;21330:35:0;;;;-1:-1:-1;;;;;21330:35:0;;;;;;-1:-1:-1;;;;;2277:32:1;;;2259:51;;2247:2;2232:18;21330:35:0;2091:225:1;21229:26:0;;;;;;;;;;;;;;;;1098:79;;;;;;;;;;-1:-1:-1;1163:6:0;;;;;-1:-1:-1;;;;;1163:6:0;1098:79;;12006:104;;;;;;;;;;;;;:::i;16564:408::-;;;;;;;;;;-1:-1:-1;16564:408:0;;;;;:::i;:::-;;:::i;13523:216::-;;;;;;;;;;-1:-1:-1;13523:216:0;;;;;:::i;:::-;;:::i;21262:30::-;;;;;;;;;;;;;;;;22609:142;;;;;;;;;;;;;:::i;13810:201::-;;;;;;;;;;-1:-1:-1;13810:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;13976:18:0;;;13944:7;13976:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13810:201;2043:281;;;;;;;;;;-1:-1:-1;2043:281:0;;;;;:::i;:::-;;:::i;11787:100::-;11841:13;11874:5;11867:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11787:100;:::o;14166:210::-;14285:4;14307:39;318:10;14330:7;14339:6;14307:8;:39::i;:::-;-1:-1:-1;14364:4:0;14166:210;;;;;:::o;14874:462::-;15014:4;15031:36;15041:6;15049:9;15060:6;15031:9;:36::i;:::-;15078:228;15101:6;318:10;15149:146;15205:6;15149:146;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15149:19:0;;;;;;:11;:19;;;;;;;;318:10;15149:33;;;;;;;;;;:37;:146::i;:::-;15078:8;:228::i;:::-;-1:-1:-1;15324:4:0;14874:462;;;;;:::o;15753:300::-;318:10;15868:4;15962:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15962:34:0;;;;;;;;;;15868:4;;15890:133;;15940:7;;15962:50;;16001:10;15962:38;:50::i;1740:148::-;1310:6;;-1:-1:-1;;;;;1310:6:0;;;;;318:10;1310:22;1302:67;;;;-1:-1:-1;;;1302:67:0;;;;;;;:::i;:::-;;;;;;;;;1831:6:::1;::::0;1810:40:::1;::::0;1847:1:::1;::::0;1831:6:::1;::::0;::::1;-1:-1:-1::0;;;;;1831:6:0::1;::::0;1810:40:::1;::::0;1847:1;;1810:40:::1;1861:6;:19:::0;;-1:-1:-1;;;;;;1861:19:0::1;::::0;;1740:148::o;12006:104::-;12062:13;12095:7;12088:14;;;;;:::i;16564:408::-;16684:4;16706:236;318:10;16756:7;16778:153;16835:15;16778:153;;;;;;;;;;;;;;;;;318:10;16778:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16778:34:0;;;;;;;;;;;;:38;:153::i;13523:216::-;13645:4;13667:42;318:10;13691:9;13702:6;13667:9;:42::i;22609:142::-;1310:6;;-1:-1:-1;;;;;1310:6:0;;;;;318:10;1310:22;1302:67;;;;-1:-1:-1;;;1302:67:0;;;;;;;:::i;:::-;13034:12;;22674:11:::1;:27:::0;13034:12;;22712:15:::1;:31:::0;22609:142::o;2043:281::-;1310:6;;-1:-1:-1;;;;;1310:6:0;;;;;318:10;1310:22;1302:67;;;;-1:-1:-1;;;1302:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2146:22:0;::::1;2124:110;;;::::0;-1:-1:-1;;;2124:110:0;;3742:2:1;2124:110:0::1;::::0;::::1;3724:21:1::0;3781:2;3761:18;;;3754:30;3820:34;3800:18;;;3793:62;-1:-1:-1;;;3871:18:1;;;3864:36;3917:19;;2124:110:0::1;3540:402:1::0;2124:110:0::1;2271:6;::::0;2250:38:::1;::::0;-1:-1:-1;;;;;2250:38:0;;::::1;::::0;2271:6:::1;::::0;::::1;;::::0;2250:38:::1;::::0;;;::::1;2299:6;:17:::0;;-1:-1:-1;;;;;2299:17:0;;::::1;;;-1:-1:-1::0;;;;;;2299:17:0;;::::1;::::0;;;::::1;::::0;;2043:281::o;20011:396::-;-1:-1:-1;;;;;20147:19:0;;20139:76;;;;-1:-1:-1;;;20139:76:0;;4149:2:1;20139:76:0;;;4131:21:1;4188:2;4168:18;;;4161:30;4227:34;4207:18;;;4200:62;-1:-1:-1;;;4278:18:1;;;4271:42;4330:19;;20139:76:0;3947:408:1;20139:76:0;-1:-1:-1;;;;;20234:21:0;;20226:76;;;;-1:-1:-1;;;20226:76:0;;4562:2:1;20226:76:0;;;4544:21:1;4601:2;4581:18;;;4574:30;4640:34;4620:18;;;4613:62;-1:-1:-1;;;4691:18:1;;;4684:40;4741:19;;20226:76:0;4360:406:1;20226:76:0;-1:-1:-1;;;;;20315:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20367:32;;1342:25:1;;;20367:32:0;;1315:18:1;20367:32:0;;;;;;;;20011:396;;;:::o;22965:428::-;23094:24;23109:4;23115:2;23094:14;:24::i;:::-;23089:253;;23152:11;;23142:6;:21;;23134:55;;;;-1:-1:-1;;;23134:55:0;;4973:2:1;23134:55:0;;;4955:21:1;5012:2;4992:18;;;4985:30;-1:-1:-1;;;5031:18:1;;;5024:51;5092:18;;23134:55:0;4771:345:1;23134:55:0;23216:8;;-1:-1:-1;;;;;23210:14:0;;;23216:8;;23210:14;23206:125;;23279:15;;23269:6;23253:13;23263:2;-1:-1:-1;;;;;13276:18:0;13244:7;13276:18;;;;;;;;;;;;13125:177;23253:13;:22;;;;:::i;:::-;:41;;23245:70;;;;-1:-1:-1;;;23245:70:0;;5585:2:1;23245:70:0;;;5567:21:1;5624:2;5604:18;;;5597:30;-1:-1:-1;;;5643:18:1;;;5636:46;5699:18;;23245:70:0;5383:340:1;23245:70:0;23352:33;23368:4;23374:2;23378:6;23352:15;:33::i;:::-;22965:428;;;:::o;3504:226::-;3624:7;3660:12;3652:6;;;;3644:29;;;;-1:-1:-1;;;3644:29:0;;;;;;;;:::i;:::-;-1:-1:-1;3684:9:0;3696:5;3700:1;3696;:5;:::i;:::-;3684:17;3504:226;-1:-1:-1;;;;;3504:226:0:o;2595:184::-;2653:7;;2685:5;2689:1;2685;:5;:::i;:::-;2673:17;;2714:1;2709;:6;;2701:49;;;;-1:-1:-1;;;2701:49:0;;6063:2:1;2701:49:0;;;6045:21:1;6102:2;6082:18;;;6075:30;6141:32;6121:18;;;6114:60;6191:18;;2701:49:0;5861:354:1;2701:49:0;2770:1;2595:184;-1:-1:-1;;;2595:184:0:o;22759:198::-;-1:-1:-1;;;;;22850:17:0;;22826:4;22850:17;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;22871:15:0;;;;;;:11;:15;;;;;;;;22850:36;:99;;;-1:-1:-1;22905:15:0;;22890:55;;-1:-1:-1;;;22890:55:0;;-1:-1:-1;;;;;6450:15:1;;;22890:55:0;;;6432:34:1;6502:15;;;6482:18;;;6475:43;22948:1:0;;22905:15;;22890:45;;6367:18:1;;22890:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:59;22843:106;22759:198;-1:-1:-1;;;22759:198:0:o;17462:634::-;-1:-1:-1;;;;;17602:20:0;;17594:78;;;;-1:-1:-1;;;17594:78:0;;6920:2:1;17594:78:0;;;6902:21:1;6959:2;6939:18;;;6932:30;6998:34;6978:18;;;6971:62;-1:-1:-1;;;7049:18:1;;;7042:43;7102:19;;17594:78:0;6718:409:1;17594:78:0;-1:-1:-1;;;;;17691:23:0;;17683:79;;;;-1:-1:-1;;;17683:79:0;;7334:2:1;17683:79:0;;;7316:21:1;7373:2;7353:18;;;7346:30;7412:34;7392:18;;;7385:62;-1:-1:-1;;;7463:18:1;;;7456:41;7514:19;;17683:79:0;7132:407:1;17683:79:0;17855:116;17891:6;17855:116;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17855:17:0;;:9;:17;;;;;;;;;;;;:116;:21;:116::i;:::-;-1:-1:-1;;;;;17835:17:0;;;:9;:17;;;;;;;;;;;:136;;;;18005:20;;;;;;;:32;;18030:6;18005:24;:32::i;:::-;-1:-1:-1;;;;;17982:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;18053:35;1342:25:1;;;17982:20:0;;18053:35;;;;;;1315:18:1;18053:35:0;1196:177:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2529:260::-;2597:6;2605;2658:2;2646:9;2637:7;2633:23;2629:32;2626:52;;;2674:1;2671;2664:12;2626:52;2697:29;2716:9;2697:29;:::i;:::-;2687:39;;2745:38;2779:2;2768:9;2764:18;2745:38;:::i;:::-;2735:48;;2529:260;;;;;:::o;2794:380::-;2873:1;2869:12;;;;2916;;;2937:61;;2991:4;2983:6;2979:17;2969:27;;2937:61;3044:2;3036:6;3033:14;3013:18;3010:38;3007:161;;3090:10;3085:3;3081:20;3078:1;3071:31;3125:4;3122:1;3115:15;3153:4;3150:1;3143:15;3007:161;;2794:380;;;:::o;3179:356::-;3381:2;3363:21;;;3400:18;;;3393:30;3459:34;3454:2;3439:18;;3432:62;3526:2;3511:18;;3179:356::o;5121:127::-;5182:10;5177:3;5173:20;5170:1;5163:31;5213:4;5210:1;5203:15;5237:4;5234:1;5227:15;5253:125;5318:9;;;5339:10;;;5336:36;;;5352:18;;:::i;5728:128::-;5795:9;;;5816:11;;;5813:37;;;5830:18;;:::i;6529:184::-;6599:6;6652:2;6640:9;6631:7;6627:23;6623:32;6620:52;;;6668:1;6665;6658:12;6620:52;-1:-1:-1;6691:16:1;;6529:184;-1:-1:-1;6529:184:1:o

Swarm Source

ipfs://96123ddd9b7ddc32eac6e58b2d5363938e1f9b3c5a50e2a6fc0c9667d6133798
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.