ETH Price: $2,287.93 (-3.91%)

Token

Burn X Die Protocol (XDIE)
 

Overview

Max Total Supply

1,000,000,000,000 XDIE

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,238,995,862.966632570511648091 XDIE

Value
$0.00
0x83746bd9f8867697849c98f00f80077dfd8f2e43
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:
XDIE

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-25
*/

/*******

🔥$XDIE | Burn X Die Protocol💰

$XDIE is combining the best of all worlds to become 3x times as viral as $THE, $X, and $DIE plus an additional burning mechanism to support the degens until we die!

What makes us unique?
Burn X Die Protocol true hyper deflationary token that perpetually burns $XDIE tokens out of existence with every buy and sell transaction, creating an infinite increase of $$ value overtime! Simply put, as more $XDIE tokens burn and die, the value of our $XDIE tokens increase!

Tokenomics
Total Supply: 1,000,000,000,000
Taxes: 3/6
Max Tx: 1%
Max Wallet: 2%

Telegram: https://t.me/burnxdie
Twitter: https://twitter.com/Burnxdie_eth
Medium: https://medium.com/@orry31/burn-x-die-protocol-dedicated-to-our-savour-vitalik-1bdbbd6659ed
Website: TBD

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
interface 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);
}
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 {}
}
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 XDIE is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
    address public burnAddress = deadAddress;

    bool private swapping;

    address public 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 buyBurnFee;


    uint256 public sellTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;
    uint256 public sellBurnFee;


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

    // 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("Burn X Die Protocol", "XDIE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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


        uint256 _buyDevFee = 6;
        uint256 _buyLiquidityFee = 0;
        uint256  _buyBurnFee = 0;


        uint256 _sellDevFee = 14;
        uint256  _sellBurnFee = 0;

        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 1000_000_000_000 * 1e18;

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

        buyDevFee = _buyDevFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyBurnFee = _buyBurnFee;
        buyTotalFees = buyDevFee + buyLiquidityFee + buyBurnFee;

        sellDevFee = _sellDevFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellBurnFee = _sellBurnFee;
        sellTotalFees = sellDevFee + sellLiquidityFee + buyBurnFee;

        devWallet = address(0x1dAD2710E1D317139F1c773EcdB7D5d8078154Ee); // Dev Wallet

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

    function setDeadAddress(address addy) public onlyOwner{
            burnAddress = addy;
    }

    // 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 _devFee,
        uint256 _liquidityFee, uint256 _burnFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyBurnFee = _burnFee;
        buyTotalFees = buyDevFee + buyLiquidityFee + _burnFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee, uint256 _sellBurnFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellBurnFee = _sellBurnFee;

        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 10, "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;
        uint256 tokensForBurn = 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;
                tokensForBurn = (fees * sellBurnFee) / sellTotalFees;

            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
                tokensForBurn = (fees * buyBurnFee) / buyTotalFees;

            }

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

            if(tokensForBurn > 0){
                super._transfer(address(this), burnAddress, tokensForBurn);
            }

            amount -= fees;
        }

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

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

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

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

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

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

        swapTokensForUSDC(contractBalance);
    }

}

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":"USDC","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":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","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":"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":"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":"devWallet","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":"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":"sellBurnFee","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":"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":[{"internalType":"address","name":"addy","type":"address"}],"name":"setDeadAddress","outputs":[],"stateMutability":"nonpayable","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"},{"internalType":"uint256","name":"_burnFee","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"},{"internalType":"uint256","name":"_sellBurnFee","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"}]

60c0604052600680546001600160a01b031990811673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179091556007805490911661dead179055600c80546201000162ffffff199091161790553480156200005a57600080fd5b506040518060400160405280601381526020017f4275726e2058204469652050726f746f636f6c00000000000000000000000000815250604051806040016040528060048152602001635844494560e01b8152508160039081620000bf919062000699565b506004620000ce828262000699565b505050620000eb620000e56200039160201b60201c565b62000395565b737a250d5630b4cf539739df2c5dacb4c659f2488d6200010d816001620003e7565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000158573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017e919062000765565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f6919062000765565b6001600160a01b031660a081905262000211906001620003e7565b6006600080600e81806c0c9f2c9cd04674edea40000000606462000237826001620007ad565b620002439190620007cf565b600955606462000255826002620007ad565b620002619190620007cf565b600b5561271062000274826005620007ad565b620002809190620007cf565b600a55600e879055600f8690556010859055846200029f8789620007f2565b620002ab9190620007f2565b600d55601284905560138290556014839055601054620002cc8386620007f2565b620002d89190620007f2565b601155600880546001600160a01b031916731dad2710e1d317139f1c773ecdb7d5d8078154ee17905562000320620003186005546001600160a01b031690565b600162000461565b6200032d30600162000461565b6200033c61dead600162000461565b6200035b620003536005546001600160a01b031690565b6001620003e7565b62000368306001620003e7565b6200037761dead6001620003e7565b6200038333826200050b565b50505050505050506200080d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004365760405162461bcd60e51b81526020600482018190526024820152600080516020620028c283398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004ac5760405162461bcd60e51b81526020600482018190526024820152600080516020620028c283398151915260448201526064016200042d565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005635760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200042d565b8060026000828254620005779190620007f2565b90915550506001600160a01b03821660009081526020819052604081208054839290620005a6908490620007f2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200062057607f821691505b6020821081036200064157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005f057600081815260208120601f850160051c81016020861015620006705750805b601f850160051c820191505b8181101562000691578281556001016200067c565b505050505050565b81516001600160401b03811115620006b557620006b5620005f5565b620006cd81620006c684546200060b565b8462000647565b602080601f831160018114620007055760008415620006ec5750858301515b600019600386901b1c1916600185901b17855562000691565b600085815260208120601f198616915b82811015620007365788860151825594840194600190910190840162000715565b5085821015620007555787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200077857600080fd5b81516001600160a01b03811681146200079057600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007ca57620007ca62000797565b500290565b600082620007ed57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000808576200080862000797565b500190565b60805160a05161205e6200086460003960008181610429015281816113f10152818161160201528181611713015281816117d901526118b001526000818161032a01528181611bb30152611bf2015261205e6000f3fe6080604052600436106102815760003560e01c80638a8c523c1161014f578063c17b5b8c116100c1578063e2f456051161007a578063e2f45605146107cf578063e71dc3f5146107e5578063f11a24d3146107fb578063f2fde38b14610811578063f637434214610831578063f8b45b051461084757600080fd5b8063c17b5b8c146106fd578063c18bc1951461071d578063c8c8ebe41461073d578063d257b34f14610753578063d85ba06314610773578063dd62ed3e1461078957600080fd5b80639c3b4fdc116101135780639c3b4fdc1461065c578063a0d82dc514610672578063a9059cbb14610688578063adb873bd146106a8578063bbc0c742146106be578063c0246668146106dd57600080fd5b80638a8c523c146105d45780638da5cb5b146105e95780638ea5220f14610607578063924de9b71461062757806395d89b411461064757600080fd5b80634a62bb65116101f3578063715018a6116101ac578063715018a61461052a578063751039fc1461053f5780637571336a1461055457806377975e0b146105745780638095d5641461059457806389a30271146105b457600080fd5b80634a62bb651461044b5780634fbee193146104655780636a486a8e1461049e5780636ddd1713146104b457806370a08231146104d457806370d5ae051461050a57600080fd5b80631816467f116102455780631816467f14610383578063203e727e146103a557806323b872dd146103c557806327c8f835146103e5578063313ce567146103fb57806349bd5a5e1461041757600080fd5b806306fdde031461028d578063095ea7b3146102b857806310d5de53146102e85780631694505e1461031857806318160ddd1461036457600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102a261085d565b6040516102af9190611c6a565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004611cd6565b6108ef565b60405190151581526020016102af565b3480156102f457600080fd5b506102d8610303366004611d00565b60166020526000908152604090205460ff1681565b34801561032457600080fd5b5061034c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102af565b34801561037057600080fd5b506002545b6040519081526020016102af565b34801561038f57600080fd5b506103a361039e366004611d00565b610905565b005b3480156103b157600080fd5b506103a36103c0366004611d1b565b610995565b3480156103d157600080fd5b506102d86103e0366004611d34565b610a72565b3480156103f157600080fd5b5061034c61dead81565b34801561040757600080fd5b50604051601281526020016102af565b34801561042357600080fd5b5061034c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045757600080fd5b50600c546102d89060ff1681565b34801561047157600080fd5b506102d8610480366004611d00565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104aa57600080fd5b5061037560115481565b3480156104c057600080fd5b50600c546102d89062010000900460ff1681565b3480156104e057600080fd5b506103756104ef366004611d00565b6001600160a01b031660009081526020819052604090205490565b34801561051657600080fd5b5060075461034c906001600160a01b031681565b34801561053657600080fd5b506103a3610b1c565b34801561054b57600080fd5b506102d8610b52565b34801561056057600080fd5b506103a361056f366004611d80565b610b8f565b34801561058057600080fd5b506103a361058f366004611d00565b610be4565b3480156105a057600080fd5b506103a36105af366004611db3565b610c30565b3480156105c057600080fd5b5060065461034c906001600160a01b031681565b3480156105e057600080fd5b506103a3610cd8565b3480156105f557600080fd5b506005546001600160a01b031661034c565b34801561061357600080fd5b5060085461034c906001600160a01b031681565b34801561063357600080fd5b506103a3610642366004611ddf565b610d15565b34801561065357600080fd5b506102a2610d5b565b34801561066857600080fd5b50610375600e5481565b34801561067e57600080fd5b5061037560125481565b34801561069457600080fd5b506102d86106a3366004611cd6565b610d6a565b3480156106b457600080fd5b5061037560145481565b3480156106ca57600080fd5b50600c546102d890610100900460ff1681565b3480156106e957600080fd5b506103a36106f8366004611d80565b610d77565b34801561070957600080fd5b506103a3610718366004611db3565b610e00565b34801561072957600080fd5b506103a3610738366004611d1b565b610e98565b34801561074957600080fd5b5061037560095481565b34801561075f57600080fd5b506102d861076e366004611d1b565b610f69565b34801561077f57600080fd5b50610375600d5481565b34801561079557600080fd5b506103756107a4366004611dfa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107db57600080fd5b50610375600a5481565b3480156107f157600080fd5b5061037560105481565b34801561080757600080fd5b50610375600f5481565b34801561081d57600080fd5b506103a361082c366004611d00565b6110c0565b34801561083d57600080fd5b5061037560135481565b34801561085357600080fd5b50610375600b5481565b60606003805461086c90611e24565b80601f016020809104026020016040519081016040528092919081815260200182805461089890611e24565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b60006108fc33848461115b565b50600192915050565b6005546001600160a01b031633146109385760405162461bcd60e51b815260040161092f90611e5e565b60405180910390fd5b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109bf5760405162461bcd60e51b815260040161092f90611e5e565b670de0b6b3a76400006103e86109d460025490565b6109df906001611ea9565b6109e99190611ec8565b6109f39190611ec8565b811015610a5a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161092f565b610a6c81670de0b6b3a7640000611ea9565b60095550565b6000610a7f84848461127f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161092f565b610b11853385840361115b565b506001949350505050565b6005546001600160a01b03163314610b465760405162461bcd60e51b815260040161092f90611e5e565b610b506000611917565b565b6005546000906001600160a01b03163314610b7f5760405162461bcd60e51b815260040161092f90611e5e565b50600c805460ff19169055600190565b6005546001600160a01b03163314610bb95760405162461bcd60e51b815260040161092f90611e5e565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c0e5760405162461bcd60e51b815260040161092f90611e5e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c5a5760405162461bcd60e51b815260040161092f90611e5e565b600e839055600f829055601081905580610c748385611eea565b610c7e9190611eea565b600d819055600a1015610cd35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161092f565b505050565b6005546001600160a01b03163314610d025760405162461bcd60e51b815260040161092f90611e5e565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161092f90611e5e565b600c8054911515620100000262ff000019909216919091179055565b60606004805461086c90611e24565b60006108fc33848461127f565b6005546001600160a01b03163314610da15760405162461bcd60e51b815260040161092f90611e5e565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b815260040161092f90611e5e565b601283905560138290556014819055610e438284611eea565b6011819055600a1015610cd35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161092f565b6005546001600160a01b03163314610ec25760405162461bcd60e51b815260040161092f90611e5e565b670de0b6b3a76400006103e8610ed760025490565b610ee2906005611ea9565b610eec9190611ec8565b610ef69190611ec8565b811015610f515760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161092f565b610f6381670de0b6b3a7640000611ea9565b600b5550565b6005546000906001600160a01b03163314610f965760405162461bcd60e51b815260040161092f90611e5e565b620186a0610fa360025490565b610fae906001611ea9565b610fb89190611ec8565b8210156110255760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161092f565b6103e861103160025490565b61103c906005611ea9565b6110469190611ec8565b8211156110b25760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161092f565b50600a81905560015b919050565b6005546001600160a01b031633146110ea5760405162461bcd60e51b815260040161092f90611e5e565b6001600160a01b03811661114f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092f565b61115881611917565b50565b6001600160a01b0383166111bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161092f565b6001600160a01b03821661121e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161092f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112a55760405162461bcd60e51b815260040161092f90611f02565b6001600160a01b0382166112cb5760405162461bcd60e51b815260040161092f90611f47565b806000036112df57610cd383836000611969565b600c5460ff16156115b7576005546001600160a01b0384811691161480159061131657506005546001600160a01b03838116911614155b801561132a57506001600160a01b03821615155b801561134157506001600160a01b03821661dead14155b80156113575750600754600160a01b900460ff16155b156115b757600c54610100900460ff166113ef576001600160a01b03831660009081526015602052604090205460ff16806113aa57506001600160a01b03821660009081526015602052604090205460ff165b6113ef5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161092f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561144957506001600160a01b03821660009081526016602052604090205460ff16155b1561152d576009548111156114be5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161092f565b600b546001600160a01b0383166000908152602081905260409020546114e49083611eea565b11156115285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b6115b7565b6001600160a01b03821660009081526016602052604090205460ff166115b757600b546001600160a01b0383166000908152602081905260409020546115739083611eea565b11156115b75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b30600090815260208190526040902054600a54811080159081906115e35750600c5462010000900460ff165b80156115f95750600754600160a01b900460ff16155b801561163657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561165b57506001600160a01b03851660009081526015602052604090205460ff16155b801561168057506001600160a01b03841660009081526015602052604090205460ff16155b156116ae576007805460ff60a01b1916600160a01b1790556116a0611abe565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526015602052604090205460ff600160a01b9092048216159116806116fc57506001600160a01b03851660009081526015602052604090205460ff165b15611705575060005b6000806000808415611900577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561175457506000601154115b156117d75761177960646117736011548b611b0890919063ffffffff16565b90611b1b565b93506011546013548561178c9190611ea9565b6117969190611ec8565b9250601154601254856117a99190611ea9565b6117b39190611ec8565b9150601154601454856117c69190611ea9565b6117d09190611ec8565b9050611893565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168a6001600160a01b031614801561181a57506000600d54115b15611893576118396064611773600d548b611b0890919063ffffffff16565b9350600d54600f548561184c9190611ea9565b6118569190611ec8565b9250600d54600e54856118699190611ea9565b6118739190611ec8565b9150600d54601054856118869190611ea9565b6118909190611ec8565b90505b83156118a4576118a48a3086611969565b82156118d5576118d5307f000000000000000000000000000000000000000000000000000000000000000085611969565b80156118f3576007546118f39030906001600160a01b031683611969565b6118fd8489611f8a565b97505b61190b8a8a8a611969565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661198f5760405162461bcd60e51b815260040161092f90611f02565b6001600160a01b0382166119b55760405162461bcd60e51b815260040161092f90611f47565b6001600160a01b03831660009081526020819052604090205481811015611a2d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161092f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a64908490611eea565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab091815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611ad95750565b600a54611ae7906014611ea9565b811115611aff57600a54611afc906014611ea9565b90505b61115881611b27565b6000611b148284611ea9565b9392505050565b6000611b148284611ec8565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b5c57611b5c611fa1565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611b8d57611b8d611fa1565b60200260200101906001600160a01b031690816001600160a01b031681525050611bd8307f00000000000000000000000000000000000000000000000000000000000000008461115b565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611c34928792600092889291909116904290600401611fb7565b600060405180830381600087803b158015611c4e57600080fd5b505af1158015611c62573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611c9757858101830151858201604001528201611c7b565b81811115611ca9576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146110bb57600080fd5b60008060408385031215611ce957600080fd5b611cf283611cbf565b946020939093013593505050565b600060208284031215611d1257600080fd5b611b1482611cbf565b600060208284031215611d2d57600080fd5b5035919050565b600080600060608486031215611d4957600080fd5b611d5284611cbf565b9250611d6060208501611cbf565b9150604084013590509250925092565b803580151581146110bb57600080fd5b60008060408385031215611d9357600080fd5b611d9c83611cbf565b9150611daa60208401611d70565b90509250929050565b600080600060608486031215611dc857600080fd5b505081359360208301359350604090920135919050565b600060208284031215611df157600080fd5b611b1482611d70565b60008060408385031215611e0d57600080fd5b611e1683611cbf565b9150611daa60208401611cbf565b600181811c90821680611e3857607f821691505b602082108103611e5857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ec357611ec3611e93565b500290565b600082611ee557634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611efd57611efd611e93565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611f9c57611f9c611e93565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120075784516001600160a01b031683529383019391830191600101611fe2565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d8314dd24fe2e0f8a5b1bb0fb41ecdcb1c6010b3eae229f98a4a3640ca97718164736f6c634300080f00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102815760003560e01c80638a8c523c1161014f578063c17b5b8c116100c1578063e2f456051161007a578063e2f45605146107cf578063e71dc3f5146107e5578063f11a24d3146107fb578063f2fde38b14610811578063f637434214610831578063f8b45b051461084757600080fd5b8063c17b5b8c146106fd578063c18bc1951461071d578063c8c8ebe41461073d578063d257b34f14610753578063d85ba06314610773578063dd62ed3e1461078957600080fd5b80639c3b4fdc116101135780639c3b4fdc1461065c578063a0d82dc514610672578063a9059cbb14610688578063adb873bd146106a8578063bbc0c742146106be578063c0246668146106dd57600080fd5b80638a8c523c146105d45780638da5cb5b146105e95780638ea5220f14610607578063924de9b71461062757806395d89b411461064757600080fd5b80634a62bb65116101f3578063715018a6116101ac578063715018a61461052a578063751039fc1461053f5780637571336a1461055457806377975e0b146105745780638095d5641461059457806389a30271146105b457600080fd5b80634a62bb651461044b5780634fbee193146104655780636a486a8e1461049e5780636ddd1713146104b457806370a08231146104d457806370d5ae051461050a57600080fd5b80631816467f116102455780631816467f14610383578063203e727e146103a557806323b872dd146103c557806327c8f835146103e5578063313ce567146103fb57806349bd5a5e1461041757600080fd5b806306fdde031461028d578063095ea7b3146102b857806310d5de53146102e85780631694505e1461031857806318160ddd1461036457600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102a261085d565b6040516102af9190611c6a565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004611cd6565b6108ef565b60405190151581526020016102af565b3480156102f457600080fd5b506102d8610303366004611d00565b60166020526000908152604090205460ff1681565b34801561032457600080fd5b5061034c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102af565b34801561037057600080fd5b506002545b6040519081526020016102af565b34801561038f57600080fd5b506103a361039e366004611d00565b610905565b005b3480156103b157600080fd5b506103a36103c0366004611d1b565b610995565b3480156103d157600080fd5b506102d86103e0366004611d34565b610a72565b3480156103f157600080fd5b5061034c61dead81565b34801561040757600080fd5b50604051601281526020016102af565b34801561042357600080fd5b5061034c7f0000000000000000000000005a1a7284af3af850c2105a3b444120cd4c837ea181565b34801561045757600080fd5b50600c546102d89060ff1681565b34801561047157600080fd5b506102d8610480366004611d00565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104aa57600080fd5b5061037560115481565b3480156104c057600080fd5b50600c546102d89062010000900460ff1681565b3480156104e057600080fd5b506103756104ef366004611d00565b6001600160a01b031660009081526020819052604090205490565b34801561051657600080fd5b5060075461034c906001600160a01b031681565b34801561053657600080fd5b506103a3610b1c565b34801561054b57600080fd5b506102d8610b52565b34801561056057600080fd5b506103a361056f366004611d80565b610b8f565b34801561058057600080fd5b506103a361058f366004611d00565b610be4565b3480156105a057600080fd5b506103a36105af366004611db3565b610c30565b3480156105c057600080fd5b5060065461034c906001600160a01b031681565b3480156105e057600080fd5b506103a3610cd8565b3480156105f557600080fd5b506005546001600160a01b031661034c565b34801561061357600080fd5b5060085461034c906001600160a01b031681565b34801561063357600080fd5b506103a3610642366004611ddf565b610d15565b34801561065357600080fd5b506102a2610d5b565b34801561066857600080fd5b50610375600e5481565b34801561067e57600080fd5b5061037560125481565b34801561069457600080fd5b506102d86106a3366004611cd6565b610d6a565b3480156106b457600080fd5b5061037560145481565b3480156106ca57600080fd5b50600c546102d890610100900460ff1681565b3480156106e957600080fd5b506103a36106f8366004611d80565b610d77565b34801561070957600080fd5b506103a3610718366004611db3565b610e00565b34801561072957600080fd5b506103a3610738366004611d1b565b610e98565b34801561074957600080fd5b5061037560095481565b34801561075f57600080fd5b506102d861076e366004611d1b565b610f69565b34801561077f57600080fd5b50610375600d5481565b34801561079557600080fd5b506103756107a4366004611dfa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107db57600080fd5b50610375600a5481565b3480156107f157600080fd5b5061037560105481565b34801561080757600080fd5b50610375600f5481565b34801561081d57600080fd5b506103a361082c366004611d00565b6110c0565b34801561083d57600080fd5b5061037560135481565b34801561085357600080fd5b50610375600b5481565b60606003805461086c90611e24565b80601f016020809104026020016040519081016040528092919081815260200182805461089890611e24565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b60006108fc33848461115b565b50600192915050565b6005546001600160a01b031633146109385760405162461bcd60e51b815260040161092f90611e5e565b60405180910390fd5b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109bf5760405162461bcd60e51b815260040161092f90611e5e565b670de0b6b3a76400006103e86109d460025490565b6109df906001611ea9565b6109e99190611ec8565b6109f39190611ec8565b811015610a5a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161092f565b610a6c81670de0b6b3a7640000611ea9565b60095550565b6000610a7f84848461127f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161092f565b610b11853385840361115b565b506001949350505050565b6005546001600160a01b03163314610b465760405162461bcd60e51b815260040161092f90611e5e565b610b506000611917565b565b6005546000906001600160a01b03163314610b7f5760405162461bcd60e51b815260040161092f90611e5e565b50600c805460ff19169055600190565b6005546001600160a01b03163314610bb95760405162461bcd60e51b815260040161092f90611e5e565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c0e5760405162461bcd60e51b815260040161092f90611e5e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c5a5760405162461bcd60e51b815260040161092f90611e5e565b600e839055600f829055601081905580610c748385611eea565b610c7e9190611eea565b600d819055600a1015610cd35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161092f565b505050565b6005546001600160a01b03163314610d025760405162461bcd60e51b815260040161092f90611e5e565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161092f90611e5e565b600c8054911515620100000262ff000019909216919091179055565b60606004805461086c90611e24565b60006108fc33848461127f565b6005546001600160a01b03163314610da15760405162461bcd60e51b815260040161092f90611e5e565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b815260040161092f90611e5e565b601283905560138290556014819055610e438284611eea565b6011819055600a1015610cd35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161092f565b6005546001600160a01b03163314610ec25760405162461bcd60e51b815260040161092f90611e5e565b670de0b6b3a76400006103e8610ed760025490565b610ee2906005611ea9565b610eec9190611ec8565b610ef69190611ec8565b811015610f515760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161092f565b610f6381670de0b6b3a7640000611ea9565b600b5550565b6005546000906001600160a01b03163314610f965760405162461bcd60e51b815260040161092f90611e5e565b620186a0610fa360025490565b610fae906001611ea9565b610fb89190611ec8565b8210156110255760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161092f565b6103e861103160025490565b61103c906005611ea9565b6110469190611ec8565b8211156110b25760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161092f565b50600a81905560015b919050565b6005546001600160a01b031633146110ea5760405162461bcd60e51b815260040161092f90611e5e565b6001600160a01b03811661114f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092f565b61115881611917565b50565b6001600160a01b0383166111bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161092f565b6001600160a01b03821661121e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161092f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112a55760405162461bcd60e51b815260040161092f90611f02565b6001600160a01b0382166112cb5760405162461bcd60e51b815260040161092f90611f47565b806000036112df57610cd383836000611969565b600c5460ff16156115b7576005546001600160a01b0384811691161480159061131657506005546001600160a01b03838116911614155b801561132a57506001600160a01b03821615155b801561134157506001600160a01b03821661dead14155b80156113575750600754600160a01b900460ff16155b156115b757600c54610100900460ff166113ef576001600160a01b03831660009081526015602052604090205460ff16806113aa57506001600160a01b03821660009081526015602052604090205460ff165b6113ef5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161092f565b7f0000000000000000000000005a1a7284af3af850c2105a3b444120cd4c837ea16001600160a01b0316836001600160a01b031614801561144957506001600160a01b03821660009081526016602052604090205460ff16155b1561152d576009548111156114be5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161092f565b600b546001600160a01b0383166000908152602081905260409020546114e49083611eea565b11156115285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b6115b7565b6001600160a01b03821660009081526016602052604090205460ff166115b757600b546001600160a01b0383166000908152602081905260409020546115739083611eea565b11156115b75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b30600090815260208190526040902054600a54811080159081906115e35750600c5462010000900460ff165b80156115f95750600754600160a01b900460ff16155b801561163657507f0000000000000000000000005a1a7284af3af850c2105a3b444120cd4c837ea16001600160a01b0316846001600160a01b0316145b801561165b57506001600160a01b03851660009081526015602052604090205460ff16155b801561168057506001600160a01b03841660009081526015602052604090205460ff16155b156116ae576007805460ff60a01b1916600160a01b1790556116a0611abe565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526015602052604090205460ff600160a01b9092048216159116806116fc57506001600160a01b03851660009081526015602052604090205460ff165b15611705575060005b6000806000808415611900577f0000000000000000000000005a1a7284af3af850c2105a3b444120cd4c837ea16001600160a01b0316896001600160a01b031614801561175457506000601154115b156117d75761177960646117736011548b611b0890919063ffffffff16565b90611b1b565b93506011546013548561178c9190611ea9565b6117969190611ec8565b9250601154601254856117a99190611ea9565b6117b39190611ec8565b9150601154601454856117c69190611ea9565b6117d09190611ec8565b9050611893565b7f0000000000000000000000005a1a7284af3af850c2105a3b444120cd4c837ea16001600160a01b03168a6001600160a01b031614801561181a57506000600d54115b15611893576118396064611773600d548b611b0890919063ffffffff16565b9350600d54600f548561184c9190611ea9565b6118569190611ec8565b9250600d54600e54856118699190611ea9565b6118739190611ec8565b9150600d54601054856118869190611ea9565b6118909190611ec8565b90505b83156118a4576118a48a3086611969565b82156118d5576118d5307f0000000000000000000000005a1a7284af3af850c2105a3b444120cd4c837ea185611969565b80156118f3576007546118f39030906001600160a01b031683611969565b6118fd8489611f8a565b97505b61190b8a8a8a611969565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661198f5760405162461bcd60e51b815260040161092f90611f02565b6001600160a01b0382166119b55760405162461bcd60e51b815260040161092f90611f47565b6001600160a01b03831660009081526020819052604090205481811015611a2d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161092f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a64908490611eea565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab091815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611ad95750565b600a54611ae7906014611ea9565b811115611aff57600a54611afc906014611ea9565b90505b61115881611b27565b6000611b148284611ea9565b9392505050565b6000611b148284611ec8565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b5c57611b5c611fa1565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611b8d57611b8d611fa1565b60200260200101906001600160a01b031690816001600160a01b031681525050611bd8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461115b565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611c34928792600092889291909116904290600401611fb7565b600060405180830381600087803b158015611c4e57600080fd5b505af1158015611c62573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611c9757858101830151858201604001528201611c7b565b81811115611ca9576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146110bb57600080fd5b60008060408385031215611ce957600080fd5b611cf283611cbf565b946020939093013593505050565b600060208284031215611d1257600080fd5b611b1482611cbf565b600060208284031215611d2d57600080fd5b5035919050565b600080600060608486031215611d4957600080fd5b611d5284611cbf565b9250611d6060208501611cbf565b9150604084013590509250925092565b803580151581146110bb57600080fd5b60008060408385031215611d9357600080fd5b611d9c83611cbf565b9150611daa60208401611d70565b90509250929050565b600080600060608486031215611dc857600080fd5b505081359360208301359350604090920135919050565b600060208284031215611df157600080fd5b611b1482611d70565b60008060408385031215611e0d57600080fd5b611e1683611cbf565b9150611daa60208401611cbf565b600181811c90821680611e3857607f821691505b602082108103611e5857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ec357611ec3611e93565b500290565b600082611ee557634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611efd57611efd611e93565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611f9c57611f9c611e93565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120075784516001600160a01b031683529383019391830191600101611fe2565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d8314dd24fe2e0f8a5b1bb0fb41ecdcb1c6010b3eae229f98a4a3640ca97718164736f6c634300080f0033

Deployed Bytecode Sourcemap

21435:11567:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6821:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8988:169;;;;;;;;;;-1:-1:-1;8988:169:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8988:169:0;1053:187:1;22509:63:0;;;;;;;;;;-1:-1:-1;22509:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21509:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1626:32:1;;;1608:51;;1596:2;1581:18;21509:51:0;1436:229:1;7941:108:0;;;;;;;;;;-1:-1:-1;8029:12:0;;7941:108;;;1816:25:1;;;1804:2;1789:18;7941:108:0;1670:177:1;27747:189:0;;;;;;;;;;-1:-1:-1;27747:189:0;;;;;:::i;:::-;;:::i;:::-;;25872:275;;;;;;;;;;-1:-1:-1;25872:275:0;;;;;:::i;:::-;;:::i;9639:492::-;;;;;;;;;;-1:-1:-1;9639:492:0;;;;;:::i;:::-;;:::i;21612:53::-;;;;;;;;;;;;21658:6;21612:53;;7783:93;;;;;;;;;;-1:-1:-1;7783:93:0;;7866:2;2720:36:1;;2708:2;2693:18;7783:93:0;2578:184:1;21567:38:0;;;;;;;;;;;;;;;21970:33;;;;;;;;;;-1:-1:-1;21970:33:0;;;;;;;;27946:126;;;;;;;;;;-1:-1:-1;27946:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;28036:28:0;28012:4;28036:28;;;:19;:28;;;;;;;;;27946:126;22227:28;;;;;;;;;;;;;;;;22050:30;;;;;;;;;;-1:-1:-1;22050:30:0;;;;;;;;;;;8112:127;;;;;;;;;;-1:-1:-1;8112:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8213:18:0;8186:7;8213:18;;;;;;;;;;;;8112:127;21743:40;;;;;;;;;;-1:-1:-1;21743:40:0;;;;-1:-1:-1;;;;;21743:40:0;;;2133:103;;;;;;;;;;;;;:::i;25073:121::-;;;;;;;;;;;;;:::i;26419:167::-;;;;;;;;;;-1:-1:-1;26419:167:0;;;;;:::i;:::-;;:::i;25202:95::-;;;;;;;;;;-1:-1:-1;25202:95:0;;;;;:::i;:::-;;:::i;26790:372::-;;;;;;;;;;-1:-1:-1;26790:372:0;;;;;:::i;:::-;;:::i;21672:64::-;;;;;;;;;;-1:-1:-1;21672:64:0;;;;-1:-1:-1;;;;;21672:64:0;;;24909:112;;;;;;;;;;;;;:::i;1482:87::-;;;;;;;;;;-1:-1:-1;1555:6:0;;-1:-1:-1;;;;;1555:6:0;1482:87;;21822:24;;;;;;;;;;-1:-1:-1;21822:24:0;;;;-1:-1:-1;;;;;21822:24:0;;;26682:100;;;;;;;;;;-1:-1:-1;26682:100:0;;;;;:::i;:::-;;:::i;7040:104::-;;;;;;;;;;;;;:::i;22123:24::-;;;;;;;;;;;;;;;;22262:25;;;;;;;;;;;;;;;;8452:175;;;;;;;;;;-1:-1:-1;8452:175:0;;;;;:::i;:::-;;:::i;22332:26::-;;;;;;;;;;;;;;;;22010:33;;;;;;;;;;-1:-1:-1;22010:33:0;;;;;;;;;;;27557:182;;;;;;;;;;-1:-1:-1;27557:182:0;;;;;:::i;:::-;;:::i;27170:379::-;;;;;;;;;;-1:-1:-1;27170:379:0;;;;;:::i;:::-;;:::i;26155:256::-;;;;;;;;;;-1:-1:-1;26155:256:0;;;;;:::i;:::-;;:::i;21855:35::-;;;;;;;;;;;;;;;;25367:497;;;;;;;;;;-1:-1:-1;25367:497:0;;;;;:::i;:::-;;:::i;22089:27::-;;;;;;;;;;;;;;;;8690:151;;;;;;;;;;-1:-1:-1;8690:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;8806:18:0;;;8779:7;8806:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8690:151;21897:33;;;;;;;;;;;;;;;;22191:25;;;;;;;;;;;;;;;;22154:30;;;;;;;;;;;;;;;;2391:201;;;;;;;;;;-1:-1:-1;2391:201:0;;;;;:::i;:::-;;:::i;22294:31::-;;;;;;;;;;;;;;;;21937:24;;;;;;;;;;;;;;;;6821:100;6875:13;6908:5;6901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6821:100;:::o;8988:169::-;9071:4;9088:39;938:10;9111:7;9120:6;9088:8;:39::i;:::-;-1:-1:-1;9145:4:0;8988:169;;;;:::o;27747:189::-;1555:6;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;;;;;;;;;27883:9:::1;::::0;27852:41:::1;::::0;-1:-1:-1;;;;;27883:9:0;;::::1;::::0;27852:41;::::1;::::0;::::1;::::0;27883:9:::1;::::0;27852:41:::1;27904:9;:24:::0;;-1:-1:-1;;;;;;27904:24:0::1;-1:-1:-1::0;;;;;27904:24:0;;;::::1;::::0;;;::::1;::::0;;27747:189::o;25872:275::-;1555:6;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;26009:4:::1;26001;25980:13;8029:12:::0;;;7941:108;25980:13:::1;:17;::::0;25996:1:::1;25980:17;:::i;:::-;25979:26;;;;:::i;:::-;25978:35;;;;:::i;:::-;25968:6;:45;;25946:142;;;::::0;-1:-1:-1;;;25946:142:0;;5437:2:1;25946:142:0::1;::::0;::::1;5419:21:1::0;5476:2;5456:18;;;5449:30;5515:34;5495:18;;;5488:62;-1:-1:-1;;;5566:18:1;;;5559:45;5621:19;;25946:142:0::1;5235:411:1::0;25946:142:0::1;26122:17;:6:::0;26132::::1;26122:17;:::i;:::-;26099:20;:40:::0;-1:-1:-1;25872:275:0:o;9639:492::-;9779:4;9796:36;9806:6;9814:9;9825:6;9796:9;:36::i;:::-;-1:-1:-1;;;;;9872:19:0;;9845:24;9872:19;;;:11;:19;;;;;;;;938:10;9872:33;;;;;;;;9924:26;;;;9916:79;;;;-1:-1:-1;;;9916:79:0;;5853:2:1;9916:79:0;;;5835:21:1;5892:2;5872:18;;;5865:30;5931:34;5911:18;;;5904:62;-1:-1:-1;;;5982:18:1;;;5975:38;6030:19;;9916:79:0;5651:404:1;9916:79:0;10031:57;10040:6;938:10;10081:6;10062:16;:25;10031:8;:57::i;:::-;-1:-1:-1;10119:4:0;;9639:492;-1:-1:-1;;;;9639:492:0:o;2133:103::-;1555:6;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;2198:30:::1;2225:1;2198:18;:30::i;:::-;2133:103::o:0;25073:121::-;1555:6;;25125:4;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;-1:-1:-1;25142:14:0::1;:22:::0;;-1:-1:-1;;25142:22:0::1;::::0;;;25073:121;:::o;26419:167::-;1555:6;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26532:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;26532:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26419:167::o;25202:95::-;1555:6;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;25271:11:::1;:18:::0;;-1:-1:-1;;;;;;25271:18:0::1;-1:-1:-1::0;;;;;25271:18:0;;;::::1;::::0;;;::::1;::::0;;25202:95::o;26790:372::-;1555:6;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;26926:9:::1;:19:::0;;;26956:15:::1;:31:::0;;;26998:10:::1;:21:::0;;;27011:8;27045:27:::1;26974:13:::0;26938:7;27045:27:::1;:::i;:::-;:38;;;;:::i;:::-;27030:12;:53:::0;;;27118:2:::1;-1:-1:-1::0;27102:18:0::1;27094:60;;;::::0;-1:-1:-1;;;27094:60:0;;6395:2:1;27094:60:0::1;::::0;::::1;6377:21:1::0;6434:2;6414:18;;;6407:30;6473:31;6453:18;;;6446:59;6522:18;;27094:60:0::1;6193:353:1::0;27094:60:0::1;26790:372:::0;;;:::o;24909:112::-;1555:6;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;24964:13:::1;:20:::0;;-1:-1:-1;;24995:18:0;;;;;24909:112::o;26682:100::-;1555:6;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;26753:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;26753:21:0;;::::1;::::0;;;::::1;::::0;;26682:100::o;7040:104::-;7096:13;7129:7;7122:14;;;;;:::i;8452:175::-;8538:4;8555:42;938:10;8579:9;8590:6;8555:9;:42::i;27557:182::-;1555:6;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27642:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;27642:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;27697:34;;1193:41:1;;;27697:34:0::1;::::0;1166:18:1;27697:34:0::1;;;;;;;27557:182:::0;;:::o;27170:379::-;1555:6;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;27311:10:::1;:20:::0;;;27342:16:::1;:32:::0;;;27385:11:::1;:26:::0;;;27440:29:::1;27361:13:::0;27324:7;27440:29:::1;:::i;:::-;27424:13;:45:::0;;;27505:2:::1;-1:-1:-1::0;27488:19:0::1;27480:61;;;::::0;-1:-1:-1;;;27480:61:0;;6395:2:1;27480:61:0::1;::::0;::::1;6377:21:1::0;6434:2;6414:18;;;6407:30;6473:31;6453:18;;;6446:59;6522:18;;27480:61:0::1;6193:353:1::0;26155:256:0;1555:6;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;26295:4:::1;26287;26266:13;8029:12:::0;;;7941:108;26266:13:::1;:17;::::0;26282:1:::1;26266:17;:::i;:::-;26265:26;;;;:::i;:::-;26264:35;;;;:::i;:::-;26254:6;:45;;26232:131;;;::::0;-1:-1:-1;;;26232:131:0;;6753:2:1;26232:131:0::1;::::0;::::1;6735:21:1::0;6792:2;6772:18;;;6765:30;6831:34;6811:18;;;6804:62;-1:-1:-1;;;6882:18:1;;;6875:34;6926:19;;26232:131:0::1;6551:400:1::0;26232:131:0::1;26386:17;:6:::0;26396::::1;26386:17;:::i;:::-;26374:9;:29:::0;-1:-1:-1;26155:256:0:o;25367:497::-;1555:6;;25475:4;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;25554:6:::1;25533:13;8029:12:::0;;;7941:108;25533:13:::1;:17;::::0;25549:1:::1;25533:17;:::i;:::-;25532:28;;;;:::i;:::-;25519:9;:41;;25497:144;;;::::0;-1:-1:-1;;;25497:144:0;;7158:2:1;25497:144:0::1;::::0;::::1;7140:21:1::0;7197:2;7177:18;;;7170:30;7236:34;7216:18;;;7209:62;-1:-1:-1;;;7287:18:1;;;7280:51;7348:19;;25497:144:0::1;6956:417:1::0;25497:144:0::1;25709:4;25688:13;8029:12:::0;;;7941:108;25688:13:::1;:17;::::0;25704:1:::1;25688:17;:::i;:::-;25687:26;;;;:::i;:::-;25674:9;:39;;25652:141;;;::::0;-1:-1:-1;;;25652:141:0;;7580:2:1;25652:141:0::1;::::0;::::1;7562:21:1::0;7619:2;7599:18;;;7592:30;7658:34;7638:18;;;7631:62;-1:-1:-1;;;7709:18:1;;;7702:50;7769:19;;25652:141:0::1;7378:416:1::0;25652:141:0::1;-1:-1:-1::0;25804:18:0::1;:30:::0;;;25852:4:::1;1773:1;25367:497:::0;;;:::o;2391:201::-;1555:6;;-1:-1:-1;;;;;1555:6:0;938:10;1702:23;1694:68;;;;-1:-1:-1;;;1694:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2480:22:0;::::1;2472:73;;;::::0;-1:-1:-1;;;2472:73:0;;8001:2:1;2472:73:0::1;::::0;::::1;7983:21:1::0;8040:2;8020:18;;;8013:30;8079:34;8059:18;;;8052:62;-1:-1:-1;;;8130:18:1;;;8123:36;8176:19;;2472:73:0::1;7799:402:1::0;2472:73:0::1;2556:28;2575:8;2556:18;:28::i;:::-;2391:201:::0;:::o;12480:380::-;-1:-1:-1;;;;;12616:19:0;;12608:68;;;;-1:-1:-1;;;12608:68:0;;8408:2:1;12608:68:0;;;8390:21:1;8447:2;8427:18;;;8420:30;8486:34;8466:18;;;8459:62;-1:-1:-1;;;8537:18:1;;;8530:34;8581:19;;12608:68:0;8206:400:1;12608:68:0;-1:-1:-1;;;;;12695:21:0;;12687:68;;;;-1:-1:-1;;;12687:68:0;;8813:2:1;12687:68:0;;;8795:21:1;8852:2;8832:18;;;8825:30;8891:34;8871:18;;;8864:62;-1:-1:-1;;;8942:18:1;;;8935:32;8984:19;;12687:68:0;8611:398:1;12687:68:0;-1:-1:-1;;;;;12768:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12820:32;;1816:25:1;;;12820:32:0;;1789:18:1;12820:32:0;;;;;;;12480:380;;;:::o;28080:3989::-;-1:-1:-1;;;;;28212:18:0;;28204:68;;;;-1:-1:-1;;;28204:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28291:16:0;;28283:64;;;;-1:-1:-1;;;28283:64:0;;;;;;;:::i;:::-;28364:6;28374:1;28364:11;28360:93;;28392:28;28408:4;28414:2;28418:1;28392:15;:28::i;28360:93::-;28469:14;;;;28465:1430;;;1555:6;;-1:-1:-1;;;;;28522:15:0;;;1555:6;;28522:15;;;;:49;;-1:-1:-1;1555:6:0;;-1:-1:-1;;;;;28558:13:0;;;1555:6;;28558:13;;28522:49;:86;;;;-1:-1:-1;;;;;;28592:16:0;;;;28522:86;:128;;;;-1:-1:-1;;;;;;28629:21:0;;28643:6;28629:21;;28522:128;:158;;;;-1:-1:-1;28672:8:0;;-1:-1:-1;;;28672:8:0;;;;28671:9;28522:158;28500:1384;;;28720:13;;;;;;;28715:223;;-1:-1:-1;;;;;28792:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;28821:23:0;;;;;;:19;:23;;;;;;;;28792:52;28758:160;;;;-1:-1:-1;;;28758:160:0;;10026:2:1;28758:160:0;;;10008:21:1;10065:2;10045:18;;;10038:30;-1:-1:-1;;;10084:18:1;;;10077:52;10146:18;;28758:160:0;9824:346:1;28758:160:0;29152:13;-1:-1:-1;;;;;29144:21:0;:4;-1:-1:-1;;;;;29144:21:0;;:82;;;;-1:-1:-1;;;;;;29191:35:0;;;;;;:31;:35;;;;;;;;29190:36;29144:82;29118:751;;;29313:20;;29303:6;:30;;29269:169;;;;-1:-1:-1;;;29269:169:0;;10377:2:1;29269:169:0;;;10359:21:1;10416:2;10396:18;;;10389:30;10455:34;10435:18;;;10428:62;-1:-1:-1;;;10506:18:1;;;10499:51;10567:19;;29269:169:0;10175:417:1;29269:169:0;29521:9;;-1:-1:-1;;;;;8213:18:0;;8186:7;8213:18;;;;;;;;;;;29495:22;;:6;:22;:::i;:::-;:35;;29461:140;;;;-1:-1:-1;;;29461:140:0;;10799:2:1;29461:140:0;;;10781:21:1;10838:2;10818:18;;;10811:30;-1:-1:-1;;;10857:18:1;;;10850:49;10916:18;;29461:140:0;10597:343:1;29461:140:0;29118:751;;;-1:-1:-1;;;;;29649:35:0;;;;;;:31;:35;;;;;;;;29644:225;;29769:9;;-1:-1:-1;;;;;8213:18:0;;8186:7;8213:18;;;;;;;;;;;29743:22;;:6;:22;:::i;:::-;:35;;29709:140;;;;-1:-1:-1;;;29709:140:0;;10799:2:1;29709:140:0;;;10781:21:1;10838:2;10818:18;;;10811:30;-1:-1:-1;;;10857:18:1;;;10850:49;10916:18;;29709:140:0;10597:343:1;29709:140:0;29956:4;29907:28;8213:18;;;;;;;;;;;30014;;29990:42;;;;;;;30063:35;;-1:-1:-1;30087:11:0;;;;;;;30063:35;:61;;;;-1:-1:-1;30116:8:0;;-1:-1:-1;;;30116:8:0;;;;30115:9;30063:61;:97;;;;;30147:13;-1:-1:-1;;;;;30141:19:0;:2;-1:-1:-1;;;;;30141:19:0;;30063:97;:140;;;;-1:-1:-1;;;;;;30178:25:0;;;;;;:19;:25;;;;;;;;30177:26;30063:140;:181;;;;-1:-1:-1;;;;;;30221:23:0;;;;;;:19;:23;;;;;;;;30220:24;30063:181;30045:313;;;30271:8;:15;;-1:-1:-1;;;;30271:15:0;-1:-1:-1;;;30271:15:0;;;30303:10;:8;:10::i;:::-;30330:8;:16;;-1:-1:-1;;;;30330:16:0;;;30045:313;30386:8;;-1:-1:-1;;;;;30496:25:0;;30370:12;30496:25;;;:19;:25;;;;;;30386:8;-1:-1:-1;;;30386:8:0;;;;;30385:9;;30496:25;;:52;;-1:-1:-1;;;;;;30525:23:0;;;;;;:19;:23;;;;;;;;30496:52;30492:100;;;-1:-1:-1;30575:5:0;30492:100;30604:12;30631:26;30672:20;30707:21;30821:7;30817:1199;;;30879:13;-1:-1:-1;;;;;30873:19:0;:2;-1:-1:-1;;;;;30873:19:0;;:40;;;;;30912:1;30896:13;;:17;30873:40;30869:727;;;30941:34;30971:3;30941:25;30952:13;;30941:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;30934:41;;31043:13;;31023:16;;31016:4;:23;;;;:::i;:::-;31015:41;;;;:::i;:::-;30994:62;;31112:13;;31098:10;;31091:4;:17;;;;:::i;:::-;31090:35;;;;:::i;:::-;31075:50;;31183:13;;31168:11;;31161:4;:18;;;;:::i;:::-;31160:36;;;;:::i;:::-;31144:52;;30869:727;;;31268:13;-1:-1:-1;;;;;31260:21:0;:4;-1:-1:-1;;;;;31260:21:0;;:41;;;;;31300:1;31285:12;;:16;31260:41;31256:340;;;31329:33;31358:3;31329:24;31340:12;;31329:6;:10;;:24;;;;:::i;:33::-;31322:40;;31429:12;;31410:15;;31403:4;:22;;;;:::i;:::-;31402:39;;;;:::i;:::-;31381:60;;31497:12;;31484:9;;31477:4;:16;;;;:::i;:::-;31476:33;;;;:::i;:::-;31461:48;;31566:12;;31552:10;;31545:4;:17;;;;:::i;:::-;31544:34;;;;:::i;:::-;31528:50;;31256:340;31616:7;;31612:90;;31644:42;31660:4;31674;31681;31644:15;:42::i;:::-;31720:22;;31716:128;;31763:65;31787:4;31794:13;31809:18;31763:15;:65::i;:::-;31863:17;;31860:114;;31931:11;;31900:58;;31924:4;;-1:-1:-1;;;;;31931:11:0;31944:13;31900:15;:58::i;:::-;31990:14;32000:4;31990:14;;:::i;:::-;;;30817:1199;32028:33;32044:4;32050:2;32054:6;32028:15;:33::i;:::-;28193:3876;;;;;;;28080:3989;;;:::o;2752:191::-;2845:6;;;-1:-1:-1;;;;;2862:17:0;;;-1:-1:-1;;;;;;2862:17:0;;;;;;;2895:40;;2845:6;;;2862:17;2845:6;;2895:40;;2826:16;;2895:40;2815:128;2752:191;:::o;10621:733::-;-1:-1:-1;;;;;10761:20:0;;10753:70;;;;-1:-1:-1;;;10753:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10842:23:0;;10834:71;;;;-1:-1:-1;;;10834:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11002:17:0;;10978:21;11002:17;;;;;;;;;;;11038:23;;;;11030:74;;;;-1:-1:-1;;;11030:74:0;;11277:2:1;11030:74:0;;;11259:21:1;11316:2;11296:18;;;11289:30;11355:34;11335:18;;;11328:62;-1:-1:-1;;;11406:18:1;;;11399:36;11452:19;;11030:74:0;11075:402:1;11030:74:0;-1:-1:-1;;;;;11140:17:0;;;:9;:17;;;;;;;;;;;11160:22;;;11140:42;;11204:20;;;;;;;;:30;;11176:6;;11140:9;11204:30;;11176:6;;11204:30;:::i;:::-;;;;;;;;11269:9;-1:-1:-1;;;;;11252:35:0;11261:6;-1:-1:-1;;;;;11252:35:0;;11280:6;11252:35;;;;1816:25:1;;1804:2;1789:18;;1670:177;11252:35:0;;;;;;;;10742:612;10621:733;;;:::o;32657:340::-;32740:4;32696:23;8213:18;;;;;;;;;;;;32761:20;;;32757:59;;32798:7;32657:340::o;32757:59::-;32850:18;;:23;;32871:2;32850:23;:::i;:::-;32832:15;:41;32828:115;;;32908:18;;:23;;32929:2;32908:23;:::i;:::-;32890:41;;32828:115;32955:34;32973:15;32955:17;:34::i;17407:98::-;17465:7;17492:5;17496:1;17492;:5;:::i;:::-;17485:12;17407:98;-1:-1:-1;;;17407:98:0:o;17806:::-;17864:7;17891:5;17895:1;17891;:5;:::i;32077:572::-;32228:16;;;32242:1;32228:16;;;;;;;;32204:21;;32228:16;;;;;;;;;;-1:-1:-1;32228:16:0;32204:40;;32273:4;32255;32260:1;32255:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;32255:23:0;;;:7;;;;;;;;;:23;32299:4;;32289:7;;32299:4;;;32289;;32299;;32289:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;32289:14:0;;;-1:-1:-1;;;;;32289:14:0;;;;;32316:62;32333:4;32348:15;32366:11;32316:8;:62::i;:::-;32591:9;;32417:224;;-1:-1:-1;;;32417:224:0;;-1:-1:-1;;;;;32417:15:0;:69;;;;;:224;;32501:11;;32527:1;;32572:4;;32591:9;;;;;32615:15;;32417:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32133:516;32077:572;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;794:254;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1245:186::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;1396:29;1415:9;1396:29;:::i;1852:180::-;1911:6;1964:2;1952:9;1943:7;1939:23;1935:32;1932:52;;;1980:1;1977;1970:12;1932:52;-1:-1:-1;2003:23:1;;1852:180;-1:-1:-1;1852:180:1:o;2037:328::-;2114:6;2122;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2222:29;2241:9;2222:29;:::i;:::-;2212:39;;2270:38;2304:2;2293:9;2289:18;2270:38;:::i;:::-;2260:48;;2355:2;2344:9;2340:18;2327:32;2317:42;;2037:328;;;;;:::o;2767:160::-;2832:20;;2888:13;;2881:21;2871:32;;2861:60;;2917:1;2914;2907:12;2932:254;2997:6;3005;3058:2;3046:9;3037:7;3033:23;3029:32;3026:52;;;3074:1;3071;3064:12;3026:52;3097:29;3116:9;3097:29;:::i;:::-;3087:39;;3145:35;3176:2;3165:9;3161:18;3145:35;:::i;:::-;3135:45;;2932:254;;;;;:::o;3191:316::-;3268:6;3276;3284;3337:2;3325:9;3316:7;3312:23;3308:32;3305:52;;;3353:1;3350;3343:12;3305:52;-1:-1:-1;;3376:23:1;;;3446:2;3431:18;;3418:32;;-1:-1:-1;3497:2:1;3482:18;;;3469:32;;3191:316;-1:-1:-1;3191:316:1:o;3512:180::-;3568:6;3621:2;3609:9;3600:7;3596:23;3592:32;3589:52;;;3637:1;3634;3627:12;3589:52;3660:26;3676:9;3660:26;:::i;3697:260::-;3765:6;3773;3826:2;3814:9;3805:7;3801:23;3797:32;3794:52;;;3842:1;3839;3832:12;3794:52;3865:29;3884:9;3865:29;:::i;:::-;3855:39;;3913:38;3947:2;3936:9;3932:18;3913:38;:::i;3962:380::-;4041:1;4037:12;;;;4084;;;4105:61;;4159:4;4151:6;4147:17;4137:27;;4105:61;4212:2;4204:6;4201:14;4181:18;4178:38;4175:161;;4258:10;4253:3;4249:20;4246:1;4239:31;4293:4;4290:1;4283:15;4321:4;4318:1;4311:15;4175:161;;3962:380;;;:::o;4347:356::-;4549:2;4531:21;;;4568:18;;;4561:30;4627:34;4622:2;4607:18;;4600:62;4694:2;4679:18;;4347:356::o;4708:127::-;4769:10;4764:3;4760:20;4757:1;4750:31;4800:4;4797:1;4790:15;4824:4;4821:1;4814:15;4840:168;4880:7;4946:1;4942;4938:6;4934:14;4931:1;4928:21;4923:1;4916:9;4909:17;4905:45;4902:71;;;4953:18;;:::i;:::-;-1:-1:-1;4993:9:1;;4840:168::o;5013:217::-;5053:1;5079;5069:132;;5123:10;5118:3;5114:20;5111:1;5104:31;5158:4;5155:1;5148:15;5186:4;5183:1;5176:15;5069:132;-1:-1:-1;5215:9:1;;5013:217::o;6060:128::-;6100:3;6131:1;6127:6;6124:1;6121:13;6118:39;;;6137:18;;:::i;:::-;-1:-1:-1;6173:9:1;;6060:128::o;9014:401::-;9216:2;9198:21;;;9255:2;9235:18;;;9228:30;9294:34;9289:2;9274:18;;9267:62;-1:-1:-1;;;9360:2:1;9345:18;;9338:35;9405:3;9390:19;;9014:401::o;9420:399::-;9622:2;9604:21;;;9661:2;9641:18;;;9634:30;9700:34;9695:2;9680:18;;9673:62;-1:-1:-1;;;9766:2:1;9751:18;;9744:33;9809:3;9794:19;;9420:399::o;10945:125::-;10985:4;11013:1;11010;11007:8;11004:34;;;11018:18;;:::i;:::-;-1:-1:-1;11055:9:1;;10945:125::o;11614:127::-;11675:10;11670:3;11666:20;11663:1;11656:31;11706:4;11703:1;11696:15;11730:4;11727:1;11720:15;11746:980;12008:4;12056:3;12045:9;12041:19;12087:6;12076:9;12069:25;12113:2;12151:6;12146:2;12135:9;12131:18;12124:34;12194:3;12189:2;12178:9;12174:18;12167:31;12218:6;12253;12247:13;12284:6;12276;12269:22;12322:3;12311:9;12307:19;12300:26;;12361:2;12353:6;12349:15;12335:29;;12382:1;12392:195;12406:6;12403:1;12400:13;12392:195;;;12471:13;;-1:-1:-1;;;;;12467:39:1;12455:52;;12562:15;;;;12527:12;;;;12503:1;12421:9;12392:195;;;-1:-1:-1;;;;;;;12643:32:1;;;;12638:2;12623:18;;12616:60;-1:-1:-1;;;12707:3:1;12692:19;12685:35;12604:3;11746:980;-1:-1:-1;;;11746:980:1:o

Swarm Source

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