ETH Price: $3,443.63 (-1.07%)
Gas: 10 Gwei

Token

Dornado Mixer (DORNADO)
 

Overview

Max Total Supply

100,000,000,000 DORNADO

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Kennel Locker: Deployer
Balance
82,906,378,691.514454366934156984 DORNADO

Value
$0.00
0x2d073c6cDB12f50a339B3C3AD1AD1402ED861727
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:
ScrapedE0

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : dornado.sol
// Website : https://dornado.site
//Twitter : https://twitter.com/dornadoERC
// Telegram : https://t.me/dornadoERC
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.
 *mic
 * 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 ScrapedE0 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;

    address public deployerAddress;
    address public lpLocker;

    address private devWallet;

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

    uint256 public sellTotalFees;
    uint256 public selldevfee;
    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
    );

    constructor() ERC20("Dornado Mixer", "DORNADO") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buydevfee = 20;
        uint256 _buyLiquidityFee = 5;

        uint256 _selldevfee = 20;
        uint256 _sellLiquidityFee = 5;

        uint256 totalSupply = 100_000_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;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee;

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

        devWallet = address(0xbDEa8801fcb58D59Fe76dac4C770eD76C8aAf74e); // set as dev wallet
        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() * 600) / 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 _liquidityFee
    ) external onlyOwner {
        buydevfee = _devfee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee;
        require(buyTotalFees <= 30, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _devfee,
        uint256 _liquidityFee
    ) external onlyOwner {
        selldevfee = _devfee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = selldevfee + sellLiquidityFee;
        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 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;
        // 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;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (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
        );
    }

    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":"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":"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":[{"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":"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":"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":"_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":"uint256","name":"_devfee","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"}]

60c0604052600680546001600160a01b03191673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2179055600d80546201000162ffffff199091161790553480156200004a57600080fd5b506040518060400160405280600d81526020016c2237b93730b2379026b4bc32b960991b81525060405180604001604052806007815260200166444f524e41444f60c81b8152508160039081620000a29190620006d0565b506004620000b18282620006d0565b505050620000ce620000c8620003c860201b60201c565b620003cc565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f08160016200041e565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016191906200079c565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d991906200079c565b6001600160a01b031660a0819052620001f49060016200041e565b6014600581816c01431e0fae6d7217caa00000006103e8620002178285620007e4565b62000223919062000806565b600a556103e862000236826014620007e4565b62000242919062000806565b600c5561271062000255826005620007e4565b62000261919062000806565b600b55600f85905560108490556200027a848662000829565b600e556012839055601382905562000293828462000829565b601155600980546001600160a01b031990811673bdea8801fcb58d59fe76dac4c770ed76c8aaf74e179091556007805482163390811790915560088054909216179055620002f5620002ed6005546001600160a01b031690565b600162000498565b6200030230600162000498565b6200031161dead600162000498565b6007546200032a906001600160a01b0316600162000498565b60085462000343906001600160a01b0316600162000498565b620003626200035a6005546001600160a01b031690565b60016200041e565b6200036f3060016200041e565b6200037e61dead60016200041e565b60075462000397906001600160a01b031660016200041e565b600854620003b0906001600160a01b031660016200041e565b620003bc338262000542565b50505050505062000845565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200046d5760405162461bcd60e51b81526020600482018190526024820152600080516020620027ba83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004e35760405162461bcd60e51b81526020600482018190526024820152600080516020620027ba833981519152604482015260640162000464565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200059a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000464565b8060026000828254620005ae919062000829565b90915550506001600160a01b03821660009081526020819052604081208054839290620005dd90849062000829565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200065757607f821691505b6020821081036200067857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200062757600081815260208120601f850160051c81016020861015620006a75750805b601f850160051c820191505b81811015620006c857828155600101620006b3565b505050505050565b81516001600160401b03811115620006ec57620006ec6200062c565b6200070481620006fd845462000642565b846200067e565b602080601f8311600181146200073c5760008415620007235750858301515b600019600386901b1c1916600185901b178555620006c8565b600085815260208120601f198616915b828110156200076d578886015182559484019460019091019084016200074c565b50858210156200078c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007af57600080fd5b81516001600160a01b0381168114620007c757600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620008015762000801620007ce565b500290565b6000826200082457634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200083f576200083f620007ce565b92915050565b60805160a051611f1e6200089c6000396000818161045a015281816113250152818161153601528181611646015281816116ef01526117a901526000818161035f01528181611a8d0152611acc0152611f1e6000f3fe6080604052600436106102605760003560e01c8063715018a611610144578063c18bc195116100b6578063e2f456051161007a578063e2f4560514610754578063efdee94f1461076a578063f11a24d31461078a578063f2fde38b146107a0578063f6374342146107c0578063f8b45b05146107d657600080fd5b8063c18bc195146106a2578063c8c8ebe4146106c2578063d257b34f146106d8578063d85ba063146106f8578063dd62ed3e1461070e57600080fd5b80638da5cb5b116101085780638da5cb5b146105f0578063924de9b71461060e57806395d89b411461062e578063a9059cbb14610643578063bbc0c74214610663578063c02466681461068257600080fd5b8063715018a614610571578063751039fc146105865780637571336a1461059b5780638322fff2146105bb5780638a8c523c146105db57600080fd5b806327c8f835116101dd5780634fbee193116101a15780634fbee1931461049657806365c1bef8146104cf57806366ca9b83146104e55780636a486a8e146105055780636ddd17131461051b57806370a082311461053b57600080fd5b806327c8f83514610400578063313ce56714610416578063489ae78d1461043257806349bd5a5e146104485780634a62bb651461047c57600080fd5b80631694505e116102245780631694505e1461034d57806318160ddd146103815780631816467f146103a0578063203e727e146103c057806323b872dd146103e057600080fd5b806302dbd8f81461026c57806303fc20131461028e57806306fdde03146102cb578063095ea7b3146102ed57806310d5de531461031d57600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611b44565b6107ec565b005b34801561029a57600080fd5b506008546102ae906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102d757600080fd5b506102e061088c565b6040516102c29190611b66565b3480156102f957600080fd5b5061030d610308366004611bcb565b61091e565b60405190151581526020016102c2565b34801561032957600080fd5b5061030d610338366004611bf5565b60156020526000908152604090205460ff1681565b34801561035957600080fd5b506102ae7f000000000000000000000000000000000000000000000000000000000000000081565b34801561038d57600080fd5b506002545b6040519081526020016102c2565b3480156103ac57600080fd5b5061028c6103bb366004611bf5565b610935565b3480156103cc57600080fd5b5061028c6103db366004611c10565b6109bc565b3480156103ec57600080fd5b5061030d6103fb366004611c29565b610a9a565b34801561040c57600080fd5b506102ae61dead81565b34801561042257600080fd5b50604051601281526020016102c2565b34801561043e57600080fd5b50610392600f5481565b34801561045457600080fd5b506102ae7f000000000000000000000000000000000000000000000000000000000000000081565b34801561048857600080fd5b50600d5461030d9060ff1681565b3480156104a257600080fd5b5061030d6104b1366004611bf5565b6001600160a01b031660009081526014602052604090205460ff1690565b3480156104db57600080fd5b5061039260125481565b3480156104f157600080fd5b5061028c610500366004611b44565b610b44565b34801561051157600080fd5b5061039260115481565b34801561052757600080fd5b50600d5461030d9062010000900460ff1681565b34801561054757600080fd5b50610392610556366004611bf5565b6001600160a01b031660009081526020819052604090205490565b34801561057d57600080fd5b5061028c610bd7565b34801561059257600080fd5b5061030d610c0d565b3480156105a757600080fd5b5061028c6105b6366004611c75565b610c4a565b3480156105c757600080fd5b506006546102ae906001600160a01b031681565b3480156105e757600080fd5b5061028c610c9f565b3480156105fc57600080fd5b506005546001600160a01b03166102ae565b34801561061a57600080fd5b5061028c610629366004611ca8565b610cdc565b34801561063a57600080fd5b506102e0610d22565b34801561064f57600080fd5b5061030d61065e366004611bcb565b610d31565b34801561066f57600080fd5b50600d5461030d90610100900460ff1681565b34801561068e57600080fd5b5061028c61069d366004611c75565b610d3e565b3480156106ae57600080fd5b5061028c6106bd366004611c10565b610dc7565b3480156106ce57600080fd5b50610392600a5481565b3480156106e457600080fd5b5061030d6106f3366004611c10565b610e98565b34801561070457600080fd5b50610392600e5481565b34801561071a57600080fd5b50610392610729366004611cc3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561076057600080fd5b50610392600b5481565b34801561077657600080fd5b506007546102ae906001600160a01b031681565b34801561079657600080fd5b5061039260105481565b3480156107ac57600080fd5b5061028c6107bb366004611bf5565b610fef565b3480156107cc57600080fd5b5061039260135481565b3480156107e257600080fd5b50610392600c5481565b6005546001600160a01b0316331461081f5760405162461bcd60e51b815260040161081690611ced565b60405180910390fd5b601282905560138190556108338183611d38565b6011819055603210156108885760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610816565b5050565b60606003805461089b90611d4b565b80601f01602080910402602001604051908101604052809291908181526020018280546108c790611d4b565b80156109145780601f106108e957610100808354040283529160200191610914565b820191906000526020600020905b8154815290600101906020018083116108f757829003601f168201915b5050505050905090565b600061092b33848461108a565b5060015b92915050565b6005546001600160a01b0316331461095f5760405162461bcd60e51b815260040161081690611ced565b6009546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109e65760405162461bcd60e51b815260040161081690611ced565b670de0b6b3a76400006103e86109fb60025490565b610a0790610258611d85565b610a119190611da4565b610a1b9190611da4565b811015610a825760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610816565b610a9481670de0b6b3a7640000611d85565b600a5550565b6000610aa78484846111ae565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b2c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610816565b610b39853385840361108a565b506001949350505050565b6005546001600160a01b03163314610b6e5760405162461bcd60e51b815260040161081690611ced565b600f8290556010819055610b828183611d38565b600e819055601e10156108885760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610816565b6005546001600160a01b03163314610c015760405162461bcd60e51b815260040161081690611ced565b610c0b60006117f1565b565b6005546000906001600160a01b03163314610c3a5760405162461bcd60e51b815260040161081690611ced565b50600d805460ff19169055600190565b6005546001600160a01b03163314610c745760405162461bcd60e51b815260040161081690611ced565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cc95760405162461bcd60e51b815260040161081690611ced565b600d805462ffff00191662010100179055565b6005546001600160a01b03163314610d065760405162461bcd60e51b815260040161081690611ced565b600d8054911515620100000262ff000019909216919091179055565b60606004805461089b90611d4b565b600061092b3384846111ae565b6005546001600160a01b03163314610d685760405162461bcd60e51b815260040161081690611ced565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610df15760405162461bcd60e51b815260040161081690611ced565b670de0b6b3a76400006103e8610e0660025490565b610e11906005611d85565b610e1b9190611da4565b610e259190611da4565b811015610e805760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610816565b610e9281670de0b6b3a7640000611d85565b600c5550565b6005546000906001600160a01b03163314610ec55760405162461bcd60e51b815260040161081690611ced565b620186a0610ed260025490565b610edd906001611d85565b610ee79190611da4565b821015610f545760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610816565b6103e8610f6060025490565b610f6b906005611d85565b610f759190611da4565b821115610fe15760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610816565b50600b81905560015b919050565b6005546001600160a01b031633146110195760405162461bcd60e51b815260040161081690611ced565b6001600160a01b03811661107e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610816565b611087816117f1565b50565b6001600160a01b0383166110ec5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610816565b6001600160a01b03821661114d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610816565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111d45760405162461bcd60e51b815260040161081690611dc6565b6001600160a01b0382166111fa5760405162461bcd60e51b815260040161081690611e0b565b806000036112135761120e83836000611843565b505050565b600d5460ff16156114eb576005546001600160a01b0384811691161480159061124a57506005546001600160a01b03838116911614155b801561125e57506001600160a01b03821615155b801561127557506001600160a01b03821661dead14155b801561128b5750600654600160a01b900460ff16155b156114eb57600d54610100900460ff16611323576001600160a01b03831660009081526014602052604090205460ff16806112de57506001600160a01b03821660009081526014602052604090205460ff165b6113235760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610816565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561137d57506001600160a01b03821660009081526015602052604090205460ff16155b1561146157600a548111156113f25760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610816565b600c546001600160a01b0383166000908152602081905260409020546114189083611d38565b111561145c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610816565b6114eb565b6001600160a01b03821660009081526015602052604090205460ff166114eb57600c546001600160a01b0383166000908152602081905260409020546114a79083611d38565b11156114eb5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610816565b30600090815260208190526040902054600b54811080159081906115175750600d5462010000900460ff165b801561152d5750600654600160a01b900460ff16155b801561156a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561158f57506001600160a01b03851660009081526014602052604090205460ff16155b80156115b457506001600160a01b03841660009081526014602052604090205460ff16155b156115e2576006805460ff60a01b1916600160a01b1790556115d4611998565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061163057506001600160a01b03851660009081526014602052604090205460ff165b15611639575060005b600080600083156117db577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561168757506000601154115b156116ed576116ac60646116a66011548a6119e290919063ffffffff16565b906119f5565b9250601154601354846116bf9190611d85565b6116c99190611da4565b9150601154601254846116dc9190611d85565b6116e69190611da4565b905061178c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561173057506000600e54115b1561178c5761174f60646116a6600e548a6119e290919063ffffffff16565b9250600e54601054846117629190611d85565b61176c9190611da4565b9150600e54600f548461177f9190611d85565b6117899190611da4565b90505b821561179d5761179d893085611843565b81156117ce576117ce307f000000000000000000000000000000000000000000000000000000000000000084611843565b6117d88388611e4e565b96505b6117e6898989611843565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118695760405162461bcd60e51b815260040161081690611dc6565b6001600160a01b03821661188f5760405162461bcd60e51b815260040161081690611e0b565b6001600160a01b038316600090815260208190526040902054818110156119075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610816565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061193e908490611d38565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161198a91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119b35750565b600b546119c1906014611d85565b8111156119d957600b546119d6906014611d85565b90505b61108781611a01565b60006119ee8284611d85565b9392505050565b60006119ee8284611da4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a3657611a36611e61565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a6757611a67611e61565b60200260200101906001600160a01b031690816001600160a01b031681525050611ab2307f00000000000000000000000000000000000000000000000000000000000000008461108a565b600954604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611b0e928792600092889291909116904290600401611e77565b600060405180830381600087803b158015611b2857600080fd5b505af1158015611b3c573d6000803e3d6000fd5b505050505050565b60008060408385031215611b5757600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b9357858101830151858201604001528201611b77565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610fea57600080fd5b60008060408385031215611bde57600080fd5b611be783611bb4565b946020939093013593505050565b600060208284031215611c0757600080fd5b6119ee82611bb4565b600060208284031215611c2257600080fd5b5035919050565b600080600060608486031215611c3e57600080fd5b611c4784611bb4565b9250611c5560208501611bb4565b9150604084013590509250925092565b80358015158114610fea57600080fd5b60008060408385031215611c8857600080fd5b611c9183611bb4565b9150611c9f60208401611c65565b90509250929050565b600060208284031215611cba57600080fd5b6119ee82611c65565b60008060408385031215611cd657600080fd5b611cdf83611bb4565b9150611c9f60208401611bb4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561092f5761092f611d22565b600181811c90821680611d5f57607f821691505b602082108103611d7f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d9f57611d9f611d22565b500290565b600082611dc157634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561092f5761092f611d22565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ec75784516001600160a01b031683529383019391830191600101611ea2565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122075d2a2bd94d4e473b6809eaa528fa588ab7ee372e4c7b19e5536527d3b38e11b64736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102605760003560e01c8063715018a611610144578063c18bc195116100b6578063e2f456051161007a578063e2f4560514610754578063efdee94f1461076a578063f11a24d31461078a578063f2fde38b146107a0578063f6374342146107c0578063f8b45b05146107d657600080fd5b8063c18bc195146106a2578063c8c8ebe4146106c2578063d257b34f146106d8578063d85ba063146106f8578063dd62ed3e1461070e57600080fd5b80638da5cb5b116101085780638da5cb5b146105f0578063924de9b71461060e57806395d89b411461062e578063a9059cbb14610643578063bbc0c74214610663578063c02466681461068257600080fd5b8063715018a614610571578063751039fc146105865780637571336a1461059b5780638322fff2146105bb5780638a8c523c146105db57600080fd5b806327c8f835116101dd5780634fbee193116101a15780634fbee1931461049657806365c1bef8146104cf57806366ca9b83146104e55780636a486a8e146105055780636ddd17131461051b57806370a082311461053b57600080fd5b806327c8f83514610400578063313ce56714610416578063489ae78d1461043257806349bd5a5e146104485780634a62bb651461047c57600080fd5b80631694505e116102245780631694505e1461034d57806318160ddd146103815780631816467f146103a0578063203e727e146103c057806323b872dd146103e057600080fd5b806302dbd8f81461026c57806303fc20131461028e57806306fdde03146102cb578063095ea7b3146102ed57806310d5de531461031d57600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611b44565b6107ec565b005b34801561029a57600080fd5b506008546102ae906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102d757600080fd5b506102e061088c565b6040516102c29190611b66565b3480156102f957600080fd5b5061030d610308366004611bcb565b61091e565b60405190151581526020016102c2565b34801561032957600080fd5b5061030d610338366004611bf5565b60156020526000908152604090205460ff1681565b34801561035957600080fd5b506102ae7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561038d57600080fd5b506002545b6040519081526020016102c2565b3480156103ac57600080fd5b5061028c6103bb366004611bf5565b610935565b3480156103cc57600080fd5b5061028c6103db366004611c10565b6109bc565b3480156103ec57600080fd5b5061030d6103fb366004611c29565b610a9a565b34801561040c57600080fd5b506102ae61dead81565b34801561042257600080fd5b50604051601281526020016102c2565b34801561043e57600080fd5b50610392600f5481565b34801561045457600080fd5b506102ae7f000000000000000000000000072b9619ac53094ea72a92518c7b05b77cad48bd81565b34801561048857600080fd5b50600d5461030d9060ff1681565b3480156104a257600080fd5b5061030d6104b1366004611bf5565b6001600160a01b031660009081526014602052604090205460ff1690565b3480156104db57600080fd5b5061039260125481565b3480156104f157600080fd5b5061028c610500366004611b44565b610b44565b34801561051157600080fd5b5061039260115481565b34801561052757600080fd5b50600d5461030d9062010000900460ff1681565b34801561054757600080fd5b50610392610556366004611bf5565b6001600160a01b031660009081526020819052604090205490565b34801561057d57600080fd5b5061028c610bd7565b34801561059257600080fd5b5061030d610c0d565b3480156105a757600080fd5b5061028c6105b6366004611c75565b610c4a565b3480156105c757600080fd5b506006546102ae906001600160a01b031681565b3480156105e757600080fd5b5061028c610c9f565b3480156105fc57600080fd5b506005546001600160a01b03166102ae565b34801561061a57600080fd5b5061028c610629366004611ca8565b610cdc565b34801561063a57600080fd5b506102e0610d22565b34801561064f57600080fd5b5061030d61065e366004611bcb565b610d31565b34801561066f57600080fd5b50600d5461030d90610100900460ff1681565b34801561068e57600080fd5b5061028c61069d366004611c75565b610d3e565b3480156106ae57600080fd5b5061028c6106bd366004611c10565b610dc7565b3480156106ce57600080fd5b50610392600a5481565b3480156106e457600080fd5b5061030d6106f3366004611c10565b610e98565b34801561070457600080fd5b50610392600e5481565b34801561071a57600080fd5b50610392610729366004611cc3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561076057600080fd5b50610392600b5481565b34801561077657600080fd5b506007546102ae906001600160a01b031681565b34801561079657600080fd5b5061039260105481565b3480156107ac57600080fd5b5061028c6107bb366004611bf5565b610fef565b3480156107cc57600080fd5b5061039260135481565b3480156107e257600080fd5b50610392600c5481565b6005546001600160a01b0316331461081f5760405162461bcd60e51b815260040161081690611ced565b60405180910390fd5b601282905560138190556108338183611d38565b6011819055603210156108885760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610816565b5050565b60606003805461089b90611d4b565b80601f01602080910402602001604051908101604052809291908181526020018280546108c790611d4b565b80156109145780601f106108e957610100808354040283529160200191610914565b820191906000526020600020905b8154815290600101906020018083116108f757829003601f168201915b5050505050905090565b600061092b33848461108a565b5060015b92915050565b6005546001600160a01b0316331461095f5760405162461bcd60e51b815260040161081690611ced565b6009546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109e65760405162461bcd60e51b815260040161081690611ced565b670de0b6b3a76400006103e86109fb60025490565b610a0790610258611d85565b610a119190611da4565b610a1b9190611da4565b811015610a825760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610816565b610a9481670de0b6b3a7640000611d85565b600a5550565b6000610aa78484846111ae565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b2c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610816565b610b39853385840361108a565b506001949350505050565b6005546001600160a01b03163314610b6e5760405162461bcd60e51b815260040161081690611ced565b600f8290556010819055610b828183611d38565b600e819055601e10156108885760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610816565b6005546001600160a01b03163314610c015760405162461bcd60e51b815260040161081690611ced565b610c0b60006117f1565b565b6005546000906001600160a01b03163314610c3a5760405162461bcd60e51b815260040161081690611ced565b50600d805460ff19169055600190565b6005546001600160a01b03163314610c745760405162461bcd60e51b815260040161081690611ced565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cc95760405162461bcd60e51b815260040161081690611ced565b600d805462ffff00191662010100179055565b6005546001600160a01b03163314610d065760405162461bcd60e51b815260040161081690611ced565b600d8054911515620100000262ff000019909216919091179055565b60606004805461089b90611d4b565b600061092b3384846111ae565b6005546001600160a01b03163314610d685760405162461bcd60e51b815260040161081690611ced565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610df15760405162461bcd60e51b815260040161081690611ced565b670de0b6b3a76400006103e8610e0660025490565b610e11906005611d85565b610e1b9190611da4565b610e259190611da4565b811015610e805760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610816565b610e9281670de0b6b3a7640000611d85565b600c5550565b6005546000906001600160a01b03163314610ec55760405162461bcd60e51b815260040161081690611ced565b620186a0610ed260025490565b610edd906001611d85565b610ee79190611da4565b821015610f545760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610816565b6103e8610f6060025490565b610f6b906005611d85565b610f759190611da4565b821115610fe15760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610816565b50600b81905560015b919050565b6005546001600160a01b031633146110195760405162461bcd60e51b815260040161081690611ced565b6001600160a01b03811661107e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610816565b611087816117f1565b50565b6001600160a01b0383166110ec5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610816565b6001600160a01b03821661114d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610816565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111d45760405162461bcd60e51b815260040161081690611dc6565b6001600160a01b0382166111fa5760405162461bcd60e51b815260040161081690611e0b565b806000036112135761120e83836000611843565b505050565b600d5460ff16156114eb576005546001600160a01b0384811691161480159061124a57506005546001600160a01b03838116911614155b801561125e57506001600160a01b03821615155b801561127557506001600160a01b03821661dead14155b801561128b5750600654600160a01b900460ff16155b156114eb57600d54610100900460ff16611323576001600160a01b03831660009081526014602052604090205460ff16806112de57506001600160a01b03821660009081526014602052604090205460ff165b6113235760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610816565b7f000000000000000000000000072b9619ac53094ea72a92518c7b05b77cad48bd6001600160a01b0316836001600160a01b031614801561137d57506001600160a01b03821660009081526015602052604090205460ff16155b1561146157600a548111156113f25760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610816565b600c546001600160a01b0383166000908152602081905260409020546114189083611d38565b111561145c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610816565b6114eb565b6001600160a01b03821660009081526015602052604090205460ff166114eb57600c546001600160a01b0383166000908152602081905260409020546114a79083611d38565b11156114eb5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610816565b30600090815260208190526040902054600b54811080159081906115175750600d5462010000900460ff165b801561152d5750600654600160a01b900460ff16155b801561156a57507f000000000000000000000000072b9619ac53094ea72a92518c7b05b77cad48bd6001600160a01b0316846001600160a01b0316145b801561158f57506001600160a01b03851660009081526014602052604090205460ff16155b80156115b457506001600160a01b03841660009081526014602052604090205460ff16155b156115e2576006805460ff60a01b1916600160a01b1790556115d4611998565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061163057506001600160a01b03851660009081526014602052604090205460ff165b15611639575060005b600080600083156117db577f000000000000000000000000072b9619ac53094ea72a92518c7b05b77cad48bd6001600160a01b0316886001600160a01b031614801561168757506000601154115b156116ed576116ac60646116a66011548a6119e290919063ffffffff16565b906119f5565b9250601154601354846116bf9190611d85565b6116c99190611da4565b9150601154601254846116dc9190611d85565b6116e69190611da4565b905061178c565b7f000000000000000000000000072b9619ac53094ea72a92518c7b05b77cad48bd6001600160a01b0316896001600160a01b031614801561173057506000600e54115b1561178c5761174f60646116a6600e548a6119e290919063ffffffff16565b9250600e54601054846117629190611d85565b61176c9190611da4565b9150600e54600f548461177f9190611d85565b6117899190611da4565b90505b821561179d5761179d893085611843565b81156117ce576117ce307f000000000000000000000000072b9619ac53094ea72a92518c7b05b77cad48bd84611843565b6117d88388611e4e565b96505b6117e6898989611843565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118695760405162461bcd60e51b815260040161081690611dc6565b6001600160a01b03821661188f5760405162461bcd60e51b815260040161081690611e0b565b6001600160a01b038316600090815260208190526040902054818110156119075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610816565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061193e908490611d38565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161198a91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119b35750565b600b546119c1906014611d85565b8111156119d957600b546119d6906014611d85565b90505b61108781611a01565b60006119ee8284611d85565b9392505050565b60006119ee8284611da4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a3657611a36611e61565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a6757611a67611e61565b60200260200101906001600160a01b031690816001600160a01b031681525050611ab2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461108a565b600954604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611b0e928792600092889291909116904290600401611e77565b600060405180830381600087803b158015611b2857600080fd5b505af1158015611b3c573d6000803e3d6000fd5b505050505050565b60008060408385031215611b5757600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b9357858101830151858201604001528201611b77565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610fea57600080fd5b60008060408385031215611bde57600080fd5b611be783611bb4565b946020939093013593505050565b600060208284031215611c0757600080fd5b6119ee82611bb4565b600060208284031215611c2257600080fd5b5035919050565b600080600060608486031215611c3e57600080fd5b611c4784611bb4565b9250611c5560208501611bb4565b9150604084013590509250925092565b80358015158114610fea57600080fd5b60008060408385031215611c8857600080fd5b611c9183611bb4565b9150611c9f60208401611c65565b90509250929050565b600060208284031215611cba57600080fd5b6119ee82611c65565b60008060408385031215611cd657600080fd5b611cdf83611bb4565b9150611c9f60208401611bb4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561092f5761092f611d22565b600181811c90821680611d5f57607f821691505b602082108103611d7f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d9f57611d9f611d22565b500290565b600082611dc157634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561092f5761092f611d22565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ec75784516001600160a01b031683529383019391830191600101611ea2565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122075d2a2bd94d4e473b6809eaa528fa588ab7ee372e4c7b19e5536527d3b38e11b64736f6c63430008100033

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.