ETH Price: $3,417.66 (-1.69%)
Gas: 7 Gwei

Token

SELL PEPE BUY DUCKER (DUCKER)
 

Overview

Max Total Supply

100,000,000 DUCKER

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000726406945015852 DUCKER

Value
$0.00
0xd2ad225b31e3a15057e135e3d53d9af227645afa
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:
Token

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 999999 runs

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

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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

// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * 'onlyOwner' functions. 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 {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

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

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if 'decimals' equals '2', a balance of '505' tokens should
     * be displayed to a user as '5.05' ('505 / 10 ** 2').
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys 'amount' tokens from 'account', reducing the
     * total supply.
     *
     * Emits a {Transfer} event with 'to' set to the zero address.
     *
     * Requirements:
     *
     * - 'account' cannot be the zero address.
     * - 'account' must have at least 'amount' tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys 'amount' tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys 'amount' tokens from 'account', deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ''accounts'''s tokens of at least
     * 'amount'.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

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

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountETH);

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

// File @uniswap/v2-core/contracts/interfaces/[email protected]

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// File contracts/Token.sol

contract Token is ERC20Burnable, Ownable {
    // ADDRESSESS -------------------------------------------------------------------------------------------
    address public lpPair; // Liquidity token address
    address[] public platformFeeAddresses; // service fee wallet address
    address public treasuryAddress; // owner fee wallet address

    // VALUES -----------------------------------------------------------------------------------------------
    uint256 public swapThreshold; // swap tokens limit
    uint256 public constant TAX_DIVISOR = 10000; // divisor | 0.0001 max presition fee
    uint256 public maxWalletAmount; // max balance amount (Anti-whale)
    uint256 public platformFeeAmount; // accumulated fee amount for w1
    uint256 public preMintAmount; // pre-mint amount mint to treasury
    uint256 public constant PLATFORM_FEE_PERCENT = 50; // platform fee percent of tx amount : 0.5%
    uint256[] public platformFeePercents;
    uint256 public autoLiquidityPercent; // amm percent of fee
    uint256 public maxTransactionAmount;
    uint256 public buyBackThreshold; // swap tokens limit
    uint256 public buyBackPercent;
    uint256 public maxBuyLimit;
    uint256 public initialDelayTime; // to store the block in which the trading was enabled
    uint256 public totalDelayTime;
    uint256 public maxGasPriceLimit; // for store max gas price value
    uint256 public timeDelayBetweenTx; // time wait for txs

    // BOOLEANS ---------------------------------------------------------------------------------------------
    bool public inSwap; // used for dont take fee on swaps
    bool public gasLimitActive;
    bool public transferDelayEnabled; // for enable / disable delay between transactions

    // MAPPINGS
    mapping(address => bool) public _isExcludedFromFee; // list of users excluded from fee
    mapping(address => bool) public _isExcludedFromMaxTx; // list of users excluded from fee
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => uint256) public _holderLastTransferTimestamp; // to hold last Transfers temporarily  // todo remove

    // STRUCTS ----------------------------------------------------------------------------------------------
    struct Fees {
        uint16 buyFee; // fee when people BUY tokens
        uint16 sellFee; // fee when people SELL tokens
        uint16 transferFee; // fee when people TRANSFER tokens
    }

    // OBJECTS ----------------------------------------------------------------------------------------------
    IUniswapV2Router02 public router;
    Fees public _feesRates; // fees rates

    // MODIFIERS --------------------------------------------------------------------------------------------
    modifier swapping() {
        inSwap = true;
        _;
        inSwap = false;
    }

    // CONSTRUCTOR ------------------------------------------------------------------------------------------
    constructor(
        string memory tokenName,
        string memory tokenSymbol,
        uint256 supply,
        uint256 preMint,
        address[] memory addresses, // routerAddress, treasuryAddress,
        uint16[] memory percents // burnPercent, buyFee, sellFee, maxPerWallet, maxPerTx
    ) ERC20(tokenName, tokenSymbol) {
        require(addresses.length == 2, "Invalid argument");
        require(percents.length == 5, "Invalid argument");
        require(percents[1] <= 9900 && percents[2] <= 9900, "Too hight tax");

        // super.transferOwnership(tokenOwner);
        treasuryAddress = addresses[1];

        uint256 burnAmount = (supply * percents[0]) / TAX_DIVISOR;
        _mint(msg.sender, supply - preMint - burnAmount);
        if (preMint > 0) _mint(treasuryAddress, preMint);
        if (burnAmount > 0) _mint(address(0xdead), burnAmount);

        maxWalletAmount = percents[3] == 0
            ? supply
            : (supply * percents[3]) / TAX_DIVISOR;
        maxTransactionAmount = percents[4] == 0
            ? supply
            : (supply * percents[4]) / TAX_DIVISOR;

        platformFeeAddresses.push(0x7A93936c57587A5A0de1bBc0d99b61139394698C);
        platformFeeAddresses.push(0x18bb1D7E5DD7dd0017a828dABF16472d9fD1c6aE);

        platformFeePercents.push(8000);
        platformFeePercents.push(2000);

        // default fees
        _feesRates = Fees({
            buyFee: percents[1],
            sellFee: percents[2],
            transferFee: 0
        });

        router = IUniswapV2Router02(addresses[0]);

        // Create a uniswap pair for this new token
        lpPair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );
        automatedMarketMakerPairs[lpPair] = true;

        // exclude from fees
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[treasuryAddress] = true;
        _isExcludedFromFee[platformFeeAddresses[0]] = true;
        _isExcludedFromFee[platformFeeAddresses[1]] = true;
        _isExcludedFromFee[address(this)] = true;

        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[treasuryAddress] = true;
        _isExcludedFromMaxTx[platformFeeAddresses[0]] = true;
        _isExcludedFromMaxTx[platformFeeAddresses[1]] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromMaxTx[address(router)] = true;
        _isExcludedFromMaxTx[lpPair] = true;

        // contract do swap when have 1k tokens balance
        swapThreshold = 1000 ether;

        autoLiquidityPercent = 8000; //80%
        buyBackPercent = 0; //0%

        buyBackThreshold = 1 ether; // buyback 1 eth

        // do approve to router from owner and contract
        _approve(owner(), address(router), type(uint256).max);
        _approve(address(this), address(router), type(uint256).max);

        maxBuyLimit = supply;
        gasLimitActive = false;
        // used for store max gas price limit value
        transferDelayEnabled = false;
        initialDelayTime = block.timestamp;
        // used enable or disable max gas price limit
        maxGasPriceLimit = 15000000000;

        // enable / disable transfer to wallets when contract do swap tokens for busd
        timeDelayBetweenTx = 5;
        totalDelayTime = 3600;
    }

    /**
     * @notice This function is used to Update the Max Gas Price Limit for transactions
     * @dev This function is used inside the tokenTransfer during the first hour of the contract
     * @param newValue uint256 The new Max Gas Price Limit
     */
    function updateMaxGasPriceLimit(uint256 newValue) public onlyOwner {
        require(
            newValue >= 10000000000,
            "max gas price cant be lower than 10 gWei"
        );
        maxGasPriceLimit = newValue;
    }

    /**
     * @notice This function is updating the value of the variable transferDelayEnabled
     * @param newVal New value of the variable
     */
    function updateTransferDelayEnabled(bool newVal) external onlyOwner {
        transferDelayEnabled = newVal;
    }

    /**
     * @dev Update the max amount of tokens that can be buyed in one transaction
     * @param percent New max buy limit in wei
     */
    function updateMaxBuyLimit(uint256 percent) public onlyOwner {
        maxBuyLimit = (totalSupply() * percent) / TAX_DIVISOR;
    }

    /**
     * @dev Update the max gas limit that can be used in the transaction
     * @param newVal New gas limit amount
     */
    function updateGasLimitActive(bool newVal) public onlyOwner {
        gasLimitActive = newVal;
    }

    // To receive BNB from dexRouter when swapping
    receive() external payable {}

    // Set fees
    function setTaxes(
        uint16 buyFee,
        uint16 sellFee,
        uint16 transferFee
    ) external virtual onlyOwner {
        require(buyFee <= 9900 && sellFee <= 9900, "Too hight tax");
        _feesRates.buyFee = buyFee;
        _feesRates.sellFee = sellFee;
        _feesRates.transferFee = transferFee;
    }

    // function for set buyBackThreshold
    function setBuyBackThreshold(uint256 newThreshold) external onlyOwner {
        buyBackThreshold = newThreshold;
    }

    // function for set buyBackPercent
    function setBuyBackPercent(uint16 newPercent) external onlyOwner {
        require(
            newPercent + autoLiquidityPercent <= TAX_DIVISOR,
            "Percent cant be higher than 100%"
        );
        buyBackPercent = newPercent;
    }

    // function for set autoLiquidityPercent
    function setAutoLiquidityPercent(uint16 newPercent) external onlyOwner {
        require(
            newPercent + buyBackPercent <= TAX_DIVISOR,
            "Percent cant be higher than 100%"
        );
        autoLiquidityPercent = newPercent;
    }

    // this function will be called every buy, sell or transfer
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        _beforeTransferCheck(from, to, amount);

        if (inSwap) {
            super._transfer(from, to, amount);
            return;
        }

        if (contractMustSwap(from, to)) {
            doSwap();
        }

        _finalizeTransfer(from, to, amount);
    }

    function doSwap() internal swapping {
        // Get contract tokens balance
        uint256 numTokensToSwap = balanceOf(address(this));

        // swap to team
        if (platformFeeAmount > 0) {
            uint256 _amount = platformFeeAmount;
            numTokensToSwap -= platformFeeAmount;
            platformFeeAmount = 0;
            uint256 _remain = _amount;
            for (uint256 i = platformFeeAddresses.length; i > 0; i--) {
                uint256 _fee = i == 1
                    ? _remain
                    : (_amount * platformFeePercents[i - 1]) / TAX_DIVISOR;
                swapTokensForNative(_fee, platformFeeAddresses[i - 1]);
                if (i > 1) _remain -= _fee;
            }
        }

        if (numTokensToSwap > 0) {
            // swap to contract
            if (buyBackPercent > 0) {
                swapTokensForNative(
                    (numTokensToSwap * buyBackPercent) / TAX_DIVISOR,
                    address(this)
                );
            }

            // inject liquidity
            if (autoLiquidityPercent > 0) {
                autoLiquidity(
                    (numTokensToSwap * autoLiquidityPercent) / TAX_DIVISOR
                );
            }

            // treasury fee
            uint256 treasuryAmount = numTokensToSwap -
                (numTokensToSwap * (autoLiquidityPercent + buyBackPercent)) /
                TAX_DIVISOR;
            if (treasuryAmount > 0) {
                swapTokensForNative(treasuryAmount, treasuryAddress);
            }

            // buy back
            if (buyBackThreshold > 0) {
                uint256 ethBalance = address(this).balance;

                if (ethBalance > buyBackThreshold) {
                    swapNativeForTokens(ethBalance, address(0xdead));
                }
            }
        }
    }

    function swapNativeForTokens(uint256 nativeAmount, address to) private {
        address[] memory path = new address[](2);
        path[0] = router.WETH();
        path[1] = address(this);
        uint256 deadline = block.timestamp;
        // uint256 amountOutIn = router.getAmountsOut(
        //     nativeAmount,
        //     path
        // )[1];
        router.swapExactETHForTokens{value: nativeAmount}(
            0,
            path,
            to,
            deadline
        );
    }

    function swapTokensForNative(uint256 tokenAmount, address to) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        uint256 deadline = block.timestamp;
        _approve(address(this), address(router), tokenAmount);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            to,
            deadline
        );
    }

    function _finalizeTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        // by default receiver receive 100% of sended amount
        uint256 amountReceived = amount;

        // If takeFee is false there is 0% fee
        bool takeFee = true;
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }

        // check if we need take fee or not
        if (takeFee) {
            // if we need take fee
            // calc how much we need take
            (uint256 feeAmount1, uint256 feeAmount2) = calcBuySellTransferFee(
                from,
                to,
                amount
            );

            if (feeAmount1 + feeAmount2 > 0) {
                // we substract fee amount from recipient amount
                amountReceived = amount - feeAmount1 - feeAmount2;
                if (feeAmount2 > 0) platformFeeAmount += feeAmount2;

                // and transfer fee to contract
                super._transfer(from, address(this), feeAmount1 + feeAmount2);
            }
        }

        // finally send remaining tokens to recipient
        super._transfer(from, to, amountReceived);
    }

    function calcBuySellTransferFee(
        address from,
        address to,
        uint256 amount
    ) internal view virtual returns (uint256, uint256) {
        // by default we take zero fee
        uint256 totalFeePercent = 0;
        uint256 feeAmount1 = 0;
        uint256 feeAmount2 = 0;
        bool isTransfer = false;

        // BUY -> FROM == LP ADDRESS
        if (automatedMarketMakerPairs[from]) {
            totalFeePercent += _feesRates.buyFee;
        }
        // SELL -> TO == LP ADDRESS
        else if (automatedMarketMakerPairs[to]) {
            totalFeePercent += _feesRates.sellFee;
        }
        // TRANSFER
        else {
            totalFeePercent += _feesRates.transferFee;
            isTransfer = true;
        }

        // CALC FEES AMOUT
        if (totalFeePercent > 0) {
            feeAmount1 = (amount * totalFeePercent) / TAX_DIVISOR;
        }

        if (!isTransfer) {
            feeAmount2 = (amount * PLATFORM_FEE_PERCENT) / TAX_DIVISOR;
        }

        return (feeAmount1, feeAmount2);
    }

    function autoLiquidity(uint256 tokenAmount) public {
        // split the contract balance into halves
        uint256 half = tokenAmount / 2;

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        swapTokensForNative(half, address(this));

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance - initialBalance;

        // add liquidity to uniswap
        addLiquidity(half, newBalance);
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        uint256 deadline = block.timestamp;
        _approve(address(this), address(router), type(uint256).max);
        router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this), // send lp tokens to owner
            deadline
        );
    }

    function _beforeTransferCheck(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(
            from != address(0),
            "ERC20: transfer from the ZERO_ADDRESS address"
        );
        require(
            to != address(0),
            "ERC20: transfer to the ZERO_ADDRESS address"
        );
        require(
            amount > 0,
            "Transfer amount must be greater than ZERO_ADDRESS"
        );

        if (
            transferDelayEnabled &&
            block.timestamp < (initialDelayTime + totalDelayTime)
        ) {
            // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
            if (
                from != owner() &&
                to != address(router) &&
                to != address(lpPair) &&
                to != address(this)
            ) {
                // in the first one hour, a maximum of XX BUSD purchase is adjustable (TAX_DIVISOR BUSD is the default value)
                if (maxBuyLimit > 0) {
                    require(amount <= maxBuyLimit, "Max Buy Limit.");
                }

                // only use to prevent sniper buys in the first blocks.
                if (gasLimitActive) {
                    require(
                        tx.gasprice <= maxGasPriceLimit,
                        "Gas price exceeds limit."
                    );
                }

                // delay between tx
                require(
                    _holderLastTransferTimestamp[msg.sender] <= block.timestamp,
                    "_transfer:: Transfer Delay enabled."
                );
                _holderLastTransferTimestamp[msg.sender] =
                    block.timestamp +
                    timeDelayBetweenTx;
            }
        }

        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead) &&
            to != address(this) &&
            !inSwap
        ) {
            // BUY -> FROM == LP ADDRESS
            if (automatedMarketMakerPairs[from]) {
                if (!_isExcludedFromMaxTx[to]) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "Max wallet exceeded"
                    );
                }
            }
            // SELL -> TO == LP ADDRESS
            else if (automatedMarketMakerPairs[to]) {
                if (!_isExcludedFromMaxTx[to]) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                }
            }
            // TRANSFER
            else {
                if (!_isExcludedFromMaxTx[to]) {
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "Max wallet exceeded"
                    );
                }
            }
        }
    }

    function contractMustSwap(
        address from,
        address to
    ) internal view virtual returns (bool) {
        uint256 contractTokenBalance = balanceOf(address(this));
        return
            contractTokenBalance >= swapThreshold &&
            !inSwap &&
            from != lpPair &&
            balanceOf(lpPair) > 0 &&
            !_isExcludedFromFee[to] &&
            !_isExcludedFromFee[from];
    }

    function isExcludedFromFee(
        address account
    ) public view virtual returns (bool) {
        return _isExcludedFromFee[account];
    }

    function excludeFromFee(
        address account,
        bool val
    ) public virtual onlyOwner {
        _isExcludedFromFee[account] = val;
    }

    function isExcludedFromMaxTx(
        address account
    ) public view virtual returns (bool) {
        return _isExcludedFromMaxTx[account];
    }

    function excludeFromMaxTx(
        address account,
        bool val
    ) public virtual onlyOwner {
        _isExcludedFromMaxTx[account] = val;
    }

    function setSwapThreshold(uint256 value) public virtual onlyOwner {
        swapThreshold = value;
    }

    function setMaxWalletAmount(uint256 percent) public virtual onlyOwner {
        maxWalletAmount = (totalSupply() * percent) / TAX_DIVISOR;
    }

    function setMaxTransactionAmount(uint256 percent) public virtual onlyOwner {
        maxTransactionAmount = (totalSupply() * percent) / TAX_DIVISOR;
    }

    function renounceOwnership() public virtual override onlyOwner {
        require(
            _feesRates.buyFee < 4500 && _feesRates.sellFee < 4500,
            "Too hight tax, can't renounce ownership."
        );
        _transferOwnership(address(0));
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"preMint","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint16[]","name":"percents","type":"uint16[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PLATFORM_FEE_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAX_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feesRates","outputs":[{"internalType":"uint16","name":"buyFee","type":"uint16"},{"internalType":"uint16","name":"sellFee","type":"uint16"},{"internalType":"uint16","name":"transferFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_holderLastTransferTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"autoLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoLiquidityPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBackPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBackThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"val","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"val","type":"bool"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasLimitActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialDelayTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGasPriceLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"platformFeeAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"platformFeeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"platformFeePercents","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"newPercent","type":"uint16"}],"name":"setAutoLiquidityPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newPercent","type":"uint16"}],"name":"setBuyBackPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"setBuyBackThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"buyFee","type":"uint16"},{"internalType":"uint16","name":"sellFee","type":"uint16"},{"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeDelayBetweenTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDelayTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"newVal","type":"bool"}],"name":"updateGasLimitActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"updateMaxBuyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateMaxGasPriceLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newVal","type":"bool"}],"name":"updateTransferDelayEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040516200454138038062004541833981016040819052620000349162000dea565b8585600362000044838262000f43565b50600462000053828262000f43565b505050620000706200006a6200099b60201b60201c565b6200099f565b8151600214620000ba5760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a5908185c99dd5b595b9d60821b60448201526064015b60405180910390fd5b8051600514620001005760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a5908185c99dd5b595b9d60821b6044820152606401620000b1565b6126ac816001815181106200011957620001196200100f565b602002602001015161ffff16111580156200015757506126ac816002815181106200014857620001486200100f565b602002602001015161ffff1611155b620001955760405162461bcd60e51b815260206004820152600d60248201526c0a8dede40d0d2ced0e840e8c2f609b1b6044820152606401620000b1565b81600181518110620001ab57620001ab6200100f565b6020026020010151600860006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600061271082600081518110620001f457620001f46200100f565b602002602001015161ffff16866200020d91906200103b565b6200021991906200105b565b90506200023f33826200022d87896200107e565b6200023991906200107e565b620009f1565b83156200025e576008546200025e906001600160a01b031685620009f1565b801562000273576200027361dead82620009f1565b816003815181106200028957620002896200100f565b602002602001015161ffff16600014620002e15761271082600381518110620002b657620002b66200100f565b602002602001015161ffff1686620002cf91906200103b565b620002db91906200105b565b620002e3565b845b600a55815182906004908110620002fe57620002fe6200100f565b602002602001015161ffff166000146200035657612710826004815181106200032b576200032b6200100f565b602002602001015161ffff16866200034491906200103b565b6200035091906200105b565b62000358565b845b600f5560078054600181810183557fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68891820180546001600160a01b0319908116737a93936c57587a5a0de1bbc0d99b61139394698c1790915583548083019094559290910180549092167318bb1d7e5dd7dd0017a828dabf16472d9fd1c6ae17909155600d805480830182556000829052611f407fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb59182015581548084019092556107d0910155604080516060810190915283519091829185919081106200044457620004446200100f565b602002602001015161ffff168152602001836002815181106200046b576200046b6200100f565b60209081029190910181015161ffff908116835260009282018390528351601d80549386015160409096015183166401000000000261ffff60201b19968416620100000263ffffffff1990951692909316919091179290921793909316929092179091558351849190620004e357620004e36200100f565b602090810291909101810151601c80546001600160a01b0319166001600160a01b0390921691821790556040805163c45a015560e01b81529051919263c45a0155926004808401938290030181865afa15801562000545573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200056b919062001094565b6001600160a01b031663c9c6539630601c60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620005ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005f4919062001094565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000642573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000668919062001094565b600680546001600160a01b0319166001600160a01b039290921691821790556000908152601a60205260408120805460ff1916600190811790915590601890620006ba6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790556008549091168152601892839052908120805490931660019081179093556007805482906200071b576200071b6200100f565b6000918252602080832091909101546001600160a01b031683528201929092526040018120805460ff191692151592909217909155600780546001926018929091849081106200076f576200076f6200100f565b60009182526020808320909101546001600160a01b031683528281019390935260409182018120805494151560ff199586161790553081526018909252812080549092166001908117909255601990620007d16005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790556008549091168152601992839052908120805490931660019081179093556007805482906200083257620008326200100f565b6000918252602080832091909101546001600160a01b031683528201929092526040018120805460ff191692151592909217909155600780546001926019929091849081106200088657620008866200100f565b60009182526020808320909101546001600160a01b0390811684528382019490945260409283018220805495151560ff1996871617905530825260199052818120805485166001908117909155601c5484168252828220805486168217905560065490931681529081208054909316909117909155683635c9adc5dea00000600955611f40600e55601155670de0b6b3a764000060105562000949620009346005546001600160a01b031690565b601c546001600160a01b031660001962000ab4565b601c54620009659030906001600160a01b031660001962000ab4565b50505060129190915550506017805462ffff0019169055504260135564037e11d6006015556005601655610e10601455620010cf565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821662000a495760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000b1565b806002600082825462000a5d9190620010b9565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03831662000b185760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620000b1565b6001600160a01b03821662000b7b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620000b1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171562000c225762000c2262000be1565b604052919050565b600082601f83011262000c3c57600080fd5b81516001600160401b0381111562000c585762000c5862000be1565b602062000c6e601f8301601f1916820162000bf7565b828152858284870101111562000c8357600080fd5b60005b8381101562000ca357858101830151828201840152820162000c86565b506000928101909101919091529392505050565b60006001600160401b0382111562000cd35762000cd362000be1565b5060051b60200190565b80516001600160a01b038116811462000cf557600080fd5b919050565b600082601f83011262000d0c57600080fd5b8151602062000d2562000d1f8362000cb7565b62000bf7565b82815260059290921b8401810191818101908684111562000d4557600080fd5b8286015b8481101562000d6b5762000d5d8162000cdd565b835291830191830162000d49565b509695505050505050565b600082601f83011262000d8857600080fd5b8151602062000d9b62000d1f8362000cb7565b82815260059290921b8401810191818101908684111562000dbb57600080fd5b8286015b8481101562000d6b57805161ffff8116811462000ddc5760008081fd5b835291830191830162000dbf565b60008060008060008060c0878903121562000e0457600080fd5b86516001600160401b038082111562000e1c57600080fd5b62000e2a8a838b0162000c2a565b9750602089015191508082111562000e4157600080fd5b62000e4f8a838b0162000c2a565b96506040890151955060608901519450608089015191508082111562000e7457600080fd5b62000e828a838b0162000cfa565b935060a089015191508082111562000e9957600080fd5b5062000ea889828a0162000d76565b9150509295509295509295565b600181811c9082168062000eca57607f821691505b60208210810362000eeb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000bdc57600081815260208120601f850160051c8101602086101562000f1a5750805b601f850160051c820191505b8181101562000f3b5782815560010162000f26565b505050505050565b81516001600160401b0381111562000f5f5762000f5f62000be1565b62000f778162000f70845462000eb5565b8462000ef1565b602080601f83116001811462000faf576000841562000f965750858301515b600019600386901b1c1916600185901b17855562000f3b565b600085815260208120601f198616915b8281101562000fe05788860151825594840194600190910190840162000fbf565b508582101562000fff5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762001055576200105562001025565b92915050565b6000826200107957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111562001055576200105562001025565b600060208284031215620010a757600080fd5b620010b28262000cdd565b9392505050565b8082018082111562001055576200105562001025565b61346280620010df6000396000f3fe60806040526004361061039b5760003560e01c8063768dc710116101dc578063c6aca36b11610102578063deb5896e116100a0578063f2fde38b1161006f578063f2fde38b14610b6b578063f311732214610b8b578063f887ea4014610bab578063f901796614610bd857600080fd5b8063deb5896e14610aff578063df8408fe14610b15578063edf731c514610b35578063efac458514610b4b57600080fd5b8063cd5f101d116100dc578063cd5f101d14610a45578063d4c989d314610a72578063d830678614610a92578063dd62ed3e14610aac57600080fd5b8063c6aca36b146109ef578063c876d0b914610a0f578063c8c8ebe414610a2f57600080fd5b8063a2065e711161017a578063aa4bde2811610149578063aa4bde2814610966578063b62496f51461097c578063bd74c046146109ac578063c5f956af146109c257600080fd5b8063a2065e71146108f0578063a335d4ff14610910578063a457c2d714610926578063a9059cbb1461094657600080fd5b80638d0cb35a116101b65780638d0cb35a146108705780638da5cb5b1461089057806395d89b41146108bb5780639d0014b1146108d057600080fd5b8063768dc7101461080057806379cc6790146108305780637dee32901461085057600080fd5b8063313ce567116102c15780635342acb41161025f5780636f15d9751161022e5780636f15d9751461077257806370a0823114610788578063715018a6146107cb578063738c6c09146107e057600080fd5b80635342acb4146106bb578063560d52d414610701578063658c27a9146107165780636aa5b37f1461075c57600080fd5b80633d90fff91161029b5780633d90fff91461061d57806342966c6814610633578063452ed4f1146106535780634a569e94146106a557600080fd5b8063313ce567146105c157806332cde664146105dd57806339509351146105fd57600080fd5b8063148829f5116103395780631c06a7e1116103085780631c06a7e11461050b5780631e293c101461056157806323b872dd1461058157806327a14fc2146105a157600080fd5b8063148829f5146104aa5780631630e97f146104c057806318160ddd146104e05780631b11c874146104f557600080fd5b8063094d776f11610375578063094d776f14610432578063095ea7b314610448578063123e6cd81461046857806313fa254a1461048a57600080fd5b80630445b667146103a757806306fdde03146103d057806307866291146103f257600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103bd60095481565b6040519081526020015b60405180910390f35b3480156103dc57600080fd5b506103e5610bf7565b6040516103c79190612e56565b3480156103fe57600080fd5b5061042261040d366004612ee4565b60196020526000908152604090205460ff1681565b60405190151581526020016103c7565b34801561043e57600080fd5b506103bd60145481565b34801561045457600080fd5b50610422610463366004612f08565b610c89565b34801561047457600080fd5b50610488610483366004612f4b565b610ca3565b005b34801561049657600080fd5b506103bd6104a5366004612f66565b610d36565b3480156104b657600080fd5b506103bd600c5481565b3480156104cc57600080fd5b506104886104db366004612f66565b610d57565b3480156104ec57600080fd5b506002546103bd565b34801561050157600080fd5b506103bd60155481565b34801561051757600080fd5b50601d5461053c9061ffff808216916201000081048216916401000000009091041683565b6040805161ffff948516815292841660208401529216918101919091526060016103c7565b34801561056d57600080fd5b5061048861057c366004612f66565b610df9565b34801561058d57600080fd5b5061042261059c366004612f7f565b610e28565b3480156105ad57600080fd5b506104886105bc366004612f66565b610e4c565b3480156105cd57600080fd5b50604051601281526020016103c7565b3480156105e957600080fd5b506104886105f8366004612fc0565b610e7b565b34801561060957600080fd5b50610422610618366004612f08565b610f78565b34801561062957600080fd5b506103bd60165481565b34801561063f57600080fd5b5061048861064e366004612f66565b610fc4565b34801561065f57600080fd5b506006546106809073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103c7565b3480156106b157600080fd5b506103bd60115481565b3480156106c757600080fd5b506104226106d6366004612ee4565b73ffffffffffffffffffffffffffffffffffffffff1660009081526018602052604090205460ff1690565b34801561070d57600080fd5b506103bd603281565b34801561072257600080fd5b50610422610731366004612ee4565b73ffffffffffffffffffffffffffffffffffffffff1660009081526019602052604090205460ff1690565b34801561076857600080fd5b506103bd60125481565b34801561077e57600080fd5b506103bd60105481565b34801561079457600080fd5b506103bd6107a3366004612ee4565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156107d757600080fd5b50610488610fd1565b3480156107ec57600080fd5b506104886107fb366004612f4b565b611098565b34801561080c57600080fd5b5061042261081b366004612ee4565b60186020526000908152604090205460ff1681565b34801561083c57600080fd5b5061048861084b366004612f08565b611126565b34801561085c57600080fd5b5061048861086b366004612f66565b61113f565b34801561087c57600080fd5b5061048861088b366004613013565b61116e565b34801561089c57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610680565b3480156108c757600080fd5b506103e56111ad565b3480156108dc57600080fd5b506104886108eb366004612f66565b6111bc565b3480156108fc57600080fd5b5061048861090b366004613013565b6111c9565b34801561091c57600080fd5b506103bd61271081565b34801561093257600080fd5b50610422610941366004612f08565b611209565b34801561095257600080fd5b50610422610961366004612f08565b6112da565b34801561097257600080fd5b506103bd600a5481565b34801561098857600080fd5b50610422610997366004612ee4565b601a6020526000908152604090205460ff1681565b3480156109b857600080fd5b506103bd600b5481565b3480156109ce57600080fd5b506008546106809073ffffffffffffffffffffffffffffffffffffffff1681565b3480156109fb57600080fd5b50610488610a0a366004612f66565b6112e8565b348015610a1b57600080fd5b506017546104229062010000900460ff1681565b348015610a3b57600080fd5b506103bd600f5481565b348015610a5157600080fd5b506103bd610a60366004612ee4565b601b6020526000908152604090205481565b348015610a7e57600080fd5b50610488610a8d36600461302e565b611320565b348015610a9e57600080fd5b506017546104229060ff1681565b348015610ab857600080fd5b506103bd610ac7366004613063565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610b0b57600080fd5b506103bd600e5481565b348015610b2157600080fd5b50610488610b3036600461302e565b61137e565b348015610b4157600080fd5b506103bd60135481565b348015610b5757600080fd5b50610488610b66366004612f66565b6113dc565b348015610b7757600080fd5b50610488610b86366004612ee4565b6113e9565b348015610b9757600080fd5b50610680610ba6366004612f66565b61149d565b348015610bb757600080fd5b50601c546106809073ffffffffffffffffffffffffffffffffffffffff1681565b348015610be457600080fd5b5060175461042290610100900460ff1681565b606060038054610c069061309c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c329061309c565b8015610c7f5780601f10610c5457610100808354040283529160200191610c7f565b820191906000526020600020905b815481529060010190602001808311610c6257829003601f168201915b5050505050905090565b600033610c978185856114d4565b60019150505b92915050565b610cab611687565b612710600e548261ffff16610cc0919061311e565b1115610d2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f50657263656e742063616e7420626520686967686572207468616e203130302560448201526064015b60405180910390fd5b61ffff16601155565b600d8181548110610d4657600080fd5b600091825260209091200154905081565b610d5f611687565b6402540be400811015610df4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f6d6178206761732070726963652063616e74206265206c6f776572207468616e60448201527f20313020675765690000000000000000000000000000000000000000000000006064820152608401610d24565b601555565b610e01611687565b61271081610e0e60025490565b610e189190613131565b610e229190613148565b600f5550565b600033610e36858285611708565b610e418585856117d9565b506001949350505050565b610e54611687565b61271081610e6160025490565b610e6b9190613131565b610e759190613148565b600a5550565b610e83611687565b6126ac8361ffff1611158015610e9f57506126ac8261ffff1611155b610f05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f546f6f20686967687420746178000000000000000000000000000000000000006044820152606401610d24565b601d805461ffff9485167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000909116176201000093851693909302929092177fffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffff166401000000009190931602919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610c979082908690610fbf90879061311e565b6114d4565b610fce3382611821565b50565b610fd9611687565b601d5461119461ffff9091161080156110005750601d546111946201000090910461ffff16105b61108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f546f6f206869676874207461782c2063616e27742072656e6f756e6365206f7760448201527f6e6572736869702e0000000000000000000000000000000000000000000000006064820152608401610d24565b61109660006119e5565b565b6110a0611687565b6127106011548261ffff166110b5919061311e565b111561111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f50657263656e742063616e7420626520686967686572207468616e20313030256044820152606401610d24565b61ffff16600e55565b611131823383611708565b61113b8282611821565b5050565b611147611687565b6127108161115460025490565b61115e9190613131565b6111689190613148565b60125550565b611176611687565b60178054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b606060048054610c069061309c565b6111c4611687565b600955565b6111d1611687565b6017805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156112cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610d24565b610e4182868684036114d4565b600033610c978185856117d9565b60006112f5600283613148565b9050476113028230611a5c565b600061130e8247613183565b905061131a8382611c13565b50505050565b611328611687565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260196020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611386611687565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260186020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6113e4611687565b601055565b6113f1611687565b73ffffffffffffffffffffffffffffffffffffffff8116611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d24565b610fce816119e5565b600781815481106114ad57600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b73ffffffffffffffffffffffffffffffffffffffff8316611576576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff8216611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d24565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461131a57818110156117cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d24565b61131a84848484036114d4565b6117e4838383611d1b565b60175460ff16156117ff576117fa8383836124ef565b505050565b611809838361275e565b1561181657611816612847565b6117fa838383612a79565b73ffffffffffffffffffffffffffffffffffffffff82166118c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020548181101561197a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a9157611a916131c5565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601c54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611b10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3491906131f4565b81600181518110611b4757611b476131c5565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601c544291611b7c91309116866114d4565b601c546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790611bdb908790600090879089908890600401613262565b600060405180830381600087803b158015611bf557600080fd5b505af1158015611c09573d6000803e3d6000fd5b5050505050505050565b601c544290611c5a90309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6114d4565b601c546040517ff305d7190000000000000000000000000000000000000000000000000000000081523060048201819052602482018690526000604483018190526064830152608482015260a4810183905273ffffffffffffffffffffffffffffffffffffffff9091169063f305d71990849060c40160606040518083038185885af1158015611cee573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d1391906132ab565b505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611dbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f45524332303a207472616e736665722066726f6d20746865205a45524f5f414460448201527f44524553532061646472657373000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff8216611e61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f45524332303a207472616e7366657220746f20746865205a45524f5f4144445260448201527f45535320616464726573730000000000000000000000000000000000000000006064820152608401610d24565b60008111611ef1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e205a45524f5f414444524553530000000000000000000000000000006064820152608401610d24565b60175462010000900460ff168015611f175750601454601354611f14919061311e565b42105b1561215d5760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590611f625750601c5473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015611f89575060065473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015611fab575073ffffffffffffffffffffffffffffffffffffffff82163014155b1561215d576012541561202457601254811115612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4d617820427579204c696d69742e0000000000000000000000000000000000006044820152606401610d24565b601754610100900460ff16156120a0576015543a11156120a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4761732070726963652065786365656473206c696d69742e00000000000000006044820152606401610d24565b336000908152601b602052604090205442101561213f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e00000000000000000000000000000000000000000000000000000000006064820152608401610d24565b60165461214c904261311e565b336000908152601b60205260409020555b60055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906121a3575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156121c4575073ffffffffffffffffffffffffffffffffffffffff821615155b80156121e8575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b801561220a575073ffffffffffffffffffffffffffffffffffffffff82163014155b8015612219575060175460ff16155b156117fa5773ffffffffffffffffffffffffffffffffffffffff83166000908152601a602052604090205460ff16156123a75773ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205460ff166117fa57600f5481111561230b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610d24565b600a5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020545b61233f908361311e565b11156117fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610d24565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601a602052604090205460ff16156124945773ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205460ff166117fa57600f548111156117fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205460ff166117fa57600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612335565b73ffffffffffffffffffffffffffffffffffffffff8316612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff8216612635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156126eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361131a565b306000908152602081905260408120546009548110158015612783575060175460ff16155b80156127aa575060065473ffffffffffffffffffffffffffffffffffffffff858116911614155b80156127db575060065473ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040812054115b801561280d575073ffffffffffffffffffffffffffffffffffffffff831660009081526018602052604090205460ff16155b801561283f575073ffffffffffffffffffffffffffffffffffffffff841660009081526018602052604090205460ff16155b949350505050565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905530600090815260208190526040902054600b541561297357600b546128978183613183565b6000600b5560075490925081905b801561296f576000816001146128fa57612710600d6128c5600185613183565b815481106128d5576128d56131c5565b9060005260206000200154856128eb9190613131565b6128f59190613148565b6128fc565b825b905061294681600761290f600186613183565b8154811061291f5761291f6131c5565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16611a5c565b600182111561295c576129598184613183565b92505b5080612967816132d9565b9150506128a5565b5050505b8015612a4e57601154156129a5576129a5612710601154836129959190613131565b61299f9190613148565b30611a5c565b600e54156129cb576129cb612710600e54836129c19190613131565b610a0a9190613148565b6000612710601154600e546129e0919061311e565b6129ea9084613131565b6129f49190613148565b6129fe9083613183565b90508015612a2a57600854612a2a90829073ffffffffffffffffffffffffffffffffffffffff16611a5c565b60105415612a4c576010544790811115612a4a57612a4a8161dead612b69565b505b505b50601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260186020526040902054819060019060ff1680612ad7575073ffffffffffffffffffffffffffffffffffffffff841660009081526018602052604090205460ff165b15612ae0575060005b8015612b5757600080612af4878787612d53565b90925090506000612b05828461311e565b1115612b545780612b168387613183565b612b209190613183565b93508015612b405780600b6000828254612b3a919061311e565b90915550505b612b548730612b4f848661311e565b6124ef565b50505b612b628585846124ef565b5050505050565b6040805160028082526060820183526000926020830190803683375050601c54604080517fad5c4648000000000000000000000000000000000000000000000000000000008152905193945073ffffffffffffffffffffffffffffffffffffffff9091169263ad5c4648925060048083019260209291908290030181865afa158015612bf9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c1d91906131f4565b81600081518110612c3057612c306131c5565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110612c7e57612c7e6131c5565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601c546040517f7ff36ab500000000000000000000000000000000000000000000000000000000815242929190911690637ff36ab5908690612cee9060009087908990889060040161330e565b60006040518083038185885af1158015612d0c573d6000803e3d6000fd5b50505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052612b629190810190613350565b73ffffffffffffffffffffffffffffffffffffffff83166000908152601a60205260408120548190819081908190819060ff1615612da357601d54612d9c9061ffff168561311e565b9350612e08565b73ffffffffffffffffffffffffffffffffffffffff88166000908152601a602052604090205460ff1615612de857601d54612d9c9062010000900461ffff168561311e565b601d54612e0190640100000000900461ffff168561311e565b9350600190505b8315612e2857612710612e1b8589613131565b612e259190613148565b92505b80612e4857612710612e3b603289613131565b612e459190613148565b91505b509097909650945050505050565b600060208083528351808285015260005b81811015612e8357858101830151858201604001528201612e67565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610fce57600080fd5b600060208284031215612ef657600080fd5b8135612f0181612ec2565b9392505050565b60008060408385031215612f1b57600080fd5b8235612f2681612ec2565b946020939093013593505050565b803561ffff81168114612f4657600080fd5b919050565b600060208284031215612f5d57600080fd5b612f0182612f34565b600060208284031215612f7857600080fd5b5035919050565b600080600060608486031215612f9457600080fd5b8335612f9f81612ec2565b92506020840135612faf81612ec2565b929592945050506040919091013590565b600080600060608486031215612fd557600080fd5b612fde84612f34565b9250612fec60208501612f34565b9150612ffa60408501612f34565b90509250925092565b80358015158114612f4657600080fd5b60006020828403121561302557600080fd5b612f0182613003565b6000806040838503121561304157600080fd5b823561304c81612ec2565b915061305a60208401613003565b90509250929050565b6000806040838503121561307657600080fd5b823561308181612ec2565b9150602083013561309181612ec2565b809150509250929050565b600181811c908216806130b057607f821691505b6020821081036130e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610c9d57610c9d6130ef565b8082028115828204841417610c9d57610c9d6130ef565b60008261317e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b81810381811115610c9d57610c9d6130ef565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561320657600080fd5b8151612f0181612ec2565b600081518084526020808501945080840160005b8381101561325757815173ffffffffffffffffffffffffffffffffffffffff1687529582019590820190600101613225565b509495945050505050565b85815284602082015260a06040820152600061328160a0830186613211565b73ffffffffffffffffffffffffffffffffffffffff94909416606083015250608001529392505050565b6000806000606084860312156132c057600080fd5b8351925060208401519150604084015190509250925092565b6000816132e8576132e86130ef565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b8481526080602082015260006133276080830186613211565b73ffffffffffffffffffffffffffffffffffffffff949094166040830152506060015292915050565b6000602080838503121561336357600080fd5b825167ffffffffffffffff8082111561337b57600080fd5b818501915085601f83011261338f57600080fd5b8151818111156133a1576133a1613196565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811085821117156133e4576133e4613196565b60405291825284820192508381018501918883111561340257600080fd5b938501935b8285101561342057845184529385019392850192613407565b9897505050505050505056fea264697066735822122063d2aeb695909aecc6ce5b1e27800f75ab051bcc14599e1d86629a56457dd61464736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000000000000000000000000c685fa11e01ec6f000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000001453454c4c205045504520425559204455434b455200000000000000000000000000000000000000000000000000000000000000000000000000000000000000064455434b4552000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c5808387868a9d6c033ca2f65cf2a0bb8d81858000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000007d00000000000000000000000000000000000000000000000000000000000001194000000000000000000000000000000000000000000000000000000000000119400000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c8

Deployed Bytecode

0x60806040526004361061039b5760003560e01c8063768dc710116101dc578063c6aca36b11610102578063deb5896e116100a0578063f2fde38b1161006f578063f2fde38b14610b6b578063f311732214610b8b578063f887ea4014610bab578063f901796614610bd857600080fd5b8063deb5896e14610aff578063df8408fe14610b15578063edf731c514610b35578063efac458514610b4b57600080fd5b8063cd5f101d116100dc578063cd5f101d14610a45578063d4c989d314610a72578063d830678614610a92578063dd62ed3e14610aac57600080fd5b8063c6aca36b146109ef578063c876d0b914610a0f578063c8c8ebe414610a2f57600080fd5b8063a2065e711161017a578063aa4bde2811610149578063aa4bde2814610966578063b62496f51461097c578063bd74c046146109ac578063c5f956af146109c257600080fd5b8063a2065e71146108f0578063a335d4ff14610910578063a457c2d714610926578063a9059cbb1461094657600080fd5b80638d0cb35a116101b65780638d0cb35a146108705780638da5cb5b1461089057806395d89b41146108bb5780639d0014b1146108d057600080fd5b8063768dc7101461080057806379cc6790146108305780637dee32901461085057600080fd5b8063313ce567116102c15780635342acb41161025f5780636f15d9751161022e5780636f15d9751461077257806370a0823114610788578063715018a6146107cb578063738c6c09146107e057600080fd5b80635342acb4146106bb578063560d52d414610701578063658c27a9146107165780636aa5b37f1461075c57600080fd5b80633d90fff91161029b5780633d90fff91461061d57806342966c6814610633578063452ed4f1146106535780634a569e94146106a557600080fd5b8063313ce567146105c157806332cde664146105dd57806339509351146105fd57600080fd5b8063148829f5116103395780631c06a7e1116103085780631c06a7e11461050b5780631e293c101461056157806323b872dd1461058157806327a14fc2146105a157600080fd5b8063148829f5146104aa5780631630e97f146104c057806318160ddd146104e05780631b11c874146104f557600080fd5b8063094d776f11610375578063094d776f14610432578063095ea7b314610448578063123e6cd81461046857806313fa254a1461048a57600080fd5b80630445b667146103a757806306fdde03146103d057806307866291146103f257600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103bd60095481565b6040519081526020015b60405180910390f35b3480156103dc57600080fd5b506103e5610bf7565b6040516103c79190612e56565b3480156103fe57600080fd5b5061042261040d366004612ee4565b60196020526000908152604090205460ff1681565b60405190151581526020016103c7565b34801561043e57600080fd5b506103bd60145481565b34801561045457600080fd5b50610422610463366004612f08565b610c89565b34801561047457600080fd5b50610488610483366004612f4b565b610ca3565b005b34801561049657600080fd5b506103bd6104a5366004612f66565b610d36565b3480156104b657600080fd5b506103bd600c5481565b3480156104cc57600080fd5b506104886104db366004612f66565b610d57565b3480156104ec57600080fd5b506002546103bd565b34801561050157600080fd5b506103bd60155481565b34801561051757600080fd5b50601d5461053c9061ffff808216916201000081048216916401000000009091041683565b6040805161ffff948516815292841660208401529216918101919091526060016103c7565b34801561056d57600080fd5b5061048861057c366004612f66565b610df9565b34801561058d57600080fd5b5061042261059c366004612f7f565b610e28565b3480156105ad57600080fd5b506104886105bc366004612f66565b610e4c565b3480156105cd57600080fd5b50604051601281526020016103c7565b3480156105e957600080fd5b506104886105f8366004612fc0565b610e7b565b34801561060957600080fd5b50610422610618366004612f08565b610f78565b34801561062957600080fd5b506103bd60165481565b34801561063f57600080fd5b5061048861064e366004612f66565b610fc4565b34801561065f57600080fd5b506006546106809073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103c7565b3480156106b157600080fd5b506103bd60115481565b3480156106c757600080fd5b506104226106d6366004612ee4565b73ffffffffffffffffffffffffffffffffffffffff1660009081526018602052604090205460ff1690565b34801561070d57600080fd5b506103bd603281565b34801561072257600080fd5b50610422610731366004612ee4565b73ffffffffffffffffffffffffffffffffffffffff1660009081526019602052604090205460ff1690565b34801561076857600080fd5b506103bd60125481565b34801561077e57600080fd5b506103bd60105481565b34801561079457600080fd5b506103bd6107a3366004612ee4565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156107d757600080fd5b50610488610fd1565b3480156107ec57600080fd5b506104886107fb366004612f4b565b611098565b34801561080c57600080fd5b5061042261081b366004612ee4565b60186020526000908152604090205460ff1681565b34801561083c57600080fd5b5061048861084b366004612f08565b611126565b34801561085c57600080fd5b5061048861086b366004612f66565b61113f565b34801561087c57600080fd5b5061048861088b366004613013565b61116e565b34801561089c57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610680565b3480156108c757600080fd5b506103e56111ad565b3480156108dc57600080fd5b506104886108eb366004612f66565b6111bc565b3480156108fc57600080fd5b5061048861090b366004613013565b6111c9565b34801561091c57600080fd5b506103bd61271081565b34801561093257600080fd5b50610422610941366004612f08565b611209565b34801561095257600080fd5b50610422610961366004612f08565b6112da565b34801561097257600080fd5b506103bd600a5481565b34801561098857600080fd5b50610422610997366004612ee4565b601a6020526000908152604090205460ff1681565b3480156109b857600080fd5b506103bd600b5481565b3480156109ce57600080fd5b506008546106809073ffffffffffffffffffffffffffffffffffffffff1681565b3480156109fb57600080fd5b50610488610a0a366004612f66565b6112e8565b348015610a1b57600080fd5b506017546104229062010000900460ff1681565b348015610a3b57600080fd5b506103bd600f5481565b348015610a5157600080fd5b506103bd610a60366004612ee4565b601b6020526000908152604090205481565b348015610a7e57600080fd5b50610488610a8d36600461302e565b611320565b348015610a9e57600080fd5b506017546104229060ff1681565b348015610ab857600080fd5b506103bd610ac7366004613063565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610b0b57600080fd5b506103bd600e5481565b348015610b2157600080fd5b50610488610b3036600461302e565b61137e565b348015610b4157600080fd5b506103bd60135481565b348015610b5757600080fd5b50610488610b66366004612f66565b6113dc565b348015610b7757600080fd5b50610488610b86366004612ee4565b6113e9565b348015610b9757600080fd5b50610680610ba6366004612f66565b61149d565b348015610bb757600080fd5b50601c546106809073ffffffffffffffffffffffffffffffffffffffff1681565b348015610be457600080fd5b5060175461042290610100900460ff1681565b606060038054610c069061309c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c329061309c565b8015610c7f5780601f10610c5457610100808354040283529160200191610c7f565b820191906000526020600020905b815481529060010190602001808311610c6257829003601f168201915b5050505050905090565b600033610c978185856114d4565b60019150505b92915050565b610cab611687565b612710600e548261ffff16610cc0919061311e565b1115610d2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f50657263656e742063616e7420626520686967686572207468616e203130302560448201526064015b60405180910390fd5b61ffff16601155565b600d8181548110610d4657600080fd5b600091825260209091200154905081565b610d5f611687565b6402540be400811015610df4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f6d6178206761732070726963652063616e74206265206c6f776572207468616e60448201527f20313020675765690000000000000000000000000000000000000000000000006064820152608401610d24565b601555565b610e01611687565b61271081610e0e60025490565b610e189190613131565b610e229190613148565b600f5550565b600033610e36858285611708565b610e418585856117d9565b506001949350505050565b610e54611687565b61271081610e6160025490565b610e6b9190613131565b610e759190613148565b600a5550565b610e83611687565b6126ac8361ffff1611158015610e9f57506126ac8261ffff1611155b610f05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f546f6f20686967687420746178000000000000000000000000000000000000006044820152606401610d24565b601d805461ffff9485167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000909116176201000093851693909302929092177fffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffff166401000000009190931602919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610c979082908690610fbf90879061311e565b6114d4565b610fce3382611821565b50565b610fd9611687565b601d5461119461ffff9091161080156110005750601d546111946201000090910461ffff16105b61108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f546f6f206869676874207461782c2063616e27742072656e6f756e6365206f7760448201527f6e6572736869702e0000000000000000000000000000000000000000000000006064820152608401610d24565b61109660006119e5565b565b6110a0611687565b6127106011548261ffff166110b5919061311e565b111561111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f50657263656e742063616e7420626520686967686572207468616e20313030256044820152606401610d24565b61ffff16600e55565b611131823383611708565b61113b8282611821565b5050565b611147611687565b6127108161115460025490565b61115e9190613131565b6111689190613148565b60125550565b611176611687565b60178054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b606060048054610c069061309c565b6111c4611687565b600955565b6111d1611687565b6017805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156112cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610d24565b610e4182868684036114d4565b600033610c978185856117d9565b60006112f5600283613148565b9050476113028230611a5c565b600061130e8247613183565b905061131a8382611c13565b50505050565b611328611687565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260196020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611386611687565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260186020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6113e4611687565b601055565b6113f1611687565b73ffffffffffffffffffffffffffffffffffffffff8116611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d24565b610fce816119e5565b600781815481106114ad57600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b73ffffffffffffffffffffffffffffffffffffffff8316611576576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff8216611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d24565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461131a57818110156117cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d24565b61131a84848484036114d4565b6117e4838383611d1b565b60175460ff16156117ff576117fa8383836124ef565b505050565b611809838361275e565b1561181657611816612847565b6117fa838383612a79565b73ffffffffffffffffffffffffffffffffffffffff82166118c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020548181101561197a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a9157611a916131c5565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601c54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611b10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3491906131f4565b81600181518110611b4757611b476131c5565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601c544291611b7c91309116866114d4565b601c546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790611bdb908790600090879089908890600401613262565b600060405180830381600087803b158015611bf557600080fd5b505af1158015611c09573d6000803e3d6000fd5b5050505050505050565b601c544290611c5a90309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6114d4565b601c546040517ff305d7190000000000000000000000000000000000000000000000000000000081523060048201819052602482018690526000604483018190526064830152608482015260a4810183905273ffffffffffffffffffffffffffffffffffffffff9091169063f305d71990849060c40160606040518083038185885af1158015611cee573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d1391906132ab565b505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611dbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f45524332303a207472616e736665722066726f6d20746865205a45524f5f414460448201527f44524553532061646472657373000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff8216611e61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f45524332303a207472616e7366657220746f20746865205a45524f5f4144445260448201527f45535320616464726573730000000000000000000000000000000000000000006064820152608401610d24565b60008111611ef1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e205a45524f5f414444524553530000000000000000000000000000006064820152608401610d24565b60175462010000900460ff168015611f175750601454601354611f14919061311e565b42105b1561215d5760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590611f625750601c5473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015611f89575060065473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015611fab575073ffffffffffffffffffffffffffffffffffffffff82163014155b1561215d576012541561202457601254811115612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4d617820427579204c696d69742e0000000000000000000000000000000000006044820152606401610d24565b601754610100900460ff16156120a0576015543a11156120a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4761732070726963652065786365656473206c696d69742e00000000000000006044820152606401610d24565b336000908152601b602052604090205442101561213f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e00000000000000000000000000000000000000000000000000000000006064820152608401610d24565b60165461214c904261311e565b336000908152601b60205260409020555b60055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906121a3575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156121c4575073ffffffffffffffffffffffffffffffffffffffff821615155b80156121e8575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b801561220a575073ffffffffffffffffffffffffffffffffffffffff82163014155b8015612219575060175460ff16155b156117fa5773ffffffffffffffffffffffffffffffffffffffff83166000908152601a602052604090205460ff16156123a75773ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205460ff166117fa57600f5481111561230b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610d24565b600a5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020545b61233f908361311e565b11156117fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610d24565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601a602052604090205460ff16156124945773ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205460ff166117fa57600f548111156117fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205460ff166117fa57600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612335565b73ffffffffffffffffffffffffffffffffffffffff8316612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff8216612635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156126eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610d24565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361131a565b306000908152602081905260408120546009548110158015612783575060175460ff16155b80156127aa575060065473ffffffffffffffffffffffffffffffffffffffff858116911614155b80156127db575060065473ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040812054115b801561280d575073ffffffffffffffffffffffffffffffffffffffff831660009081526018602052604090205460ff16155b801561283f575073ffffffffffffffffffffffffffffffffffffffff841660009081526018602052604090205460ff16155b949350505050565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905530600090815260208190526040902054600b541561297357600b546128978183613183565b6000600b5560075490925081905b801561296f576000816001146128fa57612710600d6128c5600185613183565b815481106128d5576128d56131c5565b9060005260206000200154856128eb9190613131565b6128f59190613148565b6128fc565b825b905061294681600761290f600186613183565b8154811061291f5761291f6131c5565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16611a5c565b600182111561295c576129598184613183565b92505b5080612967816132d9565b9150506128a5565b5050505b8015612a4e57601154156129a5576129a5612710601154836129959190613131565b61299f9190613148565b30611a5c565b600e54156129cb576129cb612710600e54836129c19190613131565b610a0a9190613148565b6000612710601154600e546129e0919061311e565b6129ea9084613131565b6129f49190613148565b6129fe9083613183565b90508015612a2a57600854612a2a90829073ffffffffffffffffffffffffffffffffffffffff16611a5c565b60105415612a4c576010544790811115612a4a57612a4a8161dead612b69565b505b505b50601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260186020526040902054819060019060ff1680612ad7575073ffffffffffffffffffffffffffffffffffffffff841660009081526018602052604090205460ff165b15612ae0575060005b8015612b5757600080612af4878787612d53565b90925090506000612b05828461311e565b1115612b545780612b168387613183565b612b209190613183565b93508015612b405780600b6000828254612b3a919061311e565b90915550505b612b548730612b4f848661311e565b6124ef565b50505b612b628585846124ef565b5050505050565b6040805160028082526060820183526000926020830190803683375050601c54604080517fad5c4648000000000000000000000000000000000000000000000000000000008152905193945073ffffffffffffffffffffffffffffffffffffffff9091169263ad5c4648925060048083019260209291908290030181865afa158015612bf9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c1d91906131f4565b81600081518110612c3057612c306131c5565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110612c7e57612c7e6131c5565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601c546040517f7ff36ab500000000000000000000000000000000000000000000000000000000815242929190911690637ff36ab5908690612cee9060009087908990889060040161330e565b60006040518083038185885af1158015612d0c573d6000803e3d6000fd5b50505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052612b629190810190613350565b73ffffffffffffffffffffffffffffffffffffffff83166000908152601a60205260408120548190819081908190819060ff1615612da357601d54612d9c9061ffff168561311e565b9350612e08565b73ffffffffffffffffffffffffffffffffffffffff88166000908152601a602052604090205460ff1615612de857601d54612d9c9062010000900461ffff168561311e565b601d54612e0190640100000000900461ffff168561311e565b9350600190505b8315612e2857612710612e1b8589613131565b612e259190613148565b92505b80612e4857612710612e3b603289613131565b612e459190613148565b91505b509097909650945050505050565b600060208083528351808285015260005b81811015612e8357858101830151858201604001528201612e67565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610fce57600080fd5b600060208284031215612ef657600080fd5b8135612f0181612ec2565b9392505050565b60008060408385031215612f1b57600080fd5b8235612f2681612ec2565b946020939093013593505050565b803561ffff81168114612f4657600080fd5b919050565b600060208284031215612f5d57600080fd5b612f0182612f34565b600060208284031215612f7857600080fd5b5035919050565b600080600060608486031215612f9457600080fd5b8335612f9f81612ec2565b92506020840135612faf81612ec2565b929592945050506040919091013590565b600080600060608486031215612fd557600080fd5b612fde84612f34565b9250612fec60208501612f34565b9150612ffa60408501612f34565b90509250925092565b80358015158114612f4657600080fd5b60006020828403121561302557600080fd5b612f0182613003565b6000806040838503121561304157600080fd5b823561304c81612ec2565b915061305a60208401613003565b90509250929050565b6000806040838503121561307657600080fd5b823561308181612ec2565b9150602083013561309181612ec2565b809150509250929050565b600181811c908216806130b057607f821691505b6020821081036130e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610c9d57610c9d6130ef565b8082028115828204841417610c9d57610c9d6130ef565b60008261317e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b81810381811115610c9d57610c9d6130ef565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561320657600080fd5b8151612f0181612ec2565b600081518084526020808501945080840160005b8381101561325757815173ffffffffffffffffffffffffffffffffffffffff1687529582019590820190600101613225565b509495945050505050565b85815284602082015260a06040820152600061328160a0830186613211565b73ffffffffffffffffffffffffffffffffffffffff94909416606083015250608001529392505050565b6000806000606084860312156132c057600080fd5b8351925060208401519150604084015190509250925092565b6000816132e8576132e86130ef565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b8481526080602082015260006133276080830186613211565b73ffffffffffffffffffffffffffffffffffffffff949094166040830152506060015292915050565b6000602080838503121561336357600080fd5b825167ffffffffffffffff8082111561337b57600080fd5b818501915085601f83011261338f57600080fd5b8151818111156133a1576133a1613196565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811085821117156133e4576133e4613196565b60405291825284820192508381018501918883111561340257600080fd5b938501935b8285101561342057845184529385019392850192613407565b9897505050505050505056fea264697066735822122063d2aeb695909aecc6ce5b1e27800f75ab051bcc14599e1d86629a56457dd61464736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000000000000000000000000c685fa11e01ec6f000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000001453454c4c205045504520425559204455434b455200000000000000000000000000000000000000000000000000000000000000000000000000000000000000064455434b4552000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c5808387868a9d6c033ca2f65cf2a0bb8d81858000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000007d00000000000000000000000000000000000000000000000000000000000001194000000000000000000000000000000000000000000000000000000000000119400000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c8

-----Decoded View---------------
Arg [0] : tokenName (string): SELL PEPE BUY DUCKER
Arg [1] : tokenSymbol (string): DUCKER
Arg [2] : supply (uint256): 100000000000000000000000000
Arg [3] : preMint (uint256): 15000000000000000000000000
Arg [4] : addresses (address[]): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,0x5C5808387868a9d6C033Ca2F65cF2a0bB8d81858
Arg [5] : percents (uint16[]): 2000,4500,4500,200,200

-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [3] : 0000000000000000000000000000000000000000000c685fa11e01ec6f000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [7] : 53454c4c205045504520425559204455434b4552000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 4455434b45520000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [11] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [12] : 0000000000000000000000005c5808387868a9d6c033ca2f65cf2a0bb8d81858
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [14] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [15] : 0000000000000000000000000000000000000000000000000000000000001194
Arg [16] : 0000000000000000000000000000000000000000000000000000000000001194
Arg [17] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [18] : 00000000000000000000000000000000000000000000000000000000000000c8


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.