ETH Price: $2,871.35 (-9.30%)
Gas: 14 Gwei

Token

UNAI (UNAI)
 

Overview

Max Total Supply

2,500,000,000 UNAI

Holders

69

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,542,687.262025173294083632 UNAI

Value
$0.00
0xb0d0be4d8707512a66c4fb4d418fbf5aff3ae5c1
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:
UNAI

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-01
*/

// SPDX-License-Identifier: MIT

/*

Medium:     https://medium.com/@ultranoirai/ultranoir-revolutionizing-the-art-world-with-an-ai-powered-bridge-from-2d-to-3d-3095ac5ec0c4

Twitter:    https://twitter.com/ultranoirAI

Telegram:   https://t.me/ultranoiraiportal

Youtube:    https://www.youtube.com/watch?v=ymEwFJl71qk

UNAI v1.0:  https://ai-gallery.ultranoir.com/

Total supply: 2,500,000,000 $UNAI
Transaction tax: 3% Marketing, 1% Liquidity
Max transaction: 1% (25M $UNAI)
Max wallet: 2% (50M $UNAI)
Burn: UNAI may implement a buyback and burn mechanism to reduce the circulating supply

*/

pragma solidity ^0.8.0;

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

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

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

interface IUniswapV2Pair {
    function sync() external;
}

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        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 Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

    bool private swapping;

    address public devWallet;

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

    uint256 public percentForLPBurn = 20; // 20 = .20%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public  buyTotalFees;
    uint256 public  buyBurnFee = 0;
    uint256 public  buyLiquidityFee = 2;
    uint256 public  buyDevFee = 2;

    uint256 public  sellTotalFees;
    uint256 public  sellBurnFee = 0;
    uint256 public  sellLiquidityFee = 2;
    uint256 public  sellDevFee = 2;

    uint256 public tokensForBurn;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    event BoughtEarly(address indexed sniper);

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

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

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

        uint256 totalSupply = 2_500_000_000 * 1e18; // 1 billion total supply

        maxTransactionAmount = 25_000_000 * 1e18; // 1% from total supply
        maxWallet = 50_000_000 * 1e18; // 1% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 3) / 10000; // 0.03% swap wallet

        buyTotalFees = buyBurnFee + buyLiquidityFee + buyDevFee;
        sellTotalFees = sellBurnFee + sellLiquidityFee + sellDevFee;

        devWallet = address(0xC4CB3Cb84d24Ff87678457e23320E7Cf1EA33A48); // set as 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 startTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

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

    function updateBuyFees(
        uint256 _burnFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyBurnFee = _burnFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyBurnFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 5, "Must keep fees at 5% or less");
    }

    function updateSellFees(
        uint256 _burnFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellBurnFee = _burnFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellBurnFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 5, "Must keep fees at  5% or less");
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    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.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } 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 &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForBurn += (fees * sellBurnFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && 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);
            }

            amount -= fees;
        }

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

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens).sub(tokensForBurn);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;
        if (tokensForBurn > 0) {
        super._transfer(address(this), address(0xdead), tokensForBurn); 
        }

        tokensForLiquidity = 0;
        tokensForBurn = 0;
        tokensForDev = 0;


        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","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":[{"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","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":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","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":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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"}]

60a06040526014600b55600c8054600160ff199182168117909255610e10600d55610708600f55601180548216831762ffff001916905560138054909116909117905560006015819055600260168190556017819055601991909155601a819055601b553480156200007057600080fd5b50604080518082018252600480825263554e414960e01b602080840182815285518087019096529285528401528151919291620000b091600391620006bd565b508051620000c6906004906020840190620006bd565b505050620000e3620000dd6200040560201b60201c565b62000409565b737a250d5630b4cf539739df2c5dacb4c659f2488d620001058160016200045b565b806001600160a01b03166080816001600160a01b031660601b81525050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200015c57600080fd5b505afa15801562000171573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000197919062000763565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e057600080fd5b505afa158015620001f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021b919062000763565b6040518363ffffffff1660e01b81526004016200023a92919062000793565b602060405180830381600087803b1580156200025557600080fd5b505af11580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000763565b600680546001600160a01b0319166001600160a01b039283161790819055620002bc911660016200045b565b600654620002d5906001600160a01b03166001620004d4565b6a14adf4b7320334b90000006008556a295be96e64066972000000600a556b0813f3978f894098440000006127106200031082600362000869565b6200031c919062000848565b6009556017546016546015546200033491906200082d565b6200034091906200082d565b601455601b54601a546019546200035891906200082d565b6200036491906200082d565b601855600780546001600160a01b03191673c4cb3cb84d24ff87678457e23320e7cf1ea33a48179055620003a36200039b62000528565b600162000537565b620003b030600162000537565b620003bf61dead600162000537565b620003d5620003cd62000528565b60016200045b565b620003e23060016200045b565b620003f161dead60016200045b565b620003fd3382620005df565b5050620008de565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200046562000405565b6001600160a01b03166200047862000528565b6001600160a01b031614620004aa5760405162461bcd60e51b8152600401620004a190620007b8565b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031690565b6200054162000405565b6001600160a01b03166200055462000528565b6001600160a01b0316146200057d5760405162461bcd60e51b8152600401620004a190620007b8565b6001600160a01b0382166000818152601f602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df790620005d3908490620007ad565b60405180910390a25050565b6001600160a01b038216620006085760405162461bcd60e51b8152600401620004a190620007ed565b6200061660008383620006b8565b80600260008282546200062a91906200082d565b90915550506001600160a01b03821660009081526020819052604081208054839290620006599084906200082d565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200069e90859062000824565b60405180910390a3620006b460008383620006b8565b5050565b505050565b828054620006cb906200088b565b90600052602060002090601f016020900481019282620006ef57600085556200073a565b82601f106200070a57805160ff19168380011785556200073a565b828001600101855582156200073a579182015b828111156200073a5782518255916020019190600101906200071d565b50620007489291506200074c565b5090565b5b808211156200074857600081556001016200074d565b60006020828403121562000775578081fd5b81516001600160a01b03811681146200078c578182fd5b9392505050565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620008435762000843620008c8565b500190565b6000826200086457634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615620008865762000886620008c8565b500290565b600281046001821680620008a057607f821691505b60208210811415620008c257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160601c6132ea6200092760003960008181610aa1015281816119f40152818161253d015281816126130152818161264f015281816126c9015261270501526132ea6000f3fe60806040526004361061039b5760003560e01c80638ea5220f116101dc578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610972578063f637434214610992578063f8b45b05146109a7578063fe72b27a146109bc576103a2565b8063e2f456051461091e578063e71dc3f514610933578063e884f26014610948578063f11a24d31461095d576103a2565b8063c8c8ebe4116100dc578063c8c8ebe4146108b4578063d257b34f146108c9578063d85ba063146108e9578063dd62ed3e146108fe576103a2565b8063c17b5b8c1461085f578063c18bc1951461087f578063c876d0b91461089f576103a2565b8063a0d82dc51161017a578063adb873bd11610149578063adb873bd146107f5578063b62496f51461080a578063bbc0c7421461082a578063c02466681461083f576103a2565b8063a0d82dc51461078b578063a457c2d7146107a0578063a4c82a00146107c0578063a9059cbb146107d5576103a2565b80639a7a23d6116101b65780639a7a23d61461072c5780639c3b4fdc1461074c5780639ec22c0e146107615780639fccce3214610776576103a2565b80638ea5220f146106e2578063924de9b7146106f757806395d89b4114610717576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146106785780637571336a1461068d5780638095d564146106ad5780638da5cb5b146106cd576103a2565b80636ddd17131461060e57806370a0823114610623578063715018a614610643578063730c188814610658576103a2565b806349bd5a5e1161029b57806349bd5a5e146105af5780634a62bb65146105c45780634fbee193146105d95780636a486a8e146105f9576103a2565b80632e82f1a014610558578063313ce5671461056d578063395093511461058f576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146104f957806327c8f83514610519578063293230b81461052e5780632c3e486c14610543576103a2565b8063199ffc721461049a5780631a8145bb146104af5780631d777856146104c4578063203e727e146104d9576103a2565b80631694505e116103755780631694505e1461041f57806318160ddd146104415780631816467f14610463578063184c16c514610485576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de53146103ff576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc6109dc565b6040516103c991906129f4565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612896565b610a6e565b6040516103c991906129e9565b34801561040b57600080fd5b506103f261041a3660046127b2565b610a8b565b34801561042b57600080fd5b50610434610a9f565b6040516103c9919061299a565b34801561044d57600080fd5b50610456610ac3565b6040516103c99190613143565b34801561046f57600080fd5b5061048361047e3660046127b2565b610ac9565b005b34801561049157600080fd5b50610456610b6e565b3480156104a657600080fd5b50610456610b74565b3480156104bb57600080fd5b50610456610b7a565b3480156104d057600080fd5b50610456610b80565b3480156104e557600080fd5b506104836104f43660046128db565b610b86565b34801561050557600080fd5b506103f2610514366004612822565b610c2f565b34801561052557600080fd5b50610434610cbf565b34801561053a57600080fd5b50610483610cc5565b34801561054f57600080fd5b50610456610d26565b34801561056457600080fd5b506103f2610d2c565b34801561057957600080fd5b50610582610d35565b6040516103c991906131d2565b34801561059b57600080fd5b506103f26105aa366004612896565b610d3a565b3480156105bb57600080fd5b50610434610d8e565b3480156105d057600080fd5b506103f2610d9d565b3480156105e557600080fd5b506103f26105f43660046127b2565b610da6565b34801561060557600080fd5b50610456610dc8565b34801561061a57600080fd5b506103f2610dce565b34801561062f57600080fd5b5061045661063e3660046127b2565b610ddd565b34801561064f57600080fd5b50610483610df8565b34801561066457600080fd5b5061048361067336600461290b565b610e43565b34801561068457600080fd5b506103f2610eec565b34801561069957600080fd5b506104836106a8366004612862565b610f3d565b3480156106b957600080fd5b506104836106c836600461293f565b610fa6565b3480156106d957600080fd5b50610434611033565b3480156106ee57600080fd5b50610434611042565b34801561070357600080fd5b506104836107123660046128c1565b611051565b34801561072357600080fd5b506103bc6110ac565b34801561073857600080fd5b50610483610747366004612862565b6110bb565b34801561075857600080fd5b50610456611136565b34801561076d57600080fd5b5061045661113c565b34801561078257600080fd5b50610456611142565b34801561079757600080fd5b50610456611148565b3480156107ac57600080fd5b506103f26107bb366004612896565b61114e565b3480156107cc57600080fd5b506104566111c7565b3480156107e157600080fd5b506103f26107f0366004612896565b6111cd565b34801561080157600080fd5b506104566111e1565b34801561081657600080fd5b506103f26108253660046127b2565b6111e7565b34801561083657600080fd5b506103f26111fc565b34801561084b57600080fd5b5061048361085a366004612862565b61120a565b34801561086b57600080fd5b5061048361087a36600461293f565b6112a9565b34801561088b57600080fd5b5061048361089a3660046128db565b611331565b3480156108ab57600080fd5b506103f26113da565b3480156108c057600080fd5b506104566113e3565b3480156108d557600080fd5b506103f26108e43660046128db565b6113e9565b3480156108f557600080fd5b506104566114b2565b34801561090a57600080fd5b506104566109193660046127ea565b6114b8565b34801561092a57600080fd5b506104566114e3565b34801561093f57600080fd5b506104566114e9565b34801561095457600080fd5b506103f26114ef565b34801561096957600080fd5b50610456611540565b34801561097e57600080fd5b5061048361098d3660046127b2565b611546565b34801561099e57600080fd5b506104566115b7565b3480156109b357600080fd5b506104566115bd565b3480156109c857600080fd5b506103f26109d73660046128db565b6115c3565b6060600380546109eb9061324e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a179061324e565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050905090565b6000610a82610a7b6117ac565b84846117b0565b50600192915050565b602080526000908152604090205460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025490565b610ad16117ac565b6001600160a01b0316610ae2611033565b6001600160a01b031614610b115760405162461bcd60e51b8152600401610b0890612ed7565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600f5481565b600b5481565b601d5481565b601c5481565b610b8e6117ac565b6001600160a01b0316610b9f611033565b6001600160a01b031614610bc55760405162461bcd60e51b8152600401610b0890612ed7565b670de0b6b3a76400006103e8610bd9610ac3565b610be4906001613218565b610bee91906131f8565b610bf891906131f8565b811015610c175760405162461bcd60e51b8152600401610b08906130f4565b610c2981670de0b6b3a7640000613218565b60085550565b6000610c3c848484611864565b6001600160a01b038416600090815260016020526040812081610c5d6117ac565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905082811015610ca05760405162461bcd60e51b8152600401610b0890612e8f565b610cb485610cac6117ac565b8584036117b0565b506001949350505050565b61dead81565b610ccd6117ac565b6001600160a01b0316610cde611033565b6001600160a01b031614610d045760405162461bcd60e51b8152600401610b0890612ed7565b6011805462ff00001961ff001990911661010017166201000017905542600e55565b600d5481565b600c5460ff1681565b601290565b6000610a82610d476117ac565b848460016000610d556117ac565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610d8991906131e0565b6117b0565b6006546001600160a01b031681565b60115460ff1681565b6001600160a01b0381166000908152601f602052604090205460ff165b919050565b60185481565b60115462010000900460ff1681565b6001600160a01b031660009081526020819052604090205490565b610e006117ac565b6001600160a01b0316610e11611033565b6001600160a01b031614610e375760405162461bcd60e51b8152600401610b0890612ed7565b610e416000611f9f565b565b610e4b6117ac565b6001600160a01b0316610e5c611033565b6001600160a01b031614610e825760405162461bcd60e51b8152600401610b0890612ed7565b610258831015610ea45760405162461bcd60e51b8152600401610b0890612b42565b6103e88211158015610eb4575060015b610ed05760405162461bcd60e51b8152600401610b0890612cd2565b600d92909255600b55600c805460ff1916911515919091179055565b6000610ef66117ac565b6001600160a01b0316610f07611033565b6001600160a01b031614610f2d5760405162461bcd60e51b8152600401610b0890612ed7565b506011805460ff19169055600190565b610f456117ac565b6001600160a01b0316610f56611033565b6001600160a01b031614610f7c5760405162461bcd60e51b8152600401610b0890612ed7565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b610fae6117ac565b6001600160a01b0316610fbf611033565b6001600160a01b031614610fe55760405162461bcd60e51b8152600401610b0890612ed7565b60158390556016829055601781905580610fff83856131e0565b61100991906131e0565b60148190556005101561102e5760405162461bcd60e51b8152600401610b0890612f0c565b505050565b6005546001600160a01b031690565b6007546001600160a01b031681565b6110596117ac565b6001600160a01b031661106a611033565b6001600160a01b0316146110905760405162461bcd60e51b8152600401610b0890612ed7565b60118054911515620100000262ff000019909216919091179055565b6060600480546109eb9061324e565b6110c36117ac565b6001600160a01b03166110d4611033565b6001600160a01b0316146110fa5760405162461bcd60e51b8152600401610b0890612ed7565b6006546001600160a01b03838116911614156111285760405162461bcd60e51b8152600401610b0890612bd9565b6111328282611ff1565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806001600061115d6117ac565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156111a95760405162461bcd60e51b8152600401610b08906130af565b6111bd6111b46117ac565b858584036117b0565b5060019392505050565b600e5481565b6000610a826111da6117ac565b8484611864565b60195481565b60216020526000908152604090205460ff1681565b601154610100900460ff1681565b6112126117ac565b6001600160a01b0316611223611033565b6001600160a01b0316146112495760405162461bcd60e51b8152600401610b0890612ed7565b6001600160a01b0382166000818152601f602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79061129d9084906129e9565b60405180910390a25050565b6112b16117ac565b6001600160a01b03166112c2611033565b6001600160a01b0316146112e85760405162461bcd60e51b8152600401610b0890612ed7565b6019839055601a829055601b8190558061130283856131e0565b61130c91906131e0565b60188190556005101561102e5760405162461bcd60e51b8152600401610b0890612f43565b6113396117ac565b6001600160a01b031661134a611033565b6001600160a01b0316146113705760405162461bcd60e51b8152600401610b0890612ed7565b670de0b6b3a76400006103e8611384610ac3565b61138f906005613218565b61139991906131f8565b6113a391906131f8565b8110156113c25760405162461bcd60e51b8152600401610b0890612b95565b6113d481670de0b6b3a7640000613218565b600a5550565b60135460ff1681565b60085481565b60006113f36117ac565b6001600160a01b0316611404611033565b6001600160a01b03161461142a5760405162461bcd60e51b8152600401610b0890612ed7565b620186a0611436610ac3565b611441906001613218565b61144b91906131f8565b82101561146a5760405162461bcd60e51b8152600401610b0890612d22565b6103e8611475610ac3565b611480906005613218565b61148a91906131f8565b8211156114a95760405162461bcd60e51b8152600401610b0890612d77565b50600955600190565b60145481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60095481565b60155481565b60006114f96117ac565b6001600160a01b031661150a611033565b6001600160a01b0316146115305760405162461bcd60e51b8152600401610b0890612ed7565b506013805460ff19169055600190565b60165481565b61154e6117ac565b6001600160a01b031661155f611033565b6001600160a01b0316146115855760405162461bcd60e51b8152600401610b0890612ed7565b6001600160a01b0381166115ab5760405162461bcd60e51b8152600401610b0890612aba565b6115b481611f9f565b50565b601a5481565b600a5481565b60006115cd6117ac565b6001600160a01b03166115de611033565b6001600160a01b0316146116045760405162461bcd60e51b8152600401610b0890612ed7565b600f5460105461161491906131e0565b42116116325760405162461bcd60e51b8152600401610b0890613009565b6103e88211156116545760405162461bcd60e51b8152600401610b0890612f7a565b426010556006546040516370a0823160e01b815260009130916370a082319161168b916001600160a01b039091169060040161299a565b60206040518083038186803b1580156116a357600080fd5b505afa1580156116b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116db91906128f3565b905060006116f56127106116ef8487612045565b90612058565b9050801561171657600654611716906001600160a01b031661dead83612064565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561176057600080fd5b505af1158015611774573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b3390565b6001600160a01b0383166117d65760405162461bcd60e51b8152600401610b089061303e565b6001600160a01b0382166117fc5760405162461bcd60e51b8152600401610b0890612b00565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611857908590613143565b60405180910390a3505050565b6001600160a01b03831661188a5760405162461bcd60e51b8152600401610b0890612fc4565b6001600160a01b0382166118b05760405162461bcd60e51b8152600401610b0890612a47565b806118c6576118c183836000612064565b61102e565b60115460ff1615611be3576118d9611033565b6001600160a01b0316836001600160a01b03161415801561191357506118fd611033565b6001600160a01b0316826001600160a01b031614155b801561192757506001600160a01b03821615155b801561193e57506001600160a01b03821661dead14155b80156119545750600654600160a01b900460ff16155b15611be357601154610100900460ff166119c3576001600160a01b0383166000908152601f602052604090205460ff16806119a757506001600160a01b0382166000908152601f602052604090205460ff165b6119c35760405162461bcd60e51b8152600401610b0890612a8a565b60135460ff1615611a89576119d6611033565b6001600160a01b0316826001600160a01b031614158015611a2957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611a4357506006546001600160a01b03838116911614155b15611a8957326000908152601260205260409020544311611a765760405162461bcd60e51b8152600401610b0890612e20565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611ac957506001600160a01b038216600090815260208052604090205460ff16155b15611b2957600854811115611af05760405162461bcd60e51b8152600401610b0890612dcb565b600a54611afc83610ddd565b611b0690836131e0565b1115611b245760405162461bcd60e51b8152600401610b0890613082565b611be3565b6001600160a01b03821660009081526021602052604090205460ff168015611b6957506001600160a01b038316600090815260208052604090205460ff16155b15611b9057600854811115611b245760405162461bcd60e51b8152600401610b0890612c7c565b6001600160a01b038216600090815260208052604090205460ff16611be357600a54611bbb83610ddd565b611bc590836131e0565b1115611be35760405162461bcd60e51b8152600401610b0890613082565b6000611bee30610ddd565b60095490915081108015908190611c0d575060115462010000900460ff165b8015611c235750600654600160a01b900460ff16155b8015611c4857506001600160a01b03851660009081526021602052604090205460ff16155b8015611c6d57506001600160a01b0385166000908152601f602052604090205460ff16155b8015611c9257506001600160a01b0384166000908152601f602052604090205460ff16155b15611cc0576006805460ff60a01b1916600160a01b179055611cb261218e565b6006805460ff60a01b191690555b600654600160a01b900460ff16158015611cf257506001600160a01b03841660009081526021602052604090205460ff165b8015611d005750600c5460ff165b8015611d1b5750600d54600e54611d1791906131e0565b4210155b8015611d4057506001600160a01b0385166000908152601f602052604090205460ff16155b15611d4f57611d4d612370565b505b6006546001600160a01b0386166000908152601f602052604090205460ff600160a01b909204821615911680611d9d57506001600160a01b0385166000908152601f602052604090205460ff165b15611da6575060005b60008115611f8b576001600160a01b03861660009081526021602052604090205460ff168015611dd857506000601854115b15611e9057611df760646116ef6018548861204590919063ffffffff16565b9050601854601a5482611e0a9190613218565b611e1491906131f8565b601d6000828254611e2591906131e0565b9091555050601854601b54611e3a9083613218565b611e4491906131f8565b601e6000828254611e5591906131e0565b9091555050601854601954611e6a9083613218565b611e7491906131f8565b601c6000828254611e8591906131e0565b90915550611f6d9050565b6001600160a01b03871660009081526021602052604090205460ff168015611eba57506000601454115b15611f6d57611ed960646116ef6014548861204590919063ffffffff16565b905060145460165482611eec9190613218565b611ef691906131f8565b601d6000828254611f0791906131e0565b9091555050601454601754611f1c9083613218565b611f2691906131f8565b601e6000828254611f3791906131e0565b9091555050601454601554611f4c9083613218565b611f5691906131f8565b601c6000828254611f6791906131e0565b90915550505b8015611f7e57611f7e873083612064565b611f888186613237565b94505b611f96878787612064565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006120518284613218565b9392505050565b600061205182846131f8565b6001600160a01b03831661208a5760405162461bcd60e51b8152600401610b0890612fc4565b6001600160a01b0382166120b05760405162461bcd60e51b8152600401610b0890612a47565b6120bb83838361102e565b6001600160a01b038316600090815260208190526040902054818110156120f45760405162461bcd60e51b8152600401610b0890612c36565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061212b9084906131e0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121759190613143565b60405180910390a361218884848461102e565b50505050565b600061219930610ddd565b90506000601e54601d546121ad91906131e0565b905060008215806121bc575081155b156121c957505050610e41565b6009546121d7906014613218565b8311156121ef576009546121ec906014613218565b92505b6000600283601d54866122029190613218565b61220c91906131f8565b61221691906131f8565b90506000612239601c5461223384886124cc90919063ffffffff16565b906124cc565b905047612245826124d8565b600061225147836124cc565b9050600061226e876116ef601e548561204590919063ffffffff16565b9050600061227c8284613237565b601c5490915015612296576122963061dead601c54612064565b6000601d819055601c819055601e556007546040516001600160a01b039091169083906122c290612997565b60006040518083038185875af1925050503d80600081146122ff576040519150601f19603f3d011682016040523d82523d6000602084013e612304565b606091505b509097505085158015906123185750600081115b156123655761232786826126c3565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601d5460405161235c939291906131bc565b60405180910390a15b505050505050505050565b42600e556006546040516370a0823160e01b8152600091829130916370a08231916123a7916001600160a01b03169060040161299a565b60206040518083038186803b1580156123bf57600080fd5b505afa1580156123d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f791906128f3565b905060006124166127106116ef600b548561204590919063ffffffff16565b9050801561243757600654612437906001600160a01b031661dead83612064565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561248157600080fd5b505af1158015612495573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006120518284613237565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061251b57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561259457600080fd5b505afa1580156125a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cc91906127ce565b816001815181106125ed57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050612638307f0000000000000000000000000000000000000000000000000000000000000000846117b0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061268d90859060009086903090429060040161314c565b600060405180830381600087803b1580156126a757600080fd5b505af11580156126bb573d6000803e3d6000fd5b505050505050565b6126ee307f0000000000000000000000000000000000000000000000000000000000000000846117b0565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f305d7199083906127499030908790600090819061dead9042906004016129ae565b6060604051808303818588803b15801561276257600080fd5b505af1158015612776573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061279b919061296a565b5050505050565b80358015158114610dc357600080fd5b6000602082840312156127c3578081fd5b81356120518161329f565b6000602082840312156127df578081fd5b81516120518161329f565b600080604083850312156127fc578081fd5b82356128078161329f565b915060208301356128178161329f565b809150509250929050565b600080600060608486031215612836578081fd5b83356128418161329f565b925060208401356128518161329f565b929592945050506040919091013590565b60008060408385031215612874578182fd5b823561287f8161329f565b915061288d602084016127a2565b90509250929050565b600080604083850312156128a8578182fd5b82356128b38161329f565b946020939093013593505050565b6000602082840312156128d2578081fd5b612051826127a2565b6000602082840312156128ec578081fd5b5035919050565b600060208284031215612904578081fd5b5051919050565b60008060006060848603121561291f578283fd5b8335925060208401359150612936604085016127a2565b90509250925092565b600080600060608486031215612953578283fd5b505081359360208301359350604090920135919050565b60008060006060848603121561297e578283fd5b8351925060208401519150604084015190509250925092565b90565b6001600160a01b0391909116815260200190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b81811015612a2057858101830151858201604001528201612a04565b81811115612a315783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526033908201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604082015272616e206576657279203130206d696e7574657360681b606082015260800190565b60208082526024908201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604082015263302e352560e01b606082015260800190565b60208082526039908201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060408201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526036908201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656040820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606082015260800190565b60208082526030908201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560408201526f747765656e20302520616e642031302560801b606082015260800190565b60208082526035908201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60408201527410181718181892903a37ba30b61039bab838363c9760591b606082015260800190565b60208082526034908201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604082015273371018171a92903a37ba30b61039bab838363c9760611b606082015260800190565b60208082526035908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606082015260800190565b60208082526049908201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60408201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6060820152681030b63637bbb2b21760b91b608082015260a00190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f4d757374206b6565702066656573206174203525206f72206c65737300000000604082015260600190565b6020808252601d908201527f4d757374206b656570206665657320617420203525206f72206c657373000000604082015260600190565b6020808252602a908201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60408201526906b656e7320696e204c560b41b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252818101527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526e6c6f776572207468616e20302e312560881b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561319b5784516001600160a01b031683529383019391830191600101613176565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156131f3576131f3613289565b500190565b60008261321357634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561323257613232613289565b500290565b60008282101561324957613249613289565b500390565b60028104600182168061326257607f821691505b6020821081141561328357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146115b457600080fdfea26469706673582212203d4da679d3d7d1cd9f9bacdf65430bd072c22c60607a6ef5e32151dd07f645fe64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638ea5220f116101dc578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610972578063f637434214610992578063f8b45b05146109a7578063fe72b27a146109bc576103a2565b8063e2f456051461091e578063e71dc3f514610933578063e884f26014610948578063f11a24d31461095d576103a2565b8063c8c8ebe4116100dc578063c8c8ebe4146108b4578063d257b34f146108c9578063d85ba063146108e9578063dd62ed3e146108fe576103a2565b8063c17b5b8c1461085f578063c18bc1951461087f578063c876d0b91461089f576103a2565b8063a0d82dc51161017a578063adb873bd11610149578063adb873bd146107f5578063b62496f51461080a578063bbc0c7421461082a578063c02466681461083f576103a2565b8063a0d82dc51461078b578063a457c2d7146107a0578063a4c82a00146107c0578063a9059cbb146107d5576103a2565b80639a7a23d6116101b65780639a7a23d61461072c5780639c3b4fdc1461074c5780639ec22c0e146107615780639fccce3214610776576103a2565b80638ea5220f146106e2578063924de9b7146106f757806395d89b4114610717576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146106785780637571336a1461068d5780638095d564146106ad5780638da5cb5b146106cd576103a2565b80636ddd17131461060e57806370a0823114610623578063715018a614610643578063730c188814610658576103a2565b806349bd5a5e1161029b57806349bd5a5e146105af5780634a62bb65146105c45780634fbee193146105d95780636a486a8e146105f9576103a2565b80632e82f1a014610558578063313ce5671461056d578063395093511461058f576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146104f957806327c8f83514610519578063293230b81461052e5780632c3e486c14610543576103a2565b8063199ffc721461049a5780631a8145bb146104af5780631d777856146104c4578063203e727e146104d9576103a2565b80631694505e116103755780631694505e1461041f57806318160ddd146104415780631816467f14610463578063184c16c514610485576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de53146103ff576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc6109dc565b6040516103c991906129f4565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612896565b610a6e565b6040516103c991906129e9565b34801561040b57600080fd5b506103f261041a3660046127b2565b610a8b565b34801561042b57600080fd5b50610434610a9f565b6040516103c9919061299a565b34801561044d57600080fd5b50610456610ac3565b6040516103c99190613143565b34801561046f57600080fd5b5061048361047e3660046127b2565b610ac9565b005b34801561049157600080fd5b50610456610b6e565b3480156104a657600080fd5b50610456610b74565b3480156104bb57600080fd5b50610456610b7a565b3480156104d057600080fd5b50610456610b80565b3480156104e557600080fd5b506104836104f43660046128db565b610b86565b34801561050557600080fd5b506103f2610514366004612822565b610c2f565b34801561052557600080fd5b50610434610cbf565b34801561053a57600080fd5b50610483610cc5565b34801561054f57600080fd5b50610456610d26565b34801561056457600080fd5b506103f2610d2c565b34801561057957600080fd5b50610582610d35565b6040516103c991906131d2565b34801561059b57600080fd5b506103f26105aa366004612896565b610d3a565b3480156105bb57600080fd5b50610434610d8e565b3480156105d057600080fd5b506103f2610d9d565b3480156105e557600080fd5b506103f26105f43660046127b2565b610da6565b34801561060557600080fd5b50610456610dc8565b34801561061a57600080fd5b506103f2610dce565b34801561062f57600080fd5b5061045661063e3660046127b2565b610ddd565b34801561064f57600080fd5b50610483610df8565b34801561066457600080fd5b5061048361067336600461290b565b610e43565b34801561068457600080fd5b506103f2610eec565b34801561069957600080fd5b506104836106a8366004612862565b610f3d565b3480156106b957600080fd5b506104836106c836600461293f565b610fa6565b3480156106d957600080fd5b50610434611033565b3480156106ee57600080fd5b50610434611042565b34801561070357600080fd5b506104836107123660046128c1565b611051565b34801561072357600080fd5b506103bc6110ac565b34801561073857600080fd5b50610483610747366004612862565b6110bb565b34801561075857600080fd5b50610456611136565b34801561076d57600080fd5b5061045661113c565b34801561078257600080fd5b50610456611142565b34801561079757600080fd5b50610456611148565b3480156107ac57600080fd5b506103f26107bb366004612896565b61114e565b3480156107cc57600080fd5b506104566111c7565b3480156107e157600080fd5b506103f26107f0366004612896565b6111cd565b34801561080157600080fd5b506104566111e1565b34801561081657600080fd5b506103f26108253660046127b2565b6111e7565b34801561083657600080fd5b506103f26111fc565b34801561084b57600080fd5b5061048361085a366004612862565b61120a565b34801561086b57600080fd5b5061048361087a36600461293f565b6112a9565b34801561088b57600080fd5b5061048361089a3660046128db565b611331565b3480156108ab57600080fd5b506103f26113da565b3480156108c057600080fd5b506104566113e3565b3480156108d557600080fd5b506103f26108e43660046128db565b6113e9565b3480156108f557600080fd5b506104566114b2565b34801561090a57600080fd5b506104566109193660046127ea565b6114b8565b34801561092a57600080fd5b506104566114e3565b34801561093f57600080fd5b506104566114e9565b34801561095457600080fd5b506103f26114ef565b34801561096957600080fd5b50610456611540565b34801561097e57600080fd5b5061048361098d3660046127b2565b611546565b34801561099e57600080fd5b506104566115b7565b3480156109b357600080fd5b506104566115bd565b3480156109c857600080fd5b506103f26109d73660046128db565b6115c3565b6060600380546109eb9061324e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a179061324e565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050905090565b6000610a82610a7b6117ac565b84846117b0565b50600192915050565b602080526000908152604090205460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60025490565b610ad16117ac565b6001600160a01b0316610ae2611033565b6001600160a01b031614610b115760405162461bcd60e51b8152600401610b0890612ed7565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600f5481565b600b5481565b601d5481565b601c5481565b610b8e6117ac565b6001600160a01b0316610b9f611033565b6001600160a01b031614610bc55760405162461bcd60e51b8152600401610b0890612ed7565b670de0b6b3a76400006103e8610bd9610ac3565b610be4906001613218565b610bee91906131f8565b610bf891906131f8565b811015610c175760405162461bcd60e51b8152600401610b08906130f4565b610c2981670de0b6b3a7640000613218565b60085550565b6000610c3c848484611864565b6001600160a01b038416600090815260016020526040812081610c5d6117ac565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905082811015610ca05760405162461bcd60e51b8152600401610b0890612e8f565b610cb485610cac6117ac565b8584036117b0565b506001949350505050565b61dead81565b610ccd6117ac565b6001600160a01b0316610cde611033565b6001600160a01b031614610d045760405162461bcd60e51b8152600401610b0890612ed7565b6011805462ff00001961ff001990911661010017166201000017905542600e55565b600d5481565b600c5460ff1681565b601290565b6000610a82610d476117ac565b848460016000610d556117ac565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610d8991906131e0565b6117b0565b6006546001600160a01b031681565b60115460ff1681565b6001600160a01b0381166000908152601f602052604090205460ff165b919050565b60185481565b60115462010000900460ff1681565b6001600160a01b031660009081526020819052604090205490565b610e006117ac565b6001600160a01b0316610e11611033565b6001600160a01b031614610e375760405162461bcd60e51b8152600401610b0890612ed7565b610e416000611f9f565b565b610e4b6117ac565b6001600160a01b0316610e5c611033565b6001600160a01b031614610e825760405162461bcd60e51b8152600401610b0890612ed7565b610258831015610ea45760405162461bcd60e51b8152600401610b0890612b42565b6103e88211158015610eb4575060015b610ed05760405162461bcd60e51b8152600401610b0890612cd2565b600d92909255600b55600c805460ff1916911515919091179055565b6000610ef66117ac565b6001600160a01b0316610f07611033565b6001600160a01b031614610f2d5760405162461bcd60e51b8152600401610b0890612ed7565b506011805460ff19169055600190565b610f456117ac565b6001600160a01b0316610f56611033565b6001600160a01b031614610f7c5760405162461bcd60e51b8152600401610b0890612ed7565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b610fae6117ac565b6001600160a01b0316610fbf611033565b6001600160a01b031614610fe55760405162461bcd60e51b8152600401610b0890612ed7565b60158390556016829055601781905580610fff83856131e0565b61100991906131e0565b60148190556005101561102e5760405162461bcd60e51b8152600401610b0890612f0c565b505050565b6005546001600160a01b031690565b6007546001600160a01b031681565b6110596117ac565b6001600160a01b031661106a611033565b6001600160a01b0316146110905760405162461bcd60e51b8152600401610b0890612ed7565b60118054911515620100000262ff000019909216919091179055565b6060600480546109eb9061324e565b6110c36117ac565b6001600160a01b03166110d4611033565b6001600160a01b0316146110fa5760405162461bcd60e51b8152600401610b0890612ed7565b6006546001600160a01b03838116911614156111285760405162461bcd60e51b8152600401610b0890612bd9565b6111328282611ff1565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806001600061115d6117ac565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156111a95760405162461bcd60e51b8152600401610b08906130af565b6111bd6111b46117ac565b858584036117b0565b5060019392505050565b600e5481565b6000610a826111da6117ac565b8484611864565b60195481565b60216020526000908152604090205460ff1681565b601154610100900460ff1681565b6112126117ac565b6001600160a01b0316611223611033565b6001600160a01b0316146112495760405162461bcd60e51b8152600401610b0890612ed7565b6001600160a01b0382166000818152601f602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79061129d9084906129e9565b60405180910390a25050565b6112b16117ac565b6001600160a01b03166112c2611033565b6001600160a01b0316146112e85760405162461bcd60e51b8152600401610b0890612ed7565b6019839055601a829055601b8190558061130283856131e0565b61130c91906131e0565b60188190556005101561102e5760405162461bcd60e51b8152600401610b0890612f43565b6113396117ac565b6001600160a01b031661134a611033565b6001600160a01b0316146113705760405162461bcd60e51b8152600401610b0890612ed7565b670de0b6b3a76400006103e8611384610ac3565b61138f906005613218565b61139991906131f8565b6113a391906131f8565b8110156113c25760405162461bcd60e51b8152600401610b0890612b95565b6113d481670de0b6b3a7640000613218565b600a5550565b60135460ff1681565b60085481565b60006113f36117ac565b6001600160a01b0316611404611033565b6001600160a01b03161461142a5760405162461bcd60e51b8152600401610b0890612ed7565b620186a0611436610ac3565b611441906001613218565b61144b91906131f8565b82101561146a5760405162461bcd60e51b8152600401610b0890612d22565b6103e8611475610ac3565b611480906005613218565b61148a91906131f8565b8211156114a95760405162461bcd60e51b8152600401610b0890612d77565b50600955600190565b60145481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60095481565b60155481565b60006114f96117ac565b6001600160a01b031661150a611033565b6001600160a01b0316146115305760405162461bcd60e51b8152600401610b0890612ed7565b506013805460ff19169055600190565b60165481565b61154e6117ac565b6001600160a01b031661155f611033565b6001600160a01b0316146115855760405162461bcd60e51b8152600401610b0890612ed7565b6001600160a01b0381166115ab5760405162461bcd60e51b8152600401610b0890612aba565b6115b481611f9f565b50565b601a5481565b600a5481565b60006115cd6117ac565b6001600160a01b03166115de611033565b6001600160a01b0316146116045760405162461bcd60e51b8152600401610b0890612ed7565b600f5460105461161491906131e0565b42116116325760405162461bcd60e51b8152600401610b0890613009565b6103e88211156116545760405162461bcd60e51b8152600401610b0890612f7a565b426010556006546040516370a0823160e01b815260009130916370a082319161168b916001600160a01b039091169060040161299a565b60206040518083038186803b1580156116a357600080fd5b505afa1580156116b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116db91906128f3565b905060006116f56127106116ef8487612045565b90612058565b9050801561171657600654611716906001600160a01b031661dead83612064565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561176057600080fd5b505af1158015611774573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b3390565b6001600160a01b0383166117d65760405162461bcd60e51b8152600401610b089061303e565b6001600160a01b0382166117fc5760405162461bcd60e51b8152600401610b0890612b00565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611857908590613143565b60405180910390a3505050565b6001600160a01b03831661188a5760405162461bcd60e51b8152600401610b0890612fc4565b6001600160a01b0382166118b05760405162461bcd60e51b8152600401610b0890612a47565b806118c6576118c183836000612064565b61102e565b60115460ff1615611be3576118d9611033565b6001600160a01b0316836001600160a01b03161415801561191357506118fd611033565b6001600160a01b0316826001600160a01b031614155b801561192757506001600160a01b03821615155b801561193e57506001600160a01b03821661dead14155b80156119545750600654600160a01b900460ff16155b15611be357601154610100900460ff166119c3576001600160a01b0383166000908152601f602052604090205460ff16806119a757506001600160a01b0382166000908152601f602052604090205460ff165b6119c35760405162461bcd60e51b8152600401610b0890612a8a565b60135460ff1615611a89576119d6611033565b6001600160a01b0316826001600160a01b031614158015611a2957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611a4357506006546001600160a01b03838116911614155b15611a8957326000908152601260205260409020544311611a765760405162461bcd60e51b8152600401610b0890612e20565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611ac957506001600160a01b038216600090815260208052604090205460ff16155b15611b2957600854811115611af05760405162461bcd60e51b8152600401610b0890612dcb565b600a54611afc83610ddd565b611b0690836131e0565b1115611b245760405162461bcd60e51b8152600401610b0890613082565b611be3565b6001600160a01b03821660009081526021602052604090205460ff168015611b6957506001600160a01b038316600090815260208052604090205460ff16155b15611b9057600854811115611b245760405162461bcd60e51b8152600401610b0890612c7c565b6001600160a01b038216600090815260208052604090205460ff16611be357600a54611bbb83610ddd565b611bc590836131e0565b1115611be35760405162461bcd60e51b8152600401610b0890613082565b6000611bee30610ddd565b60095490915081108015908190611c0d575060115462010000900460ff165b8015611c235750600654600160a01b900460ff16155b8015611c4857506001600160a01b03851660009081526021602052604090205460ff16155b8015611c6d57506001600160a01b0385166000908152601f602052604090205460ff16155b8015611c9257506001600160a01b0384166000908152601f602052604090205460ff16155b15611cc0576006805460ff60a01b1916600160a01b179055611cb261218e565b6006805460ff60a01b191690555b600654600160a01b900460ff16158015611cf257506001600160a01b03841660009081526021602052604090205460ff165b8015611d005750600c5460ff165b8015611d1b5750600d54600e54611d1791906131e0565b4210155b8015611d4057506001600160a01b0385166000908152601f602052604090205460ff16155b15611d4f57611d4d612370565b505b6006546001600160a01b0386166000908152601f602052604090205460ff600160a01b909204821615911680611d9d57506001600160a01b0385166000908152601f602052604090205460ff165b15611da6575060005b60008115611f8b576001600160a01b03861660009081526021602052604090205460ff168015611dd857506000601854115b15611e9057611df760646116ef6018548861204590919063ffffffff16565b9050601854601a5482611e0a9190613218565b611e1491906131f8565b601d6000828254611e2591906131e0565b9091555050601854601b54611e3a9083613218565b611e4491906131f8565b601e6000828254611e5591906131e0565b9091555050601854601954611e6a9083613218565b611e7491906131f8565b601c6000828254611e8591906131e0565b90915550611f6d9050565b6001600160a01b03871660009081526021602052604090205460ff168015611eba57506000601454115b15611f6d57611ed960646116ef6014548861204590919063ffffffff16565b905060145460165482611eec9190613218565b611ef691906131f8565b601d6000828254611f0791906131e0565b9091555050601454601754611f1c9083613218565b611f2691906131f8565b601e6000828254611f3791906131e0565b9091555050601454601554611f4c9083613218565b611f5691906131f8565b601c6000828254611f6791906131e0565b90915550505b8015611f7e57611f7e873083612064565b611f888186613237565b94505b611f96878787612064565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006120518284613218565b9392505050565b600061205182846131f8565b6001600160a01b03831661208a5760405162461bcd60e51b8152600401610b0890612fc4565b6001600160a01b0382166120b05760405162461bcd60e51b8152600401610b0890612a47565b6120bb83838361102e565b6001600160a01b038316600090815260208190526040902054818110156120f45760405162461bcd60e51b8152600401610b0890612c36565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061212b9084906131e0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121759190613143565b60405180910390a361218884848461102e565b50505050565b600061219930610ddd565b90506000601e54601d546121ad91906131e0565b905060008215806121bc575081155b156121c957505050610e41565b6009546121d7906014613218565b8311156121ef576009546121ec906014613218565b92505b6000600283601d54866122029190613218565b61220c91906131f8565b61221691906131f8565b90506000612239601c5461223384886124cc90919063ffffffff16565b906124cc565b905047612245826124d8565b600061225147836124cc565b9050600061226e876116ef601e548561204590919063ffffffff16565b9050600061227c8284613237565b601c5490915015612296576122963061dead601c54612064565b6000601d819055601c819055601e556007546040516001600160a01b039091169083906122c290612997565b60006040518083038185875af1925050503d80600081146122ff576040519150601f19603f3d011682016040523d82523d6000602084013e612304565b606091505b509097505085158015906123185750600081115b156123655761232786826126c3565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601d5460405161235c939291906131bc565b60405180910390a15b505050505050505050565b42600e556006546040516370a0823160e01b8152600091829130916370a08231916123a7916001600160a01b03169060040161299a565b60206040518083038186803b1580156123bf57600080fd5b505afa1580156123d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f791906128f3565b905060006124166127106116ef600b548561204590919063ffffffff16565b9050801561243757600654612437906001600160a01b031661dead83612064565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561248157600080fd5b505af1158015612495573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006120518284613237565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061251b57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561259457600080fd5b505afa1580156125a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cc91906127ce565b816001815181106125ed57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050612638307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117b0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061268d90859060009086903090429060040161314c565b600060405180830381600087803b1580156126a757600080fd5b505af11580156126bb573d6000803e3d6000fd5b505050505050565b6126ee307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117b0565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063f305d7199083906127499030908790600090819061dead9042906004016129ae565b6060604051808303818588803b15801561276257600080fd5b505af1158015612776573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061279b919061296a565b5050505050565b80358015158114610dc357600080fd5b6000602082840312156127c3578081fd5b81356120518161329f565b6000602082840312156127df578081fd5b81516120518161329f565b600080604083850312156127fc578081fd5b82356128078161329f565b915060208301356128178161329f565b809150509250929050565b600080600060608486031215612836578081fd5b83356128418161329f565b925060208401356128518161329f565b929592945050506040919091013590565b60008060408385031215612874578182fd5b823561287f8161329f565b915061288d602084016127a2565b90509250929050565b600080604083850312156128a8578182fd5b82356128b38161329f565b946020939093013593505050565b6000602082840312156128d2578081fd5b612051826127a2565b6000602082840312156128ec578081fd5b5035919050565b600060208284031215612904578081fd5b5051919050565b60008060006060848603121561291f578283fd5b8335925060208401359150612936604085016127a2565b90509250925092565b600080600060608486031215612953578283fd5b505081359360208301359350604090920135919050565b60008060006060848603121561297e578283fd5b8351925060208401519150604084015190509250925092565b90565b6001600160a01b0391909116815260200190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b81811015612a2057858101830151858201604001528201612a04565b81811115612a315783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526033908201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604082015272616e206576657279203130206d696e7574657360681b606082015260800190565b60208082526024908201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604082015263302e352560e01b606082015260800190565b60208082526039908201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060408201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526036908201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656040820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606082015260800190565b60208082526030908201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560408201526f747765656e20302520616e642031302560801b606082015260800190565b60208082526035908201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60408201527410181718181892903a37ba30b61039bab838363c9760591b606082015260800190565b60208082526034908201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604082015273371018171a92903a37ba30b61039bab838363c9760611b606082015260800190565b60208082526035908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606082015260800190565b60208082526049908201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60408201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6060820152681030b63637bbb2b21760b91b608082015260a00190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f4d757374206b6565702066656573206174203525206f72206c65737300000000604082015260600190565b6020808252601d908201527f4d757374206b656570206665657320617420203525206f72206c657373000000604082015260600190565b6020808252602a908201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60408201526906b656e7320696e204c560b41b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252818101527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526e6c6f776572207468616e20302e312560881b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561319b5784516001600160a01b031683529383019391830191600101613176565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156131f3576131f3613289565b500190565b60008261321357634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561323257613232613289565b500290565b60008282101561324957613249613289565b500390565b60028104600182168061326257607f821691505b6020821081141561328357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146115b457600080fdfea26469706673582212203d4da679d3d7d1cd9f9bacdf65430bd072c22c60607a6ef5e32151dd07f645fe64736f6c63430008000033

Deployed Bytecode Sourcemap

27617:18242:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10213:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12521:210;;;;;;;;;;-1:-1:-1;12521:210:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29212:63::-;;;;;;;;;;-1:-1:-1;29212:63:0;;;;;:::i;:::-;;:::i;27691:51::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11333:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35406:157::-;;;;;;;;;;-1:-1:-1;35406:157:0;;;;;:::i;:::-;;:::i;:::-;;28209:47;;;;;;;;;;;;;:::i;28024:36::-;;;;;;;;;;;;;:::i;28996:33::-;;;;;;;;;;;;;:::i;28961:28::-;;;;;;;;;;;;;:::i;33002:275::-;;;;;;;;;;-1:-1:-1;33002:275:0;;;;;:::i;:::-;;:::i;13213:529::-;;;;;;;;;;-1:-1:-1;13213:529:0;;;;;:::i;:::-;;:::i;27784:53::-;;;;;;;;;;;;;:::i;31904:154::-;;;;;;;;;;;;;:::i;28119:45::-;;;;;;;;;;;;;:::i;28080:32::-;;;;;;;;;;;;;:::i;11175:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;14151:297::-;;;;;;;;;;-1:-1:-1;14151:297:0;;;;;:::i;:::-;;:::i;27749:28::-;;;;;;;;;;;;;:::i;28307:33::-;;;;;;;;;;;;;:::i;35571:126::-;;;;;;;;;;-1:-1:-1;35571:126:0;;;;;:::i;:::-;;:::i;28805:29::-;;;;;;;;;;;;;:::i;28387:31::-;;;;;;;;;;;;;:::i;11504:177::-;;;;;;;;;;-1:-1:-1;11504:177:0;;;;;:::i;:::-;;:::i;4009:103::-;;;;;;;;;;;;;:::i;43441:555::-;;;;;;;;;;-1:-1:-1;43441:555:0;;;;;:::i;:::-;;:::i;32110:121::-;;;;;;;;;;;;;:::i;33549:167::-;;;;;;;;;;-1:-1:-1;33549:167:0;;;;;:::i;:::-;;:::i;33920:381::-;;;;;;;;;;-1:-1:-1;33920:381:0;;;;;:::i;:::-;;:::i;3358:87::-;;;;;;;;;;;;;:::i;27876:24::-;;;;;;;;;;;;;:::i;33812:100::-;;;;;;;;;;-1:-1:-1;33812:100:0;;;;;:::i;:::-;;:::i;10432:104::-;;;;;;;;;;;;;:::i;34898:304::-;;;;;;;;;;-1:-1:-1;34898:304:0;;;;;:::i;:::-;;:::i;28767:29::-;;;;;;;;;;;;;:::i;28263:35::-;;;;;;;;;;;;;:::i;29036:27::-;;;;;;;;;;;;;:::i;28922:30::-;;;;;;;;;;;;;:::i;14951:482::-;;;;;;;;;;-1:-1:-1;14951:482:0;;;;;:::i;:::-;;:::i;28171:29::-;;;;;;;;;;;;;:::i;11894:216::-;;;;;;;;;;-1:-1:-1;11894:216:0;;;;;:::i;:::-;;:::i;28841:31::-;;;;;;;;;;;;;:::i;29433:57::-;;;;;;;;;;-1:-1:-1;29433:57:0;;;;;:::i;:::-;;:::i;28347:33::-;;;;;;;;;;;;;:::i;34708:182::-;;;;;;;;;;-1:-1:-1;34708:182:0;;;;;:::i;:::-;;:::i;34309:391::-;;;;;;;;;;-1:-1:-1;34309:391:0;;;;;:::i;:::-;;:::i;33285:256::-;;;;;;;;;;-1:-1:-1;33285:256:0;;;;;:::i;:::-;;:::i;28605:39::-;;;;;;;;;;;;;:::i;27909:35::-;;;;;;;;;;;;;:::i;32497:497::-;;;;;;;;;;-1:-1:-1;32497:497:0;;;;;:::i;:::-;;:::i;28653:28::-;;;;;;;;;;;;;:::i;12173:201::-;;;;;;;;;;-1:-1:-1;12173:201:0;;;;;:::i;:::-;;:::i;27951:33::-;;;;;;;;;;;;;:::i;28688:30::-;;;;;;;;;;;;;:::i;32292:135::-;;;;;;;;;;;;;:::i;28725:35::-;;;;;;;;;;;;;:::i;4267:238::-;;;;;;;;;;-1:-1:-1;4267:238:0;;;;;:::i;:::-;;:::i;28879:36::-;;;;;;;;;;;;;:::i;27991:24::-;;;;;;;;;;;;;:::i;44800:1056::-;;;;;;;;;;-1:-1:-1;44800:1056:0;;;;;:::i;:::-;;:::i;10213:100::-;10267:13;10300:5;10293:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10213:100;:::o;12521:210::-;12640:4;12662:39;12671:12;:10;:12::i;:::-;12685:7;12694:6;12662:8;:39::i;:::-;-1:-1:-1;12719:4:0;12521:210;;;;:::o;29212:63::-;;;;;;;;;;;;;;;:::o;27691:51::-;;;:::o;11333:108::-;11421:12;;11333:108;:::o;35406:157::-;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;;;;;;;;;35513:9:::1;::::0;35485:38:::1;::::0;-1:-1:-1;;;;;35513:9:0;;::::1;::::0;35485:38;::::1;::::0;::::1;::::0;35513:9:::1;::::0;35485:38:::1;35534:9;:21:::0;;-1:-1:-1;;;;;;35534:21:0::1;-1:-1:-1::0;;;;;35534:21:0;;;::::1;::::0;;;::::1;::::0;;35406:157::o;28209:47::-;;;;:::o;28024:36::-;;;;:::o;28996:33::-;;;;:::o;28961:28::-;;;;:::o;33002:275::-;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;33139:4:::1;33131;33110:13;:11;:13::i;:::-;:17;::::0;33126:1:::1;33110:17;:::i;:::-;33109:26;;;;:::i;:::-;33108:35;;;;:::i;:::-;33098:6;:45;;33076:142;;;;-1:-1:-1::0;;;33076:142:0::1;;;;;;;:::i;:::-;33252:17;:6:::0;33262::::1;33252:17;:::i;:::-;33229:20;:40:::0;-1:-1:-1;33002:275:0:o;13213:529::-;13353:4;13370:36;13380:6;13388:9;13399:6;13370:9;:36::i;:::-;-1:-1:-1;;;;;13446:19:0;;13419:24;13446:19;;;:11;:19;;;;;13419:24;13466:12;:10;:12::i;:::-;-1:-1:-1;;;;;13446:33:0;-1:-1:-1;;;;;13446:33:0;;;;;;;;;;;;;13419:60;;13532:6;13512:16;:26;;13490:116;;;;-1:-1:-1;;;13490:116:0;;;;;;;:::i;:::-;13642:57;13651:6;13659:12;:10;:12::i;:::-;13692:6;13673:16;:25;13642:8;:57::i;:::-;-1:-1:-1;13730:4:0;;13213:529;-1:-1:-1;;;;13213:529:0:o;27784:53::-;27830:6;27784:53;:::o;31904:154::-;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;31958:13:::1;:20:::0;;-1:-1:-1;;;;31958:20:0;;::::1;;;31989:18;::::0;::::1;::::0;;32035:15:::1;32018:14;:32:::0;31904:154::o;28119:45::-;;;;:::o;28080:32::-;;;;;;:::o;11175:93::-;11258:2;11175:93;:::o;14151:297::-;14266:4;14288:130;14311:12;:10;:12::i;:::-;14338:7;14397:10;14360:11;:25;14372:12;:10;:12::i;:::-;-1:-1:-1;;;;;14360:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14360:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;14288:8;:130::i;27749:28::-;;;-1:-1:-1;;;;;27749:28:0;;:::o;28307:33::-;;;;;;:::o;35571:126::-;-1:-1:-1;;;;;35661:28:0;;35637:4;35661:28;;;:19;:28;;;;;;;;35571:126;;;;:::o;28805:29::-;;;;:::o;28387:31::-;;;;;;;;;:::o;11504:177::-;-1:-1:-1;;;;;11655:18:0;11623:7;11655:18;;;;;;;;;;;;11504:177::o;4009:103::-;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;4074:30:::1;4101:1;4074:18;:30::i;:::-;4009:103::o:0;43441:555::-;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;43643:3:::1;43620:19;:26;;43598:127;;;;-1:-1:-1::0;;;43598:127:0::1;;;;;;;:::i;:::-;43770:4;43758:8;:16;;:33;;;;-1:-1:-1::0;43778:13:0;43758:33:::1;43736:131;;;;-1:-1:-1::0;;;43736:131:0::1;;;;;;;:::i;:::-;43878:15;:37:::0;;;;43926:16:::1;:27:::0;43964:13:::1;:24:::0;;-1:-1:-1;;43964:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43441:555::o;32110:121::-;32162:4;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;-1:-1:-1;32179:14:0::1;:22:::0;;-1:-1:-1;;32179:22:0::1;::::0;;;32110:121;:::o;33549:167::-;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33662:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;33662:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33549:167::o;33920:381::-;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;34065:10:::1;:21:::0;;;34097:15:::1;:31:::0;;;34139:9:::1;:19:::0;;;34151:7;34184:28:::1;34115:13:::0;34078:8;34184:28:::1;:::i;:::-;:40;;;;:::i;:::-;34169:12;:55:::0;;;34259:1:::1;-1:-1:-1::0;34243:17:0::1;34235:58;;;;-1:-1:-1::0;;;34235:58:0::1;;;;;;;:::i;:::-;33920:381:::0;;;:::o;3358:87::-;3431:6;;-1:-1:-1;;;;;3431:6:0;3358:87;:::o;27876:24::-;;;-1:-1:-1;;;;;27876:24:0;;:::o;33812:100::-;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;33883:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;33883:21:0;;::::1;::::0;;;::::1;::::0;;33812:100::o;10432:104::-;10488:13;10521:7;10514:14;;;;;:::i;34898:304::-;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;35042:13:::1;::::0;-1:-1:-1;;;;;35034:21:0;;::::1;35042:13:::0;::::1;35034:21;;35012:128;;;;-1:-1:-1::0;;;35012:128:0::1;;;;;;;:::i;:::-;35153:41;35182:4;35188:5;35153:28;:41::i;:::-;34898:304:::0;;:::o;28767:29::-;;;;:::o;28263:35::-;;;;:::o;29036:27::-;;;;:::o;28922:30::-;;;;:::o;14951:482::-;15071:4;15093:24;15120:11;:25;15132:12;:10;:12::i;:::-;-1:-1:-1;;;;;15120:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15120:25:0;;;:34;;;;;;;;;;;-1:-1:-1;15187:35:0;;;;15165:122;;;;-1:-1:-1;;;15165:122:0;;;;;;;:::i;:::-;15323:67;15332:12;:10;:12::i;:::-;15346:7;15374:15;15355:16;:34;15323:8;:67::i;:::-;-1:-1:-1;15421:4:0;;14951:482;-1:-1:-1;;;14951:482:0:o;28171:29::-;;;;:::o;11894:216::-;12016:4;12038:42;12048:12;:10;:12::i;:::-;12062:9;12073:6;12038:9;:42::i;28841:31::-;;;;:::o;29433:57::-;;;;;;;;;;;;;;;:::o;28347:33::-;;;;;;;;;:::o;34708:182::-;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34793:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;:39;;-1:-1:-1;;34793:39:0::1;::::0;::::1;;;::::0;;34848:34;::::1;::::0;::::1;::::0;34793:39;;34848:34:::1;:::i;:::-;;;;;;;;34708:182:::0;;:::o;34309:391::-;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;34455:11:::1;:22:::0;;;34488:16:::1;:32:::0;;;34531:10:::1;:20:::0;;;34544:7;34578:30:::1;34507:13:::0;34469:8;34578:30:::1;:::i;:::-;:43;;;;:::i;:::-;34562:13;:59:::0;;;34657:1:::1;-1:-1:-1::0;34640:18:0::1;34632:60;;;;-1:-1:-1::0;;;34632:60:0::1;;;;;;;:::i;33285:256::-:0;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;33425:4:::1;33417;33396:13;:11;:13::i;:::-;:17;::::0;33412:1:::1;33396:17;:::i;:::-;33395:26;;;;:::i;:::-;33394:35;;;;:::i;:::-;33384:6;:45;;33362:131;;;;-1:-1:-1::0;;;33362:131:0::1;;;;;;;:::i;:::-;33516:17;:6:::0;33526::::1;33516:17;:::i;:::-;33504:9;:29:::0;-1:-1:-1;33285:256:0:o;28605:39::-;;;;;;:::o;27909:35::-;;;;:::o;32497:497::-;32605:4;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;32684:6:::1;32663:13;:11;:13::i;:::-;:17;::::0;32679:1:::1;32663:17;:::i;:::-;32662:28;;;;:::i;:::-;32649:9;:41;;32627:144;;;;-1:-1:-1::0;;;32627:144:0::1;;;;;;;:::i;:::-;32839:4;32818:13;:11;:13::i;:::-;:17;::::0;32834:1:::1;32818:17;:::i;:::-;32817:26;;;;:::i;:::-;32804:9;:39;;32782:141;;;;-1:-1:-1::0;;;32782:141:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;32934:18:0::1;:30:::0;32982:4:::1;::::0;32497:497::o;28653:28::-;;;;:::o;12173:201::-;-1:-1:-1;;;;;12339:18:0;;;12307:7;12339:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12173:201::o;27951:33::-;;;;:::o;28688:30::-;;;;:::o;32292:135::-;32352:4;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;-1:-1:-1;32369:20:0::1;:28:::0;;-1:-1:-1;;32369:28:0::1;::::0;;;32292:135;:::o;28725:35::-;;;;:::o;4267:238::-;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4370:22:0;::::1;4348:110;;;;-1:-1:-1::0;;;4348:110:0::1;;;;;;;:::i;:::-;4469:28;4488:8;4469:18;:28::i;:::-;4267:238:::0;:::o;28879:36::-;;;;:::o;27991:24::-;;;;:::o;44800:1056::-;44911:4;3589:12;:10;:12::i;:::-;-1:-1:-1;;;;;3578:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3578:23:0;;3570:68;;;;-1:-1:-1;;;3570:68:0;;;;;;;:::i;:::-;44996:19:::1;;44973:20;;:42;;;;:::i;:::-;44955:15;:60;44933:142;;;;-1:-1:-1::0;;;44933:142:0::1;;;;;;;:::i;:::-;45105:4;45094:7;:15;;45086:70;;;;-1:-1:-1::0;;;45086:70:0::1;;;;;;;:::i;:::-;45190:15;45167:20;:38:::0;45306:13:::1;::::0;45291:29:::1;::::0;-1:-1:-1;;;45291:29:0;;45260:28:::1;::::0;45291:4:::1;::::0;:14:::1;::::0;:29:::1;::::0;-1:-1:-1;;;;;45306:13:0;;::::1;::::0;45291:29:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45260:60:::0;-1:-1:-1;45370:20:0::1;45393:44;45431:5;45393:33;45260:60:::0;45418:7;45393:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;45370:67:::0;-1:-1:-1;45542:16:0;;45538:110:::1;;45591:13;::::0;45575:61:::1;::::0;-1:-1:-1;;;;;45591:13:0::1;45614:6;45623:12:::0;45575:15:::1;:61::i;:::-;45760:13;::::0;45785:11:::1;::::0;;-1:-1:-1;;;;;;45785:11:0;;;;-1:-1:-1;;;;;45760:13:0;;::::1;::::0;;;45785:9:::1;::::0;:11:::1;::::0;;::::1;::::0;45723:19:::1;::::0;45785:11;;;;;;;45723:19;45760:13;45785:11;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;45812:14:0::1;::::0;::::1;::::0;-1:-1:-1;45812:14:0;;-1:-1:-1;45812:14:0::1;-1:-1:-1::0;45844:4:0::1;::::0;44800:1056;-1:-1:-1;;;;44800:1056:0:o;2200:98::-;2280:10;2200:98;:::o;18741:380::-;-1:-1:-1;;;;;18877:19:0;;18869:68;;;;-1:-1:-1;;;18869:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18956:21:0;;18948:68;;;;-1:-1:-1;;;18948:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19029:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;19081:32;;;;;19059:6;;19081:32;:::i;:::-;;;;;;;;18741:380;;;:::o;35705:4991::-;-1:-1:-1;;;;;35837:18:0;;35829:68;;;;-1:-1:-1;;;35829:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35916:16:0;;35908:64;;;;-1:-1:-1;;;35908:64:0;;;;;;;:::i;:::-;35989:11;35985:93;;36017:28;36033:4;36039:2;36043:1;36017:15;:28::i;:::-;36060:7;;35985:93;36094:14;;;;36090:2487;;;36155:7;:5;:7::i;:::-;-1:-1:-1;;;;;36147:15:0;:4;-1:-1:-1;;;;;36147:15:0;;;:49;;;;;36189:7;:5;:7::i;:::-;-1:-1:-1;;;;;36183:13:0;:2;-1:-1:-1;;;;;36183:13:0;;;36147:49;:86;;;;-1:-1:-1;;;;;;36217:16:0;;;;36147:86;:128;;;;-1:-1:-1;;;;;;36254:21:0;;36268:6;36254:21;;36147:128;:158;;;;-1:-1:-1;36297:8:0;;-1:-1:-1;;;36297:8:0;;;;36296:9;36147:158;36125:2441;;;36345:13;;;;;;;36340:223;;-1:-1:-1;;;;;36417:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;36446:23:0;;;;;;:19;:23;;;;;;;;36417:52;36383:160;;;;-1:-1:-1;;;36383:160:0;;;;;;;:::i;:::-;36719:20;;;;36715:641;;;36800:7;:5;:7::i;:::-;-1:-1:-1;;;;;36794:13:0;:2;-1:-1:-1;;;;;36794:13:0;;;:72;;;;;36850:15;-1:-1:-1;;;;;36836:30:0;:2;-1:-1:-1;;;;;36836:30:0;;;36794:72;:129;;;;-1:-1:-1;36909:13:0;;-1:-1:-1;;;;;36895:28:0;;;36909:13;;36895:28;;36794:129;36764:573;;;37041:9;37012:39;;;;:28;:39;;;;;;37087:12;-1:-1:-1;36974:258:0;;;;-1:-1:-1;;;36974:258:0;;;;;;;:::i;:::-;37288:9;37259:39;;;;:28;:39;;;;;37301:12;37259:54;;36764:573;-1:-1:-1;;;;;37430:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;37487:35:0;;;;;;:31;:35;;;;;;;;37486:36;37430:92;37404:1147;;;37609:20;;37599:6;:30;;37565:169;;;;-1:-1:-1;;;37565:169:0;;;;;;;:::i;:::-;37817:9;;37800:13;37810:2;37800:9;:13::i;:::-;37791:22;;:6;:22;:::i;:::-;:35;;37757:140;;;;-1:-1:-1;;;37757:140:0;;;;;;;:::i;:::-;37404:1147;;;-1:-1:-1;;;;;37995:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;38050:37:0;;;;;;:31;:37;;;;;;;;38049:38;37995:92;37969:582;;;38174:20;;38164:6;:30;;38130:170;;;;-1:-1:-1;;;38130:170:0;;;;;;;:::i;37969:582::-;-1:-1:-1;;;;;38331:35:0;;;;;;:31;:35;;;;;;;;38326:225;;38451:9;;38434:13;38444:2;38434:9;:13::i;:::-;38425:22;;:6;:22;:::i;:::-;:35;;38391:140;;;;-1:-1:-1;;;38391:140:0;;;;;;;:::i;:::-;38589:28;38620:24;38638:4;38620:9;:24::i;:::-;38696:18;;38589:55;;-1:-1:-1;38672:42:0;;;;;;;38745:35;;-1:-1:-1;38769:11:0;;;;;;;38745:35;:61;;;;-1:-1:-1;38798:8:0;;-1:-1:-1;;;38798:8:0;;;;38797:9;38745:61;:110;;;;-1:-1:-1;;;;;;38824:31:0;;;;;;:25;:31;;;;;;;;38823:32;38745:110;:153;;;;-1:-1:-1;;;;;;38873:25:0;;;;;;:19;:25;;;;;;;;38872:26;38745:153;:194;;;;-1:-1:-1;;;;;;38916:23:0;;;;;;:19;:23;;;;;;;;38915:24;38745:194;38727:326;;;38966:8;:15;;-1:-1:-1;;;;38966:15:0;-1:-1:-1;;;38966:15:0;;;38998:10;:8;:10::i;:::-;39025:8;:16;;-1:-1:-1;;;;39025:16:0;;;38727:326;39084:8;;-1:-1:-1;;;39084:8:0;;;;39083:9;:55;;;;-1:-1:-1;;;;;;39109:29:0;;;;;;:25;:29;;;;;;;;39083:55;:85;;;;-1:-1:-1;39155:13:0;;;;39083:85;:153;;;;;39221:15;;39204:14;;:32;;;;:::i;:::-;39185:15;:51;;39083:153;:196;;;;-1:-1:-1;;;;;;39254:25:0;;;;;;:19;:25;;;;;;;;39253:26;39083:196;39065:282;;;39306:29;:27;:29::i;:::-;;39065:282;39375:8;;-1:-1:-1;;;;;39485:25:0;;39359:12;39485:25;;;:19;:25;;;;;;39375:8;-1:-1:-1;;;39375:8:0;;;;;39374:9;;39485:25;;:52;;-1:-1:-1;;;;;;39514:23:0;;;;;;:19;:23;;;;;;;;39485:52;39481:100;;;-1:-1:-1;39564:5:0;39481:100;39593:12;39698:7;39694:949;;;-1:-1:-1;;;;;39750:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;39799:1;39783:13;;:17;39750:50;39746:748;;;39828:34;39858:3;39828:25;39839:13;;39828:6;:10;;:25;;;;:::i;:34::-;39821:41;;39931:13;;39911:16;;39904:4;:23;;;;:::i;:::-;39903:41;;;;:::i;:::-;39881:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;40001:13:0;;39987:10;;39980:17;;:4;:17;:::i;:::-;39979:35;;;;:::i;:::-;39963:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;40073:13:0;;40058:11;;40051:18;;:4;:18;:::i;:::-;40050:36;;;;:::i;:::-;40033:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;39746:748:0;;-1:-1:-1;39746:748:0;;-1:-1:-1;;;;;40148:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;40198:1;40183:12;;:16;40148:51;40144:350;;;40227:33;40256:3;40227:24;40238:12;;40227:6;:10;;:24;;;;:::i;:33::-;40220:40;;40328:12;;40309:15;;40302:4;:22;;;;:::i;:::-;40301:39;;;;:::i;:::-;40279:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;40396:12:0;;40383:9;;40376:16;;:4;:16;:::i;:::-;40375:33;;;;:::i;:::-;40359:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;40466:12:0;;40452:10;;40445:17;;:4;:17;:::i;:::-;40444:34;;;;:::i;:::-;40427:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;40144:350:0;40514:8;;40510:91;;40543:42;40559:4;40573;40580;40543:15;:42::i;:::-;40617:14;40627:4;40617:14;;:::i;:::-;;;39694:949;40655:33;40671:4;40677:2;40681:6;40655:15;:33::i;:::-;35705:4991;;;;;;;:::o;4665:191::-;4758:6;;;-1:-1:-1;;;;;4775:17:0;;;-1:-1:-1;;;;;;4775:17:0;;;;;;;4808:40;;4758:6;;;4775:17;4758:6;;4808:40;;4739:16;;4808:40;4665:191;;:::o;35210:188::-;-1:-1:-1;;;;;35293:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35293:39:0;;;;;;;;;;35350:40;;35293:39;;:31;35350:40;;;35210:188;;:::o;24190:98::-;24248:7;24275:5;24279:1;24275;:5;:::i;:::-;24268:12;24190:98;-1:-1:-1;;;24190:98:0:o;24589:::-;24647:7;24674:5;24678:1;24674;:5;:::i;15923:770::-;-1:-1:-1;;;;;16063:20:0;;16055:70;;;;-1:-1:-1;;;16055:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16144:23:0;;16136:71;;;;-1:-1:-1;;;16136:71:0;;;;;;;:::i;:::-;16220:47;16241:6;16249:9;16260:6;16220:20;:47::i;:::-;-1:-1:-1;;;;;16304:17:0;;16280:21;16304:17;;;;;;;;;;;16354:23;;;;16332:111;;;;-1:-1:-1;;;16332:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16479:17:0;;;:9;:17;;;;;;;;;;;16499:22;;;16479:42;;16543:20;;;;;;;;:30;;16515:6;;16479:9;16543:30;;16515:6;;16543:30;:::i;:::-;;;;;;;;16608:9;-1:-1:-1;;;;;16591:35:0;16600:6;-1:-1:-1;;;;;16591:35:0;;16619:6;16591:35;;;;;;:::i;:::-;;;;;;;;16639:46;16659:6;16667:9;16678:6;16639:19;:46::i;:::-;15923:770;;;;:::o;41826:1607::-;41865:23;41891:24;41909:4;41891:9;:24::i;:::-;41865:50;;41926:25;41988:12;;41954:18;;:46;;;;:::i;:::-;41926:74;-1:-1:-1;42011:12:0;42040:20;;;:46;;-1:-1:-1;42064:22:0;;42040:46;42036:85;;;42103:7;;;;;42036:85;42155:18;;:23;;42176:2;42155:23;:::i;:::-;42137:15;:41;42133:115;;;42213:18;;:23;;42234:2;42213:23;:::i;:::-;42195:41;;42133:115;42309:23;42422:1;42389:17;42354:18;;42336:15;:36;;;;:::i;:::-;42335:71;;;;:::i;:::-;:88;;;;:::i;:::-;42309:114;;42434:26;42463:55;42504:13;;42463:36;42483:15;42463;:19;;:36;;;;:::i;:::-;:40;;:55::i;:::-;42434:84;-1:-1:-1;42559:21:0;42593:36;42434:84;42593:16;:36::i;:::-;42642:18;42663:44;:21;42689:17;42663:25;:44::i;:::-;42642:65;;42720:17;42740:51;42773:17;42740:28;42755:12;;42740:10;:14;;:28;;;;:::i;:51::-;42720:71;-1:-1:-1;42804:23:0;42830:22;42720:71;42830:10;:22;:::i;:::-;42867:13;;42804:48;;-1:-1:-1;42867:17:0;42863:109;;42897:62;42921:4;42936:6;42945:13;;42897:15;:62::i;:::-;43005:1;42984:18;:22;;;43017:13;:17;;;43045:12;:16;43098:9;;43090:45;;-1:-1:-1;;;;;43098:9:0;;;;43121;;43090:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43076:59:0;;-1:-1:-1;;43152:19:0;;;;;:42;;;43193:1;43175:15;:19;43152:42;43148:278;;;43211:46;43224:15;43241;43211:12;:46::i;:::-;43277:137;43310:18;43347:15;43381:18;;43277:137;;;;;;;;:::i;:::-;;;;;;;;43148:278;41826:1607;;;;;;;;;:::o;44004:788::-;44095:15;44078:14;:32;44211:13;;44196:29;;-1:-1:-1;;;44196:29:0;;44061:4;;;;44196;;:14;;:29;;-1:-1:-1;;;;;44211:13:0;;44196:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44165:60;;44275:20;44298:77;44359:5;44298:42;44323:16;;44298:20;:24;;:42;;;;:::i;:77::-;44275:100;-1:-1:-1;44480:16:0;;44476:110;;44529:13;;44513:61;;-1:-1:-1;;;;;44529:13:0;44552:6;44561:12;44513:15;:61::i;:::-;44698:13;;44723:11;;;-1:-1:-1;;;;;;44723:11:0;;;;-1:-1:-1;;;;;44698:13:0;;;;;;44723:9;;:11;;;;;44661:19;;44723:11;;;;;;;44661:19;44698:13;44723:11;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44750:12:0;;;;-1:-1:-1;44750:12:0;;-1:-1:-1;44750:12:0;44780:4;44773:11;;;;;44004:788;:::o;23833:98::-;23891:7;23918:5;23922:1;23918;:5;:::i;40704:589::-;40854:16;;;40868:1;40854:16;;;;;;;;40830:21;;40854:16;;;;;;;;;;-1:-1:-1;40854:16:0;40830:40;;40899:4;40881;40886:1;40881:7;;;;;;-1:-1:-1;;;40881:7:0;;;;;;;;;;;;;;:23;-1:-1:-1;;;;;40881:23:0;;;-1:-1:-1;;;;;40881:23:0;;;;;40925:15;-1:-1:-1;;;;;40925:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40915:4;40920:1;40915:7;;;;;;-1:-1:-1;;;40915:7:0;;;;;;;;;;;;;;:32;-1:-1:-1;;;;;40915:32:0;;;-1:-1:-1;;;;;40915:32:0;;;;;40960:62;40977:4;40992:15;41010:11;40960:8;:62::i;:::-;41061:224;;-1:-1:-1;;;41061:224:0;;-1:-1:-1;;;;;41061:15:0;:66;;;;:224;;41142:11;;41168:1;;41212:4;;41239;;41259:15;;41061:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40704:589;;:::o;41301:517::-;41449:62;41466:4;41481:15;41499:11;41449:8;:62::i;:::-;41554:256;;-1:-1:-1;;;41554:256:0;;-1:-1:-1;;;;;41554:15:0;:31;;;;41593:9;;41554:256;;41626:4;;41646:11;;41672:1;;;;27830:6;;41784:15;;41554:256;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41301:517;;:::o;14:162:1:-;81:20;;137:13;;130:21;120:32;;110:2;;166:1;163;156:12;181:259;;293:2;281:9;272:7;268:23;264:32;261:2;;;314:6;306;299:22;261:2;358:9;345:23;377:33;404:5;377:33;:::i;445:263::-;;568:2;556:9;547:7;543:23;539:32;536:2;;;589:6;581;574:22;536:2;626:9;620:16;645:33;672:5;645:33;:::i;713:402::-;;;842:2;830:9;821:7;817:23;813:32;810:2;;;863:6;855;848:22;810:2;907:9;894:23;926:33;953:5;926:33;:::i;:::-;978:5;-1:-1:-1;1035:2:1;1020:18;;1007:32;1048:35;1007:32;1048:35;:::i;:::-;1102:7;1092:17;;;800:315;;;;;:::o;1120:470::-;;;;1266:2;1254:9;1245:7;1241:23;1237:32;1234:2;;;1287:6;1279;1272:22;1234:2;1331:9;1318:23;1350:33;1377:5;1350:33;:::i;:::-;1402:5;-1:-1:-1;1459:2:1;1444:18;;1431:32;1472:35;1431:32;1472:35;:::i;:::-;1224:366;;1526:7;;-1:-1:-1;;;1580:2:1;1565:18;;;;1552:32;;1224:366::o;1595:329::-;;;1721:2;1709:9;1700:7;1696:23;1692:32;1689:2;;;1742:6;1734;1727:22;1689:2;1786:9;1773:23;1805:33;1832:5;1805:33;:::i;:::-;1857:5;-1:-1:-1;1881:37:1;1914:2;1899:18;;1881:37;:::i;:::-;1871:47;;1679:245;;;;;:::o;1929:327::-;;;2058:2;2046:9;2037:7;2033:23;2029:32;2026:2;;;2079:6;2071;2064:22;2026:2;2123:9;2110:23;2142:33;2169:5;2142:33;:::i;:::-;2194:5;2246:2;2231:18;;;;2218:32;;-1:-1:-1;;;2016:240:1:o;2261:192::-;;2370:2;2358:9;2349:7;2345:23;2341:32;2338:2;;;2391:6;2383;2376:22;2338:2;2419:28;2437:9;2419:28;:::i;2458:190::-;;2570:2;2558:9;2549:7;2545:23;2541:32;2538:2;;;2591:6;2583;2576:22;2538:2;-1:-1:-1;2619:23:1;;2528:120;-1:-1:-1;2528:120:1:o;2653:194::-;;2776:2;2764:9;2755:7;2751:23;2747:32;2744:2;;;2797:6;2789;2782:22;2744:2;-1:-1:-1;2825:16:1;;2734:113;-1:-1:-1;2734:113:1:o;2852:328::-;;;;2995:2;2983:9;2974:7;2970:23;2966:32;2963:2;;;3016:6;3008;3001:22;2963:2;3057:9;3044:23;3034:33;;3114:2;3103:9;3099:18;3086:32;3076:42;;3137:37;3170:2;3159:9;3155:18;3137:37;:::i;:::-;3127:47;;2953:227;;;;;:::o;3185:326::-;;;;3331:2;3319:9;3310:7;3306:23;3302:32;3299:2;;;3352:6;3344;3337:22;3299:2;-1:-1:-1;;3380:23:1;;;3450:2;3435:18;;3422:32;;-1:-1:-1;3501:2:1;3486:18;;;3473:32;;3289:222;-1:-1:-1;3289:222:1:o;3516:316::-;;;;3673:2;3661:9;3652:7;3648:23;3644:32;3641:2;;;3694:6;3686;3679:22;3641:2;3728:9;3722:16;3712:26;;3778:2;3767:9;3763:18;3757:25;3747:35;;3822:2;3811:9;3807:18;3801:25;3791:35;;3631:201;;;;;:::o;3837:205::-;4037:3;4028:14::o;4047:203::-;-1:-1:-1;;;;;4211:32:1;;;;4193:51;;4181:2;4166:18;;4148:102::o;4255:607::-;-1:-1:-1;;;;;4614:15:1;;;4596:34;;4661:2;4646:18;;4639:34;;;;4704:2;4689:18;;4682:34;;;;4747:2;4732:18;;4725:34;;;;4796:15;;;4790:3;4775:19;;4768:44;4576:3;4828:19;;4821:35;;;;4545:3;4530:19;;4512:350::o;4867:187::-;5032:14;;5025:22;5007:41;;4995:2;4980:18;;4962:92::o;5292:603::-;;5433:2;5462;5451:9;5444:21;5494:6;5488:13;5537:6;5532:2;5521:9;5517:18;5510:34;5562:4;5575:140;5589:6;5586:1;5583:13;5575:140;;;5684:14;;;5680:23;;5674:30;5650:17;;;5669:2;5646:26;5639:66;5604:10;;5575:140;;;5733:6;5730:1;5727:13;5724:2;;;5803:4;5798:2;5789:6;5778:9;5774:22;5770:31;5763:45;5724:2;-1:-1:-1;5879:2:1;5858:15;-1:-1:-1;;5854:29:1;5839:45;;;;5886:2;5835:54;;5413:482;-1:-1:-1;;;5413:482:1:o;5900:399::-;6102:2;6084:21;;;6141:2;6121:18;;;6114:30;6180:34;6175:2;6160:18;;6153:62;-1:-1:-1;;;6246:2:1;6231:18;;6224:33;6289:3;6274:19;;6074:225::o;6304:346::-;6506:2;6488:21;;;6545:2;6525:18;;;6518:30;-1:-1:-1;;;6579:2:1;6564:18;;6557:52;6641:2;6626:18;;6478:172::o;6655:402::-;6857:2;6839:21;;;6896:2;6876:18;;;6869:30;6935:34;6930:2;6915:18;;6908:62;-1:-1:-1;;;7001:2:1;6986:18;;6979:36;7047:3;7032:19;;6829:228::o;7062:398::-;7264:2;7246:21;;;7303:2;7283:18;;;7276:30;7342:34;7337:2;7322:18;;7315:62;-1:-1:-1;;;7408:2:1;7393:18;;7386:32;7450:3;7435:19;;7236:224::o;7465:415::-;7667:2;7649:21;;;7706:2;7686:18;;;7679:30;7745:34;7740:2;7725:18;;7718:62;-1:-1:-1;;;7811:2:1;7796:18;;7789:49;7870:3;7855:19;;7639:241::o;7885:400::-;8087:2;8069:21;;;8126:2;8106:18;;;8099:30;8165:34;8160:2;8145:18;;8138:62;-1:-1:-1;;;8231:2:1;8216:18;;8209:34;8275:3;8260:19;;8059:226::o;8290:421::-;8492:2;8474:21;;;8531:2;8511:18;;;8504:30;8570:34;8565:2;8550:18;;8543:62;8641:27;8636:2;8621:18;;8614:55;8701:3;8686:19;;8464:247::o;8716:402::-;8918:2;8900:21;;;8957:2;8937:18;;;8930:30;8996:34;8991:2;8976:18;;8969:62;-1:-1:-1;;;9062:2:1;9047:18;;9040:36;9108:3;9093:19;;8890:228::o;9123:418::-;9325:2;9307:21;;;9364:2;9344:18;;;9337:30;9403:34;9398:2;9383:18;;9376:62;-1:-1:-1;;;9469:2:1;9454:18;;9447:52;9531:3;9516:19;;9297:244::o;9546:412::-;9748:2;9730:21;;;9787:2;9767:18;;;9760:30;9826:34;9821:2;9806:18;;9799:62;-1:-1:-1;;;9892:2:1;9877:18;;9870:46;9948:3;9933:19;;9720:238::o;9963:417::-;10165:2;10147:21;;;10204:2;10184:18;;;10177:30;10243:34;10238:2;10223:18;;10216:62;-1:-1:-1;;;10309:2:1;10294:18;;10287:51;10370:3;10355:19;;10137:243::o;10385:416::-;10587:2;10569:21;;;10626:2;10606:18;;;10599:30;10665:34;10660:2;10645:18;;10638:62;-1:-1:-1;;;10731:2:1;10716:18;;10709:50;10791:3;10776:19;;10559:242::o;10806:417::-;11008:2;10990:21;;;11047:2;11027:18;;;11020:30;11086:34;11081:2;11066:18;;11059:62;-1:-1:-1;;;11152:2:1;11137:18;;11130:51;11213:3;11198:19;;10980:243::o;11228:477::-;11430:2;11412:21;;;11469:2;11449:18;;;11442:30;11508:34;11503:2;11488:18;;11481:62;11579:34;11574:2;11559:18;;11552:62;-1:-1:-1;;;11645:3:1;11630:19;;11623:40;11695:3;11680:19;;11402:303::o;11710:404::-;11912:2;11894:21;;;11951:2;11931:18;;;11924:30;11990:34;11985:2;11970:18;;11963:62;-1:-1:-1;;;12056:2:1;12041:18;;12034:38;12104:3;12089:19;;11884:230::o;12119:356::-;12321:2;12303:21;;;12340:18;;;12333:30;12399:34;12394:2;12379:18;;12372:62;12466:2;12451:18;;12293:182::o;12480:352::-;12682:2;12664:21;;;12721:2;12701:18;;;12694:30;12760;12755:2;12740:18;;12733:58;12823:2;12808:18;;12654:178::o;12837:353::-;13039:2;13021:21;;;13078:2;13058:18;;;13051:30;13117:31;13112:2;13097:18;;13090:59;13181:2;13166:18;;13011:179::o;13195:406::-;13397:2;13379:21;;;13436:2;13416:18;;;13409:30;13475:34;13470:2;13455:18;;13448:62;-1:-1:-1;;;13541:2:1;13526:18;;13519:40;13591:3;13576:19;;13369:232::o;13606:401::-;13808:2;13790:21;;;13847:2;13827:18;;;13820:30;13886:34;13881:2;13866:18;;13859:62;-1:-1:-1;;;13952:2:1;13937:18;;13930:35;13997:3;13982:19;;13780:227::o;14012:356::-;14214:2;14196:21;;;14233:18;;;14226:30;14292:34;14287:2;14272:18;;14265:62;14359:2;14344:18;;14186:182::o;14373:400::-;14575:2;14557:21;;;14614:2;14594:18;;;14587:30;14653:34;14648:2;14633:18;;14626:62;-1:-1:-1;;;14719:2:1;14704:18;;14697:34;14763:3;14748:19;;14547:226::o;14778:343::-;14980:2;14962:21;;;15019:2;14999:18;;;14992:30;-1:-1:-1;;;15053:2:1;15038:18;;15031:49;15112:2;15097:18;;14952:169::o;15126:401::-;15328:2;15310:21;;;15367:2;15347:18;;;15340:30;15406:34;15401:2;15386:18;;15379:62;-1:-1:-1;;;15472:2:1;15457:18;;15450:35;15517:3;15502:19;;15300:227::o;15532:411::-;15734:2;15716:21;;;15773:2;15753:18;;;15746:30;15812:34;15807:2;15792:18;;15785:62;-1:-1:-1;;;15878:2:1;15863:18;;15856:45;15933:3;15918:19;;15706:237::o;15948:177::-;16094:25;;;16082:2;16067:18;;16049:76::o;16130:983::-;;16440:3;16429:9;16425:19;16471:6;16460:9;16453:25;16497:2;16535:6;16530:2;16519:9;16515:18;16508:34;16578:3;16573:2;16562:9;16558:18;16551:31;16602:6;16637;16631:13;16668:6;16660;16653:22;16706:3;16695:9;16691:19;16684:26;;16745:2;16737:6;16733:15;16719:29;;16766:4;16779:195;16793:6;16790:1;16787:13;16779:195;;;16858:13;;-1:-1:-1;;;;;16854:39:1;16842:52;;16949:15;;;;16914:12;;;;16890:1;16808:9;16779:195;;;-1:-1:-1;;;;;;;17030:32:1;;;;17025:2;17010:18;;17003:60;-1:-1:-1;;;17094:3:1;17079:19;17072:35;16991:3;16401:712;-1:-1:-1;;;16401:712:1:o;17118:319::-;17320:25;;;17376:2;17361:18;;17354:34;;;;17419:2;17404:18;;17397:34;17308:2;17293:18;;17275:162::o;17442:184::-;17614:4;17602:17;;;;17584:36;;17572:2;17557:18;;17539:87::o;17631:128::-;;17702:1;17698:6;17695:1;17692:13;17689:2;;;17708:18;;:::i;:::-;-1:-1:-1;17744:9:1;;17679:80::o;17764:217::-;;17830:1;17820:2;;-1:-1:-1;;;17855:31:1;;17909:4;17906:1;17899:15;17937:4;17862:1;17927:15;17820:2;-1:-1:-1;17966:9:1;;17810:171::o;17986:168::-;;18092:1;18088;18084:6;18080:14;18077:1;18074:21;18069:1;18062:9;18055:17;18051:45;18048:2;;;18099:18;;:::i;:::-;-1:-1:-1;18139:9:1;;18038:116::o;18159:125::-;;18227:1;18224;18221:8;18218:2;;;18232:18;;:::i;:::-;-1:-1:-1;18269:9:1;;18208:76::o;18289:380::-;18374:1;18364:12;;18421:1;18411:12;;;18432:2;;18486:4;18478:6;18474:17;18464:27;;18432:2;18539;18531:6;18528:14;18508:18;18505:38;18502:2;;;18585:10;18580:3;18576:20;18573:1;18566:31;18620:4;18617:1;18610:15;18648:4;18645:1;18638:15;18502:2;;18344:325;;;:::o;18674:127::-;18735:10;18730:3;18726:20;18723:1;18716:31;18766:4;18763:1;18756:15;18790:4;18787:1;18780:15;18806:133;-1:-1:-1;;;;;18883:31:1;;18873:42;;18863:2;;18929:1;18926;18919:12

Swarm Source

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