ETH Price: $2,659.83 (+1.21%)
Gas: 2.35 Gwei

Token

Mgga (MGGA)
 

Overview

Max Total Supply

1,000,000,000 MGGA

Holders

179

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
Mgga

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 9 : Mgga.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

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

/*
I see you nerd! ⌐⊙_⊙
*/

contract Mgga is ERC20, Ownable {
    using Address for address payable;

    IUniRouter public uniRouter;
    address public uniPair;

    address public antibotWallet;

    mapping(address => bool) public freelos;
    mapping(address => bool) public liberatos;

    uint256 public sellPercent = 0;
    uint256 public buyPercent = 0;

    uint256 public maxTx;
    uint256 public maxWallet;

    bool public openTrading = false;

    // Errors
    error UnauthorizedCaller();
    error TradingNotOpen();
    error LimitExceeded();

    modifier onlyOwnerOrAntibot() {
        if (msg.sender != antibotWallet && msg.sender != owner()) {
            revert UnauthorizedCaller();
        }
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _totalSupply,
        address _router
    ) ERC20(_name, _symbol) Ownable(msg.sender) {
        uniRouter = IUniRouter(_router);
        uniPair = IUniFactory(uniRouter.factory()).createPair(
            address(this),
            uniRouter.WETH()
        );

        antibotWallet = 0xC5236B6491bcC8a0Fc1e6b349e7aEa68D468CB09;

        freelos[msg.sender] = true;
        freelos[address(this)] = true;
        freelos[antibotWallet] = true;
        liberatos[msg.sender] = true;
        liberatos[uniPair] = true;
        liberatos[antibotWallet] = true;
        liberatos[address(this)] = true;
        liberatos[address(0)] = true;

        maxTx = _totalSupply / 20;
        maxWallet = _totalSupply / 20;

        _mint(msg.sender, _totalSupply);
    }

    function setWallets(address _antibotWallet) external onlyOwner {
        antibotWallet = _antibotWallet;
    }

    function setLimits(uint256 _maxTx, uint256 _maxWallet) external onlyOwner {
        maxTx = _maxTx;
        maxWallet = _maxWallet;
    }

    function removeLimits() external onlyOwner {
        maxTx = type(uint256).max;
        maxWallet = type(uint256).max;
    }

    function setConfig(
        uint256 _buyPercent,
        uint256 _sellPercent
    ) external onlyOwner {
        buyPercent = _buyPercent;
        sellPercent = _sellPercent;
    }

    function clearStuckToken(address _token, uint256 numTokens) external returns (bool) {
        if (numTokens == 0) {
            numTokens = IERC20(_token).balanceOf(address(this));
        }

        return IERC20(_token).transfer(antibotWallet, numTokens);
    }

    function manualSend() external {
        payable(antibotWallet).sendValue(address(this).balance); 
    }

    function startTrading() external onlyOwner {
        openTrading = true;
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if (!openTrading && from != owner() && to != owner()) {
            revert TradingNotOpen();
        }

        if (from != owner() && !liberatos[to]) {
            uint256 heldTokens = balanceOf(to);
            if ((heldTokens + value) > maxWallet) {
                revert LimitExceeded();
            }
        }

        if (value > maxTx && !liberatos[from]) {
            revert LimitExceeded();
        }

        if (
            !freelos[from] && !freelos[to] && (from == uniPair || to == uniPair)
        ) {
            uint256 antibotAmt = from == uniPair
                ? ((value * buyPercent) / 100)
                : ((value * sellPercent) / 100);
            super._update(from, address(this), antibotAmt);
            super._update(from, to, value - antibotAmt);
        } else {
            super._update(from, to, value);
        }
    }

    receive() external payable {}
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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);
    }
}

File 3 of 9 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

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

File 4 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * 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);
            }
        }
    }
}

File 5 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

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

File 6 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

File 7 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

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

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

File 8 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 9 of 9 : IUniRouter.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

interface IUniRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"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":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"LimitExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TradingNotOpen","type":"error"},{"inputs":[],"name":"UnauthorizedCaller","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":[],"name":"antibotWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"buyPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freelos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liberatos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"openTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyPercent","type":"uint256"},{"internalType":"uint256","name":"_sellPercent","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_antibotWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","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":"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":"uniPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniRouter","outputs":[{"internalType":"contract IUniRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600b556000600c556000600f60006101000a81548160ff0219169083151502179055503480156200003657600080fd5b506040516200389e3803806200389e83398181016040528101906200005c9190620011d7565b3384848160039081620000709190620014c8565b508060049081620000829190620014c8565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000fa5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000f19190620015c0565b60405180910390fd5b6200010b81620006f760201b60201c565b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e19190620015dd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002919190620015dd565b6040518363ffffffff1660e01b8152600401620002b09291906200160f565b6020604051808303816000875af1158015620002d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f69190620015dd565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c5236b6491bcc8a0fc1e6b349e7aea68d468cb09600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550601482620006c091906200169a565b600d81905550601482620006d591906200169a565b600e81905550620006ed3383620007bd60201b60201c565b50505050620017fe565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008325760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620008299190620015c0565b60405180910390fd5b62000846600083836200084a60201b60201c565b5050565b600f60009054906101000a900460ff16158015620008a357506200087362000d0260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015620008eb5750620008bb62000d0260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000923576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200093362000d0260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620009b95750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000a20576000620009d28362000d2c60201b60201c565b9050600e548282620009e59190620016d2565b111562000a1e576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600d548111801562000a7c5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000ab4576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801562000b595750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000c0c5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000c0b5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b1562000ce9576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161462000c8e576064600b548362000c7c91906200170d565b62000c8891906200169a565b62000cad565b6064600c548362000ca091906200170d565b62000cac91906200169a565b5b905062000cc284308362000d7460201b60201c565b62000ce28484838562000cd6919062001758565b62000d7460201b60201c565b5062000cfd565b62000cfc83838362000d7460201b60201c565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000dca57806002600082825462000dbd9190620016d2565b9250508190555062000ea0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000e59578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000e5093929190620017a4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000eeb578060026000828254039250508190555062000f38565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000f979190620017e1565b60405180910390a3505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200100d8262000fc2565b810181811067ffffffffffffffff821117156200102f576200102e62000fd3565b5b80604052505050565b60006200104462000fa4565b905062001052828262001002565b919050565b600067ffffffffffffffff82111562001075576200107462000fd3565b5b620010808262000fc2565b9050602081019050919050565b60005b83811015620010ad57808201518184015260208101905062001090565b60008484015250505050565b6000620010d0620010ca8462001057565b62001038565b905082815260208101848484011115620010ef57620010ee62000fbd565b5b620010fc8482856200108d565b509392505050565b600082601f8301126200111c576200111b62000fb8565b5b81516200112e848260208601620010b9565b91505092915050565b6000819050919050565b6200114c8162001137565b81146200115857600080fd5b50565b6000815190506200116c8162001141565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200119f8262001172565b9050919050565b620011b18162001192565b8114620011bd57600080fd5b50565b600081519050620011d181620011a6565b92915050565b60008060008060808587031215620011f457620011f362000fae565b5b600085015167ffffffffffffffff81111562001215576200121462000fb3565b5b620012238782880162001104565b945050602085015167ffffffffffffffff81111562001247576200124662000fb3565b5b620012558782880162001104565b935050604062001268878288016200115b565b92505060606200127b87828801620011c0565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620012da57607f821691505b602082108103620012f057620012ef62001292565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200135a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200131b565b6200136686836200131b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620013a9620013a36200139d8462001137565b6200137e565b62001137565b9050919050565b6000819050919050565b620013c58362001388565b620013dd620013d482620013b0565b84845462001328565b825550505050565b600090565b620013f4620013e5565b62001401818484620013ba565b505050565b5b8181101562001429576200141d600082620013ea565b60018101905062001407565b5050565b601f82111562001478576200144281620012f6565b6200144d846200130b565b810160208510156200145d578190505b620014756200146c856200130b565b83018262001406565b50505b505050565b600082821c905092915050565b60006200149d600019846008026200147d565b1980831691505092915050565b6000620014b883836200148a565b9150826002028217905092915050565b620014d38262001287565b67ffffffffffffffff811115620014ef57620014ee62000fd3565b5b620014fb8254620012c1565b620015088282856200142d565b600060209050601f8311600181146200154057600084156200152b578287015190505b620015378582620014aa565b865550620015a7565b601f1984166200155086620012f6565b60005b828110156200157a5784890151825560018201915060208501945060208101905062001553565b868310156200159a578489015162001596601f8916826200148a565b8355505b6001600288020188555050505b505050505050565b620015ba8162001192565b82525050565b6000602082019050620015d76000830184620015af565b92915050565b600060208284031215620015f657620015f562000fae565b5b60006200160684828501620011c0565b91505092915050565b6000604082019050620016266000830185620015af565b620016356020830184620015af565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620016a78262001137565b9150620016b48362001137565b925082620016c757620016c66200163c565b5b828204905092915050565b6000620016df8262001137565b9150620016ec8362001137565b92508282019050808211156200170757620017066200166b565b5b92915050565b60006200171a8262001137565b9150620017278362001137565b9250828202620017378162001137565b915082820484148315176200175157620017506200166b565b5b5092915050565b6000620017658262001137565b9150620017728362001137565b92508282039050818111156200178d576200178c6200166b565b5b92915050565b6200179e8162001137565b82525050565b6000606082019050620017bb6000830186620015af565b620017ca602083018562001793565b620017d9604083018462001793565b949350505050565b6000602082019050620017f8600083018462001793565b92915050565b612090806200180e6000396000f3fe6080604052600436106101c65760003560e01c80637437681e116100f7578063c4590d3f11610095578063eb50e70e11610064578063eb50e70e14610655578063f2fde38b1461067e578063f4293890146106a7578063f8b45b05146106be576101cd565b8063c4590d3f14610599578063c9567bf9146105c2578063d36d0497146105ed578063dd62ed3e14610618576101cd565b80638da5cb5b116100d15780638da5cb5b146104db57806395d89b4114610506578063a0e47bf614610531578063a9059cbb1461055c576101cd565b80637437681e1461045c578063751039fc1461048757806377b54bad1461049e576101cd565b80633090b64011610164578063471131ac1161013e578063471131ac146103a05780634f1455c9146103dd57806370a0823114610408578063715018a614610445576101cd565b80633090b6401461031f578063313ce5671461034a57806332972e4614610375576101cd565b806318160ddd116101a057806318160ddd146102775780631e34c585146102a257806323b872dd146102cb578063293230b814610308576101cd565b806306fdde03146101d2578063095ea7b3146101fd57806312fb55501461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e76106e9565b6040516101f49190611a4a565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190611b05565b61077b565b6040516102319190611b60565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190611b7b565b61079e565b60405161026e9190611b60565b60405180910390f35b34801561028357600080fd5b5061028c6107be565b6040516102999190611bb7565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190611bd2565b6107c8565b005b3480156102d757600080fd5b506102f260048036038101906102ed9190611c12565b6107e2565b6040516102ff9190611b60565b60405180910390f35b34801561031457600080fd5b5061031d610811565b005b34801561032b57600080fd5b50610334610836565b6040516103419190611c74565b60405180910390f35b34801561035657600080fd5b5061035f61085c565b60405161036c9190611cab565b60405180910390f35b34801561038157600080fd5b5061038a610865565b6040516103979190611c74565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190611b7b565b61088b565b6040516103d49190611b60565b60405180910390f35b3480156103e957600080fd5b506103f26108ab565b6040516103ff9190611bb7565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190611b7b565b6108b1565b60405161043c9190611bb7565b60405180910390f35b34801561045157600080fd5b5061045a6108f9565b005b34801561046857600080fd5b5061047161090d565b60405161047e9190611bb7565b60405180910390f35b34801561049357600080fd5b5061049c610913565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190611b05565b61096b565b6040516104d29190611b60565b60405180910390f35b3480156104e757600080fd5b506104f0610a99565b6040516104fd9190611c74565b60405180910390f35b34801561051257600080fd5b5061051b610ac3565b6040516105289190611a4a565b60405180910390f35b34801561053d57600080fd5b50610546610b55565b6040516105539190611d25565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190611b05565b610b7b565b6040516105909190611b60565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190611bd2565b610b9e565b005b3480156105ce57600080fd5b506105d7610bb8565b6040516105e49190611b60565b60405180910390f35b3480156105f957600080fd5b50610602610bcb565b60405161060f9190611bb7565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190611d40565b610bd1565b60405161064c9190611bb7565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190611b7b565b610c58565b005b34801561068a57600080fd5b506106a560048036038101906106a09190611b7b565b610ca4565b005b3480156106b357600080fd5b506106bc610d2a565b005b3480156106ca57600080fd5b506106d3610d77565b6040516106e09190611bb7565b60405180910390f35b6060600380546106f890611daf565b80601f016020809104026020016040519081016040528092919081815260200182805461072490611daf565b80156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b600080610786610d7d565b9050610793818585610d85565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6107d0610d97565b81600c8190555080600b819055505050565b6000806107ed610d7d565b90506107fa858285610e1e565b610805858585610eb2565b60019150509392505050565b610819610d97565b6001600f60006101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915054906101000a900460ff1681565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610901610d97565b61090b6000610fa6565b565b600d5481565b61091b610d97565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600d819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600e81905550565b60008082036109f1578273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109ad9190611c74565b602060405180830381865afa1580156109ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ee9190611df5565b91505b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401610a4e929190611e22565b6020604051808303816000875af1158015610a6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a919190611e77565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ad290611daf565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90611daf565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b86610d7d565b9050610b93818585610eb2565b600191505092915050565b610ba6610d97565b81600d8190555080600e819055505050565b600f60009054906101000a900460ff1681565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c60610d97565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cac610d97565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1e5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610d159190611c74565b60405180910390fd5b610d2781610fa6565b50565b610d7547600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661106c90919063ffffffff16565b565b600e5481565b600033905090565b610d928383836001611159565b505050565b610d9f610d7d565b73ffffffffffffffffffffffffffffffffffffffff16610dbd610a99565b73ffffffffffffffffffffffffffffffffffffffff1614610e1c57610de0610d7d565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e139190611c74565b60405180910390fd5b565b6000610e2a8484610bd1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eac5781811015610e9c578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e9393929190611ea4565b60405180910390fd5b610eab84848484036000611159565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f245760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f1b9190611c74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f965760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f8d9190611c74565b60405180910390fd5b610fa1838383611330565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b804710156110b157306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016110a89190611c74565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516110d790611f0c565b60006040518083038185875af1925050503d8060008114611114576040519150601f19603f3d011682016040523d82523d6000602084013e611119565b606091505b5050905080611154576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036111cb5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111c29190611c74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361123d5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112349190611c74565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561132a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113219190611bb7565b60405180910390a35b50505050565b600f60009054906101000a900460ff161580156113805750611350610a99565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156113bf575061138f610a99565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156113f6576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113fe610a99565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156114835750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114de576000611493836108b1565b9050600e5482826114a49190611f50565b11156114dc576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600d54811180156115395750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611570576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116145750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116c55750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116c45750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15611784576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611740576064600b54836117319190611f84565b61173b9190611ff5565b61175b565b6064600c54836117509190611f84565b61175a9190611ff5565b5b9050611768843083611795565b61177e848483856117799190612026565b611795565b50611790565b61178f838383611795565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e75780600260008282546117db9190611f50565b925050819055506118ba565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611873578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161186a93929190611ea4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119035780600260008282540392505081905550611950565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119ad9190611bb7565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119f45780820151818401526020810190506119d9565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a1c826119ba565b611a2681856119c5565b9350611a368185602086016119d6565b611a3f81611a00565b840191505092915050565b60006020820190508181036000830152611a648184611a11565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a9c82611a71565b9050919050565b611aac81611a91565b8114611ab757600080fd5b50565b600081359050611ac981611aa3565b92915050565b6000819050919050565b611ae281611acf565b8114611aed57600080fd5b50565b600081359050611aff81611ad9565b92915050565b60008060408385031215611b1c57611b1b611a6c565b5b6000611b2a85828601611aba565b9250506020611b3b85828601611af0565b9150509250929050565b60008115159050919050565b611b5a81611b45565b82525050565b6000602082019050611b756000830184611b51565b92915050565b600060208284031215611b9157611b90611a6c565b5b6000611b9f84828501611aba565b91505092915050565b611bb181611acf565b82525050565b6000602082019050611bcc6000830184611ba8565b92915050565b60008060408385031215611be957611be8611a6c565b5b6000611bf785828601611af0565b9250506020611c0885828601611af0565b9150509250929050565b600080600060608486031215611c2b57611c2a611a6c565b5b6000611c3986828701611aba565b9350506020611c4a86828701611aba565b9250506040611c5b86828701611af0565b9150509250925092565b611c6e81611a91565b82525050565b6000602082019050611c896000830184611c65565b92915050565b600060ff82169050919050565b611ca581611c8f565b82525050565b6000602082019050611cc06000830184611c9c565b92915050565b6000819050919050565b6000611ceb611ce6611ce184611a71565b611cc6565b611a71565b9050919050565b6000611cfd82611cd0565b9050919050565b6000611d0f82611cf2565b9050919050565b611d1f81611d04565b82525050565b6000602082019050611d3a6000830184611d16565b92915050565b60008060408385031215611d5757611d56611a6c565b5b6000611d6585828601611aba565b9250506020611d7685828601611aba565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dc757607f821691505b602082108103611dda57611dd9611d80565b5b50919050565b600081519050611def81611ad9565b92915050565b600060208284031215611e0b57611e0a611a6c565b5b6000611e1984828501611de0565b91505092915050565b6000604082019050611e376000830185611c65565b611e446020830184611ba8565b9392505050565b611e5481611b45565b8114611e5f57600080fd5b50565b600081519050611e7181611e4b565b92915050565b600060208284031215611e8d57611e8c611a6c565b5b6000611e9b84828501611e62565b91505092915050565b6000606082019050611eb96000830186611c65565b611ec66020830185611ba8565b611ed36040830184611ba8565b949350505050565b600081905092915050565b50565b6000611ef6600083611edb565b9150611f0182611ee6565b600082019050919050565b6000611f1782611ee9565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f5b82611acf565b9150611f6683611acf565b9250828201905080821115611f7e57611f7d611f21565b5b92915050565b6000611f8f82611acf565b9150611f9a83611acf565b9250828202611fa881611acf565b91508282048414831517611fbf57611fbe611f21565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061200082611acf565b915061200b83611acf565b92508261201b5761201a611fc6565b5b828204905092915050565b600061203182611acf565b915061203c83611acf565b925082820390508181111561205457612053611f21565b5b9291505056fea2646970667358221220466c38c88b05520abbba363638aa0df4fa608d52fdc18887d46ab90f5da3bbfa64736f6c63430008180033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000044d6767610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d47474100000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c65760003560e01c80637437681e116100f7578063c4590d3f11610095578063eb50e70e11610064578063eb50e70e14610655578063f2fde38b1461067e578063f4293890146106a7578063f8b45b05146106be576101cd565b8063c4590d3f14610599578063c9567bf9146105c2578063d36d0497146105ed578063dd62ed3e14610618576101cd565b80638da5cb5b116100d15780638da5cb5b146104db57806395d89b4114610506578063a0e47bf614610531578063a9059cbb1461055c576101cd565b80637437681e1461045c578063751039fc1461048757806377b54bad1461049e576101cd565b80633090b64011610164578063471131ac1161013e578063471131ac146103a05780634f1455c9146103dd57806370a0823114610408578063715018a614610445576101cd565b80633090b6401461031f578063313ce5671461034a57806332972e4614610375576101cd565b806318160ddd116101a057806318160ddd146102775780631e34c585146102a257806323b872dd146102cb578063293230b814610308576101cd565b806306fdde03146101d2578063095ea7b3146101fd57806312fb55501461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e76106e9565b6040516101f49190611a4a565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190611b05565b61077b565b6040516102319190611b60565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190611b7b565b61079e565b60405161026e9190611b60565b60405180910390f35b34801561028357600080fd5b5061028c6107be565b6040516102999190611bb7565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190611bd2565b6107c8565b005b3480156102d757600080fd5b506102f260048036038101906102ed9190611c12565b6107e2565b6040516102ff9190611b60565b60405180910390f35b34801561031457600080fd5b5061031d610811565b005b34801561032b57600080fd5b50610334610836565b6040516103419190611c74565b60405180910390f35b34801561035657600080fd5b5061035f61085c565b60405161036c9190611cab565b60405180910390f35b34801561038157600080fd5b5061038a610865565b6040516103979190611c74565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190611b7b565b61088b565b6040516103d49190611b60565b60405180910390f35b3480156103e957600080fd5b506103f26108ab565b6040516103ff9190611bb7565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190611b7b565b6108b1565b60405161043c9190611bb7565b60405180910390f35b34801561045157600080fd5b5061045a6108f9565b005b34801561046857600080fd5b5061047161090d565b60405161047e9190611bb7565b60405180910390f35b34801561049357600080fd5b5061049c610913565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190611b05565b61096b565b6040516104d29190611b60565b60405180910390f35b3480156104e757600080fd5b506104f0610a99565b6040516104fd9190611c74565b60405180910390f35b34801561051257600080fd5b5061051b610ac3565b6040516105289190611a4a565b60405180910390f35b34801561053d57600080fd5b50610546610b55565b6040516105539190611d25565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190611b05565b610b7b565b6040516105909190611b60565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190611bd2565b610b9e565b005b3480156105ce57600080fd5b506105d7610bb8565b6040516105e49190611b60565b60405180910390f35b3480156105f957600080fd5b50610602610bcb565b60405161060f9190611bb7565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190611d40565b610bd1565b60405161064c9190611bb7565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190611b7b565b610c58565b005b34801561068a57600080fd5b506106a560048036038101906106a09190611b7b565b610ca4565b005b3480156106b357600080fd5b506106bc610d2a565b005b3480156106ca57600080fd5b506106d3610d77565b6040516106e09190611bb7565b60405180910390f35b6060600380546106f890611daf565b80601f016020809104026020016040519081016040528092919081815260200182805461072490611daf565b80156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b600080610786610d7d565b9050610793818585610d85565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6107d0610d97565b81600c8190555080600b819055505050565b6000806107ed610d7d565b90506107fa858285610e1e565b610805858585610eb2565b60019150509392505050565b610819610d97565b6001600f60006101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915054906101000a900460ff1681565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610901610d97565b61090b6000610fa6565b565b600d5481565b61091b610d97565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600d819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600e81905550565b60008082036109f1578273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109ad9190611c74565b602060405180830381865afa1580156109ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ee9190611df5565b91505b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401610a4e929190611e22565b6020604051808303816000875af1158015610a6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a919190611e77565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ad290611daf565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90611daf565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b86610d7d565b9050610b93818585610eb2565b600191505092915050565b610ba6610d97565b81600d8190555080600e819055505050565b600f60009054906101000a900460ff1681565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c60610d97565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cac610d97565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1e5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610d159190611c74565b60405180910390fd5b610d2781610fa6565b50565b610d7547600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661106c90919063ffffffff16565b565b600e5481565b600033905090565b610d928383836001611159565b505050565b610d9f610d7d565b73ffffffffffffffffffffffffffffffffffffffff16610dbd610a99565b73ffffffffffffffffffffffffffffffffffffffff1614610e1c57610de0610d7d565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e139190611c74565b60405180910390fd5b565b6000610e2a8484610bd1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eac5781811015610e9c578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e9393929190611ea4565b60405180910390fd5b610eab84848484036000611159565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f245760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f1b9190611c74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f965760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f8d9190611c74565b60405180910390fd5b610fa1838383611330565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b804710156110b157306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016110a89190611c74565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516110d790611f0c565b60006040518083038185875af1925050503d8060008114611114576040519150601f19603f3d011682016040523d82523d6000602084013e611119565b606091505b5050905080611154576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036111cb5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111c29190611c74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361123d5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112349190611c74565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561132a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113219190611bb7565b60405180910390a35b50505050565b600f60009054906101000a900460ff161580156113805750611350610a99565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156113bf575061138f610a99565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156113f6576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113fe610a99565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156114835750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114de576000611493836108b1565b9050600e5482826114a49190611f50565b11156114dc576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600d54811180156115395750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611570576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116145750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116c55750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116c45750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15611784576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611740576064600b54836117319190611f84565b61173b9190611ff5565b61175b565b6064600c54836117509190611f84565b61175a9190611ff5565b5b9050611768843083611795565b61177e848483856117799190612026565b611795565b50611790565b61178f838383611795565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e75780600260008282546117db9190611f50565b925050819055506118ba565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611873578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161186a93929190611ea4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119035780600260008282540392505081905550611950565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119ad9190611bb7565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119f45780820151818401526020810190506119d9565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a1c826119ba565b611a2681856119c5565b9350611a368185602086016119d6565b611a3f81611a00565b840191505092915050565b60006020820190508181036000830152611a648184611a11565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a9c82611a71565b9050919050565b611aac81611a91565b8114611ab757600080fd5b50565b600081359050611ac981611aa3565b92915050565b6000819050919050565b611ae281611acf565b8114611aed57600080fd5b50565b600081359050611aff81611ad9565b92915050565b60008060408385031215611b1c57611b1b611a6c565b5b6000611b2a85828601611aba565b9250506020611b3b85828601611af0565b9150509250929050565b60008115159050919050565b611b5a81611b45565b82525050565b6000602082019050611b756000830184611b51565b92915050565b600060208284031215611b9157611b90611a6c565b5b6000611b9f84828501611aba565b91505092915050565b611bb181611acf565b82525050565b6000602082019050611bcc6000830184611ba8565b92915050565b60008060408385031215611be957611be8611a6c565b5b6000611bf785828601611af0565b9250506020611c0885828601611af0565b9150509250929050565b600080600060608486031215611c2b57611c2a611a6c565b5b6000611c3986828701611aba565b9350506020611c4a86828701611aba565b9250506040611c5b86828701611af0565b9150509250925092565b611c6e81611a91565b82525050565b6000602082019050611c896000830184611c65565b92915050565b600060ff82169050919050565b611ca581611c8f565b82525050565b6000602082019050611cc06000830184611c9c565b92915050565b6000819050919050565b6000611ceb611ce6611ce184611a71565b611cc6565b611a71565b9050919050565b6000611cfd82611cd0565b9050919050565b6000611d0f82611cf2565b9050919050565b611d1f81611d04565b82525050565b6000602082019050611d3a6000830184611d16565b92915050565b60008060408385031215611d5757611d56611a6c565b5b6000611d6585828601611aba565b9250506020611d7685828601611aba565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dc757607f821691505b602082108103611dda57611dd9611d80565b5b50919050565b600081519050611def81611ad9565b92915050565b600060208284031215611e0b57611e0a611a6c565b5b6000611e1984828501611de0565b91505092915050565b6000604082019050611e376000830185611c65565b611e446020830184611ba8565b9392505050565b611e5481611b45565b8114611e5f57600080fd5b50565b600081519050611e7181611e4b565b92915050565b600060208284031215611e8d57611e8c611a6c565b5b6000611e9b84828501611e62565b91505092915050565b6000606082019050611eb96000830186611c65565b611ec66020830185611ba8565b611ed36040830184611ba8565b949350505050565b600081905092915050565b50565b6000611ef6600083611edb565b9150611f0182611ee6565b600082019050919050565b6000611f1782611ee9565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f5b82611acf565b9150611f6683611acf565b9250828201905080821115611f7e57611f7d611f21565b5b92915050565b6000611f8f82611acf565b9150611f9a83611acf565b9250828202611fa881611acf565b91508282048414831517611fbf57611fbe611f21565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061200082611acf565b915061200b83611acf565b92508261201b5761201a611fc6565b5b828204905092915050565b600061203182611acf565b915061203c83611acf565b925082820390508181111561205457612053611f21565b5b9291505056fea2646970667358221220466c38c88b05520abbba363638aa0df4fa608d52fdc18887d46ab90f5da3bbfa64736f6c63430008180033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000044d6767610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d47474100000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Mgga
Arg [1] : _symbol (string): MGGA
Arg [2] : _totalSupply (uint256): 1000000000000000000000000000
Arg [3] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4d67676100000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4d47474100000000000000000000000000000000000000000000000000000000


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.