ETH Price: $2,625.44 (+1.09%)

Token

EtherPot (E-POT)
 

Overview

Max Total Supply

100,000,000 E-POT

Holders

48

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
401,353.055933353235424865 E-POT

Value
$0.00
0xc405ad14bE8886FcC97BEE8302D359021958e993
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:
EtherPot

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : ETHERPOT.sol
// SPDX-License-Identifier: MIT

/** 

Website : https://etherpot.io
Telegram : https://t.me/EtherPotERC
Twitter : https://x.com/EtherPotERC
Medium : https://medium.com/@EtherPotLottery/etherpot-revolutionizing-lottery-with-ethereum-blockchain-83f328695b11
Gitbook : https://lottery-4.gitbook.io/ether-pot/
////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            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) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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 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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

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

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

contract EtherPot is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    bool private swapping;
    
    uint256 public genesis_block;

    address public deployerAddress;
    address public lpLocker;
    address public stakeSwapWallet;

    address private devWallet;
    address private POTMAKERWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buydevfee;
    uint256 public buyPOTMAKERfee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public selldevfee;
    uint256 public sellPOTMAKERfee;
    uint256 public sellLiquidityFee;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;


    event ExcludeFromFees(address indexed account, bool isExcluded);

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );
        event POTMAKERWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("EtherPot", "E-POT") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), ETH);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);


        uint256 _buydevfee = 15;
        uint256 _buyPOTMAKERfee = 0;
        uint256 _buyLiquidityFee = 5;

        uint256 _selldevfee = 20;
        uint256 _sellPOTMAKERfee = 0;
        uint256 _sellLiquidityFee = 5;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 20 / 1000; // 1% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buydevfee = _buydevfee;
        buyPOTMAKERfee = _buyPOTMAKERfee;

        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee;

        selldevfee = _selldevfee;
        sellPOTMAKERfee = _sellPOTMAKERfee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = selldevfee + sellLiquidityFee;

        devWallet = address(msg.sender); // set as dev wallet
        POTMAKERWallet = address(msg.sender);
        deployerAddress = address(msg.sender); 
        lpLocker = address(msg.sender); 

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(deployerAddress, true); // Deployer Address
        excludeFromFees(lpLocker, true); // LP Locker

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(deployerAddress, true); // Deployer Address
        excludeFromMaxTransaction(lpLocker, true); // LP Locker

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _devfee,
        uint256 _POTMAKERfee,
        
        uint256 _liquidityFee
    ) external onlyOwner {
        buydevfee = _devfee;
        buyPOTMAKERfee = _POTMAKERfee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee + buyPOTMAKERfee;
        require(buyTotalFees <= 30, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _devfee,
        uint256 _POTMAKERfee,
        uint256 _liquidityFee
    ) external onlyOwner {
        selldevfee = _devfee;
        sellPOTMAKERfee = _POTMAKERfee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = selldevfee + sellLiquidityFee + _POTMAKERfee;
        require(sellTotalFees <= 50, "Must keep fees at 10% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }

        function updatePOTMAKERWallet(address newPOTMAKERWallet)
        external
        onlyOwner
    {
        emit POTMAKERWalletUpdated(newPOTMAKERWallet, POTMAKERWallet);
        POTMAKERWallet = newPOTMAKERWallet;
    }
    


    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            to == uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        uint256 tokensForPOTMAKER = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * selldevfee) / sellTotalFees;
                tokensForPOTMAKER = (fees * selldevfee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buydevfee) / buyTotalFees;
                tokensForPOTMAKER = (fees * buydevfee) / buyTotalFees;
            }

            if (fees> 0) {
                super._transfer(from, address(this), fees);
            }
            if (tokensForLiquidity > 0) {
                super._transfer(address(this), uniswapV2Pair, tokensForLiquidity);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

function swapTokensForETH(uint256 tokenAmount) private {
    // generate the uniswap pair path of token -> weth
    address[] memory path = new address[](2);
    path[0] = address(this);
    path[1] = ETH;

    _approve(address(this), address(uniswapV2Router), tokenAmount);

    // make the swap
    uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
        tokenAmount,
        0, // accept any amount of WETH
        path,
        devWallet,
        block.timestamp
    );

    // Send ETH to the POTMAKERWallet
    payable(POTMAKERWallet).transfer(address(this).balance);
}


    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForETH(contractBalance);
    }

}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"POTMAKERWalletUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyPOTMAKERfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buydevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesis_block","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpLocker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellPOTMAKERfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"selldevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakeSwapWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_POTMAKERfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPOTMAKERWallet","type":"address"}],"name":"updatePOTMAKERWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_POTMAKERfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b03191673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2179055601080546201000162ffffff1990911617905534801562000049575f80fd5b5060405180604001604052806008815260200167115d1a195c941bdd60c21b81525060405180604001604052806005815260200164114b5413d560da1b81525081600390816200009a9190620006b7565b506004620000a98282620006b7565b505050620000c6620000c0620003be60201b60201c565b620003c2565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e881600162000413565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000131573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000157919062000783565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303815f875af1158015620001a6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001cc919062000783565b6001600160a01b031660a0819052620001e790600162000413565b600f5f6005601482826a52b7d2dcc80cd2e40000006103e86200020b8286620007c6565b620002179190620007e6565b600d556103e86200022a826014620007c6565b620002369190620007e6565b600f5561271062000249826005620007c6565b620002559190620007e6565b600e5560128790556013869055601485905562000273858862000806565b60115560168490556017839055601882905562000291828562000806565b601555600b8054336001600160a01b03199182168117909255600c805482168317905560088054821683179055600980549091169091179055620002e9620002e16005546001600160a01b031690565b60016200048b565b620002f63060016200048b565b6200030561dead60016200048b565b6008546200031e906001600160a01b031660016200048b565b60095462000337906001600160a01b031660016200048b565b620003566200034e6005546001600160a01b031690565b600162000413565b6200036330600162000413565b6200037261dead600162000413565b6008546200038b906001600160a01b0316600162000413565b600954620003a4906001600160a01b0316600162000413565b620003b0338262000533565b50505050505050506200081c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004615760405162461bcd60e51b815260206004820181905260248201525f80516020620028ce83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004d55760405162461bcd60e51b815260206004820181905260248201525f80516020620028ce833981519152604482015260640162000458565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200058b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000458565b8060025f8282546200059e919062000806565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005cc90849062000806565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200064357607f821691505b6020821081036200066257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200061557805f5260205f20601f840160051c810160208510156200068f5750805b601f840160051c820191505b81811015620006b0575f81556001016200069b565b5050505050565b81516001600160401b03811115620006d357620006d36200061a565b620006eb81620006e484546200062e565b8462000668565b602080601f83116001811462000721575f8415620007095750858301515b5f19600386901b1c1916600185901b1785556200077b565b5f85815260208120601f198616915b82811015620007515788860151825594840194600190910190840162000730565b50858210156200076f57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121562000794575f80fd5b81516001600160a01b0381168114620007ab575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007e057620007e0620007b2565b92915050565b5f826200080157634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007e057620007e0620007b2565b60805160a05161205f6200086f5f395f818161046e015281816114300152818161163c015281816117460152818161180b01526118e101525f818161036401528181611bbe0152611bfd015261205f5ff3fe60806040526004361061028e575f3560e01c80638095d56411610155578063c8c8ebe4116100be578063e2f4560511610078578063e2f45605146107d5578063efdee94f146107ea578063f11a24d314610809578063f2fde38b1461081e578063f63743421461083d578063f8b45b0514610852575f80fd5b8063c8c8ebe414610714578063d257b34f14610729578063d85ba06314610748578063dac8c7e51461075d578063dd62ed3e14610772578063e1770b6b146107b6575f80fd5b8063a2f0ee191161010f578063a2f0ee191461065b578063a9059cbb1461067a578063bbc0c74214610699578063c0246668146106b7578063c17b5b8c146106d6578063c18bc195146106f5575f80fd5b80638095d564146105b95780638322fff2146105d85780638a8c523c146105f75780638da5cb5b1461060b578063924de9b71461062857806395d89b4114610647575f80fd5b8063489ae78d116101f75780636a486a8e116101b15780636a486a8e1461050a5780636ddd17131461051f57806370a082311461053e578063715018a614610572578063751039fc146105865780637571336a1461059a575f80fd5b8063489ae78d1461044857806349bd5a5e1461045d5780634a62bb65146104905780634fbee193146104a957806365c1bef8146104e057806366ea7489146104f5575f80fd5b80631816467f116102485780631816467f146103a4578063203e727e146103c557806323b872dd146103e4578063274a533c1461040357806327c8f83514610418578063313ce5671461042d575f80fd5b806303fc20131461029957806306fdde03146102d5578063095ea7b3146102f657806310d5de53146103255780631694505e1461035357806318160ddd14610386575f80fd5b3661029557005b5f80fd5b3480156102a4575f80fd5b506009546102b8906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102e0575f80fd5b506102e9610867565b6040516102cc9190611ca2565b348015610301575f80fd5b50610315610310366004611d04565b6108f7565b60405190151581526020016102cc565b348015610330575f80fd5b5061031561033f366004611d2c565b601a6020525f908152604090205460ff1681565b34801561035e575f80fd5b506102b87f000000000000000000000000000000000000000000000000000000000000000081565b348015610391575f80fd5b506002545b6040519081526020016102cc565b3480156103af575f80fd5b506103c36103be366004611d2c565b61090d565b005b3480156103d0575f80fd5b506103c36103df366004611d45565b61099c565b3480156103ef575f80fd5b506103156103fe366004611d5c565b610a79565b34801561040e575f80fd5b5061039660075481565b348015610423575f80fd5b506102b861dead81565b348015610438575f80fd5b50604051601281526020016102cc565b348015610453575f80fd5b5061039660125481565b348015610468575f80fd5b506102b87f000000000000000000000000000000000000000000000000000000000000000081565b34801561049b575f80fd5b506010546103159060ff1681565b3480156104b4575f80fd5b506103156104c3366004611d2c565b6001600160a01b03165f9081526019602052604090205460ff1690565b3480156104eb575f80fd5b5061039660165481565b348015610500575f80fd5b5061039660135481565b348015610515575f80fd5b5061039660155481565b34801561052a575f80fd5b506010546103159062010000900460ff1681565b348015610549575f80fd5b50610396610558366004611d2c565b6001600160a01b03165f9081526020819052604090205490565b34801561057d575f80fd5b506103c3610b21565b348015610591575f80fd5b50610315610b56565b3480156105a5575f80fd5b506103c36105b4366004611da4565b610b92565b3480156105c4575f80fd5b506103c36105d3366004611dd5565b610be6565b3480156105e3575f80fd5b506006546102b8906001600160a01b031681565b348015610602575f80fd5b506103c3610c8e565b348015610616575f80fd5b506005546001600160a01b03166102b8565b348015610633575f80fd5b506103c3610642366004611dfe565b610ccb565b348015610652575f80fd5b506102e9610d11565b348015610666575f80fd5b506103c3610675366004611d2c565b610d20565b348015610685575f80fd5b50610315610694366004611d04565b610da6565b3480156106a4575f80fd5b5060105461031590610100900460ff1681565b3480156106c2575f80fd5b506103c36106d1366004611da4565b610db2565b3480156106e1575f80fd5b506103c36106f0366004611dd5565b610e3a565b348015610700575f80fd5b506103c361070f366004611d45565b610edd565b34801561071f575f80fd5b50610396600d5481565b348015610734575f80fd5b50610315610743366004611d45565b610fae565b348015610753575f80fd5b5061039660115481565b348015610768575f80fd5b5061039660175481565b34801561077d575f80fd5b5061039661078c366004611e17565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156107c1575f80fd5b50600a546102b8906001600160a01b031681565b3480156107e0575f80fd5b50610396600e5481565b3480156107f5575f80fd5b506008546102b8906001600160a01b031681565b348015610814575f80fd5b5061039660145481565b348015610829575f80fd5b506103c3610838366004611d2c565b611104565b348015610848575f80fd5b5061039660185481565b34801561085d575f80fd5b50610396600f5481565b60606003805461087690611e3f565b80601f01602080910402602001604051908101604052809291908181526020018280546108a290611e3f565b80156108ed5780601f106108c4576101008083540402835291602001916108ed565b820191905f5260205f20905b8154815290600101906020018083116108d057829003601f168201915b5050505050905090565b5f61090333848461119f565b5060015b92915050565b6005546001600160a01b031633146109405760405162461bcd60e51b815260040161093790611e77565b60405180910390fd5b600b546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e743905f90a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109c65760405162461bcd60e51b815260040161093790611e77565b670de0b6b3a76400006103e86109db60025490565b6109e6906005611ec0565b6109f09190611ed7565b6109fa9190611ed7565b811015610a615760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610937565b610a7381670de0b6b3a7640000611ec0565b600d5550565b5f610a858484846112c2565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610b095760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610937565b610b16853385840361119f565b506001949350505050565b6005546001600160a01b03163314610b4b5760405162461bcd60e51b815260040161093790611e77565b610b545f61192a565b565b6005545f906001600160a01b03163314610b825760405162461bcd60e51b815260040161093790611e77565b506010805460ff19169055600190565b6005546001600160a01b03163314610bbc5760405162461bcd60e51b815260040161093790611e77565b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c105760405162461bcd60e51b815260040161093790611e77565b60128390556013829055601481905581610c2a8285611ef6565b610c349190611ef6565b6011819055601e1015610c895760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610937565b505050565b6005546001600160a01b03163314610cb85760405162461bcd60e51b815260040161093790611e77565b6010805462ffff00191662010100179055565b6005546001600160a01b03163314610cf55760405162461bcd60e51b815260040161093790611e77565b60108054911515620100000262ff000019909216919091179055565b60606004805461087690611e3f565b6005546001600160a01b03163314610d4a5760405162461bcd60e51b815260040161093790611e77565b600c546040516001600160a01b03918216918316907fce0765e92f8f01837f86a7ef2e05aec95a980911539b180868a42797ec9f5c3a905f90a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6109033384846112c2565b6005546001600160a01b03163314610ddc5760405162461bcd60e51b815260040161093790611e77565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e645760405162461bcd60e51b815260040161093790611e77565b60168390556017829055601881905581610e7e8285611ef6565b610e889190611ef6565b601581905560321015610c895760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610937565b6005546001600160a01b03163314610f075760405162461bcd60e51b815260040161093790611e77565b670de0b6b3a76400006103e8610f1c60025490565b610f27906005611ec0565b610f319190611ed7565b610f3b9190611ed7565b811015610f965760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610937565b610fa881670de0b6b3a7640000611ec0565b600f5550565b6005545f906001600160a01b03163314610fda5760405162461bcd60e51b815260040161093790611e77565b620186a0610fe760025490565b610ff2906001611ec0565b610ffc9190611ed7565b8210156110695760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610937565b6103e861107560025490565b611080906005611ec0565b61108a9190611ed7565b8211156110f65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610937565b50600e81905560015b919050565b6005546001600160a01b0316331461112e5760405162461bcd60e51b815260040161093790611e77565b6001600160a01b0381166111935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610937565b61119c8161192a565b50565b6001600160a01b0383166112015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610937565b6001600160a01b0382166112625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610937565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112e85760405162461bcd60e51b815260040161093790611f09565b6001600160a01b03821661130e5760405162461bcd60e51b815260040161093790611f4e565b805f0361132057610c8983835f61197b565b60105460ff16156115f2576005546001600160a01b0384811691161480159061135757506005546001600160a01b03838116911614155b801561136b57506001600160a01b03821615155b801561138257506001600160a01b03821661dead14155b80156113985750600654600160a01b900460ff16155b156115f257601054610100900460ff1661142e576001600160a01b0383165f9081526019602052604090205460ff16806113e957506001600160a01b0382165f9081526019602052604090205460ff165b61142e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610937565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561148757506001600160a01b0382165f908152601a602052604090205460ff16155b1561156a57600d548111156114fc5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610937565b600f546001600160a01b0383165f908152602081905260409020546115219083611ef6565b11156115655760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610937565b6115f2565b6001600160a01b0382165f908152601a602052604090205460ff166115f257600f546001600160a01b0383165f908152602081905260409020546115ae9083611ef6565b11156115f25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610937565b305f90815260208190526040902054600e548110801590819061161d575060105462010000900460ff165b80156116335750600654600160a01b900460ff16155b801561167057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561169457506001600160a01b0385165f9081526019602052604090205460ff16155b80156116b857506001600160a01b0384165f9081526019602052604090205460ff16155b156116e6576006805460ff60a01b1916600160a01b1790556116d8611ace565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526019602052604090205460ff600160a01b90920482161591168061173257506001600160a01b0385165f9081526019602052604090205460ff165b1561173a57505f5b5f805f808415611913577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561178657505f601554115b15611809576117ab60646117a56015548b611b1790919063ffffffff16565b90611b29565b9350601554601854856117be9190611ec0565b6117c89190611ed7565b9250601554601654856117db9190611ec0565b6117e59190611ed7565b9150601554601654856117f89190611ec0565b6118029190611ed7565b90506118c4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168a6001600160a01b031614801561184b57505f601154115b156118c45761186a60646117a56011548b611b1790919063ffffffff16565b93506011546014548561187d9190611ec0565b6118879190611ed7565b92506011546012548561189a9190611ec0565b6118a49190611ed7565b9150601154601254856118b79190611ec0565b6118c19190611ed7565b90505b83156118d5576118d58a308661197b565b821561190657611906307f00000000000000000000000000000000000000000000000000000000000000008561197b565b6119108489611f91565b97505b61191e8a8a8a61197b565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166119a15760405162461bcd60e51b815260040161093790611f09565b6001600160a01b0382166119c75760405162461bcd60e51b815260040161093790611f4e565b6001600160a01b0383165f9081526020819052604090205481811015611a3e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610937565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611a74908490611ef6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ac091815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611ae85750565b600e54611af6906014611ec0565b811115611b0e57600e54611b0b906014611ec0565b90505b61119c81611b34565b5f611b228284611ec0565b9392505050565b5f611b228284611ed7565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b6757611b67611fa4565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611b9857611b98611fa4565b60200260200101906001600160a01b031690816001600160a01b031681525050611be3307f00000000000000000000000000000000000000000000000000000000000000008461119f565b600b54604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611c3e9287925f92889291909116904290600401611fb8565b5f604051808303815f87803b158015611c55575f80fd5b505af1158015611c67573d5f803e3d5ffd5b5050600c546040516001600160a01b0390911692504780156108fc029250905f818181858888f19350505050158015610c89573d5f803e3d5ffd5b5f602080835283518060208501525f5b81811015611cce57858101830151858201604001528201611cb2565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110ff575f80fd5b5f8060408385031215611d15575f80fd5b611d1e83611cee565b946020939093013593505050565b5f60208284031215611d3c575f80fd5b611b2282611cee565b5f60208284031215611d55575f80fd5b5035919050565b5f805f60608486031215611d6e575f80fd5b611d7784611cee565b9250611d8560208501611cee565b9150604084013590509250925092565b803580151581146110ff575f80fd5b5f8060408385031215611db5575f80fd5b611dbe83611cee565b9150611dcc60208401611d95565b90509250929050565b5f805f60608486031215611de7575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215611e0e575f80fd5b611b2282611d95565b5f8060408385031215611e28575f80fd5b611e3183611cee565b9150611dcc60208401611cee565b600181811c90821680611e5357607f821691505b602082108103611e7157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761090757610907611eac565b5f82611ef157634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561090757610907611eac565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561090757610907611eac565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156120085784516001600160a01b031683529383019391830191600101611fe3565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220aaae5cfacc7c04a8ec1e72b5a29059d4de8c8bee82a1ba7e1a1df02342ae5e5c64736f6c634300081700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061028e575f3560e01c80638095d56411610155578063c8c8ebe4116100be578063e2f4560511610078578063e2f45605146107d5578063efdee94f146107ea578063f11a24d314610809578063f2fde38b1461081e578063f63743421461083d578063f8b45b0514610852575f80fd5b8063c8c8ebe414610714578063d257b34f14610729578063d85ba06314610748578063dac8c7e51461075d578063dd62ed3e14610772578063e1770b6b146107b6575f80fd5b8063a2f0ee191161010f578063a2f0ee191461065b578063a9059cbb1461067a578063bbc0c74214610699578063c0246668146106b7578063c17b5b8c146106d6578063c18bc195146106f5575f80fd5b80638095d564146105b95780638322fff2146105d85780638a8c523c146105f75780638da5cb5b1461060b578063924de9b71461062857806395d89b4114610647575f80fd5b8063489ae78d116101f75780636a486a8e116101b15780636a486a8e1461050a5780636ddd17131461051f57806370a082311461053e578063715018a614610572578063751039fc146105865780637571336a1461059a575f80fd5b8063489ae78d1461044857806349bd5a5e1461045d5780634a62bb65146104905780634fbee193146104a957806365c1bef8146104e057806366ea7489146104f5575f80fd5b80631816467f116102485780631816467f146103a4578063203e727e146103c557806323b872dd146103e4578063274a533c1461040357806327c8f83514610418578063313ce5671461042d575f80fd5b806303fc20131461029957806306fdde03146102d5578063095ea7b3146102f657806310d5de53146103255780631694505e1461035357806318160ddd14610386575f80fd5b3661029557005b5f80fd5b3480156102a4575f80fd5b506009546102b8906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102e0575f80fd5b506102e9610867565b6040516102cc9190611ca2565b348015610301575f80fd5b50610315610310366004611d04565b6108f7565b60405190151581526020016102cc565b348015610330575f80fd5b5061031561033f366004611d2c565b601a6020525f908152604090205460ff1681565b34801561035e575f80fd5b506102b87f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610391575f80fd5b506002545b6040519081526020016102cc565b3480156103af575f80fd5b506103c36103be366004611d2c565b61090d565b005b3480156103d0575f80fd5b506103c36103df366004611d45565b61099c565b3480156103ef575f80fd5b506103156103fe366004611d5c565b610a79565b34801561040e575f80fd5b5061039660075481565b348015610423575f80fd5b506102b861dead81565b348015610438575f80fd5b50604051601281526020016102cc565b348015610453575f80fd5b5061039660125481565b348015610468575f80fd5b506102b87f000000000000000000000000fc7303ff39b3aae6858d66546e1d1587a3e29ec981565b34801561049b575f80fd5b506010546103159060ff1681565b3480156104b4575f80fd5b506103156104c3366004611d2c565b6001600160a01b03165f9081526019602052604090205460ff1690565b3480156104eb575f80fd5b5061039660165481565b348015610500575f80fd5b5061039660135481565b348015610515575f80fd5b5061039660155481565b34801561052a575f80fd5b506010546103159062010000900460ff1681565b348015610549575f80fd5b50610396610558366004611d2c565b6001600160a01b03165f9081526020819052604090205490565b34801561057d575f80fd5b506103c3610b21565b348015610591575f80fd5b50610315610b56565b3480156105a5575f80fd5b506103c36105b4366004611da4565b610b92565b3480156105c4575f80fd5b506103c36105d3366004611dd5565b610be6565b3480156105e3575f80fd5b506006546102b8906001600160a01b031681565b348015610602575f80fd5b506103c3610c8e565b348015610616575f80fd5b506005546001600160a01b03166102b8565b348015610633575f80fd5b506103c3610642366004611dfe565b610ccb565b348015610652575f80fd5b506102e9610d11565b348015610666575f80fd5b506103c3610675366004611d2c565b610d20565b348015610685575f80fd5b50610315610694366004611d04565b610da6565b3480156106a4575f80fd5b5060105461031590610100900460ff1681565b3480156106c2575f80fd5b506103c36106d1366004611da4565b610db2565b3480156106e1575f80fd5b506103c36106f0366004611dd5565b610e3a565b348015610700575f80fd5b506103c361070f366004611d45565b610edd565b34801561071f575f80fd5b50610396600d5481565b348015610734575f80fd5b50610315610743366004611d45565b610fae565b348015610753575f80fd5b5061039660115481565b348015610768575f80fd5b5061039660175481565b34801561077d575f80fd5b5061039661078c366004611e17565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156107c1575f80fd5b50600a546102b8906001600160a01b031681565b3480156107e0575f80fd5b50610396600e5481565b3480156107f5575f80fd5b506008546102b8906001600160a01b031681565b348015610814575f80fd5b5061039660145481565b348015610829575f80fd5b506103c3610838366004611d2c565b611104565b348015610848575f80fd5b5061039660185481565b34801561085d575f80fd5b50610396600f5481565b60606003805461087690611e3f565b80601f01602080910402602001604051908101604052809291908181526020018280546108a290611e3f565b80156108ed5780601f106108c4576101008083540402835291602001916108ed565b820191905f5260205f20905b8154815290600101906020018083116108d057829003601f168201915b5050505050905090565b5f61090333848461119f565b5060015b92915050565b6005546001600160a01b031633146109405760405162461bcd60e51b815260040161093790611e77565b60405180910390fd5b600b546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e743905f90a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109c65760405162461bcd60e51b815260040161093790611e77565b670de0b6b3a76400006103e86109db60025490565b6109e6906005611ec0565b6109f09190611ed7565b6109fa9190611ed7565b811015610a615760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610937565b610a7381670de0b6b3a7640000611ec0565b600d5550565b5f610a858484846112c2565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610b095760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610937565b610b16853385840361119f565b506001949350505050565b6005546001600160a01b03163314610b4b5760405162461bcd60e51b815260040161093790611e77565b610b545f61192a565b565b6005545f906001600160a01b03163314610b825760405162461bcd60e51b815260040161093790611e77565b506010805460ff19169055600190565b6005546001600160a01b03163314610bbc5760405162461bcd60e51b815260040161093790611e77565b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c105760405162461bcd60e51b815260040161093790611e77565b60128390556013829055601481905581610c2a8285611ef6565b610c349190611ef6565b6011819055601e1015610c895760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610937565b505050565b6005546001600160a01b03163314610cb85760405162461bcd60e51b815260040161093790611e77565b6010805462ffff00191662010100179055565b6005546001600160a01b03163314610cf55760405162461bcd60e51b815260040161093790611e77565b60108054911515620100000262ff000019909216919091179055565b60606004805461087690611e3f565b6005546001600160a01b03163314610d4a5760405162461bcd60e51b815260040161093790611e77565b600c546040516001600160a01b03918216918316907fce0765e92f8f01837f86a7ef2e05aec95a980911539b180868a42797ec9f5c3a905f90a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6109033384846112c2565b6005546001600160a01b03163314610ddc5760405162461bcd60e51b815260040161093790611e77565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e645760405162461bcd60e51b815260040161093790611e77565b60168390556017829055601881905581610e7e8285611ef6565b610e889190611ef6565b601581905560321015610c895760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610937565b6005546001600160a01b03163314610f075760405162461bcd60e51b815260040161093790611e77565b670de0b6b3a76400006103e8610f1c60025490565b610f27906005611ec0565b610f319190611ed7565b610f3b9190611ed7565b811015610f965760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610937565b610fa881670de0b6b3a7640000611ec0565b600f5550565b6005545f906001600160a01b03163314610fda5760405162461bcd60e51b815260040161093790611e77565b620186a0610fe760025490565b610ff2906001611ec0565b610ffc9190611ed7565b8210156110695760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610937565b6103e861107560025490565b611080906005611ec0565b61108a9190611ed7565b8211156110f65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610937565b50600e81905560015b919050565b6005546001600160a01b0316331461112e5760405162461bcd60e51b815260040161093790611e77565b6001600160a01b0381166111935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610937565b61119c8161192a565b50565b6001600160a01b0383166112015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610937565b6001600160a01b0382166112625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610937565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112e85760405162461bcd60e51b815260040161093790611f09565b6001600160a01b03821661130e5760405162461bcd60e51b815260040161093790611f4e565b805f0361132057610c8983835f61197b565b60105460ff16156115f2576005546001600160a01b0384811691161480159061135757506005546001600160a01b03838116911614155b801561136b57506001600160a01b03821615155b801561138257506001600160a01b03821661dead14155b80156113985750600654600160a01b900460ff16155b156115f257601054610100900460ff1661142e576001600160a01b0383165f9081526019602052604090205460ff16806113e957506001600160a01b0382165f9081526019602052604090205460ff165b61142e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610937565b7f000000000000000000000000fc7303ff39b3aae6858d66546e1d1587a3e29ec96001600160a01b0316836001600160a01b031614801561148757506001600160a01b0382165f908152601a602052604090205460ff16155b1561156a57600d548111156114fc5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610937565b600f546001600160a01b0383165f908152602081905260409020546115219083611ef6565b11156115655760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610937565b6115f2565b6001600160a01b0382165f908152601a602052604090205460ff166115f257600f546001600160a01b0383165f908152602081905260409020546115ae9083611ef6565b11156115f25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610937565b305f90815260208190526040902054600e548110801590819061161d575060105462010000900460ff165b80156116335750600654600160a01b900460ff16155b801561167057507f000000000000000000000000fc7303ff39b3aae6858d66546e1d1587a3e29ec96001600160a01b0316846001600160a01b0316145b801561169457506001600160a01b0385165f9081526019602052604090205460ff16155b80156116b857506001600160a01b0384165f9081526019602052604090205460ff16155b156116e6576006805460ff60a01b1916600160a01b1790556116d8611ace565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526019602052604090205460ff600160a01b90920482161591168061173257506001600160a01b0385165f9081526019602052604090205460ff165b1561173a57505f5b5f805f808415611913577f000000000000000000000000fc7303ff39b3aae6858d66546e1d1587a3e29ec96001600160a01b0316896001600160a01b031614801561178657505f601554115b15611809576117ab60646117a56015548b611b1790919063ffffffff16565b90611b29565b9350601554601854856117be9190611ec0565b6117c89190611ed7565b9250601554601654856117db9190611ec0565b6117e59190611ed7565b9150601554601654856117f89190611ec0565b6118029190611ed7565b90506118c4565b7f000000000000000000000000fc7303ff39b3aae6858d66546e1d1587a3e29ec96001600160a01b03168a6001600160a01b031614801561184b57505f601154115b156118c45761186a60646117a56011548b611b1790919063ffffffff16565b93506011546014548561187d9190611ec0565b6118879190611ed7565b92506011546012548561189a9190611ec0565b6118a49190611ed7565b9150601154601254856118b79190611ec0565b6118c19190611ed7565b90505b83156118d5576118d58a308661197b565b821561190657611906307f000000000000000000000000fc7303ff39b3aae6858d66546e1d1587a3e29ec98561197b565b6119108489611f91565b97505b61191e8a8a8a61197b565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166119a15760405162461bcd60e51b815260040161093790611f09565b6001600160a01b0382166119c75760405162461bcd60e51b815260040161093790611f4e565b6001600160a01b0383165f9081526020819052604090205481811015611a3e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610937565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611a74908490611ef6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ac091815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611ae85750565b600e54611af6906014611ec0565b811115611b0e57600e54611b0b906014611ec0565b90505b61119c81611b34565b5f611b228284611ec0565b9392505050565b5f611b228284611ed7565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b6757611b67611fa4565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611b9857611b98611fa4565b60200260200101906001600160a01b031690816001600160a01b031681525050611be3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461119f565b600b54604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611c3e9287925f92889291909116904290600401611fb8565b5f604051808303815f87803b158015611c55575f80fd5b505af1158015611c67573d5f803e3d5ffd5b5050600c546040516001600160a01b0390911692504780156108fc029250905f818181858888f19350505050158015610c89573d5f803e3d5ffd5b5f602080835283518060208501525f5b81811015611cce57858101830151858201604001528201611cb2565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110ff575f80fd5b5f8060408385031215611d15575f80fd5b611d1e83611cee565b946020939093013593505050565b5f60208284031215611d3c575f80fd5b611b2282611cee565b5f60208284031215611d55575f80fd5b5035919050565b5f805f60608486031215611d6e575f80fd5b611d7784611cee565b9250611d8560208501611cee565b9150604084013590509250925092565b803580151581146110ff575f80fd5b5f8060408385031215611db5575f80fd5b611dbe83611cee565b9150611dcc60208401611d95565b90509250929050565b5f805f60608486031215611de7575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215611e0e575f80fd5b611b2282611d95565b5f8060408385031215611e28575f80fd5b611e3183611cee565b9150611dcc60208401611cee565b600181811c90821680611e5357607f821691505b602082108103611e7157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761090757610907611eac565b5f82611ef157634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561090757610907611eac565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561090757610907611eac565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156120085784516001600160a01b031683529383019391830191600101611fe3565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220aaae5cfacc7c04a8ec1e72b5a29059d4de8c8bee82a1ba7e1a1df02342ae5e5c64736f6c63430008170033

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.