ETH Price: $2,538.86 (-3.77%)

Token

Johnny Bravo (BRAVO)
 

Overview

Max Total Supply

420,690,000,000,000 BRAVO

Holders

1

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Legends of Atlantis: Deployer
Balance
420,690,000,000,000 BRAVO

Value
$0.00
0x54a7989932941172286870171a3861ebdca7ec13
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:
JohnnyBravo

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-18
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;


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


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}


/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(
        address spender,
        uint256 allowance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}


/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}


/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed,
        uint256 tokenId
    );

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}


/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value
    ) external returns (bool);
}


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}


/**
 * @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}.
 *
 * 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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value
    ) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value,
        bool emitEvent
    ) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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


interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}


interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);
}


/**
 * @title JohnnyBravo
 */
contract JohnnyBravo is ERC20, Ownable {
    IUniswapV2Router02 private uniswapV2Router;

    mapping(address => bool) public isExcludedFromFee;

    address public uniswapV2Pair;
    uint256 public swapCount;
    bool public tradingOpen;

    address public taxWallet = 0x6621941296D72ef9B6D470d3E8762aA3fb1ec4D5;

    uint256 private constant TAX_DENOMINATOR = 100;
    uint256 private constant TAX_SWAP_THRESHOLD = 10;
    uint256 private constant INITIAL_TAX = 10;
    uint256 private constant FINAL_TAX = 3;

    constructor(
        string memory _name,
        string memory _symbol
    ) ERC20(_name, _symbol) Ownable(msg.sender) {
        isExcludedFromFee[msg.sender] = true;
        isExcludedFromFee[address(this)] = true;
        isExcludedFromFee[taxWallet] = true;

        _mint(msg.sender, 420_690_000_000_000 * 10 ** decimals());
    }

    /**
     * @dev Fallback function to receive Ether.
     */
    receive() external payable {}

    /**
     * @dev Set the tax wallet address. Only callable by the owner.
     * @param newAddress The new address for the tax wallet.
     */
    function setTaxWallet(address newAddress) external onlyOwner {
        taxWallet = newAddress;
        isExcludedFromFee[newAddress] = true;
    }

    /**
     * @dev Exclude addresses from fees. Only callable by the owner.
     * @param toExclude Array of addresses to be excluded from fees.
     */
    function excludeFromFee(address[] memory toExclude) external onlyOwner {
        for (uint i = 0; i < toExclude.length; i++) {
            isExcludedFromFee[toExclude[i]] = true;
        }
    }

    /**
     * @dev Open trading for the token. Only callable by the owner.
     */
    function openTrading() external onlyOwner {
        require(!tradingOpen, "Trading already open");

        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), totalSupply());

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
                address(this),
                uniswapV2Router.WETH()
            );

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );

        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        tradingOpen = true;
    }

    /**
     * @dev Withdraw Ether from the contract. Only callable by the owner.
     */
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    /**
     * @dev Internal function to handle transfers with tax calculation.
     * @param sender The sender address.
     * @param recipient The recipient address.
     * @param amount The amount being transferred.
     */
    function _update(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        uint256 taxAmount = 0;

        if (
            (sender == uniswapV2Pair &&
                recipient != address(uniswapV2Router) &&
                !isExcludedFromFee[recipient]) ||
            (recipient == uniswapV2Pair && !isExcludedFromFee[sender])
        ) {
            taxAmount =
                (amount *
                    (
                        swapCount < TAX_SWAP_THRESHOLD ? INITIAL_TAX : FINAL_TAX
                    )) /
                TAX_DENOMINATOR;
            swapCount++;
        }

        uint256 afterTaxAmount = amount - taxAmount;

        super._update(sender, recipient, afterTaxAmount);
        if (taxAmount > 0) {
            super._update(sender, taxWallet, taxAmount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"value","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":"toExclude","type":"address[]"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"newAddress","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600a8054610100600160a81b031916746621941296d72ef9b6d470d3e8762aa3fb1ec4d50017905534801562000038575f80fd5b50604051620019bb380380620019bb8339810160408190526200005b91620004de565b33828260036200006c8382620005d0565b5060046200007b8282620005d0565b5050506001600160a01b038116620000ad57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000b8816200013c565b50335f818152600760205260408082208054600160ff1991821681179092553084528284208054821683179055600a546001600160a01b036101009091041684529190922080549091169091179055620001349060126200011b90600a620007a7565b6200012e9066017e9d8602b400620007be565b6200018d565b50506200083f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620001b85760405163ec442f0560e01b81525f6004820152602401620000a4565b620001c55f8383620001c9565b5050565b6008545f906001600160a01b038581169116148015620001f757506006546001600160a01b03848116911614155b80156200021c57506001600160a01b0383165f9081526007602052604090205460ff16155b806200025957506008546001600160a01b0384811691161480156200025957506001600160a01b0384165f9081526007602052604090205460ff16155b15620002a8576064600a600954106200027457600362000277565b600a5b620002839084620007be565b6200028f9190620007d8565b600980549192505f620002a283620007f8565b91905055505b5f620002b5828462000813565b9050620002c4858583620002f1565b8115620002ea57600a54620002ea90869061010090046001600160a01b031684620002f1565b5050505050565b6001600160a01b0383166200031f578060025f82825462000313919062000829565b90915550620003919050565b6001600160a01b0383165f9081526020819052604090205481811015620003735760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000a4565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620003af57600280548290039055620003cd565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200041391815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011262000444575f80fd5b81516001600160401b038082111562000461576200046162000420565b604051601f8301601f19908116603f011681019082821181831017156200048c576200048c62000420565b81604052838152602092508683858801011115620004a8575f80fd5b5f91505b83821015620004cb5785820183015181830184015290820190620004ac565b5f93810190920192909252949350505050565b5f8060408385031215620004f0575f80fd5b82516001600160401b038082111562000507575f80fd5b620005158683870162000434565b935060208501519150808211156200052b575f80fd5b506200053a8582860162000434565b9150509250929050565b600181811c908216806200055957607f821691505b6020821081036200057857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005cb575f81815260208120601f850160051c81016020861015620005a65750805b601f850160051c820191505b81811015620005c757828155600101620005b2565b5050505b505050565b81516001600160401b03811115620005ec57620005ec62000420565b6200060481620005fd845462000544565b846200057e565b602080601f8311600181146200063a575f8415620006225750858301515b5f19600386901b1c1916600185901b178555620005c7565b5f85815260208120601f198616915b828110156200066a5788860151825594840194600190910190840162000649565b50858210156200068857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620006ec57815f1904821115620006d057620006d062000698565b80851615620006de57918102915b93841c9390800290620006b1565b509250929050565b5f826200070457506001620007a1565b816200071257505f620007a1565b81600181146200072b5760028114620007365762000756565b6001915050620007a1565b60ff8411156200074a576200074a62000698565b50506001821b620007a1565b5060208310610133831016604e8410600b84101617156200077b575081810a620007a1565b620007878383620006ac565b805f19048211156200079d576200079d62000698565b0290505b92915050565b5f620007b760ff841683620006f4565b9392505050565b8082028115828204841417620007a157620007a162000698565b5f82620007f357634e487b7160e01b5f52601260045260245ffd5b500490565b5f600182016200080c576200080c62000698565b5060010190565b81810381811115620007a157620007a162000698565b80820180821115620007a157620007a162000698565b61116e806200084d5f395ff3fe608060405260043610610129575f3560e01c806370a08231116100a8578063a9059cbb1161006d578063a9059cbb14610331578063c9567bf914610350578063dd62ed3e14610364578063ea414b28146103a8578063f2fde38b146103c7578063ffb54a99146103e6575f80fd5b806370a0823114610299578063715018a6146102cd57806371b9189c146102e15780638da5cb5b1461030057806395d89b411461031d575f80fd5b80632eff0d9e116100ee5780632eff0d9e14610206578063313ce5671461021b5780633ccfd60b1461023657806349bd5a5e1461024c5780635342acb41461026b575f80fd5b806306fdde0314610134578063095ea7b31461015e57806318160ddd1461018d57806323b872dd146101ab5780632dc0562d146101ca575f80fd5b3661013057005b5f80fd5b34801561013f575f80fd5b506101486103ff565b6040516101559190610dfb565b60405180910390f35b348015610169575f80fd5b5061017d610178366004610e6a565b61048f565b6040519015158152602001610155565b348015610198575f80fd5b506002545b604051908152602001610155565b3480156101b6575f80fd5b5061017d6101c5366004610e94565b6104a8565b3480156101d5575f80fd5b50600a546101ee9061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610155565b348015610211575f80fd5b5061019d60095481565b348015610226575f80fd5b5060405160128152602001610155565b348015610241575f80fd5b5061024a6104cb565b005b348015610257575f80fd5b506008546101ee906001600160a01b031681565b348015610276575f80fd5b5061017d610285366004610ed2565b60076020525f908152604090205460ff1681565b3480156102a4575f80fd5b5061019d6102b3366004610ed2565b6001600160a01b03165f9081526020819052604090205490565b3480156102d8575f80fd5b5061024a6104ff565b3480156102ec575f80fd5b5061024a6102fb366004610f08565b610512565b34801561030b575f80fd5b506005546001600160a01b03166101ee565b348015610328575f80fd5b50610148610583565b34801561033c575f80fd5b5061017d61034b366004610e6a565b610592565b34801561035b575f80fd5b5061024a61059f565b34801561036f575f80fd5b5061019d61037e366004610fc8565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156103b3575f80fd5b5061024a6103c2366004610ed2565b610907565b3480156103d2575f80fd5b5061024a6103e1366004610ed2565b61094d565b3480156103f1575f80fd5b50600a5461017d9060ff1681565b60606003805461040e90610fff565b80601f016020809104026020016040519081016040528092919081815260200182805461043a90610fff565b80156104855780601f1061045c57610100808354040283529160200191610485565b820191905f5260205f20905b81548152906001019060200180831161046857829003601f168201915b5050505050905090565b5f3361049c818585610987565b60019150505b92915050565b5f336104b5858285610999565b6104c0858585610a14565b506001949350505050565b6104d3610a71565b60405133904780156108fc02915f818181858888f193505050501580156104fc573d5f803e3d5ffd5b50565b610507610a71565b6105105f610a9e565b565b61051a610a71565b5f5b815181101561057f57600160075f84848151811061053c5761053c611037565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055806105778161105f565b91505061051c565b5050565b60606004805461040e90610fff565b5f3361049c818585610a14565b6105a7610a71565b600a5460ff16156105f65760405162461bcd60e51b81526020600482015260146024820152732a3930b234b7339030b63932b0b23c9037b832b760611b60448201526064015b60405180910390fd5b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561063390309061062e60025490565b610987565b60065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610683573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106a79190611077565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610706573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061072a9190611077565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610774573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107989190611077565b600880546001600160a01b039283166001600160a01b03199091161790556006541663f305d71947306107df816001600160a01b03165f9081526020819052604090205490565b5f806107f36005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610859573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061087e9190611092565b505060085460065460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af11580156108d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f791906110bd565b50600a805460ff19166001179055565b61090f610a71565b600a8054610100600160a81b0319166101006001600160a01b03939093169283021790555f908152600760205260409020805460ff19166001179055565b610955610a71565b6001600160a01b03811661097e57604051631e4fbdf760e01b81525f60048201526024016105ed565b6104fc81610a9e565b6109948383836001610aef565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610a0e5781811015610a0057604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016105ed565b610a0e84848484035f610aef565b50505050565b6001600160a01b038316610a3d57604051634b637e8f60e11b81525f60048201526024016105ed565b6001600160a01b038216610a665760405163ec442f0560e01b81525f60048201526024016105ed565b610994838383610bc1565b6005546001600160a01b031633146105105760405163118cdaa760e01b81523360048201526024016105ed565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610b185760405163e602df0560e01b81525f60048201526024016105ed565b6001600160a01b038316610b4157604051634a1406b160e11b81525f60048201526024016105ed565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a0e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bb391815260200190565b60405180910390a350505050565b6008545f906001600160a01b038581169116148015610bee57506006546001600160a01b03848116911614155b8015610c1257506001600160a01b0383165f9081526007602052604090205460ff16155b80610c4d57506008546001600160a01b038481169116148015610c4d57506001600160a01b0384165f9081526007602052604090205460ff16155b15610c93576064600a60095410610c65576003610c68565b600a5b610c7290846110dc565b610c7c91906110f3565b600980549192505f610c8d8361105f565b91905055505b5f610c9e8284611112565b9050610cab858583610cd5565b8115610cce57600a54610cce90869061010090046001600160a01b031684610cd5565b5050505050565b6001600160a01b038316610cff578060025f828254610cf49190611125565b90915550610d6f9050565b6001600160a01b0383165f9081526020819052604090205481811015610d515760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105ed565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610d8b57600280548290039055610da9565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dee91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610e2657858101830151858201604001528201610e0a565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146104fc575f80fd5b8035610e6581610e46565b919050565b5f8060408385031215610e7b575f80fd5b8235610e8681610e46565b946020939093013593505050565b5f805f60608486031215610ea6575f80fd5b8335610eb181610e46565b92506020840135610ec181610e46565b929592945050506040919091013590565b5f60208284031215610ee2575f80fd5b8135610eed81610e46565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215610f19575f80fd5b823567ffffffffffffffff80821115610f30575f80fd5b818501915085601f830112610f43575f80fd5b813581811115610f5557610f55610ef4565b8060051b604051601f19603f83011681018181108582111715610f7a57610f7a610ef4565b604052918252848201925083810185019188831115610f97575f80fd5b938501935b82851015610fbc57610fad85610e5a565b84529385019392850192610f9c565b98975050505050505050565b5f8060408385031215610fd9575f80fd5b8235610fe481610e46565b91506020830135610ff481610e46565b809150509250929050565b600181811c9082168061101357607f821691505b60208210810361103157634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f600182016110705761107061104b565b5060010190565b5f60208284031215611087575f80fd5b8151610eed81610e46565b5f805f606084860312156110a4575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156110cd575f80fd5b81518015158114610eed575f80fd5b80820281158282048414176104a2576104a261104b565b5f8261110d57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104a2576104a261104b565b808201808211156104a2576104a261104b56fea2646970667358221220ff3a11257553e72dc8edf8cdb061d6327017c4f0d59ee4ea5e6d7f45491ff27764736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4a6f686e6e7920427261766f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005425241564f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610129575f3560e01c806370a08231116100a8578063a9059cbb1161006d578063a9059cbb14610331578063c9567bf914610350578063dd62ed3e14610364578063ea414b28146103a8578063f2fde38b146103c7578063ffb54a99146103e6575f80fd5b806370a0823114610299578063715018a6146102cd57806371b9189c146102e15780638da5cb5b1461030057806395d89b411461031d575f80fd5b80632eff0d9e116100ee5780632eff0d9e14610206578063313ce5671461021b5780633ccfd60b1461023657806349bd5a5e1461024c5780635342acb41461026b575f80fd5b806306fdde0314610134578063095ea7b31461015e57806318160ddd1461018d57806323b872dd146101ab5780632dc0562d146101ca575f80fd5b3661013057005b5f80fd5b34801561013f575f80fd5b506101486103ff565b6040516101559190610dfb565b60405180910390f35b348015610169575f80fd5b5061017d610178366004610e6a565b61048f565b6040519015158152602001610155565b348015610198575f80fd5b506002545b604051908152602001610155565b3480156101b6575f80fd5b5061017d6101c5366004610e94565b6104a8565b3480156101d5575f80fd5b50600a546101ee9061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610155565b348015610211575f80fd5b5061019d60095481565b348015610226575f80fd5b5060405160128152602001610155565b348015610241575f80fd5b5061024a6104cb565b005b348015610257575f80fd5b506008546101ee906001600160a01b031681565b348015610276575f80fd5b5061017d610285366004610ed2565b60076020525f908152604090205460ff1681565b3480156102a4575f80fd5b5061019d6102b3366004610ed2565b6001600160a01b03165f9081526020819052604090205490565b3480156102d8575f80fd5b5061024a6104ff565b3480156102ec575f80fd5b5061024a6102fb366004610f08565b610512565b34801561030b575f80fd5b506005546001600160a01b03166101ee565b348015610328575f80fd5b50610148610583565b34801561033c575f80fd5b5061017d61034b366004610e6a565b610592565b34801561035b575f80fd5b5061024a61059f565b34801561036f575f80fd5b5061019d61037e366004610fc8565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156103b3575f80fd5b5061024a6103c2366004610ed2565b610907565b3480156103d2575f80fd5b5061024a6103e1366004610ed2565b61094d565b3480156103f1575f80fd5b50600a5461017d9060ff1681565b60606003805461040e90610fff565b80601f016020809104026020016040519081016040528092919081815260200182805461043a90610fff565b80156104855780601f1061045c57610100808354040283529160200191610485565b820191905f5260205f20905b81548152906001019060200180831161046857829003601f168201915b5050505050905090565b5f3361049c818585610987565b60019150505b92915050565b5f336104b5858285610999565b6104c0858585610a14565b506001949350505050565b6104d3610a71565b60405133904780156108fc02915f818181858888f193505050501580156104fc573d5f803e3d5ffd5b50565b610507610a71565b6105105f610a9e565b565b61051a610a71565b5f5b815181101561057f57600160075f84848151811061053c5761053c611037565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055806105778161105f565b91505061051c565b5050565b60606004805461040e90610fff565b5f3361049c818585610a14565b6105a7610a71565b600a5460ff16156105f65760405162461bcd60e51b81526020600482015260146024820152732a3930b234b7339030b63932b0b23c9037b832b760611b60448201526064015b60405180910390fd5b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561063390309061062e60025490565b610987565b60065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610683573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106a79190611077565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610706573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061072a9190611077565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610774573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107989190611077565b600880546001600160a01b039283166001600160a01b03199091161790556006541663f305d71947306107df816001600160a01b03165f9081526020819052604090205490565b5f806107f36005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610859573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061087e9190611092565b505060085460065460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af11580156108d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f791906110bd565b50600a805460ff19166001179055565b61090f610a71565b600a8054610100600160a81b0319166101006001600160a01b03939093169283021790555f908152600760205260409020805460ff19166001179055565b610955610a71565b6001600160a01b03811661097e57604051631e4fbdf760e01b81525f60048201526024016105ed565b6104fc81610a9e565b6109948383836001610aef565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610a0e5781811015610a0057604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016105ed565b610a0e84848484035f610aef565b50505050565b6001600160a01b038316610a3d57604051634b637e8f60e11b81525f60048201526024016105ed565b6001600160a01b038216610a665760405163ec442f0560e01b81525f60048201526024016105ed565b610994838383610bc1565b6005546001600160a01b031633146105105760405163118cdaa760e01b81523360048201526024016105ed565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610b185760405163e602df0560e01b81525f60048201526024016105ed565b6001600160a01b038316610b4157604051634a1406b160e11b81525f60048201526024016105ed565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a0e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bb391815260200190565b60405180910390a350505050565b6008545f906001600160a01b038581169116148015610bee57506006546001600160a01b03848116911614155b8015610c1257506001600160a01b0383165f9081526007602052604090205460ff16155b80610c4d57506008546001600160a01b038481169116148015610c4d57506001600160a01b0384165f9081526007602052604090205460ff16155b15610c93576064600a60095410610c65576003610c68565b600a5b610c7290846110dc565b610c7c91906110f3565b600980549192505f610c8d8361105f565b91905055505b5f610c9e8284611112565b9050610cab858583610cd5565b8115610cce57600a54610cce90869061010090046001600160a01b031684610cd5565b5050505050565b6001600160a01b038316610cff578060025f828254610cf49190611125565b90915550610d6f9050565b6001600160a01b0383165f9081526020819052604090205481811015610d515760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105ed565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610d8b57600280548290039055610da9565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dee91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610e2657858101830151858201604001528201610e0a565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146104fc575f80fd5b8035610e6581610e46565b919050565b5f8060408385031215610e7b575f80fd5b8235610e8681610e46565b946020939093013593505050565b5f805f60608486031215610ea6575f80fd5b8335610eb181610e46565b92506020840135610ec181610e46565b929592945050506040919091013590565b5f60208284031215610ee2575f80fd5b8135610eed81610e46565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215610f19575f80fd5b823567ffffffffffffffff80821115610f30575f80fd5b818501915085601f830112610f43575f80fd5b813581811115610f5557610f55610ef4565b8060051b604051601f19603f83011681018181108582111715610f7a57610f7a610ef4565b604052918252848201925083810185019188831115610f97575f80fd5b938501935b82851015610fbc57610fad85610e5a565b84529385019392850192610f9c565b98975050505050505050565b5f8060408385031215610fd9575f80fd5b8235610fe481610e46565b91506020830135610ff481610e46565b809150509250929050565b600181811c9082168061101357607f821691505b60208210810361103157634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f600182016110705761107061104b565b5060010190565b5f60208284031215611087575f80fd5b8151610eed81610e46565b5f805f606084860312156110a4575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156110cd575f80fd5b81518015158114610eed575f80fd5b80820281158282048414176104a2576104a261104b565b5f8261110d57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104a2576104a261104b565b808201808211156104a2576104a261104b56fea2646970667358221220ff3a11257553e72dc8edf8cdb061d6327017c4f0d59ee4ea5e6d7f45491ff27764736f6c63430008140033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4a6f686e6e7920427261766f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005425241564f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Johnny Bravo
Arg [1] : _symbol (string): BRAVO

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 4a6f686e6e7920427261766f0000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 425241564f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

25871:3901:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15654:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17972:215;;;;;;;;;;-1:-1:-1;17972:215:0;;;;;:::i;:::-;;:::i;:::-;;;1327:14:1;;1320:22;1302:41;;1290:2;1275:18;17972:215:0;1162:187:1;16756:99:0;;;;;;;;;;-1:-1:-1;16835:12:0;;16756:99;;;1500:25:1;;;1488:2;1473:18;16756:99:0;1354:177:1;18765:283:0;;;;;;;;;;-1:-1:-1;18765:283:0;;;;;:::i;:::-;;:::i;26124:69::-;;;;;;;;;;-1:-1:-1;26124:69:0;;;;;;;-1:-1:-1;;;;;26124:69:0;;;;;;-1:-1:-1;;;;;2161:32:1;;;2143:51;;2131:2;2116:18;26124:69:0;1997:203:1;26061:24:0;;;;;;;;;;;;;;;;16607:84;;;;;;;;;;-1:-1:-1;16607:84:0;;16681:2;2347:36:1;;2335:2;2320:18;16607:84:0;2205:184:1;28538:109:0;;;;;;;;;;;;;:::i;:::-;;26026:28;;;;;;;;;;-1:-1:-1;26026:28:0;;;;-1:-1:-1;;;;;26026:28:0;;;25968:49;;;;;;;;;;-1:-1:-1;25968:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16918:118;;;;;;;;;;-1:-1:-1;16918:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;17010:18:0;16983:7;17010:18;;;;;;;;;;;;16918:118;3030:103;;;;;;;;;;;;;:::i;27325:198::-;;;;;;;;;;-1:-1:-1;27325:198:0;;;;;:::i;:::-;;:::i;2355:87::-;;;;;;;;;;-1:-1:-1;2428:6:0;;-1:-1:-1;;;;;2428:6:0;2355:87;;15864:95;;;;;;;;;;;;;:::i;17241:182::-;;;;;;;;;;-1:-1:-1;17241:182:0;;;;;:::i;:::-;;:::i;27618:819::-;;;;;;;;;;;;;:::i;17486:167::-;;;;;;;;;;-1:-1:-1;17486:167:0;;;;;:::i;:::-;-1:-1:-1;;;;;17618:18:0;;;17591:7;17618:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17486:167;27010:149;;;;;;;;;;-1:-1:-1;27010:149:0;;;;;:::i;:::-;;:::i;3288:220::-;;;;;;;;;;-1:-1:-1;3288:220:0;;;;;:::i;:::-;;:::i;26092:23::-;;;;;;;;;;-1:-1:-1;26092:23:0;;;;;;;;15654:91;15699:13;15732:5;15725:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15654:91;:::o;17972:215::-;18070:4;683:10;18126:31;683:10;18142:7;18151:5;18126:8;:31::i;:::-;18175:4;18168:11;;;17972:215;;;;;:::o;18765:283::-;18886:4;683:10;18944:37;18960:4;683:10;18975:5;18944:15;:37::i;:::-;18992:26;19002:4;19008:2;19012:5;18992:9;:26::i;:::-;-1:-1:-1;19036:4:0;;18765:283;-1:-1:-1;;;;18765:283:0:o;28538:109::-;2241:13;:11;:13::i;:::-;28588:51:::1;::::0;28596:10:::1;::::0;28617:21:::1;28588:51:::0;::::1;;;::::0;::::1;::::0;;;28617:21;28596:10;28588:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;28538:109::o:0;3030:103::-;2241:13;:11;:13::i;:::-;3095:30:::1;3122:1;3095:18;:30::i;:::-;3030:103::o:0;27325:198::-;2241:13;:11;:13::i;:::-;27412:6:::1;27407:109;27428:9;:16;27424:1;:20;27407:109;;;27500:4;27466:17;:31;27484:9;27494:1;27484:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;27466:31:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;27466:31:0;:38;;-1:-1:-1;;27466:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27446:3;::::1;::::0;::::1;:::i;:::-;;;;27407:109;;;;27325:198:::0;:::o;15864:95::-;15911:13;15944:7;15937:14;;;;;:::i;17241:182::-;17310:4;683:10;17366:27;683:10;17383:2;17387:5;17366:9;:27::i;27618:819::-;2241:13;:11;:13::i;:::-;27680:11:::1;::::0;::::1;;27679:12;27671:45;;;::::0;-1:-1:-1;;;27671:45:0;;5288:2:1;27671:45:0::1;::::0;::::1;5270:21:1::0;5327:2;5307:18;;;5300:30;-1:-1:-1;;;5346:18:1;;;5339:50;5406:18;;27671:45:0::1;;;;;;;;;27729:15;:104:::0;;-1:-1:-1;;;;;;27729:104:0::1;27780:42;27729:104:::0;;::::1;::::0;;;27844:64:::1;::::0;27861:4:::1;::::0;27894:13:::1;16835:12:::0;;;16756:99;27894:13:::1;27844:8;:64::i;:::-;27955:15;;;;;;;;;-1:-1:-1::0;;;;;27955:15:0::1;-1:-1:-1::0;;;;;27955:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27937:55:0::1;;28019:4;28043:15;;;;;;;;;-1:-1:-1::0;;;;;28043:15:0::1;-1:-1:-1::0;;;;;28043:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27937:143;::::0;-1:-1:-1;;;;;;27937:143:0::1;::::0;;;;;;-1:-1:-1;;;;;5921:15:1;;;27937:143:0::1;::::0;::::1;5903:34:1::0;5973:15;;5953:18;;;5946:43;5838:18;;27937:143:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27921:13;:159:::0;;-1:-1:-1;;;;;27921:159:0;;::::1;-1:-1:-1::0;;;;;;27921:159:0;;::::1;;::::0;;28093:15:::1;::::0;::::1;:31;28132:21;28177:4;28197:24;28177:4:::0;-1:-1:-1;;;;;17010:18:0;16983:7;17010:18;;;;;;;;;;;;16918:118;28197:24:::1;28236:1;28252::::0;28268:7:::1;2428:6:::0;;-1:-1:-1;;;;;2428:6:0;;2355:87;28268:7:::1;28093:223;::::0;::::1;::::0;;;-1:-1:-1;;;;;;28093:223:0;;;-1:-1:-1;;;;;6359:15:1;;;28093:223:0::1;::::0;::::1;6341:34:1::0;6391:18;;;6384:34;;;;6434:18;;;6427:34;;;;6477:18;;;6470:34;6541:15;;;6520:19;;;6513:44;28290:15:0::1;6573:19:1::0;;;6566:35;6275:19;;28093:223:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;28336:13:0::1;::::0;28367:15:::1;::::0;28329:71:::1;::::0;-1:-1:-1;;;28329:71:0;;-1:-1:-1;;;;;28367:15:0;;::::1;28329:71;::::0;::::1;7097:51:1::0;-1:-1:-1;;7164:18:1;;;7157:34;28336:13:0;::::1;::::0;-1:-1:-1;28329:29:0::1;::::0;7070:18:1;;28329:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;28411:11:0::1;:18:::0;;-1:-1:-1;;28411:18:0::1;28425:4;28411:18;::::0;;27618:819::o;27010:149::-;2241:13;:11;:13::i;:::-;27082:9:::1;:22:::0;;-1:-1:-1;;;;;;27082:22:0::1;;-1:-1:-1::0;;;;;27082:22:0;;;::::1;::::0;;::::1;;::::0;;-1:-1:-1;27115:29:0;;;:17:::1;:29;::::0;;;;:36;;-1:-1:-1;;27115:36:0::1;-1:-1:-1::0;27115:36:0::1;::::0;;27010:149::o;3288:220::-;2241:13;:11;:13::i;:::-;-1:-1:-1;;;;;3373:22:0;::::1;3369:93;;3419:31;::::0;-1:-1:-1;;;3419:31:0;;3447:1:::1;3419:31;::::0;::::1;2143:51:1::0;2116:18;;3419:31:0::1;1997:203:1::0;3369:93:0::1;3472:28;3491:8;3472:18;:28::i;22858:130::-:0;22943:37;22952:5;22959:7;22968:5;22975:4;22943:8;:37::i;:::-;22858:130;;;:::o;24617:603::-;-1:-1:-1;;;;;17618:18:0;;;24751:24;17618:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;24818:37:0;;24814:399;;24895:5;24876:16;:24;24872:214;;;24928:142;;-1:-1:-1;;;24928:142:0;;-1:-1:-1;;;;;7704:32:1;;24928:142:0;;;7686:51:1;7753:18;;;7746:34;;;7796:18;;;7789:34;;;7659:18;;24928:142:0;7484:345:1;24872:214:0;25129:57;25138:5;25145:7;25173:5;25154:16;:24;25180:5;25129:8;:57::i;:::-;24740:480;24617:603;;;:::o;19433:308::-;-1:-1:-1;;;;;19517:18:0;;19513:88;;19559:30;;-1:-1:-1;;;19559:30:0;;19586:1;19559:30;;;2143:51:1;2116:18;;19559:30:0;1997:203:1;19513:88:0;-1:-1:-1;;;;;19615:16:0;;19611:88;;19655:32;;-1:-1:-1;;;19655:32:0;;19684:1;19655:32;;;2143:51:1;2116:18;;19655:32:0;1997:203:1;19611:88:0;19709:24;19717:4;19723:2;19727:5;19709:7;:24::i;2520:166::-;2428:6;;-1:-1:-1;;;;;2428:6:0;683:10;2580:23;2576:103;;2627:40;;-1:-1:-1;;;2627:40:0;;683:10;2627:40;;;2143:51:1;2116:18;;2627:40:0;1997:203:1;3668:191:0;3761:6;;;-1:-1:-1;;;;;3778:17:0;;;-1:-1:-1;;;;;;3778:17:0;;;;;;;3811:40;;3761:6;;;3778:17;3761:6;;3811:40;;3742:16;;3811:40;3731:128;3668:191;:::o;23839:486::-;-1:-1:-1;;;;;23995:19:0;;23991:91;;24038:32;;-1:-1:-1;;;24038:32:0;;24067:1;24038:32;;;2143:51:1;2116:18;;24038:32:0;1997:203:1;23991:91:0;-1:-1:-1;;;;;24096:21:0;;24092:92;;24141:31;;-1:-1:-1;;;24141:31:0;;24169:1;24141:31;;;2143:51:1;2116:18;;24141:31:0;1997:203:1;24092:92:0;-1:-1:-1;;;;;24194:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;24240:78;;;;24291:7;-1:-1:-1;;;;;24275:31:0;24284:5;-1:-1:-1;;;;;24275:31:0;;24300:5;24275:31;;;;1500:25:1;;1488:2;1473:18;;1354:177;24275:31:0;;;;;;;;23839:486;;;;:::o;28888:881::-;29082:13;;29019:17;;-1:-1:-1;;;;;29072:23:0;;;29082:13;;29072:23;:81;;;;-1:-1:-1;29137:15:0;;-1:-1:-1;;;;;29116:37:0;;;29137:15;;29116:37;;29072:81;:131;;;;-1:-1:-1;;;;;;29175:28:0;;;;;;:17;:28;;;;;;;;29174:29;29072:131;29071:208;;;-1:-1:-1;29235:13:0;;-1:-1:-1;;;;;29222:26:0;;;29235:13;;29222:26;:56;;;;-1:-1:-1;;;;;;29253:25:0;;;;;;:17;:25;;;;;;;;29252:26;29222:56;29053:493;;;26245:3;26301:2;29393:9;;:30;:56;;26395:1;29393:56;;;26349:2;29393:56;29336:136;;:6;:136;:::i;:::-;29335:173;;;;:::i;:::-;29523:9;:11;;29306:202;;-1:-1:-1;29523:9:0;:11;;;:::i;:::-;;;;;;29053:493;29558:22;29583:18;29592:9;29583:6;:18;:::i;:::-;29558:43;;29614:48;29628:6;29636:9;29647:14;29614:13;:48::i;:::-;29677:13;;29673:89;;29729:9;;29707:43;;29721:6;;29729:9;;;-1:-1:-1;;;;;29729:9:0;29740;29707:13;:43::i;:::-;29008:761;;28888:881;;;:::o;20065:1135::-;-1:-1:-1;;;;;20155:18:0;;20151:552;;20309:5;20293:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;20151:552:0;;-1:-1:-1;20151:552:0;;-1:-1:-1;;;;;20369:15:0;;20347:19;20369:15;;;;;;;;;;;20403:19;;;20399:117;;;20450:50;;-1:-1:-1;;;20450:50:0;;-1:-1:-1;;;;;7704:32:1;;20450:50:0;;;7686:51:1;7753:18;;;7746:34;;;7796:18;;;7789:34;;;7659:18;;20450:50:0;7484:345:1;20399:117:0;-1:-1:-1;;;;;20639:15:0;;:9;:15;;;;;;;;;;20657:19;;;;20639:37;;20151:552;-1:-1:-1;;;;;20719:16:0;;20715:435;;20885:12;:21;;;;;;;20715:435;;;-1:-1:-1;;;;;21101:13:0;;:9;:13;;;;;;;;;;:22;;;;;;20715:435;21182:2;-1:-1:-1;;;;;21167:25:0;21176:4;-1:-1:-1;;;;;21167:25:0;;21186:5;21167:25;;;;1500::1;;1488:2;1473:18;;1354:177;21167:25:0;;;;;;;;20065:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:134;771:20;;800:31;771:20;800:31;:::i;:::-;703:134;;;:::o;842:315::-;910:6;918;971:2;959:9;950:7;946:23;942:32;939:52;;;987:1;984;977:12;939:52;1026:9;1013:23;1045:31;1070:5;1045:31;:::i;:::-;1095:5;1147:2;1132:18;;;;1119:32;;-1:-1:-1;;;842:315:1:o;1536:456::-;1613:6;1621;1629;1682:2;1670:9;1661:7;1657:23;1653:32;1650:52;;;1698:1;1695;1688:12;1650:52;1737:9;1724:23;1756:31;1781:5;1756:31;:::i;:::-;1806:5;-1:-1:-1;1863:2:1;1848:18;;1835:32;1876:33;1835:32;1876:33;:::i;:::-;1536:456;;1928:7;;-1:-1:-1;;;1982:2:1;1967:18;;;;1954:32;;1536:456::o;2394:247::-;2453:6;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2561:9;2548:23;2580:31;2605:5;2580:31;:::i;:::-;2630:5;2394:247;-1:-1:-1;;;2394:247:1:o;2646:127::-;2707:10;2702:3;2698:20;2695:1;2688:31;2738:4;2735:1;2728:15;2762:4;2759:1;2752:15;2778:1121;2862:6;2893:2;2936;2924:9;2915:7;2911:23;2907:32;2904:52;;;2952:1;2949;2942:12;2904:52;2992:9;2979:23;3021:18;3062:2;3054:6;3051:14;3048:34;;;3078:1;3075;3068:12;3048:34;3116:6;3105:9;3101:22;3091:32;;3161:7;3154:4;3150:2;3146:13;3142:27;3132:55;;3183:1;3180;3173:12;3132:55;3219:2;3206:16;3241:2;3237;3234:10;3231:36;;;3247:18;;:::i;:::-;3293:2;3290:1;3286:10;3325:2;3319:9;3388:2;3384:7;3379:2;3375;3371:11;3367:25;3359:6;3355:38;3443:6;3431:10;3428:22;3423:2;3411:10;3408:18;3405:46;3402:72;;;3454:18;;:::i;:::-;3490:2;3483:22;3540:18;;;3574:15;;;;-1:-1:-1;3616:11:1;;;3612:20;;;3644:19;;;3641:39;;;3676:1;3673;3666:12;3641:39;3700:11;;;;3720:148;3736:6;3731:3;3728:15;3720:148;;;3802:23;3821:3;3802:23;:::i;:::-;3790:36;;3753:12;;;;3846;;;;3720:148;;;3887:6;2778:1121;-1:-1:-1;;;;;;;;2778:1121:1:o;3904:388::-;3972:6;3980;4033:2;4021:9;4012:7;4008:23;4004:32;4001:52;;;4049:1;4046;4039:12;4001:52;4088:9;4075:23;4107:31;4132:5;4107:31;:::i;:::-;4157:5;-1:-1:-1;4214:2:1;4199:18;;4186:32;4227:33;4186:32;4227:33;:::i;:::-;4279:7;4269:17;;;3904:388;;;;;:::o;4297:380::-;4376:1;4372:12;;;;4419;;;4440:61;;4494:4;4486:6;4482:17;4472:27;;4440:61;4547:2;4539:6;4536:14;4516:18;4513:38;4510:161;;4593:10;4588:3;4584:20;4581:1;4574:31;4628:4;4625:1;4618:15;4656:4;4653:1;4646:15;4510:161;;4297:380;;;:::o;4682:127::-;4743:10;4738:3;4734:20;4731:1;4724:31;4774:4;4771:1;4764:15;4798:4;4795:1;4788:15;4814:127;4875:10;4870:3;4866:20;4863:1;4856:31;4906:4;4903:1;4896:15;4930:4;4927:1;4920:15;4946:135;4985:3;5006:17;;;5003:43;;5026:18;;:::i;:::-;-1:-1:-1;5073:1:1;5062:13;;4946:135::o;5435:251::-;5505:6;5558:2;5546:9;5537:7;5533:23;5529:32;5526:52;;;5574:1;5571;5564:12;5526:52;5606:9;5600:16;5625:31;5650:5;5625:31;:::i;6612:306::-;6700:6;6708;6716;6769:2;6757:9;6748:7;6744:23;6740:32;6737:52;;;6785:1;6782;6775:12;6737:52;6814:9;6808:16;6798:26;;6864:2;6853:9;6849:18;6843:25;6833:35;;6908:2;6897:9;6893:18;6887:25;6877:35;;6612:306;;;;;:::o;7202:277::-;7269:6;7322:2;7310:9;7301:7;7297:23;7293:32;7290:52;;;7338:1;7335;7328:12;7290:52;7370:9;7364:16;7423:5;7416:13;7409:21;7402:5;7399:32;7389:60;;7445:1;7442;7435:12;7834:168;7907:9;;;7938;;7955:15;;;7949:22;;7935:37;7925:71;;7976:18;;:::i;8007:217::-;8047:1;8073;8063:132;;8117:10;8112:3;8108:20;8105:1;8098:31;8152:4;8149:1;8142:15;8180:4;8177:1;8170:15;8063:132;-1:-1:-1;8209:9:1;;8007:217::o;8229:128::-;8296:9;;;8317:11;;;8314:37;;;8331:18;;:::i;8362:125::-;8427:9;;;8448:10;;;8445:36;;;8461:18;;:::i

Swarm Source

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