ETH Price: $2,002.16 (+0.86%)
 

Overview

Max Total Supply

69,000,000 SYMBOL

Holders

21

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
CUSTOMIZABLE

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : NAME.sol
/**

CUSTOMIZABLE CA

Change Token Name - Symbol anytime.
We will change our name when there is any trend or any hot name

https://t.me/HotName_Erc

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.22;
pragma experimental ABIEncoderV2;

////// 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 WETH() external pure returns (address);

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

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

    string private _tokenName;
    string private _tokensymbol;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public marketingWallet;
    address public developmentWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;

    uint256 public divisor;

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

    // 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 marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("CUSTOMIZABLE", "SYMBOL") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        _tokenName = "CUSTOMIZABLE";
        _tokensymbol = "SYMBOL";

        uint256 _buyMarketingFee = 25;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellMarketingFee = 25;
        uint256 _sellLiquidityFee = 0;

        uint256 _divisor = 100;

        uint256 totalSupply = 69_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 20) / 100000; // 0.02% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;

        divisor = _divisor;

        marketingWallet = address(0x3e91b99d2E2fc86E546e97aD37995C56D04126c2);
        developmentWallet = address(0x3e91b99d2E2fc86E546e97aD37995C56D04126c2);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _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() * 1) / 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 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees.mul(100).div(divisor) <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        require(sellTotalFees.mul(100).div(divisor) <= 25, "Must keep fees at 25% or less");
    }

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

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }


    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() &&
                from != developmentWallet &&
                to != developmentWallet &&
                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(amount);

            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 tokensForMarketing = 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(divisor);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing = (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(divisor);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForMarketing = (fees * buyMarketingFee) / 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 min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }

    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] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            marketingWallet,
            block.timestamp
        );
    }

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

        uint256 swapAmount = min(amount, min(contractBalance, swapTokensAtAmount * 40));

        swapTokensForETH(swapAmount);
    }

    function name() public view virtual override returns (string memory) {
        return _tokenName;
    }

    function symbol() public view virtual override returns (string memory) {
        return _tokensymbol;
    }

    function changeTokenName(string memory newName) public {
        require(msg.sender == marketingWallet, "Only the marketing wallet can change the token name.");
        _tokenName = newName;
    }

    function changeTokenSymbol(string memory newsymbol) public {
        require(msg.sender == marketingWallet, "Only the marketing wallet can change the token name.");
        _tokensymbol = newsymbol;
    }    

}

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

Contract Security Audit

Contract ABI

API
[{"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":"marketingWalletUpdated","type":"event"},{"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":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"}],"name":"changeTokenName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newsymbol","type":"string"}],"name":"changeTokenSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"divisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"marketingWallet","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":"sellMarketingFee","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":"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","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":"_marketingFee","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"}]

60c0604052600d805462ffffff1916600117905534801561001e575f5ffd5b506040518060400160405280600c81526020016b435553544f4d495a41424c4560a01b8152506040518060400160405280600681526020016514d6535093d360d21b815250816003908161007291906106c1565b50600461007f82826106c1565b5050506100986100936103d960201b60201c565b6103dd565b737a250d5630b4cf539739df2c5dacb4c659f2488d6100b881600161042e565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610100573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610124919061077b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561016f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610193919061077b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156101dd573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610201919061077b565b6001600160a01b031660a081905261021a90600161042e565b60408051808201909152600c81526b435553544f4d495a41424c4560a01b602082015260069061024a90826106c1565b5060408051808201909152600681526514d6535093d360d21b602082015260079061027590826106c1565b5060195f818160646a3913517ebd3c0c65000000816102958260026107bc565b61029f91906107d9565b600a5560646102af8260026107bc565b6102b991906107d9565b600c55620186a06102cb8260146107bc565b6102d591906107d9565b600b55600f86905560108590556102ec85876107f8565b600e556012849055601383905561030383856107f8565b601155601482905560088054743e91b99d2e2fc86e546e97ad37995c56d04126c200610100600160a81b0319909116179055600980546001600160a01b031916733e91b99d2e2fc86e546e97ad37995c56d04126c21790556103776103706005546001600160a01b031690565b60016104a4565b6103823060016104a4565b61038f61dead60016104a4565b6103ab6103a46005546001600160a01b031690565b600161042e565b6103b630600161042e565b6103c361dead600161042e565b6103cd3382610549565b5050505050505061080b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b0316331461047a5760405162461bcd60e51b815260206004820181905260248201525f516020612a675f395f51905f5260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146104eb5760405162461bcd60e51b815260206004820181905260248201525f516020612a675f395f51905f526044820152606401610471565b6001600160a01b0382165f81815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03821661059f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610471565b8060025f8282546105b091906107f8565b90915550506001600160a01b0382165f90815260208190526040812080548392906105dc9084906107f8565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061065257607f821691505b60208210810361067057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561062557805f5260205f20601f840160051c8101602085101561069b5750805b601f840160051c820191505b818110156106ba575f81556001016106a7565b5050505050565b81516001600160401b038111156106da576106da61062a565b6106ee816106e8845461063e565b84610676565b6020601f821160018114610720575f83156107095750848201515b5f19600385901b1c1916600184901b1784556106ba565b5f84815260208120601f198516915b8281101561074f578785015182556020948501946001909201910161072f565b508482101561076c57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6020828403121561078b575f5ffd5b81516001600160a01b03811681146107a1575f5ffd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107d3576107d36107a8565b92915050565b5f826107f357634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107d3576107d36107a8565b60805160a0516122036108645f395f81816103fd015281816113b8015281816115bd015281816116b70152818161175a015261181401525f818161032601528181611aac01528181611b630152611ba201526122035ff3fe608060405260043610610262575f3560e01c80638a8c523c1161013f578063c18bc195116100b3578063dd62ed3e11610078578063dd62ed3e1461072f578063e2f4560514610773578063f11a24d314610788578063f2fde38b1461079d578063f6374342146107bc578063f8b45b05146107d1575f5ffd5b8063c18bc195146106a8578063c6d3ab9d146106c7578063c8c8ebe4146106e6578063d257b34f146106fb578063d85ba0631461071a575f5ffd5b8063a9059cbb11610104578063a9059cbb146105ef578063aacebbe31461060e578063b0018bfc1461062d578063bbc0c7421461064c578063c02466681461066a578063c04a541414610689575f5ffd5b80638a8c523c146105765780638da5cb5b1461058a57806392136913146105a7578063924de9b7146105bc57806395d89b41146105db575f5ffd5b80634a62bb65116101d657806370a082311161019b57806370a08231146104c2578063715018a6146104f6578063751039fc1461050a5780637571336a1461051e57806375f0a8741461053d5780637bce5a0414610561575f5ffd5b80634a62bb651461041f5780634fbee1931461043857806366ca9b831461046f5780636a486a8e1461048e5780636ddd1713146104a3575f5ffd5b806318160ddd1161022757806318160ddd146103605780631f2dc5ef1461037e578063203e727e1461039357806323b872dd146103b2578063313ce567146103d157806349bd5a5e146103ec575f5ffd5b806302dbd8f81461026d57806306fdde031461028e578063095ea7b3146102b857806310d5de53146102e75780631694505e14610315575f5ffd5b3661026957005b5f5ffd5b348015610278575f5ffd5b5061028c610287366004611c19565b6107e6565b005b348015610299575f5ffd5b506102a26108a0565b6040516102af9190611c39565b60405180910390f35b3480156102c3575f5ffd5b506102d76102d2366004611c82565b610930565b60405190151581526020016102af565b3480156102f2575f5ffd5b506102d7610301366004611cac565b60166020525f908152604090205460ff1681565b348015610320575f5ffd5b506103487f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102af565b34801561036b575f5ffd5b506002545b6040519081526020016102af565b348015610389575f5ffd5b5061037060145481565b34801561039e575f5ffd5b5061028c6103ad366004611cc7565b610946565b3480156103bd575f5ffd5b506102d76103cc366004611cde565b610a23565b3480156103dc575f5ffd5b50604051601281526020016102af565b3480156103f7575f5ffd5b506103487f000000000000000000000000000000000000000000000000000000000000000081565b34801561042a575f5ffd5b50600d546102d79060ff1681565b348015610443575f5ffd5b506102d7610452366004611cac565b6001600160a01b03165f9081526015602052604090205460ff1690565b34801561047a575f5ffd5b5061028c610489366004611c19565b610acb565b348015610499575f5ffd5b5061037060115481565b3480156104ae575f5ffd5b50600d546102d79062010000900460ff1681565b3480156104cd575f5ffd5b506103706104dc366004611cac565b6001600160a01b03165f9081526020819052604090205490565b348015610501575f5ffd5b5061028c610b24565b348015610515575f5ffd5b506102d7610b59565b348015610529575f5ffd5b5061028c610538366004611d2b565b610b95565b348015610548575f5ffd5b506008546103489061010090046001600160a01b031681565b34801561056c575f5ffd5b50610370600f5481565b348015610581575f5ffd5b5061028c610be9565b348015610595575f5ffd5b506005546001600160a01b0316610348565b3480156105b2575f5ffd5b5061037060125481565b3480156105c7575f5ffd5b5061028c6105d6366004611d5e565b610c26565b3480156105e6575f5ffd5b506102a2610c6c565b3480156105fa575f5ffd5b506102d7610609366004611c82565b610c7b565b348015610619575f5ffd5b5061028c610628366004611cac565b610c87565b348015610638575f5ffd5b5061028c610647366004611d8b565b610d18565b348015610657575f5ffd5b50600d546102d790610100900460ff1681565b348015610675575f5ffd5b5061028c610684366004611d2b565b610d53565b348015610694575f5ffd5b50600954610348906001600160a01b031681565b3480156106b3575f5ffd5b5061028c6106c2366004611cc7565b610ddb565b3480156106d2575f5ffd5b5061028c6106e1366004611d8b565b610eac565b3480156106f1575f5ffd5b50610370600a5481565b348015610706575f5ffd5b506102d7610715366004611cc7565b610ee7565b348015610725575f5ffd5b50610370600e5481565b34801561073a575f5ffd5b50610370610749366004611e3e565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561077e575f5ffd5b50610370600b5481565b348015610793575f5ffd5b5061037060105481565b3480156107a8575f5ffd5b5061028c6107b7366004611cac565b61103d565b3480156107c7575f5ffd5b5061037060135481565b3480156107dc575f5ffd5b50610370600c5481565b6005546001600160a01b031633146108195760405162461bcd60e51b815260040161081090611e75565b60405180910390fd5b6012829055601381905561082d8183611ebe565b601181905560145460199161084e91906108489060646110d8565b906110ea565b111561089c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610810565b5050565b6060600680546108af90611ed1565b80601f01602080910402602001604051908101604052809291908181526020018280546108db90611ed1565b80156109265780601f106108fd57610100808354040283529160200191610926565b820191905f5260205f20905b81548152906001019060200180831161090957829003601f168201915b5050505050905090565b5f61093c3384846110f5565b5060015b92915050565b6005546001600160a01b031633146109705760405162461bcd60e51b815260040161081090611e75565b670de0b6b3a76400006103e861098560025490565b610990906001611f03565b61099a9190611f1a565b6109a49190611f1a565b811015610a0b5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610810565b610a1d81670de0b6b3a7640000611f03565b600a5550565b5f610a2f848484611218565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610ab35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610810565b610ac085338584036110f5565b506001949350505050565b6005546001600160a01b03163314610af55760405162461bcd60e51b815260040161081090611e75565b600f8290556010819055610b098183611ebe565b600e81905560145460199161084e91906108489060646110d8565b6005546001600160a01b03163314610b4e5760405162461bcd60e51b815260040161081090611e75565b610b575f61185c565b565b6005545f906001600160a01b03163314610b855760405162461bcd60e51b815260040161081090611e75565b50600d805460ff19169055600190565b6005546001600160a01b03163314610bbf5760405162461bcd60e51b815260040161081090611e75565b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c135760405162461bcd60e51b815260040161081090611e75565b600d805462ffff00191662010100179055565b6005546001600160a01b03163314610c505760405162461bcd60e51b815260040161081090611e75565b600d8054911515620100000262ff000019909216919091179055565b6060600780546108af90611ed1565b5f61093c338484611218565b6005546001600160a01b03163314610cb15760405162461bcd60e51b815260040161081090611e75565b6008546040516001600160a01b036101009092048216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600880546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60085461010090046001600160a01b03163314610d475760405162461bcd60e51b815260040161081090611f39565b600661089c8282611fd8565b6005546001600160a01b03163314610d7d5760405162461bcd60e51b815260040161081090611e75565b6001600160a01b0382165f81815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e055760405162461bcd60e51b815260040161081090611e75565b670de0b6b3a76400006103e8610e1a60025490565b610e25906005611f03565b610e2f9190611f1a565b610e399190611f1a565b811015610e945760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610810565b610ea681670de0b6b3a7640000611f03565b600c5550565b60085461010090046001600160a01b03163314610edb5760405162461bcd60e51b815260040161081090611f39565b600761089c8282611fd8565b6005545f906001600160a01b03163314610f135760405162461bcd60e51b815260040161081090611e75565b620186a0610f2060025490565b610f2b906001611f03565b610f359190611f1a565b821015610fa25760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610810565b6103e8610fae60025490565b610fb9906005611f03565b610fc39190611f1a565b82111561102f5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610810565b50600b81905560015b919050565b6005546001600160a01b031633146110675760405162461bcd60e51b815260040161081090611e75565b6001600160a01b0381166110cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610810565b6110d58161185c565b50565b5f6110e38284611f03565b9392505050565b5f6110e38284611f1a565b6001600160a01b0383166111575760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610810565b6001600160a01b0382166111b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610810565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661123e5760405162461bcd60e51b815260040161081090612093565b6001600160a01b0382166112645760405162461bcd60e51b8152600401610810906120d8565b805f0361127b5761127683835f6118ad565b505050565b600d5460ff161561157a576005546001600160a01b038481169116148015906112b257506005546001600160a01b03838116911614155b80156112cc57506009546001600160a01b03848116911614155b80156112e657506009546001600160a01b03838116911614155b80156112fa57506001600160a01b03821615155b801561131157506001600160a01b03821661dead14155b8015611320575060085460ff16155b1561157a57600d54610100900460ff166113b6576001600160a01b0383165f9081526015602052604090205460ff168061137157506001600160a01b0382165f9081526015602052604090205460ff165b6113b65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610810565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561140f57506001600160a01b0382165f9081526016602052604090205460ff16155b156114f257600a548111156114845760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610810565b600c546001600160a01b0383165f908152602081905260409020546114a99083611ebe565b11156114ed5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610810565b61157a565b6001600160a01b0382165f9081526016602052604090205460ff1661157a57600c546001600160a01b0383165f908152602081905260409020546115369083611ebe565b111561157a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610810565b305f90815260208190526040902054600b54811080159081906115a55750600d5462010000900460ff165b80156115b4575060085460ff16155b80156115f157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561161557506001600160a01b0385165f9081526015602052604090205460ff16155b801561163957506001600160a01b0384165f9081526015602052604090205460ff16155b1561165f576008805460ff1916600117905561165483611a00565b6008805460ff191690555b6008546001600160a01b0386165f9081526015602052604090205460ff918216159116806116a457506001600160a01b0385165f9081526015602052604090205460ff165b156116ac57505f5b5f80808315611846577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156116f757505f601154115b15611758576117176014546108486011548a6110d890919063ffffffff16565b92506011546013548461172a9190611f03565b6117349190611f1a565b9150601154601254846117479190611f03565b6117519190611f1a565b90506117f7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561179a57505f600e54115b156117f7576117ba601454610848600e548a6110d890919063ffffffff16565b9250600e54601054846117cd9190611f03565b6117d79190611f1a565b9150600e54600f54846117ea9190611f03565b6117f49190611f1a565b90505b8215611808576118088930856118ad565b811561183957611839307f0000000000000000000000000000000000000000000000000000000000000000846118ad565b611843838861211b565b96505b6118518989896118ad565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166118d35760405162461bcd60e51b815260040161081090612093565b6001600160a01b0382166118f95760405162461bcd60e51b8152600401610810906120d8565b6001600160a01b0383165f90815260208190526040902054818110156119705760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610810565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906119a6908490611ebe565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119f291815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611a1b575050565b5f611a3883611a3384600b546028611a339190611f03565b611a43565b905061127681611a57565b5f818311611a5157826110e3565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611a8a57611a8a61212e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b06573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b2a9190612142565b81600181518110611b3d57611b3d61212e565b60200260200101906001600160a01b031690816001600160a01b031681525050611b88307f0000000000000000000000000000000000000000000000000000000000000000846110f5565b60085460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792611be89287925f92889261010090920490911690429060040161215d565b5f604051808303815f87803b158015611bff575f5ffd5b505af1158015611c11573d5f5f3e3d5ffd5b505050505050565b5f5f60408385031215611c2a575f5ffd5b50508035926020909101359150565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146110d5575f5ffd5b5f5f60408385031215611c93575f5ffd5b8235611c9e81611c6e565b946020939093013593505050565b5f60208284031215611cbc575f5ffd5b81356110e381611c6e565b5f60208284031215611cd7575f5ffd5b5035919050565b5f5f5f60608486031215611cf0575f5ffd5b8335611cfb81611c6e565b92506020840135611d0b81611c6e565b929592945050506040919091013590565b80358015158114611038575f5ffd5b5f5f60408385031215611d3c575f5ffd5b8235611d4781611c6e565b9150611d5560208401611d1c565b90509250929050565b5f60208284031215611d6e575f5ffd5b6110e382611d1c565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215611d9b575f5ffd5b813567ffffffffffffffff811115611db1575f5ffd5b8201601f81018413611dc1575f5ffd5b803567ffffffffffffffff811115611ddb57611ddb611d77565b604051601f8201601f19908116603f0116810167ffffffffffffffff81118282101715611e0a57611e0a611d77565b604052818152828201602001861015611e21575f5ffd5b816020840160208301375f91810160200191909152949350505050565b5f5f60408385031215611e4f575f5ffd5b8235611e5a81611c6e565b91506020830135611e6a81611c6e565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561094057610940611eaa565b600181811c90821680611ee557607f821691505b602082108103611a5157634e487b7160e01b5f52602260045260245ffd5b808202811582820484141761094057610940611eaa565b5f82611f3457634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526034908201527f4f6e6c7920746865206d61726b6574696e672077616c6c65742063616e20636860408201527330b733b2903a3432903a37b5b2b7103730b6b29760611b606082015260800190565b601f82111561127657805f5260205f20601f840160051c81016020851015611fb25750805b601f840160051c820191505b81811015611fd1575f8155600101611fbe565b5050505050565b815167ffffffffffffffff811115611ff257611ff2611d77565b612006816120008454611ed1565b84611f8d565b6020601f821160018114612038575f83156120215750848201515b5f19600385901b1c1916600184901b178455611fd1565b5f84815260208120601f198516915b828110156120675787850151825560209485019460019092019101612047565b508482101561208457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561094057610940611eaa565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612152575f5ffd5b81516110e381611c6e565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156121ad5783516001600160a01b0316835260209384019390920191600101612186565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212200215f103c8c4fb4fedc6612402a87c85f4c41289c21f67574124b76b6c43c78d64736f6c634300081c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610262575f3560e01c80638a8c523c1161013f578063c18bc195116100b3578063dd62ed3e11610078578063dd62ed3e1461072f578063e2f4560514610773578063f11a24d314610788578063f2fde38b1461079d578063f6374342146107bc578063f8b45b05146107d1575f5ffd5b8063c18bc195146106a8578063c6d3ab9d146106c7578063c8c8ebe4146106e6578063d257b34f146106fb578063d85ba0631461071a575f5ffd5b8063a9059cbb11610104578063a9059cbb146105ef578063aacebbe31461060e578063b0018bfc1461062d578063bbc0c7421461064c578063c02466681461066a578063c04a541414610689575f5ffd5b80638a8c523c146105765780638da5cb5b1461058a57806392136913146105a7578063924de9b7146105bc57806395d89b41146105db575f5ffd5b80634a62bb65116101d657806370a082311161019b57806370a08231146104c2578063715018a6146104f6578063751039fc1461050a5780637571336a1461051e57806375f0a8741461053d5780637bce5a0414610561575f5ffd5b80634a62bb651461041f5780634fbee1931461043857806366ca9b831461046f5780636a486a8e1461048e5780636ddd1713146104a3575f5ffd5b806318160ddd1161022757806318160ddd146103605780631f2dc5ef1461037e578063203e727e1461039357806323b872dd146103b2578063313ce567146103d157806349bd5a5e146103ec575f5ffd5b806302dbd8f81461026d57806306fdde031461028e578063095ea7b3146102b857806310d5de53146102e75780631694505e14610315575f5ffd5b3661026957005b5f5ffd5b348015610278575f5ffd5b5061028c610287366004611c19565b6107e6565b005b348015610299575f5ffd5b506102a26108a0565b6040516102af9190611c39565b60405180910390f35b3480156102c3575f5ffd5b506102d76102d2366004611c82565b610930565b60405190151581526020016102af565b3480156102f2575f5ffd5b506102d7610301366004611cac565b60166020525f908152604090205460ff1681565b348015610320575f5ffd5b506103487f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102af565b34801561036b575f5ffd5b506002545b6040519081526020016102af565b348015610389575f5ffd5b5061037060145481565b34801561039e575f5ffd5b5061028c6103ad366004611cc7565b610946565b3480156103bd575f5ffd5b506102d76103cc366004611cde565b610a23565b3480156103dc575f5ffd5b50604051601281526020016102af565b3480156103f7575f5ffd5b506103487f0000000000000000000000008db41c599774437ce4226d84f1969d86a06a430681565b34801561042a575f5ffd5b50600d546102d79060ff1681565b348015610443575f5ffd5b506102d7610452366004611cac565b6001600160a01b03165f9081526015602052604090205460ff1690565b34801561047a575f5ffd5b5061028c610489366004611c19565b610acb565b348015610499575f5ffd5b5061037060115481565b3480156104ae575f5ffd5b50600d546102d79062010000900460ff1681565b3480156104cd575f5ffd5b506103706104dc366004611cac565b6001600160a01b03165f9081526020819052604090205490565b348015610501575f5ffd5b5061028c610b24565b348015610515575f5ffd5b506102d7610b59565b348015610529575f5ffd5b5061028c610538366004611d2b565b610b95565b348015610548575f5ffd5b506008546103489061010090046001600160a01b031681565b34801561056c575f5ffd5b50610370600f5481565b348015610581575f5ffd5b5061028c610be9565b348015610595575f5ffd5b506005546001600160a01b0316610348565b3480156105b2575f5ffd5b5061037060125481565b3480156105c7575f5ffd5b5061028c6105d6366004611d5e565b610c26565b3480156105e6575f5ffd5b506102a2610c6c565b3480156105fa575f5ffd5b506102d7610609366004611c82565b610c7b565b348015610619575f5ffd5b5061028c610628366004611cac565b610c87565b348015610638575f5ffd5b5061028c610647366004611d8b565b610d18565b348015610657575f5ffd5b50600d546102d790610100900460ff1681565b348015610675575f5ffd5b5061028c610684366004611d2b565b610d53565b348015610694575f5ffd5b50600954610348906001600160a01b031681565b3480156106b3575f5ffd5b5061028c6106c2366004611cc7565b610ddb565b3480156106d2575f5ffd5b5061028c6106e1366004611d8b565b610eac565b3480156106f1575f5ffd5b50610370600a5481565b348015610706575f5ffd5b506102d7610715366004611cc7565b610ee7565b348015610725575f5ffd5b50610370600e5481565b34801561073a575f5ffd5b50610370610749366004611e3e565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561077e575f5ffd5b50610370600b5481565b348015610793575f5ffd5b5061037060105481565b3480156107a8575f5ffd5b5061028c6107b7366004611cac565b61103d565b3480156107c7575f5ffd5b5061037060135481565b3480156107dc575f5ffd5b50610370600c5481565b6005546001600160a01b031633146108195760405162461bcd60e51b815260040161081090611e75565b60405180910390fd5b6012829055601381905561082d8183611ebe565b601181905560145460199161084e91906108489060646110d8565b906110ea565b111561089c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610810565b5050565b6060600680546108af90611ed1565b80601f01602080910402602001604051908101604052809291908181526020018280546108db90611ed1565b80156109265780601f106108fd57610100808354040283529160200191610926565b820191905f5260205f20905b81548152906001019060200180831161090957829003601f168201915b5050505050905090565b5f61093c3384846110f5565b5060015b92915050565b6005546001600160a01b031633146109705760405162461bcd60e51b815260040161081090611e75565b670de0b6b3a76400006103e861098560025490565b610990906001611f03565b61099a9190611f1a565b6109a49190611f1a565b811015610a0b5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610810565b610a1d81670de0b6b3a7640000611f03565b600a5550565b5f610a2f848484611218565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610ab35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610810565b610ac085338584036110f5565b506001949350505050565b6005546001600160a01b03163314610af55760405162461bcd60e51b815260040161081090611e75565b600f8290556010819055610b098183611ebe565b600e81905560145460199161084e91906108489060646110d8565b6005546001600160a01b03163314610b4e5760405162461bcd60e51b815260040161081090611e75565b610b575f61185c565b565b6005545f906001600160a01b03163314610b855760405162461bcd60e51b815260040161081090611e75565b50600d805460ff19169055600190565b6005546001600160a01b03163314610bbf5760405162461bcd60e51b815260040161081090611e75565b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c135760405162461bcd60e51b815260040161081090611e75565b600d805462ffff00191662010100179055565b6005546001600160a01b03163314610c505760405162461bcd60e51b815260040161081090611e75565b600d8054911515620100000262ff000019909216919091179055565b6060600780546108af90611ed1565b5f61093c338484611218565b6005546001600160a01b03163314610cb15760405162461bcd60e51b815260040161081090611e75565b6008546040516001600160a01b036101009092048216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600880546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60085461010090046001600160a01b03163314610d475760405162461bcd60e51b815260040161081090611f39565b600661089c8282611fd8565b6005546001600160a01b03163314610d7d5760405162461bcd60e51b815260040161081090611e75565b6001600160a01b0382165f81815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e055760405162461bcd60e51b815260040161081090611e75565b670de0b6b3a76400006103e8610e1a60025490565b610e25906005611f03565b610e2f9190611f1a565b610e399190611f1a565b811015610e945760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610810565b610ea681670de0b6b3a7640000611f03565b600c5550565b60085461010090046001600160a01b03163314610edb5760405162461bcd60e51b815260040161081090611f39565b600761089c8282611fd8565b6005545f906001600160a01b03163314610f135760405162461bcd60e51b815260040161081090611e75565b620186a0610f2060025490565b610f2b906001611f03565b610f359190611f1a565b821015610fa25760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610810565b6103e8610fae60025490565b610fb9906005611f03565b610fc39190611f1a565b82111561102f5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610810565b50600b81905560015b919050565b6005546001600160a01b031633146110675760405162461bcd60e51b815260040161081090611e75565b6001600160a01b0381166110cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610810565b6110d58161185c565b50565b5f6110e38284611f03565b9392505050565b5f6110e38284611f1a565b6001600160a01b0383166111575760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610810565b6001600160a01b0382166111b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610810565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661123e5760405162461bcd60e51b815260040161081090612093565b6001600160a01b0382166112645760405162461bcd60e51b8152600401610810906120d8565b805f0361127b5761127683835f6118ad565b505050565b600d5460ff161561157a576005546001600160a01b038481169116148015906112b257506005546001600160a01b03838116911614155b80156112cc57506009546001600160a01b03848116911614155b80156112e657506009546001600160a01b03838116911614155b80156112fa57506001600160a01b03821615155b801561131157506001600160a01b03821661dead14155b8015611320575060085460ff16155b1561157a57600d54610100900460ff166113b6576001600160a01b0383165f9081526015602052604090205460ff168061137157506001600160a01b0382165f9081526015602052604090205460ff165b6113b65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610810565b7f0000000000000000000000008db41c599774437ce4226d84f1969d86a06a43066001600160a01b0316836001600160a01b031614801561140f57506001600160a01b0382165f9081526016602052604090205460ff16155b156114f257600a548111156114845760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610810565b600c546001600160a01b0383165f908152602081905260409020546114a99083611ebe565b11156114ed5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610810565b61157a565b6001600160a01b0382165f9081526016602052604090205460ff1661157a57600c546001600160a01b0383165f908152602081905260409020546115369083611ebe565b111561157a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610810565b305f90815260208190526040902054600b54811080159081906115a55750600d5462010000900460ff165b80156115b4575060085460ff16155b80156115f157507f0000000000000000000000008db41c599774437ce4226d84f1969d86a06a43066001600160a01b0316846001600160a01b0316145b801561161557506001600160a01b0385165f9081526015602052604090205460ff16155b801561163957506001600160a01b0384165f9081526015602052604090205460ff16155b1561165f576008805460ff1916600117905561165483611a00565b6008805460ff191690555b6008546001600160a01b0386165f9081526015602052604090205460ff918216159116806116a457506001600160a01b0385165f9081526015602052604090205460ff165b156116ac57505f5b5f80808315611846577f0000000000000000000000008db41c599774437ce4226d84f1969d86a06a43066001600160a01b0316886001600160a01b03161480156116f757505f601154115b15611758576117176014546108486011548a6110d890919063ffffffff16565b92506011546013548461172a9190611f03565b6117349190611f1a565b9150601154601254846117479190611f03565b6117519190611f1a565b90506117f7565b7f0000000000000000000000008db41c599774437ce4226d84f1969d86a06a43066001600160a01b0316896001600160a01b031614801561179a57505f600e54115b156117f7576117ba601454610848600e548a6110d890919063ffffffff16565b9250600e54601054846117cd9190611f03565b6117d79190611f1a565b9150600e54600f54846117ea9190611f03565b6117f49190611f1a565b90505b8215611808576118088930856118ad565b811561183957611839307f0000000000000000000000008db41c599774437ce4226d84f1969d86a06a4306846118ad565b611843838861211b565b96505b6118518989896118ad565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166118d35760405162461bcd60e51b815260040161081090612093565b6001600160a01b0382166118f95760405162461bcd60e51b8152600401610810906120d8565b6001600160a01b0383165f90815260208190526040902054818110156119705760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610810565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906119a6908490611ebe565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119f291815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611a1b575050565b5f611a3883611a3384600b546028611a339190611f03565b611a43565b905061127681611a57565b5f818311611a5157826110e3565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611a8a57611a8a61212e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b06573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b2a9190612142565b81600181518110611b3d57611b3d61212e565b60200260200101906001600160a01b031690816001600160a01b031681525050611b88307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110f5565b60085460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792611be89287925f92889261010090920490911690429060040161215d565b5f604051808303815f87803b158015611bff575f5ffd5b505af1158015611c11573d5f5f3e3d5ffd5b505050505050565b5f5f60408385031215611c2a575f5ffd5b50508035926020909101359150565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146110d5575f5ffd5b5f5f60408385031215611c93575f5ffd5b8235611c9e81611c6e565b946020939093013593505050565b5f60208284031215611cbc575f5ffd5b81356110e381611c6e565b5f60208284031215611cd7575f5ffd5b5035919050565b5f5f5f60608486031215611cf0575f5ffd5b8335611cfb81611c6e565b92506020840135611d0b81611c6e565b929592945050506040919091013590565b80358015158114611038575f5ffd5b5f5f60408385031215611d3c575f5ffd5b8235611d4781611c6e565b9150611d5560208401611d1c565b90509250929050565b5f60208284031215611d6e575f5ffd5b6110e382611d1c565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215611d9b575f5ffd5b813567ffffffffffffffff811115611db1575f5ffd5b8201601f81018413611dc1575f5ffd5b803567ffffffffffffffff811115611ddb57611ddb611d77565b604051601f8201601f19908116603f0116810167ffffffffffffffff81118282101715611e0a57611e0a611d77565b604052818152828201602001861015611e21575f5ffd5b816020840160208301375f91810160200191909152949350505050565b5f5f60408385031215611e4f575f5ffd5b8235611e5a81611c6e565b91506020830135611e6a81611c6e565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561094057610940611eaa565b600181811c90821680611ee557607f821691505b602082108103611a5157634e487b7160e01b5f52602260045260245ffd5b808202811582820484141761094057610940611eaa565b5f82611f3457634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526034908201527f4f6e6c7920746865206d61726b6574696e672077616c6c65742063616e20636860408201527330b733b2903a3432903a37b5b2b7103730b6b29760611b606082015260800190565b601f82111561127657805f5260205f20601f840160051c81016020851015611fb25750805b601f840160051c820191505b81811015611fd1575f8155600101611fbe565b5050505050565b815167ffffffffffffffff811115611ff257611ff2611d77565b612006816120008454611ed1565b84611f8d565b6020601f821160018114612038575f83156120215750848201515b5f19600385901b1c1916600184901b178455611fd1565b5f84815260208120601f198516915b828110156120675787850151825560209485019460019092019101612047565b508482101561208457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561094057610940611eaa565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612152575f5ffd5b81516110e381611c6e565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156121ad5783516001600160a01b0316835260209384019390920191600101612186565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212200215f103c8c4fb4fedc6612402a87c85f4c41289c21f67574124b76b6c43c78d64736f6c634300081c0033

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.