ETH Price: $3,039.59 (-2.10%)
Gas: 7 Gwei

Token

Beyond Protocol (BP)
 

Overview

Max Total Supply

500,000,000 BP

Holders

2,337

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-29
*/

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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 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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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;
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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);
    }
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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 migrator() 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;
    function setMigrator(address) external;
}

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

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;
}
 
contract ERC20 is Context, IERC20, Ownable {
    using SafeMath for uint256;

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

    uint256 private _totalSupply;

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

    mapping (address => bool) private _liquidityHolders;
    mapping (address => bool) private _isSniper;
    bool public _hasLiqBeenAdded = false;
    uint256 private _liqAddBlock = 0;
    uint256 private snipeBlockAmt;
    uint256 public snipersCaught = 0;
    
    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;
    address public  uniswapV2RouterAddress;

    event SniperCaught(address sniperAddress);

    constructor (string memory name_, string memory symbol_, address uniswapRouter, uint256 totalMint, uint256 _snipeBlockAmt) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
        _mint(msg.sender, totalMint); // only called once in contract intialization
        uniswapV2RouterAddress = uniswapRouter;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(uniswapV2RouterAddress);
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
        snipeBlockAmt = _snipeBlockAmt;
        
        addLiquidityHolder(msg.sender);
    }

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

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

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

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

    /**
     * @dev See {IERC20-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 {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}.
     *
     * 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 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);
        
        if (!_hasLiqBeenAdded) {
            _checkLiquidityAdd(sender, recipient);
        } else {
            if (_liqAddBlock > 0 
                && sender == uniswapV2Pair 
                && !_liquidityHolders[sender]
                && !_liquidityHolders[recipient]
            ) {
                if (block.number - _liqAddBlock < snipeBlockAmt) {
                    _isSniper[recipient] = true;
                    snipersCaught ++;
                    emit SniperCaught(recipient); //pow
                }
            }
        }

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` 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 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 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @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 { }
    
    function _checkLiquidityAdd(address from, address to) private {
        require(!_hasLiqBeenAdded, "Liquidity already added and marked.");
        if (_liquidityHolders[from] && to == uniswapV2Pair) {
            _hasLiqBeenAdded = true;
            _liqAddBlock = block.number;
        }
    }
    
    function isSniperCheck(address account) public view returns (bool) {
        return _isSniper[account];
    }
    
    function isLiquidityHolderCheck(address account) public view returns (bool) {
        return _liquidityHolders[account];
    }
    
    function addSniper(address sniperAddress) public onlyOwner() {
        require(sniperAddress != uniswapV2Pair, "ERC20: Can not add uniswapV2Pair to sniper list");
        require(sniperAddress != uniswapV2RouterAddress, "ERC20: Can not add uniswapV2Router to sniper list");

        _isSniper[sniperAddress] = true;
    }
    
    function removeSniper(address sniperAddress) public onlyOwner() {
        require(_isSniper[sniperAddress], "ERC20: Is not sniper");

        _isSniper[sniperAddress] = false;
    }
    
    function addLiquidityHolder(address liquidityHolder) public onlyOwner() {
        _liquidityHolders[liquidityHolder] = true;
    }
    
    function removeLiquidityHolder(address liquidityHolder) public onlyOwner() {
        _liquidityHolders[liquidityHolder] = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"uniswapRouter","type":"address"},{"internalType":"uint256","name":"totalMint","type":"uint256"},{"internalType":"uint256","name":"_snipeBlockAmt","type":"uint256"}],"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":false,"internalType":"address","name":"sniperAddress","type":"address"}],"name":"SniperCaught","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":"_hasLiqBeenAdded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"liquidityHolder","type":"address"}],"name":"addLiquidityHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sniperAddress","type":"address"}],"name":"addSniper","outputs":[],"stateMutability":"nonpayable","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":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isLiquidityHolderCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isSniperCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"liquidityHolder","type":"address"}],"name":"removeLiquidityHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sniperAddress","type":"address"}],"name":"removeSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snipersCaught","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":"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2RouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526009805460ff191690556000600a819055600c553480156200002557600080fd5b506040516200192238038062001922833981016040819052620000489162000659565b620000533362000284565b845162000068906004906020880190620004c9565b5083516200007e906005906020870190620004c9565b506006805460ff19166012179055620000983383620002d4565b600f80546001600160a01b0319166001600160a01b0385169081179091556040805163c45a015560e01b81529051600091839163c45a015591600480820192602092909190829003018186803b158015620000f257600080fd5b505afa15801562000107573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200012d9190620006e8565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200017657600080fd5b505afa1580156200018b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b19190620006e8565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620001fa57600080fd5b505af11580156200020f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002359190620006e8565b600d80546001600160a01b038086166001600160a01b031992831617909255600e805492841692909116919091179055600b84905590506200027733620003df565b505050505050506200076a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003305760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200034c816003546200045f60201b620008da1790919060201c565b6003556001600160a01b03821660009081526001602090815260409091205462000381918390620008da6200045f821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620003d39085815260200190565b60405180910390a35050565b6000546001600160a01b031633146200043b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000327565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000806200046e838562000706565b905083811015620004c25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000327565b9392505050565b828054620004d7906200072d565b90600052602060002090601f016020900481019282620004fb576000855562000546565b82601f106200051657805160ff191683800117855562000546565b8280016001018555821562000546579182015b828111156200054657825182559160200191906001019062000529565b506200055492915062000558565b5090565b5b8082111562000554576000815560010162000559565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200059757600080fd5b81516001600160401b0380821115620005b457620005b46200056f565b604051601f8301601f19908116603f01168101908282118183101715620005df57620005df6200056f565b81604052838152602092508683858801011115620005fc57600080fd5b600091505b8382101562000620578582018301518183018401529082019062000601565b83821115620006325760008385830101525b9695505050505050565b80516001600160a01b03811681146200065457600080fd5b919050565b600080600080600060a086880312156200067257600080fd5b85516001600160401b03808211156200068a57600080fd5b6200069889838a0162000585565b96506020880151915080821115620006af57600080fd5b50620006be8882890162000585565b945050620006cf604087016200063c565b6060870151608090970151959894975095949392505050565b600060208284031215620006fb57600080fd5b620004c2826200063c565b600082198211156200072857634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200074257607f821691505b602082108114156200076457634e487b7160e01b600052602260045260246000fd5b50919050565b6111a8806200077a6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80634a377e1d116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610367578063dd62ed3e1461037a578063e79d4160146103b3578063f2fde38b146103bc57600080fd5b806395d89b4114610339578063999f148c14610341578063a457c2d71461035457600080fd5b80634a377e1d146102c457806350a8e016146102d757806370a08231146102e4578063715018a61461030d578063834caa58146103155780638da5cb5b1461032857600080fd5b806323b872dd1161013057806323b872dd1461024e578063313ce5671461026157806333251a0b14610276578063395093511461028b5780633e3e95981461029e57806349bd5a5e146102b157600080fd5b806306fdde0314610178578063095ea7b3146101965780631694505e146101b957806318160ddd146101e457806318e9b8b7146101f65780631d7f367614610222575b600080fd5b6101806103cf565b60405161018d9190610ed3565b60405180910390f35b6101a96101a4366004610f44565b610461565b604051901515815260200161018d565b600d546101cc906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b6003545b60405190815260200161018d565b6101a9610204366004610f6e565b6001600160a01b031660009081526008602052604090205460ff1690565b6101a9610230366004610f6e565b6001600160a01b031660009081526007602052604090205460ff1690565b6101a961025c366004610f89565b610477565b60065460405160ff909116815260200161018d565b610289610284366004610f6e565b6104e0565b005b6101a9610299366004610f44565b610593565b6102896102ac366004610f6e565b6105c9565b600e546101cc906001600160a01b031681565b600f546101cc906001600160a01b031681565b6009546101a99060ff1681565b6101e86102f2366004610f6e565b6001600160a01b031660009081526001602052604090205490565b610289610705565b610289610323366004610f6e565b61073b565b6000546001600160a01b03166101cc565b610180610789565b61028961034f366004610f6e565b610798565b6101a9610362366004610f44565b6107e3565b6101a9610375366004610f44565b610832565b6101e8610388366004610fc5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101e8600c5481565b6102896103ca366004610f6e565b61083f565b6060600480546103de90610ff8565b80601f016020809104026020016040519081016040528092919081815260200182805461040a90610ff8565b80156104575780601f1061042c57610100808354040283529160200191610457565b820191906000526020600020905b81548152906001019060200180831161043a57829003601f168201915b5050505050905090565b600061046e338484610940565b50600192915050565b6000610484848484610a65565b6104d684336104d185604051806060016040528060288152602001611126602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610d9d565b610940565b5060019392505050565b6000546001600160a01b031633146105135760405162461bcd60e51b815260040161050a90611033565b60405180910390fd5b6001600160a01b03811660009081526008602052604090205460ff166105725760405162461bcd60e51b815260206004820152601460248201527322a92199181d1024b9903737ba1039b734b832b960611b604482015260640161050a565b6001600160a01b03166000908152600860205260409020805460ff19169055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161046e9185906104d190866108da565b6000546001600160a01b031633146105f35760405162461bcd60e51b815260040161050a90611033565b600e546001600160a01b03828116911614156106695760405162461bcd60e51b815260206004820152602f60248201527f45524332303a2043616e206e6f742061646420756e697377617056325061697260448201526e081d1bc81cdb9a5c195c881b1a5cdd608a1b606482015260840161050a565b600f546001600160a01b03828116911614156106e15760405162461bcd60e51b815260206004820152603160248201527f45524332303a2043616e206e6f742061646420756e69737761705632526f7574604482015270195c881d1bc81cdb9a5c195c881b1a5cdd607a1b606482015260840161050a565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b0316331461072f5760405162461bcd60e51b815260040161050a90611033565b6107396000610dd4565b565b6000546001600160a01b031633146107655760405162461bcd60e51b815260040161050a90611033565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6060600580546103de90610ff8565b6000546001600160a01b031633146107c25760405162461bcd60e51b815260040161050a90611033565b6001600160a01b03166000908152600760205260409020805460ff19169055565b600061046e33846104d18560405180606001604052806025815260200161114e602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610d9d565b600061046e338484610a65565b6000546001600160a01b031633146108695760405162461bcd60e51b815260040161050a90611033565b6001600160a01b0381166108ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050a565b6108d781610dd4565b50565b6000806108e7838561107e565b9050838110156109395760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161050a565b9392505050565b6001600160a01b0383166109a25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161050a565b6001600160a01b038216610a035760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161050a565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610ac95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161050a565b6001600160a01b038216610b2b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161050a565b6001600160a01b03831660009081526008602052604090205460ff1615610b645760405162461bcd60e51b815260040161050a90611096565b6001600160a01b03821660009081526008602052604090205460ff1615610b9d5760405162461bcd60e51b815260040161050a90611096565b3360009081526008602052604090205460ff1615610bcd5760405162461bcd60e51b815260040161050a90611096565b60095460ff16610be657610be18383610e24565b610cdd565b6000600a54118015610c055750600e546001600160a01b038481169116145b8015610c2a57506001600160a01b03831660009081526007602052604090205460ff16155b8015610c4f57506001600160a01b03821660009081526007602052604090205460ff16155b15610cdd57600b54600a54610c6490436110cd565b1015610cdd576001600160a01b0382166000908152600860205260408120805460ff19166001179055600c805491610c9b836110e4565b90915550506040516001600160a01b03831681527f18e6e5ce5c121466e41a954e72765d1ea02b8e6919043b61f0dab08b4c6572e59060200160405180910390a15b610d1a81604051806060016040528060268152602001611100602691396001600160a01b0386166000908152600160205260409020549190610d9d565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610d4990826108da565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a589085815260200190565b60008184841115610dc15760405162461bcd60e51b815260040161050a9190610ed3565b50610dcc83856110cd565b949350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60095460ff1615610e835760405162461bcd60e51b815260206004820152602360248201527f4c697175696469747920616c726561647920616464656420616e64206d61726b60448201526232b21760e91b606482015260840161050a565b6001600160a01b03821660009081526007602052604090205460ff168015610eb85750600e546001600160a01b038281169116145b15610ecf576009805460ff1916600117905543600a555b5050565b600060208083528351808285015260005b81811015610f0057858101830151858201604001528201610ee4565b81811115610f12576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f3f57600080fd5b919050565b60008060408385031215610f5757600080fd5b610f6083610f28565b946020939093013593505050565b600060208284031215610f8057600080fd5b61093982610f28565b600080600060608486031215610f9e57600080fd5b610fa784610f28565b9250610fb560208501610f28565b9150604084013590509250925092565b60008060408385031215610fd857600080fd5b610fe183610f28565b9150610fef60208401610f28565b90509250929050565b600181811c9082168061100c57607f821691505b6020821081141561102d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561109157611091611068565b500190565b6020808252601f908201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604082015260600190565b6000828210156110df576110df611068565b500390565b60006000198214156110f8576110f8611068565b506001019056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220439e5e37777a45f765bd9a2a78a8999cb6d9b57eb89f9441419aa7ee9c67f20c64736f6c6343000808003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000019d971e4fe8401e740000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000f4265796f6e642050726f746f636f6c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024250000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80634a377e1d116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610367578063dd62ed3e1461037a578063e79d4160146103b3578063f2fde38b146103bc57600080fd5b806395d89b4114610339578063999f148c14610341578063a457c2d71461035457600080fd5b80634a377e1d146102c457806350a8e016146102d757806370a08231146102e4578063715018a61461030d578063834caa58146103155780638da5cb5b1461032857600080fd5b806323b872dd1161013057806323b872dd1461024e578063313ce5671461026157806333251a0b14610276578063395093511461028b5780633e3e95981461029e57806349bd5a5e146102b157600080fd5b806306fdde0314610178578063095ea7b3146101965780631694505e146101b957806318160ddd146101e457806318e9b8b7146101f65780631d7f367614610222575b600080fd5b6101806103cf565b60405161018d9190610ed3565b60405180910390f35b6101a96101a4366004610f44565b610461565b604051901515815260200161018d565b600d546101cc906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b6003545b60405190815260200161018d565b6101a9610204366004610f6e565b6001600160a01b031660009081526008602052604090205460ff1690565b6101a9610230366004610f6e565b6001600160a01b031660009081526007602052604090205460ff1690565b6101a961025c366004610f89565b610477565b60065460405160ff909116815260200161018d565b610289610284366004610f6e565b6104e0565b005b6101a9610299366004610f44565b610593565b6102896102ac366004610f6e565b6105c9565b600e546101cc906001600160a01b031681565b600f546101cc906001600160a01b031681565b6009546101a99060ff1681565b6101e86102f2366004610f6e565b6001600160a01b031660009081526001602052604090205490565b610289610705565b610289610323366004610f6e565b61073b565b6000546001600160a01b03166101cc565b610180610789565b61028961034f366004610f6e565b610798565b6101a9610362366004610f44565b6107e3565b6101a9610375366004610f44565b610832565b6101e8610388366004610fc5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101e8600c5481565b6102896103ca366004610f6e565b61083f565b6060600480546103de90610ff8565b80601f016020809104026020016040519081016040528092919081815260200182805461040a90610ff8565b80156104575780601f1061042c57610100808354040283529160200191610457565b820191906000526020600020905b81548152906001019060200180831161043a57829003601f168201915b5050505050905090565b600061046e338484610940565b50600192915050565b6000610484848484610a65565b6104d684336104d185604051806060016040528060288152602001611126602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610d9d565b610940565b5060019392505050565b6000546001600160a01b031633146105135760405162461bcd60e51b815260040161050a90611033565b60405180910390fd5b6001600160a01b03811660009081526008602052604090205460ff166105725760405162461bcd60e51b815260206004820152601460248201527322a92199181d1024b9903737ba1039b734b832b960611b604482015260640161050a565b6001600160a01b03166000908152600860205260409020805460ff19169055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161046e9185906104d190866108da565b6000546001600160a01b031633146105f35760405162461bcd60e51b815260040161050a90611033565b600e546001600160a01b03828116911614156106695760405162461bcd60e51b815260206004820152602f60248201527f45524332303a2043616e206e6f742061646420756e697377617056325061697260448201526e081d1bc81cdb9a5c195c881b1a5cdd608a1b606482015260840161050a565b600f546001600160a01b03828116911614156106e15760405162461bcd60e51b815260206004820152603160248201527f45524332303a2043616e206e6f742061646420756e69737761705632526f7574604482015270195c881d1bc81cdb9a5c195c881b1a5cdd607a1b606482015260840161050a565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b0316331461072f5760405162461bcd60e51b815260040161050a90611033565b6107396000610dd4565b565b6000546001600160a01b031633146107655760405162461bcd60e51b815260040161050a90611033565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6060600580546103de90610ff8565b6000546001600160a01b031633146107c25760405162461bcd60e51b815260040161050a90611033565b6001600160a01b03166000908152600760205260409020805460ff19169055565b600061046e33846104d18560405180606001604052806025815260200161114e602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610d9d565b600061046e338484610a65565b6000546001600160a01b031633146108695760405162461bcd60e51b815260040161050a90611033565b6001600160a01b0381166108ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050a565b6108d781610dd4565b50565b6000806108e7838561107e565b9050838110156109395760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161050a565b9392505050565b6001600160a01b0383166109a25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161050a565b6001600160a01b038216610a035760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161050a565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610ac95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161050a565b6001600160a01b038216610b2b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161050a565b6001600160a01b03831660009081526008602052604090205460ff1615610b645760405162461bcd60e51b815260040161050a90611096565b6001600160a01b03821660009081526008602052604090205460ff1615610b9d5760405162461bcd60e51b815260040161050a90611096565b3360009081526008602052604090205460ff1615610bcd5760405162461bcd60e51b815260040161050a90611096565b60095460ff16610be657610be18383610e24565b610cdd565b6000600a54118015610c055750600e546001600160a01b038481169116145b8015610c2a57506001600160a01b03831660009081526007602052604090205460ff16155b8015610c4f57506001600160a01b03821660009081526007602052604090205460ff16155b15610cdd57600b54600a54610c6490436110cd565b1015610cdd576001600160a01b0382166000908152600860205260408120805460ff19166001179055600c805491610c9b836110e4565b90915550506040516001600160a01b03831681527f18e6e5ce5c121466e41a954e72765d1ea02b8e6919043b61f0dab08b4c6572e59060200160405180910390a15b610d1a81604051806060016040528060268152602001611100602691396001600160a01b0386166000908152600160205260409020549190610d9d565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610d4990826108da565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a589085815260200190565b60008184841115610dc15760405162461bcd60e51b815260040161050a9190610ed3565b50610dcc83856110cd565b949350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60095460ff1615610e835760405162461bcd60e51b815260206004820152602360248201527f4c697175696469747920616c726561647920616464656420616e64206d61726b60448201526232b21760e91b606482015260840161050a565b6001600160a01b03821660009081526007602052604090205460ff168015610eb85750600e546001600160a01b038281169116145b15610ecf576009805460ff1916600117905543600a555b5050565b600060208083528351808285015260005b81811015610f0057858101830151858201604001528201610ee4565b81811115610f12576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f3f57600080fd5b919050565b60008060408385031215610f5757600080fd5b610f6083610f28565b946020939093013593505050565b600060208284031215610f8057600080fd5b61093982610f28565b600080600060608486031215610f9e57600080fd5b610fa784610f28565b9250610fb560208501610f28565b9150604084013590509250925092565b60008060408385031215610fd857600080fd5b610fe183610f28565b9150610fef60208401610f28565b90509250929050565b600181811c9082168061100c57607f821691505b6020821081141561102d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561109157611091611068565b500190565b6020808252601f908201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604082015260600190565b6000828210156110df576110df611068565b500390565b60006000198214156110f8576110f8611068565b506001019056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220439e5e37777a45f765bd9a2a78a8999cb6d9b57eb89f9441419aa7ee9c67f20c64736f6c63430008080033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000019d971e4fe8401e740000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000f4265796f6e642050726f746f636f6c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024250000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Beyond Protocol
Arg [1] : symbol_ (string): BP
Arg [2] : uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : totalMint (uint256): 500000000000000000000000000
Arg [4] : _snipeBlockAmt (uint256): 2

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000000000000000000000019d971e4fe8401e74000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 4265796f6e642050726f746f636f6c0000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 4250000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

27661:12750:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29347:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31493:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;31493:169:0;1053:187:1;28273:41:0;;;;;-1:-1:-1;;;;;28273:41:0;;;;;;-1:-1:-1;;;;;1436:32:1;;;1418:51;;1406:2;1391:18;28273:41:0;1245:230:1;30446:108:0;30534:12;;30446:108;;;1626:25:1;;;1614:2;1599:18;30446:108:0;1480:177:1;39330:111:0;;;;;;:::i;:::-;-1:-1:-1;;;;;39415:18:0;39391:4;39415:18;;;:9;:18;;;;;;;;;39330:111;39453:128;;;;;;:::i;:::-;-1:-1:-1;;;;;39547:26:0;39523:4;39547:26;;;:17;:26;;;;;;;;;39453:128;32144:321;;;;;;:::i;:::-;;:::i;30290:91::-;30364:9;;30290:91;;30364:9;;;;2328:36:1;;2316:2;2301:18;30290:91:0;2186:184:1;39931:185:0;;;;;;:::i;:::-;;:::i;:::-;;32874:218;;;;;;:::i;:::-;;:::i;39593:326::-;;;;;;:::i;:::-;;:::i;28321:29::-;;;;;-1:-1:-1;;;;;28321:29:0;;;28357:38;;;;;-1:-1:-1;;;;;28357:38:0;;;28110:36;;;;;;;;;30617:127;;;;;;:::i;:::-;-1:-1:-1;;;;;30718:18:0;30691:7;30718:18;;;:9;:18;;;;;;;30617:127;8163:103;;;:::i;40128:132::-;;;;;;:::i;:::-;;:::i;7512:87::-;7558:7;7585:6;-1:-1:-1;;;;;7585:6:0;7512:87;;29557:95;;;:::i;40272:136::-;;;;;;:::i;:::-;;:::i;33595:269::-;;;;;;:::i;:::-;;:::i;30957:175::-;;;;;;:::i;:::-;;:::i;31195:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31311:18:0;;;31284:7;31311:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31195:151;28228:32;;;;;;8421:201;;;;;;:::i;:::-;;:::i;29347:91::-;29392:13;29425:5;29418:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29347:91;:::o;31493:169::-;31576:4;31593:39;6966:10;31616:7;31625:6;31593:8;:39::i;:::-;-1:-1:-1;31650:4:0;31493:169;;;;:::o;32144:321::-;32250:4;32267:36;32277:6;32285:9;32296:6;32267:9;:36::i;:::-;32314:121;32323:6;6966:10;32345:89;32383:6;32345:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32345:19:0;;;;;;:11;:19;;;;;;;;6966:10;32345:33;;;;;;;;;;:37;:89::i;:::-;32314:8;:121::i;:::-;-1:-1:-1;32453:4:0;32144:321;;;;;:::o;39931:185::-;7558:7;7585:6;-1:-1:-1;;;;;7585:6:0;6966:10;7732:23;7724:68;;;;-1:-1:-1;;;7724:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;40014:24:0;::::1;;::::0;;;:9:::1;:24;::::0;;;;;::::1;;40006:57;;;::::0;-1:-1:-1;;;40006:57:0;;3796:2:1;40006:57:0::1;::::0;::::1;3778:21:1::0;3835:2;3815:18;;;3808:30;-1:-1:-1;;;3854:18:1;;;3847:50;3914:18;;40006:57:0::1;3594:344:1::0;40006:57:0::1;-1:-1:-1::0;;;;;40076:24:0::1;40103:5;40076:24:::0;;;:9:::1;:24;::::0;;;;:32;;-1:-1:-1;;40076:32:0::1;::::0;;39931:185::o;32874:218::-;6966:10;32962:4;33011:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33011:34:0;;;;;;;;;;32962:4;;32979:83;;33002:7;;33011:50;;33050:10;33011:38;:50::i;39593:326::-;7558:7;7585:6;-1:-1:-1;;;;;7585:6:0;6966:10;7732:23;7724:68;;;;-1:-1:-1;;;7724:68:0;;;;;;;:::i;:::-;39690:13:::1;::::0;-1:-1:-1;;;;;39673:30:0;;::::1;39690:13:::0;::::1;39673:30;;39665:90;;;::::0;-1:-1:-1;;;39665:90:0;;4145:2:1;39665:90:0::1;::::0;::::1;4127:21:1::0;4184:2;4164:18;;;4157:30;4223:34;4203:18;;;4196:62;-1:-1:-1;;;4274:18:1;;;4267:45;4329:19;;39665:90:0::1;3943:411:1::0;39665:90:0::1;39791:22;::::0;-1:-1:-1;;;;;39774:39:0;;::::1;39791:22:::0;::::1;39774:39;;39766:101;;;::::0;-1:-1:-1;;;39766:101:0;;4561:2:1;39766:101:0::1;::::0;::::1;4543:21:1::0;4600:2;4580:18;;;4573:30;4639:34;4619:18;;;4612:62;-1:-1:-1;;;4690:18:1;;;4683:47;4747:19;;39766:101:0::1;4359:413:1::0;39766:101:0::1;-1:-1:-1::0;;;;;39880:24:0::1;;::::0;;;:9:::1;:24;::::0;;;;:31;;-1:-1:-1;;39880:31:0::1;39907:4;39880:31;::::0;;39593:326::o;8163:103::-;7558:7;7585:6;-1:-1:-1;;;;;7585:6:0;6966:10;7732:23;7724:68;;;;-1:-1:-1;;;7724:68:0;;;;;;;:::i;:::-;8228:30:::1;8255:1;8228:18;:30::i;:::-;8163:103::o:0;40128:132::-;7558:7;7585:6;-1:-1:-1;;;;;7585:6:0;6966:10;7732:23;7724:68;;;;-1:-1:-1;;;7724:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40211:34:0::1;;::::0;;;:17:::1;:34;::::0;;;;:41;;-1:-1:-1;;40211:41:0::1;40248:4;40211:41;::::0;;40128:132::o;29557:95::-;29604:13;29637:7;29630:14;;;;;:::i;40272:136::-;7558:7;7585:6;-1:-1:-1;;;;;7585:6:0;6966:10;7732:23;7724:68;;;;-1:-1:-1;;;7724:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40358:34:0::1;40395:5;40358:34:::0;;;:17:::1;:34;::::0;;;;:42;;-1:-1:-1;;40358:42:0::1;::::0;;40272:136::o;33595:269::-;33688:4;33705:129;6966:10;33728:7;33737:96;33776:15;33737:96;;;;;;;;;;;;;;;;;6966:10;33737:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33737:34:0;;;;;;;;;;;;:38;:96::i;30957:175::-;31043:4;31060:42;6966:10;31084:9;31095:6;31060:9;:42::i;8421:201::-;7558:7;7585:6;-1:-1:-1;;;;;7585:6:0;6966:10;7732:23;7724:68;;;;-1:-1:-1;;;7724:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8510:22:0;::::1;8502:73;;;::::0;-1:-1:-1;;;8502:73:0;;4979:2:1;8502:73:0::1;::::0;::::1;4961:21:1::0;5018:2;4998:18;;;4991:30;5057:34;5037:18;;;5030:62;-1:-1:-1;;;5108:18:1;;;5101:36;5154:19;;8502:73:0::1;4777:402:1::0;8502:73:0::1;8586:28;8605:8;8586:18;:28::i;:::-;8421:201:::0;:::o;2186:179::-;2244:7;;2276:5;2280:1;2276;:5;:::i;:::-;2264:17;;2305:1;2300;:6;;2292:46;;;;-1:-1:-1;;;2292:46:0;;5651:2:1;2292:46:0;;;5633:21:1;5690:2;5670:18;;;5663:30;5729:29;5709:18;;;5702:57;5776:18;;2292:46:0;5449:351:1;2292:46:0;2356:1;2186:179;-1:-1:-1;;;2186:179:0:o;37535:346::-;-1:-1:-1;;;;;37637:19:0;;37629:68;;;;-1:-1:-1;;;37629:68:0;;6007:2:1;37629:68:0;;;5989:21:1;6046:2;6026:18;;;6019:30;6085:34;6065:18;;;6058:62;-1:-1:-1;;;6136:18:1;;;6129:34;6180:19;;37629:68:0;5805:400:1;37629:68:0;-1:-1:-1;;;;;37716:21:0;;37708:68;;;;-1:-1:-1;;;37708:68:0;;6412:2:1;37708:68:0;;;6394:21:1;6451:2;6431:18;;;6424:30;6490:34;6470:18;;;6463:62;-1:-1:-1;;;6541:18:1;;;6534:32;6583:19;;37708:68:0;6210:398:1;37708:68:0;-1:-1:-1;;;;;37789:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;37841:32;;1626:25:1;;;37841:32:0;;1599:18:1;37841:32:0;;;;;;;;37535:346;;;:::o;34354:1332::-;-1:-1:-1;;;;;34460:20:0;;34452:70;;;;-1:-1:-1;;;34452:70:0;;6815:2:1;34452:70:0;;;6797:21:1;6854:2;6834:18;;;6827:30;6893:34;6873:18;;;6866:62;-1:-1:-1;;;6944:18:1;;;6937:35;6989:19;;34452:70:0;6613:401:1;34452:70:0;-1:-1:-1;;;;;34541:23:0;;34533:71;;;;-1:-1:-1;;;34533:71:0;;7221:2:1;34533:71:0;;;7203:21:1;7260:2;7240:18;;;7233:30;7299:34;7279:18;;;7272:62;-1:-1:-1;;;7350:18:1;;;7343:33;7393:19;;34533:71:0;7019:399:1;34533:71:0;-1:-1:-1;;;;;34624:17:0;;;;;;:9;:17;;;;;;;;34623:18;34615:62;;;;-1:-1:-1;;;34615:62:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34697:20:0;;;;;;:9;:20;;;;;;;;34696:21;34688:65;;;;-1:-1:-1;;;34688:65:0;;;;;;;:::i;:::-;34783:10;34773:21;;;;:9;:21;;;;;;;;34772:22;34764:66;;;;-1:-1:-1;;;34764:66:0;;;;;;;:::i;:::-;34916:16;;;;34911:547;;34949:37;34968:6;34976:9;34949:18;:37::i;:::-;34911:547;;;35038:1;35023:12;;:16;:61;;;;-1:-1:-1;35071:13:0;;-1:-1:-1;;;;;35061:23:0;;;35071:13;;35061:23;35023:61;:109;;;;-1:-1:-1;;;;;;35107:25:0;;;;;;:17;:25;;;;;;;;35106:26;35023:109;:159;;;;-1:-1:-1;;;;;;35154:28:0;;;;;;:17;:28;;;;;;;;35153:29;35023:159;35019:428;;;35251:13;;35236:12;;35221:27;;:12;:27;:::i;:::-;:43;35217:215;;;-1:-1:-1;;;;;35289:20:0;;;;;;:9;:20;;;;;:27;;-1:-1:-1;;35289:27:0;35312:4;35289:27;;;35339:13;:16;;;;;;:::i;:::-;;;;-1:-1:-1;;35383:23:0;;-1:-1:-1;;;;;1436:32:1;;1418:51;;35383:23:0;;1406:2:1;1391:18;35383:23:0;;;;;;;35217:215;35490:71;35512:6;35490:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35490:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;35470:17:0;;;;;;;:9;:17;;;;;;:91;;;;35595:20;;;;;;;:32;;35620:6;35595:24;:32::i;:::-;-1:-1:-1;;;;;35572:20:0;;;;;;;:9;:20;;;;;;;:55;;;;35643:35;;;;;;;;;;35671:6;1626:25:1;;1614:2;1599:18;;1480:177;5013:166:0;5099:7;5135:12;5127:6;;;;5119:29;;;;-1:-1:-1;;;5119:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5166:5:0;5170:1;5166;:5;:::i;:::-;5159:12;5013:166;-1:-1:-1;;;;5013:166:0:o;8782:191::-;8856:16;8875:6;;-1:-1:-1;;;;;8892:17:0;;;-1:-1:-1;;;;;;8892:17:0;;;;;;8925:40;;8875:6;;;;;;;8925:40;;8856:16;8925:40;8845:128;8782:191;:::o;39018:300::-;39100:16;;;;39099:17;39091:65;;;;-1:-1:-1;;;39091:65:0;;8255:2:1;39091:65:0;;;8237:21:1;8294:2;8274:18;;;8267:30;8333:34;8313:18;;;8306:62;-1:-1:-1;;;8384:18:1;;;8377:33;8427:19;;39091:65:0;8053:399:1;39091:65:0;-1:-1:-1;;;;;39171:23:0;;;;;;:17;:23;;;;;;;;:46;;;;-1:-1:-1;39204:13:0;;-1:-1:-1;;;;;39198:19:0;;;39204:13;;39198:19;39171:46;39167:144;;;39234:16;:23;;-1:-1:-1;;39234:23:0;39253:4;39234:23;;;39287:12;39272;:27;39167:144;39018:300;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1662:186::-;1721:6;1774:2;1762:9;1753:7;1749:23;1745:32;1742:52;;;1790:1;1787;1780:12;1742:52;1813:29;1832:9;1813:29;:::i;1853:328::-;1930:6;1938;1946;1999:2;1987:9;1978:7;1974:23;1970:32;1967:52;;;2015:1;2012;2005:12;1967:52;2038:29;2057:9;2038:29;:::i;:::-;2028:39;;2086:38;2120:2;2109:9;2105:18;2086:38;:::i;:::-;2076:48;;2171:2;2160:9;2156:18;2143:32;2133:42;;1853:328;;;;;:::o;2583:260::-;2651:6;2659;2712:2;2700:9;2691:7;2687:23;2683:32;2680:52;;;2728:1;2725;2718:12;2680:52;2751:29;2770:9;2751:29;:::i;:::-;2741:39;;2799:38;2833:2;2822:9;2818:18;2799:38;:::i;:::-;2789:48;;2583:260;;;;;:::o;2848:380::-;2927:1;2923:12;;;;2970;;;2991:61;;3045:4;3037:6;3033:17;3023:27;;2991:61;3098:2;3090:6;3087:14;3067:18;3064:38;3061:161;;;3144:10;3139:3;3135:20;3132:1;3125:31;3179:4;3176:1;3169:15;3207:4;3204:1;3197:15;3061:161;;2848:380;;;:::o;3233:356::-;3435:2;3417:21;;;3454:18;;;3447:30;3513:34;3508:2;3493:18;;3486:62;3580:2;3565:18;;3233:356::o;5184:127::-;5245:10;5240:3;5236:20;5233:1;5226:31;5276:4;5273:1;5266:15;5300:4;5297:1;5290:15;5316:128;5356:3;5387:1;5383:6;5380:1;5377:13;5374:39;;;5393:18;;:::i;:::-;-1:-1:-1;5429:9:1;;5316:128::o;7423:355::-;7625:2;7607:21;;;7664:2;7644:18;;;7637:30;7703:33;7698:2;7683:18;;7676:61;7769:2;7754:18;;7423:355::o;7783:125::-;7823:4;7851:1;7848;7845:8;7842:34;;;7856:18;;:::i;:::-;-1:-1:-1;7893:9:1;;7783:125::o;7913:135::-;7952:3;-1:-1:-1;;7973:17:1;;7970:43;;;7993:18;;:::i;:::-;-1:-1:-1;8040:1:1;8029:13;;7913:135::o

Swarm Source

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