ETH Price: $3,405.76 (-1.66%)
Gas: 9 Gwei

Token

BeiBei (BEIBEI)
 

Overview

Max Total Supply

420,690,000,000,000 BEIBEI

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,039,334,713,422.138487941 BEIBEI

Value
$0.00
0x7cade6049e5a52531d7d7d749c4ef0c692ae4619
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:
Token

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-16
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

    /**
     * @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.
     */

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 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.
     */

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");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

    /**
     * @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(0x000000000000000000000000000000000000dEaD), 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 {}
}

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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


    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }


    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

 
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

contract Token is ERC20, Ownable {
    using SafeMath for uint256;
    
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public MarketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 1; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3000 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 60 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public startedTrade = false;
    bool public swapsActivate = 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 buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

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

    uint256 public tokensForMarketing;
    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 MarketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

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

    event AutoNukeLP();

    event ManualNukeLP();

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

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

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

        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buydevfee = 0;

        uint256 _sellMarketingFee = 20;  
        uint256 _sellLiquidityFee = 0;
        uint256 _selldevfee = 0;

        uint256 totalSupply = 420690000000000 * 1e9;

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

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

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

        devWallet = address(0x31c6A87DBE2a0427FDeEe5101c9b6C168a2171c2); // set as dev wallet
        MarketingWallet = address(0xEe82969F527fa63F3FDb0406e7fc7386fEB6A7f9); // set as mkt 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 tradingEnable() external onlyOwner {
        swapsActivate = true;
        startedTrade = true;
        lastLpBurnTime = block.timestamp;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelays() 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) / 10000,
            "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() * 2) / 1000) / 1e9,
            "Cannot change maxTransactionAmount lower than 0.2%"
        );
        maxTransactionAmount = newNum * (10**9);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e9,
            "Cannot change maxWallet lower than 1%"
        );
        maxWallet = newNum * (10**9);
    }

    function removeLimits() external onlyOwner{
        maxTransactionAmount = totalSupply();
        maxWallet = totalSupply();
    }

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

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

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99, "Must keep fees at 99% 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 setMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit MarketingWalletUpdated(newMarketingWallet, MarketingWallet);
        MarketingWallet = newMarketingWallet;
    }

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

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

    event isbot(address indexed sniper);

    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 (!startedTrade) {
                    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 &&
            swapsActivate &&
            !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;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / 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 +
            tokensForMarketing +
            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);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

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

        (success, ) = address(MarketingWallet).call{
            value: address(this).balance
        }("");
    }

    function updateAutoLPBurnSettings(
        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":"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"isbot","type":"event"},{"inputs":[],"name":"MarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"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":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"disableTransferDelays","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startedTrade","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":"swapsActivate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"tokensForMarketing","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":"tradingEnable","outputs":[],"stateMutability":"nonpayable","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":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"updateAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","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"}]

60c06040526001600b819055600c805460ff19908116909155610bb8600d55610e10600f556011805462ffffff1916831790556013805490911690911790553480156200004a575f80fd5b506040518060400160405280600681526020016542656942656960d01b8152506040518060400160405280600681526020016542454942454960d01b81525081600390816200009a919062000711565b506004620000a9828262000711565b505050620000c6620000c0620003c660201b60201c565b620003ca565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e88160016200041b565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000131573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001579190620007dd565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c99190620007dd565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000214573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200023a9190620007dd565b6001600160a01b031660a08190526200025590600162000492565b68e40e772ce376d200006008819055600a555f808060148180695915a68d88da6a0800006127106200028982600562000820565b62000295919062000840565b60095560158790556016869055601785905584620002b4878962000860565b620002c0919062000860565b6014556019849055601a839055601b82905581620002df848662000860565b620002eb919062000860565b601855600780546001600160a01b03199081167331c6a87dbe2a0427fdeee5101c9b6c168a2171c2179091556006805490911673ee82969f527fa63f3fdb0406e7fc7386feb6a7f9179055620003556200034d6005546001600160a01b031690565b6001620004e5565b62000362306001620004e5565b6200037161dead6001620004e5565b62000390620003886005546001600160a01b031690565b60016200041b565b6200039d3060016200041b565b620003ac61dead60016200041b565b620003b833826200058d565b505050505050505062000876565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004695760405162461bcd60e51b815260206004820181905260248201525f805160206200389c83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f9081526020805260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200052f5760405162461bcd60e51b815260206004820181905260248201525f805160206200389c833981519152604482015260640162000460565b6001600160a01b0382165f818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005e55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000460565b8060025f828254620005f8919062000860565b90915550506001600160a01b0382165f90815260208190526040812080548392906200062690849062000860565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200069d57607f821691505b602082108103620006bc57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200066f57805f5260205f20601f840160051c81016020851015620006e95750805b601f840160051c820191505b818110156200070a575f8155600101620006f5565b5050505050565b81516001600160401b038111156200072d576200072d62000674565b62000745816200073e845462000688565b84620006c2565b602080601f8311600181146200077b575f8415620007635750858301515b5f19600386901b1c1916600185901b178555620007d5565b5f85815260208120601f198616915b82811015620007ab578886015182559484019460019091019084016200078a565b5085821015620007c957878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215620007ee575f80fd5b81516001600160a01b038116811462000805575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200083a576200083a6200080c565b92915050565b5f826200085b57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200083a576200083a6200080c565b60805160a051612fa2620008fa5f395f818161061201528181611170015281816117b70152818161184e0152818161187901528181611c0e0152818161274e015281816127ec015261281701525f818161045c01528181611bd001528181612918015281816129cf01528181612a0b01528181612a7f0152612adb0152612fa25ff3fe608060405260043610610394575f3560e01c80637bce5a04116101de578063c024666811610108578063d85ba0631161009d578063f2fde38b1161006d578063f2fde38b14610a49578063f637434214610a68578063f8b45b0514610a7d578063fe72b27a14610a92575f80fd5b8063d85ba063146109c6578063dd62ed3e146109db578063e2f4560514610a1f578063f11a24d314610a34575f80fd5b8063c876d0b9116100d8578063c876d0b91461095a578063c8c8ebe414610973578063cc1ead0b14610988578063d257b34f146109a7575f80fd5b8063c0246668146108df578063c17b5b8c146108fe578063c18bc1951461091d578063c6118fe91461093c575f80fd5b80639c3b4fdc1161017e578063a457c2d71161014e578063a457c2d71461085e578063a4c82a001461087d578063a9059cbb14610892578063b62496f5146108b1575f80fd5b80639c3b4fdc1461080a5780639ec22c0e1461081f5780639fccce3214610834578063a0d82dc514610849575f80fd5b80638ea5220f116101b95780638ea5220f146107a357806392136913146107c257806395d89b41146107d75780639a7a23d6146107eb575f80fd5b80637bce5a04146107525780638095d564146107675780638da5cb5b14610786575f80fd5b806327c8f835116102bf5780634fbee1931161025f57806370a082311161022f57806370a08231146106d7578063715018a61461070b578063751039fc1461071f5780637571336a14610733575f80fd5b80634fbee1931461064d5780635d098b38146106845780636440f719146106a35780636a486a8e146106c2575f80fd5b8063313ce5671161029a578063313ce567146105c757806339509351146105e257806349bd5a5e146106015780634a62bb6514610634575f80fd5b806327c8f835146105845780632c3e486c146105995780632e82f1a0146105ae575f80fd5b8063184c16c5116103355780631f53ac02116103055780631f53ac0214610508578063203e727e1461052757806323b872dd146105465780632598cdb214610565575f80fd5b8063184c16c5146104b4578063199ffc72146104c95780631a8145bb146104de5780631f3fed8f146104f3575f80fd5b806310d5de531161037057806310d5de53146104085780631693e8d4146104355780631694505e1461044b57806318160ddd14610496575f80fd5b8062bad5cf1461039f57806306fdde03146103c8578063095ea7b3146103e9575f80fd5b3661039b57005b5f80fd5b3480156103aa575f80fd5b506103b3610ab1565b60405190151581526020015b60405180910390f35b3480156103d3575f80fd5b506103dc610af6565b6040516103bf9190612b57565b3480156103f4575f80fd5b506103b3610403366004612bb7565b610b86565b348015610413575f80fd5b506103b3610422366004612be1565b602080525f908152604090205460ff1681565b348015610440575f80fd5b50610449610b9c565b005b348015610456575f80fd5b5061047e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103bf565b3480156104a1575f80fd5b506002545b6040519081526020016103bf565b3480156104bf575f80fd5b506104a6600f5481565b3480156104d4575f80fd5b506104a6600b5481565b3480156104e9575f80fd5b506104a6601d5481565b3480156104fe575f80fd5b506104a6601c5481565b348015610513575f80fd5b50610449610522366004612be1565b610bdd565b348015610532575f80fd5b50610449610541366004612bfc565b610c63565b348015610551575f80fd5b506103b3610560366004612c13565b610d3b565b348015610570575f80fd5b5060065461047e906001600160a01b031681565b34801561058f575f80fd5b5061047e61dead81565b3480156105a4575f80fd5b506104a6600d5481565b3480156105b9575f80fd5b50600c546103b39060ff1681565b3480156105d2575f80fd5b50604051600981526020016103bf565b3480156105ed575f80fd5b506103b36105fc366004612bb7565b610de3565b34801561060c575f80fd5b5061047e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561063f575f80fd5b506011546103b39060ff1681565b348015610658575f80fd5b506103b3610667366004612be1565b6001600160a01b03165f908152601f602052604090205460ff1690565b34801561068f575f80fd5b5061044961069e366004612be1565b610e1e565b3480156106ae575f80fd5b506104496106bd366004612c60565b610ea4565b3480156106cd575f80fd5b506104a660185481565b3480156106e2575f80fd5b506104a66106f1366004612be1565b6001600160a01b03165f9081526020819052604090205490565b348015610716575f80fd5b50610449610fcd565b34801561072a575f80fd5b50610449611002565b34801561073e575f80fd5b5061044961074d366004612c92565b61103a565b34801561075d575f80fd5b506104a660155481565b348015610772575f80fd5b50610449610781366004612cc5565b61108d565b348015610791575f80fd5b506005546001600160a01b031661047e565b3480156107ae575f80fd5b5060075461047e906001600160a01b031681565b3480156107cd575f80fd5b506104a660195481565b3480156107e2575f80fd5b506103dc611135565b3480156107f6575f80fd5b50610449610805366004612c92565b611144565b348015610815575f80fd5b506104a660175481565b34801561082a575f80fd5b506104a660105481565b34801561083f575f80fd5b506104a6601e5481565b348015610854575f80fd5b506104a6601b5481565b348015610869575f80fd5b506103b3610878366004612bb7565b611223565b348015610888575f80fd5b506104a6600e5481565b34801561089d575f80fd5b506103b36108ac366004612bb7565b6112bb565b3480156108bc575f80fd5b506103b36108cb366004612be1565b60216020525f908152604090205460ff1681565b3480156108ea575f80fd5b506104496108f9366004612c92565b6112c7565b348015610909575f80fd5b50610449610918366004612cc5565b61134f565b348015610928575f80fd5b50610449610937366004612bfc565b6113f2565b348015610947575f80fd5b506011546103b390610100900460ff1681565b348015610965575f80fd5b506013546103b39060ff1681565b34801561097e575f80fd5b506104a660085481565b348015610993575f80fd5b506011546103b39062010000900460ff1681565b3480156109b2575f80fd5b506103b36109c1366004612bfc565b6114bd565b3480156109d1575f80fd5b506104a660145481565b3480156109e6575f80fd5b506104a66109f5366004612cee565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a2a575f80fd5b506104a660095481565b348015610a3f575f80fd5b506104a660165481565b348015610a54575f80fd5b50610449610a63366004612be1565b611612565b348015610a73575f80fd5b506104a6601a5481565b348015610a88575f80fd5b506104a6600a5481565b348015610a9d575f80fd5b506103b3610aac366004612bfc565b6116ad565b6005545f906001600160a01b03163314610ae65760405162461bcd60e51b8152600401610add90612d25565b60405180910390fd5b506013805460ff19169055600190565b606060038054610b0590612d5a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3190612d5a565b8015610b7c5780601f10610b5357610100808354040283529160200191610b7c565b820191905f5260205f20905b815481529060010190602001808311610b5f57829003601f168201915b5050505050905090565b5f610b9233848461191b565b5060015b92915050565b6005546001600160a01b03163314610bc65760405162461bcd60e51b8152600401610add90612d25565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b03163314610c075760405162461bcd60e51b8152600401610add90612d25565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e743905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c8d5760405162461bcd60e51b8152600401610add90612d25565b633b9aca006103e8610c9e60025490565b610ca9906002612da6565b610cb39190612dbd565b610cbd9190612dbd565b811015610d275760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f74206368616e6765206d61785472616e73616374696f6e416d6f756044820152716e74206c6f776572207468616e20302e322560701b6064820152608401610add565b610d3581633b9aca00612da6565b60085550565b5f610d47848484611a3e565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610dcb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610add565b610dd8853385840361191b565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b92918590610e19908690612ddc565b61191b565b6005546001600160a01b03163314610e485760405162461bcd60e51b8152600401610add90612d25565b6006546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc67905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ece5760405162461bcd60e51b8152600401610add90612d25565b610258831015610f3c5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610add565b6103e88211158015610f4c575060015b610fb15760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610add565b600d92909255600b55600c805460ff1916911515919091179055565b6005546001600160a01b03163314610ff75760405162461bcd60e51b8152600401610add90612d25565b6110005f6122f5565b565b6005546001600160a01b0316331461102c5760405162461bcd60e51b8152600401610add90612d25565b600254600855600254600a55565b6005546001600160a01b031633146110645760405162461bcd60e51b8152600401610add90612d25565b6001600160a01b03919091165f9081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110b75760405162461bcd60e51b8152600401610add90612d25565b601583905560168290556017819055806110d18385612ddc565b6110db9190612ddc565b6014819055606310156111305760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420343525206f72206c6573730000006044820152606401610add565b505050565b606060048054610b0590612d5a565b6005546001600160a01b0316331461116e5760405162461bcd60e51b8152600401610add90612d25565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036112155760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610add565b61121f8282612346565b5050565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156112a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610add565b6112b1338585840361191b565b5060019392505050565b5f610b92338484611a3e565b6005546001600160a01b031633146112f15760405162461bcd60e51b8152600401610add90612d25565b6001600160a01b0382165f818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113795760405162461bcd60e51b8152600401610add90612d25565b6019839055601a829055601b819055806113938385612ddc565b61139d9190612ddc565b6018819055606310156111305760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610add565b6005546001600160a01b0316331461141c5760405162461bcd60e51b8152600401610add90612d25565b633b9aca006103e861142d60025490565b61143890600a612da6565b6114429190612dbd565b61144c9190612dbd565b8110156114a95760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206368616e6765206d617857616c6c6574206c6f776572207468604482015264616e20312560d81b6064820152608401610add565b6114b781633b9aca00612da6565b600a5550565b6005545f906001600160a01b031633146114e95760405162461bcd60e51b8152600401610add90612d25565b6127106114f560025490565b611500906001612da6565b61150a9190612dbd565b8210156115775760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610add565b6103e861158360025490565b61158e906005612da6565b6115989190612dbd565b8211156116045760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610add565b50600981905560015b919050565b6005546001600160a01b0316331461163c5760405162461bcd60e51b8152600401610add90612d25565b6001600160a01b0381166116a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610add565b6116aa816122f5565b50565b6005545f906001600160a01b031633146116d95760405162461bcd60e51b8152600401610add90612d25565b600f546010546116e99190612ddc565b42116117375760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610add565b6103e882111561179c5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610add565b426010556040516370a0823160e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001660048201525f9030906370a0823190602401602060405180830381865afa158015611804573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118289190612def565b90505f61184161271061183b8487612399565b906123ab565b90508015611876576118767f000000000000000000000000000000000000000000000000000000000000000061dead836123b6565b5f7f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156118d2575f80fd5b505af11580156118e4573d5f803e3d5ffd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb92505f9150a1506001949350505050565b6001600160a01b03831661197d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610add565b6001600160a01b0382166119de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610add565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a645760405162461bcd60e51b8152600401610add90612e06565b6001600160a01b038216611a8a5760405162461bcd60e51b8152600401610add90612e4b565b805f03611a9c5761113083835f6123b6565b60115460ff1615611f4b576005546001600160a01b03848116911614801590611ad357506005546001600160a01b03838116911614155b8015611ae757506001600160a01b03821615155b8015611afe57506001600160a01b03821661dead14155b8015611b145750600554600160a01b900460ff16155b15611f4b57601154610100900460ff16611baa576001600160a01b0383165f908152601f602052604090205460ff1680611b6557506001600160a01b0382165f908152601f602052604090205460ff165b611baa5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610add565b60135460ff1615611cef576005546001600160a01b03838116911614801590611c0557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611c4357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611cef57325f908152601260205260409020544311611cdd5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610add565b325f9081526012602052604090204390555b6001600160a01b0383165f9081526021602052604090205460ff168015611d2d57506001600160a01b0382165f90815260208052604090205460ff16155b15611e1057600854811115611da25760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610add565b600a546001600160a01b0383165f90815260208190526040902054611dc79083612ddc565b1115611e0b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610add565b611f4b565b6001600160a01b0382165f9081526021602052604090205460ff168015611e4e57506001600160a01b0383165f90815260208052604090205460ff16155b15611ec457600854811115611e0b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610add565b6001600160a01b0382165f90815260208052604090205460ff16611f4b57600a546001600160a01b0383165f90815260208190526040902054611f079083612ddc565b1115611f4b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610add565b305f9081526020819052604090205460095481108015908190611f76575060115462010000900460ff165b8015611f8c5750600554600160a01b900460ff16155b8015611fb057506001600160a01b0385165f9081526021602052604090205460ff16155b8015611fd457506001600160a01b0385165f908152601f602052604090205460ff16155b8015611ff857506001600160a01b0384165f908152601f602052604090205460ff16155b15612026576005805460ff60a01b1916600160a01b179055612018612509565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561205757506001600160a01b0384165f9081526021602052604090205460ff165b80156120655750600c5460ff165b80156120805750600d54600e5461207c9190612ddc565b4210155b80156120a457506001600160a01b0385165f908152601f602052604090205460ff16155b156120b3576120b1612733565b505b6005546001600160a01b0386165f908152601f602052604090205460ff600160a01b9092048216159116806120ff57506001600160a01b0385165f908152601f602052604090205460ff165b1561210757505f5b5f81156122e1576001600160a01b0386165f9081526021602052604090205460ff16801561213657505f601854115b156121eb57612155606461183b6018548861239990919063ffffffff16565b9050601854601a54826121689190612da6565b6121729190612dbd565b601d5f8282546121829190612ddc565b9091555050601854601b546121979083612da6565b6121a19190612dbd565b601e5f8282546121b19190612ddc565b90915550506018546019546121c69083612da6565b6121d09190612dbd565b601c5f8282546121e09190612ddc565b909155506122c39050565b6001600160a01b0387165f9081526021602052604090205460ff16801561221357505f601454115b156122c357612232606461183b6014548861239990919063ffffffff16565b9050601454601654826122459190612da6565b61224f9190612dbd565b601d5f82825461225f9190612ddc565b90915550506014546017546122749083612da6565b61227e9190612dbd565b601e5f82825461228e9190612ddc565b90915550506014546015546122a39083612da6565b6122ad9190612dbd565b601c5f8282546122bd9190612ddc565b90915550505b80156122d4576122d48730836123b6565b6122de8186612e8e565b94505b6122ec8787876123b6565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b5f6123a48284612da6565b9392505050565b5f6123a48284612dbd565b6001600160a01b0383166123dc5760405162461bcd60e51b8152600401610add90612e06565b6001600160a01b0382166124025760405162461bcd60e51b8152600401610add90612e4b565b6001600160a01b0383165f90815260208190526040902054818110156124795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610add565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906124af908490612ddc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124fb91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490505f601e54601c54601d5461252e9190612ddc565b6125389190612ddc565b90505f821580612546575081155b1561255057505050565b60095461255e906014612da6565b83111561257657600954612573906014612da6565b92505b5f600283601d54866125889190612da6565b6125929190612dbd565b61259c9190612dbd565b90505f6125a985836128b8565b9050476125b5826128c3565b5f6125c047836128b8565b90505f6125dc8761183b601c548561239990919063ffffffff16565b90505f6125f88861183b601e548661239990919063ffffffff16565b90505f816126068486612e8e565b6126109190612e8e565b5f601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d805f811461266a576040519150601f19603f3d011682016040523d82523d5f602084013e61266f565b606091505b5090985050861580159061268257505f81115b156126d5576126918782612a79565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f811461271f576040519150601f19603f3d011682016040523d82523d5f602084013e612724565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001660048201525f90819030906370a0823190602401602060405180830381865afa15801561279d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127c19190612def565b90505f6127df61271061183b600b548561239990919063ffffffff16565b90508015612814576128147f000000000000000000000000000000000000000000000000000000000000000061dead836123b6565b5f7f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612870575f80fd5b505af1158015612882573d5f803e3d5ffd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d92505f9150a16001935050505090565b5f6123a48284612e8e565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106128f6576128f6612ea1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612972573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129969190612eb5565b816001815181106129a9576129a9612ea1565b60200260200101906001600160a01b031690816001600160a01b0316815250506129f4307f00000000000000000000000000000000000000000000000000000000000000008461191b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612a489085905f90869030904290600401612ed0565b5f604051808303815f87803b158015612a5f575f80fd5b505af1158015612a71573d5f803e3d5ffd5b505050505050565b612aa4307f00000000000000000000000000000000000000000000000000000000000000008461191b565b60405163f305d71960e01b8152306004820152602481018390525f60448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612b2b573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612b509190612f41565b5050505050565b5f602080835283518060208501525f5b81811015612b8357858101830151858201604001528201612b67565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116aa575f80fd5b5f8060408385031215612bc8575f80fd5b8235612bd381612ba3565b946020939093013593505050565b5f60208284031215612bf1575f80fd5b81356123a481612ba3565b5f60208284031215612c0c575f80fd5b5035919050565b5f805f60608486031215612c25575f80fd5b8335612c3081612ba3565b92506020840135612c4081612ba3565b929592945050506040919091013590565b8035801515811461160d575f80fd5b5f805f60608486031215612c72575f80fd5b8335925060208401359150612c8960408501612c51565b90509250925092565b5f8060408385031215612ca3575f80fd5b8235612cae81612ba3565b9150612cbc60208401612c51565b90509250929050565b5f805f60608486031215612cd7575f80fd5b505081359360208301359350604090920135919050565b5f8060408385031215612cff575f80fd5b8235612d0a81612ba3565b91506020830135612d1a81612ba3565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612d6e57607f821691505b602082108103612d8c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b9657610b96612d92565b5f82612dd757634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b9657610b96612d92565b5f60208284031215612dff575f80fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b9657610b96612d92565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612ec5575f80fd5b81516123a481612ba3565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015612f205784516001600160a01b031683529383019391830191600101612efb565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612f53575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212203ddf1b63b5039591713403dd0d3741ea0d2653c4e55588c1582bbbfd53198b4164736f6c634300081700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610394575f3560e01c80637bce5a04116101de578063c024666811610108578063d85ba0631161009d578063f2fde38b1161006d578063f2fde38b14610a49578063f637434214610a68578063f8b45b0514610a7d578063fe72b27a14610a92575f80fd5b8063d85ba063146109c6578063dd62ed3e146109db578063e2f4560514610a1f578063f11a24d314610a34575f80fd5b8063c876d0b9116100d8578063c876d0b91461095a578063c8c8ebe414610973578063cc1ead0b14610988578063d257b34f146109a7575f80fd5b8063c0246668146108df578063c17b5b8c146108fe578063c18bc1951461091d578063c6118fe91461093c575f80fd5b80639c3b4fdc1161017e578063a457c2d71161014e578063a457c2d71461085e578063a4c82a001461087d578063a9059cbb14610892578063b62496f5146108b1575f80fd5b80639c3b4fdc1461080a5780639ec22c0e1461081f5780639fccce3214610834578063a0d82dc514610849575f80fd5b80638ea5220f116101b95780638ea5220f146107a357806392136913146107c257806395d89b41146107d75780639a7a23d6146107eb575f80fd5b80637bce5a04146107525780638095d564146107675780638da5cb5b14610786575f80fd5b806327c8f835116102bf5780634fbee1931161025f57806370a082311161022f57806370a08231146106d7578063715018a61461070b578063751039fc1461071f5780637571336a14610733575f80fd5b80634fbee1931461064d5780635d098b38146106845780636440f719146106a35780636a486a8e146106c2575f80fd5b8063313ce5671161029a578063313ce567146105c757806339509351146105e257806349bd5a5e146106015780634a62bb6514610634575f80fd5b806327c8f835146105845780632c3e486c146105995780632e82f1a0146105ae575f80fd5b8063184c16c5116103355780631f53ac02116103055780631f53ac0214610508578063203e727e1461052757806323b872dd146105465780632598cdb214610565575f80fd5b8063184c16c5146104b4578063199ffc72146104c95780631a8145bb146104de5780631f3fed8f146104f3575f80fd5b806310d5de531161037057806310d5de53146104085780631693e8d4146104355780631694505e1461044b57806318160ddd14610496575f80fd5b8062bad5cf1461039f57806306fdde03146103c8578063095ea7b3146103e9575f80fd5b3661039b57005b5f80fd5b3480156103aa575f80fd5b506103b3610ab1565b60405190151581526020015b60405180910390f35b3480156103d3575f80fd5b506103dc610af6565b6040516103bf9190612b57565b3480156103f4575f80fd5b506103b3610403366004612bb7565b610b86565b348015610413575f80fd5b506103b3610422366004612be1565b602080525f908152604090205460ff1681565b348015610440575f80fd5b50610449610b9c565b005b348015610456575f80fd5b5061047e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103bf565b3480156104a1575f80fd5b506002545b6040519081526020016103bf565b3480156104bf575f80fd5b506104a6600f5481565b3480156104d4575f80fd5b506104a6600b5481565b3480156104e9575f80fd5b506104a6601d5481565b3480156104fe575f80fd5b506104a6601c5481565b348015610513575f80fd5b50610449610522366004612be1565b610bdd565b348015610532575f80fd5b50610449610541366004612bfc565b610c63565b348015610551575f80fd5b506103b3610560366004612c13565b610d3b565b348015610570575f80fd5b5060065461047e906001600160a01b031681565b34801561058f575f80fd5b5061047e61dead81565b3480156105a4575f80fd5b506104a6600d5481565b3480156105b9575f80fd5b50600c546103b39060ff1681565b3480156105d2575f80fd5b50604051600981526020016103bf565b3480156105ed575f80fd5b506103b36105fc366004612bb7565b610de3565b34801561060c575f80fd5b5061047e7f000000000000000000000000158f102cdbd26531bec62e1ced6ed686dc8ebddf81565b34801561063f575f80fd5b506011546103b39060ff1681565b348015610658575f80fd5b506103b3610667366004612be1565b6001600160a01b03165f908152601f602052604090205460ff1690565b34801561068f575f80fd5b5061044961069e366004612be1565b610e1e565b3480156106ae575f80fd5b506104496106bd366004612c60565b610ea4565b3480156106cd575f80fd5b506104a660185481565b3480156106e2575f80fd5b506104a66106f1366004612be1565b6001600160a01b03165f9081526020819052604090205490565b348015610716575f80fd5b50610449610fcd565b34801561072a575f80fd5b50610449611002565b34801561073e575f80fd5b5061044961074d366004612c92565b61103a565b34801561075d575f80fd5b506104a660155481565b348015610772575f80fd5b50610449610781366004612cc5565b61108d565b348015610791575f80fd5b506005546001600160a01b031661047e565b3480156107ae575f80fd5b5060075461047e906001600160a01b031681565b3480156107cd575f80fd5b506104a660195481565b3480156107e2575f80fd5b506103dc611135565b3480156107f6575f80fd5b50610449610805366004612c92565b611144565b348015610815575f80fd5b506104a660175481565b34801561082a575f80fd5b506104a660105481565b34801561083f575f80fd5b506104a6601e5481565b348015610854575f80fd5b506104a6601b5481565b348015610869575f80fd5b506103b3610878366004612bb7565b611223565b348015610888575f80fd5b506104a6600e5481565b34801561089d575f80fd5b506103b36108ac366004612bb7565b6112bb565b3480156108bc575f80fd5b506103b36108cb366004612be1565b60216020525f908152604090205460ff1681565b3480156108ea575f80fd5b506104496108f9366004612c92565b6112c7565b348015610909575f80fd5b50610449610918366004612cc5565b61134f565b348015610928575f80fd5b50610449610937366004612bfc565b6113f2565b348015610947575f80fd5b506011546103b390610100900460ff1681565b348015610965575f80fd5b506013546103b39060ff1681565b34801561097e575f80fd5b506104a660085481565b348015610993575f80fd5b506011546103b39062010000900460ff1681565b3480156109b2575f80fd5b506103b36109c1366004612bfc565b6114bd565b3480156109d1575f80fd5b506104a660145481565b3480156109e6575f80fd5b506104a66109f5366004612cee565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a2a575f80fd5b506104a660095481565b348015610a3f575f80fd5b506104a660165481565b348015610a54575f80fd5b50610449610a63366004612be1565b611612565b348015610a73575f80fd5b506104a6601a5481565b348015610a88575f80fd5b506104a6600a5481565b348015610a9d575f80fd5b506103b3610aac366004612bfc565b6116ad565b6005545f906001600160a01b03163314610ae65760405162461bcd60e51b8152600401610add90612d25565b60405180910390fd5b506013805460ff19169055600190565b606060038054610b0590612d5a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3190612d5a565b8015610b7c5780601f10610b5357610100808354040283529160200191610b7c565b820191905f5260205f20905b815481529060010190602001808311610b5f57829003601f168201915b5050505050905090565b5f610b9233848461191b565b5060015b92915050565b6005546001600160a01b03163314610bc65760405162461bcd60e51b8152600401610add90612d25565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b03163314610c075760405162461bcd60e51b8152600401610add90612d25565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e743905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c8d5760405162461bcd60e51b8152600401610add90612d25565b633b9aca006103e8610c9e60025490565b610ca9906002612da6565b610cb39190612dbd565b610cbd9190612dbd565b811015610d275760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f74206368616e6765206d61785472616e73616374696f6e416d6f756044820152716e74206c6f776572207468616e20302e322560701b6064820152608401610add565b610d3581633b9aca00612da6565b60085550565b5f610d47848484611a3e565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610dcb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610add565b610dd8853385840361191b565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b92918590610e19908690612ddc565b61191b565b6005546001600160a01b03163314610e485760405162461bcd60e51b8152600401610add90612d25565b6006546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc67905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ece5760405162461bcd60e51b8152600401610add90612d25565b610258831015610f3c5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610add565b6103e88211158015610f4c575060015b610fb15760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610add565b600d92909255600b55600c805460ff1916911515919091179055565b6005546001600160a01b03163314610ff75760405162461bcd60e51b8152600401610add90612d25565b6110005f6122f5565b565b6005546001600160a01b0316331461102c5760405162461bcd60e51b8152600401610add90612d25565b600254600855600254600a55565b6005546001600160a01b031633146110645760405162461bcd60e51b8152600401610add90612d25565b6001600160a01b03919091165f9081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110b75760405162461bcd60e51b8152600401610add90612d25565b601583905560168290556017819055806110d18385612ddc565b6110db9190612ddc565b6014819055606310156111305760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420343525206f72206c6573730000006044820152606401610add565b505050565b606060048054610b0590612d5a565b6005546001600160a01b0316331461116e5760405162461bcd60e51b8152600401610add90612d25565b7f000000000000000000000000158f102cdbd26531bec62e1ced6ed686dc8ebddf6001600160a01b0316826001600160a01b0316036112155760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610add565b61121f8282612346565b5050565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156112a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610add565b6112b1338585840361191b565b5060019392505050565b5f610b92338484611a3e565b6005546001600160a01b031633146112f15760405162461bcd60e51b8152600401610add90612d25565b6001600160a01b0382165f818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113795760405162461bcd60e51b8152600401610add90612d25565b6019839055601a829055601b819055806113938385612ddc565b61139d9190612ddc565b6018819055606310156111305760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610add565b6005546001600160a01b0316331461141c5760405162461bcd60e51b8152600401610add90612d25565b633b9aca006103e861142d60025490565b61143890600a612da6565b6114429190612dbd565b61144c9190612dbd565b8110156114a95760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206368616e6765206d617857616c6c6574206c6f776572207468604482015264616e20312560d81b6064820152608401610add565b6114b781633b9aca00612da6565b600a5550565b6005545f906001600160a01b031633146114e95760405162461bcd60e51b8152600401610add90612d25565b6127106114f560025490565b611500906001612da6565b61150a9190612dbd565b8210156115775760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610add565b6103e861158360025490565b61158e906005612da6565b6115989190612dbd565b8211156116045760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610add565b50600981905560015b919050565b6005546001600160a01b0316331461163c5760405162461bcd60e51b8152600401610add90612d25565b6001600160a01b0381166116a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610add565b6116aa816122f5565b50565b6005545f906001600160a01b031633146116d95760405162461bcd60e51b8152600401610add90612d25565b600f546010546116e99190612ddc565b42116117375760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610add565b6103e882111561179c5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610add565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000158f102cdbd26531bec62e1ced6ed686dc8ebddf1660048201525f9030906370a0823190602401602060405180830381865afa158015611804573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118289190612def565b90505f61184161271061183b8487612399565b906123ab565b90508015611876576118767f000000000000000000000000158f102cdbd26531bec62e1ced6ed686dc8ebddf61dead836123b6565b5f7f000000000000000000000000158f102cdbd26531bec62e1ced6ed686dc8ebddf9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156118d2575f80fd5b505af11580156118e4573d5f803e3d5ffd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb92505f9150a1506001949350505050565b6001600160a01b03831661197d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610add565b6001600160a01b0382166119de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610add565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a645760405162461bcd60e51b8152600401610add90612e06565b6001600160a01b038216611a8a5760405162461bcd60e51b8152600401610add90612e4b565b805f03611a9c5761113083835f6123b6565b60115460ff1615611f4b576005546001600160a01b03848116911614801590611ad357506005546001600160a01b03838116911614155b8015611ae757506001600160a01b03821615155b8015611afe57506001600160a01b03821661dead14155b8015611b145750600554600160a01b900460ff16155b15611f4b57601154610100900460ff16611baa576001600160a01b0383165f908152601f602052604090205460ff1680611b6557506001600160a01b0382165f908152601f602052604090205460ff165b611baa5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610add565b60135460ff1615611cef576005546001600160a01b03838116911614801590611c0557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611c4357507f000000000000000000000000158f102cdbd26531bec62e1ced6ed686dc8ebddf6001600160a01b0316826001600160a01b031614155b15611cef57325f908152601260205260409020544311611cdd5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610add565b325f9081526012602052604090204390555b6001600160a01b0383165f9081526021602052604090205460ff168015611d2d57506001600160a01b0382165f90815260208052604090205460ff16155b15611e1057600854811115611da25760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610add565b600a546001600160a01b0383165f90815260208190526040902054611dc79083612ddc565b1115611e0b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610add565b611f4b565b6001600160a01b0382165f9081526021602052604090205460ff168015611e4e57506001600160a01b0383165f90815260208052604090205460ff16155b15611ec457600854811115611e0b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610add565b6001600160a01b0382165f90815260208052604090205460ff16611f4b57600a546001600160a01b0383165f90815260208190526040902054611f079083612ddc565b1115611f4b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610add565b305f9081526020819052604090205460095481108015908190611f76575060115462010000900460ff165b8015611f8c5750600554600160a01b900460ff16155b8015611fb057506001600160a01b0385165f9081526021602052604090205460ff16155b8015611fd457506001600160a01b0385165f908152601f602052604090205460ff16155b8015611ff857506001600160a01b0384165f908152601f602052604090205460ff16155b15612026576005805460ff60a01b1916600160a01b179055612018612509565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561205757506001600160a01b0384165f9081526021602052604090205460ff165b80156120655750600c5460ff165b80156120805750600d54600e5461207c9190612ddc565b4210155b80156120a457506001600160a01b0385165f908152601f602052604090205460ff16155b156120b3576120b1612733565b505b6005546001600160a01b0386165f908152601f602052604090205460ff600160a01b9092048216159116806120ff57506001600160a01b0385165f908152601f602052604090205460ff165b1561210757505f5b5f81156122e1576001600160a01b0386165f9081526021602052604090205460ff16801561213657505f601854115b156121eb57612155606461183b6018548861239990919063ffffffff16565b9050601854601a54826121689190612da6565b6121729190612dbd565b601d5f8282546121829190612ddc565b9091555050601854601b546121979083612da6565b6121a19190612dbd565b601e5f8282546121b19190612ddc565b90915550506018546019546121c69083612da6565b6121d09190612dbd565b601c5f8282546121e09190612ddc565b909155506122c39050565b6001600160a01b0387165f9081526021602052604090205460ff16801561221357505f601454115b156122c357612232606461183b6014548861239990919063ffffffff16565b9050601454601654826122459190612da6565b61224f9190612dbd565b601d5f82825461225f9190612ddc565b90915550506014546017546122749083612da6565b61227e9190612dbd565b601e5f82825461228e9190612ddc565b90915550506014546015546122a39083612da6565b6122ad9190612dbd565b601c5f8282546122bd9190612ddc565b90915550505b80156122d4576122d48730836123b6565b6122de8186612e8e565b94505b6122ec8787876123b6565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b5f6123a48284612da6565b9392505050565b5f6123a48284612dbd565b6001600160a01b0383166123dc5760405162461bcd60e51b8152600401610add90612e06565b6001600160a01b0382166124025760405162461bcd60e51b8152600401610add90612e4b565b6001600160a01b0383165f90815260208190526040902054818110156124795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610add565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906124af908490612ddc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124fb91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490505f601e54601c54601d5461252e9190612ddc565b6125389190612ddc565b90505f821580612546575081155b1561255057505050565b60095461255e906014612da6565b83111561257657600954612573906014612da6565b92505b5f600283601d54866125889190612da6565b6125929190612dbd565b61259c9190612dbd565b90505f6125a985836128b8565b9050476125b5826128c3565b5f6125c047836128b8565b90505f6125dc8761183b601c548561239990919063ffffffff16565b90505f6125f88861183b601e548661239990919063ffffffff16565b90505f816126068486612e8e565b6126109190612e8e565b5f601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d805f811461266a576040519150601f19603f3d011682016040523d82523d5f602084013e61266f565b606091505b5090985050861580159061268257505f81115b156126d5576126918782612a79565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f811461271f576040519150601f19603f3d011682016040523d82523d5f602084013e612724565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f000000000000000000000000158f102cdbd26531bec62e1ced6ed686dc8ebddf1660048201525f90819030906370a0823190602401602060405180830381865afa15801561279d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127c19190612def565b90505f6127df61271061183b600b548561239990919063ffffffff16565b90508015612814576128147f000000000000000000000000158f102cdbd26531bec62e1ced6ed686dc8ebddf61dead836123b6565b5f7f000000000000000000000000158f102cdbd26531bec62e1ced6ed686dc8ebddf9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612870575f80fd5b505af1158015612882573d5f803e3d5ffd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d92505f9150a16001935050505090565b5f6123a48284612e8e565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106128f6576128f6612ea1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612972573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129969190612eb5565b816001815181106129a9576129a9612ea1565b60200260200101906001600160a01b031690816001600160a01b0316815250506129f4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461191b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612a489085905f90869030904290600401612ed0565b5f604051808303815f87803b158015612a5f575f80fd5b505af1158015612a71573d5f803e3d5ffd5b505050505050565b612aa4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461191b565b60405163f305d71960e01b8152306004820152602481018390525f60448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612b2b573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612b509190612f41565b5050505050565b5f602080835283518060208501525f5b81811015612b8357858101830151858201604001528201612b67565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116aa575f80fd5b5f8060408385031215612bc8575f80fd5b8235612bd381612ba3565b946020939093013593505050565b5f60208284031215612bf1575f80fd5b81356123a481612ba3565b5f60208284031215612c0c575f80fd5b5035919050565b5f805f60608486031215612c25575f80fd5b8335612c3081612ba3565b92506020840135612c4081612ba3565b929592945050506040919091013590565b8035801515811461160d575f80fd5b5f805f60608486031215612c72575f80fd5b8335925060208401359150612c8960408501612c51565b90509250925092565b5f8060408385031215612ca3575f80fd5b8235612cae81612ba3565b9150612cbc60208401612c51565b90509250929050565b5f805f60608486031215612cd7575f80fd5b505081359360208301359350604090920135919050565b5f8060408385031215612cff575f80fd5b8235612d0a81612ba3565b91506020830135612d1a81612ba3565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612d6e57607f821691505b602082108103612d8c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b9657610b96612d92565b5f82612dd757634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b9657610b96612d92565b5f60208284031215612dff575f80fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b9657610b96612d92565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612ec5575f80fd5b81516123a481612ba3565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015612f205784516001600160a01b031683529383019391830191600101612efb565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612f53575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212203ddf1b63b5039591713403dd0d3741ea0d2653c4e55588c1582bbbfd53198b4164736f6c63430008170033

Deployed Bytecode Sourcemap

29615:19208:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34817:136;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;34817:136:0;;;;;;;;9170:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11336:169::-;;;;;;;;;;-1:-1:-1;11336:169:0;;;;;:::i;:::-;;:::i;31246:63::-;;;;;;;;;;-1:-1:-1;31246:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34600:156;;;;;;;;;;;;;:::i;:::-;;29694:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;29694:51:0;1467:230:1;10289:108:0;;;;;;;;;;-1:-1:-1;10377:12:0;;10289:108;;;1848:25:1;;;1836:2;1821:18;10289:108:0;1702:177:1;30259:47:0;;;;;;;;;;;;;;;;30074:35;;;;;;;;;;;;;;;;31030:33;;;;;;;;;;;;;;;;30990;;;;;;;;;;;;;;;;38156:154;;;;;;;;;;-1:-1:-1;38156:154:0;;;;;:::i;:::-;;:::i;35527:276::-;;;;;;;;;;-1:-1:-1;35527:276:0;;;;;:::i;:::-;;:::i;11987:492::-;;;;;;;;;;-1:-1:-1;11987:492:0;;;;;:::i;:::-;;:::i;29889:30::-;;;;;;;;;;-1:-1:-1;29889:30:0;;;;-1:-1:-1;;;;;29889:30:0;;;29797:53;;;;;;;;;;;;29843:6;29797:53;;30169:45;;;;;;;;;;;;;;;;30129:33;;;;;;;;;;-1:-1:-1;30129:33:0;;;;;;;;10132:92;;;;;;;;;;-1:-1:-1;10132:92:0;;10215:1;2880:36:1;;2868:2;2853:18;10132:92:0;2738:184:1;12888:215:0;;;;;;;;;;-1:-1:-1;12888:215:0;;;;;:::i;:::-;;:::i;29752:38::-;;;;;;;;;;;;;;;30357:33;;;;;;;;;;-1:-1:-1;30357:33:0;;;;;;;;38318:126;;;;;;;;;;-1:-1:-1;38318:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38408:28:0;38384:4;38408:28;;;:19;:28;;;;;;;;;38318:126;37920:228;;;;;;;;;;-1:-1:-1;37920:228:0;;;;;:::i;:::-;;:::i;46402:558::-;;;;;;;;;;-1:-1:-1;46402:558:0;;;;;:::i;:::-;;:::i;30845:28::-;;;;;;;;;;;;;;;;10460:127;;;;;;;;;;-1:-1:-1;10460:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10561:18:0;10534:7;10561:18;;;;;;;;;;;;10460:127;2405:103;;;;;;;;;;;;;:::i;36075:133::-;;;;;;;;;;;;;:::i;36216:167::-;;;;;;;;;;-1:-1:-1;36216:167:0;;;;;:::i;:::-;;:::i;30738:30::-;;;;;;;;;;;;;;;;36391:403;;;;;;;;;;-1:-1:-1;36391:403:0;;;;;:::i;:::-;;:::i;2097:87::-;;;;;;;;;;-1:-1:-1;2170:6:0;;-1:-1:-1;;;;;2170:6:0;2097:87;;29926:24;;;;;;;;;;-1:-1:-1;29926:24:0;;;;-1:-1:-1;;;;;29926:24:0;;;30880:31;;;;;;;;;;;;;;;;9389:104;;;;;;;;;;;;;:::i;37412:304::-;;;;;;;;;;-1:-1:-1;37412:304:0;;;;;:::i;:::-;;:::i;30812:24::-;;;;;;;;;;;;;;;;30313:35;;;;;;;;;;;;;;;;31070:27;;;;;;;;;;;;;;;;30956:25;;;;;;;;;;;;;;;;13606:413;;;;;;;;;;-1:-1:-1;13606:413:0;;;;;:::i;:::-;;:::i;30221:29::-;;;;;;;;;;;;;;;;10800:175;;;;;;;;;;-1:-1:-1;10800:175:0;;;;;:::i;:::-;;:::i;31467:57::-;;;;;;;;;;-1:-1:-1;31467:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37222:182;;;;;;;;;;-1:-1:-1;37222:182:0;;;;;:::i;:::-;;:::i;36802:412::-;;;;;;;;;;-1:-1:-1;36802:412:0;;;;;:::i;:::-;;:::i;35811:256::-;;;;;;;;;;-1:-1:-1;35811:256:0;;;;;:::i;:::-;;:::i;30397:32::-;;;;;;;;;;-1:-1:-1;30397:32:0;;;;;;;;;;;30656:39;;;;;;;;;;-1:-1:-1;30656:39:0;;;;;;;;29959:35;;;;;;;;;;;;;;;;30436:33;;;;;;;;;;-1:-1:-1;30436:33:0;;;;;;;;;;;35023:496;;;;;;;;;;-1:-1:-1;35023:496:0;;;;;:::i;:::-;;:::i;30704:27::-;;;;;;;;;;;;;;;;11038:151;;;;;;;;;;-1:-1:-1;11038:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11154:18:0;;;11127:7;11154:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11038:151;30001:33;;;;;;;;;;;;;;;;30775:30;;;;;;;;;;;;;;;;2663:201;;;;;;;;;;-1:-1:-1;2663:201:0;;;;;:::i;:::-;;:::i;30918:31::-;;;;;;;;;;;;;;;;30041:24;;;;;;;;;;;;;;;;47764:1056;;;;;;;;;;-1:-1:-1;47764:1056:0;;;;;:::i;:::-;;:::i;34817:136::-;2170:6;;34878:4;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;34895:20:0::1;:28:::0;;-1:-1:-1;;34895:28:0::1;::::0;;;34817:136;:::o;9170:100::-;9224:13;9257:5;9250:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9170:100;:::o;11336:169::-;11419:4;11436:39;888:10;11459:7;11468:6;11436:8;:39::i;:::-;-1:-1:-1;11493:4:0;11336:169;;;;;:::o;34600:156::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;34655:13:::1;:20:::0;;-1:-1:-1;;34686:19:0;;;;;34733:15:::1;34716:14;:32:::0;34600:156::o;38156:154::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;38260:9:::1;::::0;38232:38:::1;::::0;-1:-1:-1;;;;;38260:9:0;;::::1;::::0;38232:38;::::1;::::0;::::1;::::0;38260:9:::1;::::0;38232:38:::1;38281:9;:21:::0;;-1:-1:-1;;;;;;38281:21:0::1;-1:-1:-1::0;;;;;38281:21:0;;;::::1;::::0;;;::::1;::::0;;38156:154::o;35527:276::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;35664:3:::1;35656:4;35635:13;10377:12:::0;;;10289:108;35635:13:::1;:17;::::0;35651:1:::1;35635:17;:::i;:::-;35634:26;;;;:::i;:::-;35633:34;;;;:::i;:::-;35623:6;:44;;35601:144;;;::::0;-1:-1:-1;;;35601:144:0;;5922:2:1;35601:144:0::1;::::0;::::1;5904:21:1::0;5961:2;5941:18;;;5934:30;6000:34;5980:18;;;5973:62;-1:-1:-1;;;6051:18:1;;;6044:48;6109:19;;35601:144:0::1;5720:414:1::0;35601:144:0::1;35779:16;:6:::0;35789:5:::1;35779:16;:::i;:::-;35756:20;:39:::0;-1:-1:-1;35527:276:0:o;11987:492::-;12127:4;12144:36;12154:6;12162:9;12173:6;12144:9;:36::i;:::-;-1:-1:-1;;;;;12220:19:0;;12193:24;12220:19;;;:11;:19;;;;;;;;888:10;12220:33;;;;;;;;12272:26;;;;12264:79;;;;-1:-1:-1;;;12264:79:0;;6341:2:1;12264:79:0;;;6323:21:1;6380:2;6360:18;;;6353:30;6419:34;6399:18;;;6392:62;-1:-1:-1;;;6470:18:1;;;6463:38;6518:19;;12264:79:0;6139:404:1;12264:79:0;12379:57;12388:6;888:10;12429:6;12410:16;:25;12379:8;:57::i;:::-;-1:-1:-1;12467:4:0;;11987:492;-1:-1:-1;;;;11987:492:0:o;12888:215::-;888:10;12976:4;13025:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13025:34:0;;;;;;;;;;12976:4;;12993:80;;13016:7;;13025:47;;13062:10;;13025:47;:::i;:::-;12993:8;:80::i;37920:228::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;38077:15:::1;::::0;38034:59:::1;::::0;-1:-1:-1;;;;;38077:15:0;;::::1;::::0;38034:59;::::1;::::0;::::1;::::0;38077:15:::1;::::0;38034:59:::1;38104:15;:36:::0;;-1:-1:-1;;;;;;38104:36:0::1;-1:-1:-1::0;;;;;38104:36:0;;;::::1;::::0;;;::::1;::::0;;37920:228::o;46402:558::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;46607:3:::1;46584:19;:26;;46562:127;;;::::0;-1:-1:-1;;;46562:127:0;;6880:2:1;46562:127:0::1;::::0;::::1;6862:21:1::0;6919:2;6899:18;;;6892:30;6958:34;6938:18;;;6931:62;-1:-1:-1;;;7009:18:1;;;7002:49;7068:19;;46562:127:0::1;6678:415:1::0;46562:127:0::1;46734:4;46722:8;:16;;:33;;;;-1:-1:-1::0;46742:13:0;46722:33:::1;46700:131;;;::::0;-1:-1:-1;;;46700:131:0;;7300:2:1;46700:131:0::1;::::0;::::1;7282:21:1::0;7339:2;7319:18;;;7312:30;7378:34;7358:18;;;7351:62;-1:-1:-1;;;7429:18:1;;;7422:46;7485:19;;46700:131:0::1;7098:412:1::0;46700:131:0::1;46842:15;:37:::0;;;;46890:16:::1;:27:::0;46928:13:::1;:24:::0;;-1:-1:-1;;46928:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46402:558::o;2405:103::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;2470:30:::1;2497:1;2470:18;:30::i;:::-;2405:103::o:0;36075:133::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;10377:12;;36128:20:::1;:36:::0;10377:12;;36175:9:::1;:25:::0;36075:133::o;36216:167::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36329:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;36329:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36216:167::o;36391:403::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;36541:15:::1;:31:::0;;;36583:15:::1;:31:::0;;;36625:9:::1;:19:::0;;;36637:7;36670:33:::1;36601:13:::0;36559;36670:33:::1;:::i;:::-;:45;;;;:::i;:::-;36655:12;:60:::0;;;36750:2:::1;-1:-1:-1::0;36734:18:0::1;36726:60;;;::::0;-1:-1:-1;;;36726:60:0;;7717:2:1;36726:60:0::1;::::0;::::1;7699:21:1::0;7756:2;7736:18;;;7729:30;7795:31;7775:18;;;7768:59;7844:18;;36726:60:0::1;7515:353:1::0;36726:60:0::1;36391:403:::0;;;:::o;9389:104::-;9445:13;9478:7;9471:14;;;;;:::i;37412:304::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;37556:13:::1;-1:-1:-1::0;;;;;37548:21:0::1;:4;-1:-1:-1::0;;;;;37548:21:0::1;::::0;37526:128:::1;;;::::0;-1:-1:-1;;;37526:128:0;;8075:2:1;37526:128:0::1;::::0;::::1;8057:21:1::0;8114:2;8094:18;;;8087:30;8153:34;8133:18;;;8126:62;8224:27;8204:18;;;8197:55;8269:19;;37526:128:0::1;7873:421:1::0;37526:128:0::1;37667:41;37696:4;37702:5;37667:28;:41::i;:::-;37412:304:::0;;:::o;13606:413::-;888:10;13699:4;13743:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13743:34:0;;;;;;;;;;13796:35;;;;13788:85;;;;-1:-1:-1;;;13788:85:0;;8501:2:1;13788:85:0;;;8483:21:1;8540:2;8520:18;;;8513:30;8579:34;8559:18;;;8552:62;-1:-1:-1;;;8630:18:1;;;8623:35;8675:19;;13788:85:0;8299:401:1;13788:85:0;13909:67;888:10;13932:7;13960:15;13941:16;:34;13909:8;:67::i;:::-;-1:-1:-1;14007:4:0;;13606:413;-1:-1:-1;;;13606:413:0:o;10800:175::-;10886:4;10903:42;888:10;10927:9;10938:6;10903:9;:42::i;37222:182::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37307:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37307:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37362:34;;154:41:1;;;37362:34:0::1;::::0;127:18:1;37362:34:0::1;;;;;;;37222:182:::0;;:::o;36802:412::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;36953:16:::1;:32:::0;;;36996:16:::1;:32:::0;;;37039:10:::1;:20:::0;;;37052:7;37086:35:::1;37015:13:::0;36972;37086:35:::1;:::i;:::-;:48;;;;:::i;:::-;37070:13;:64:::0;;;37170:2:::1;-1:-1:-1::0;37153:19:0::1;37145:61;;;::::0;-1:-1:-1;;;37145:61:0;;8907:2:1;37145:61:0::1;::::0;::::1;8889:21:1::0;8946:2;8926:18;;;8919:30;8985:31;8965:18;;;8958:59;9034:18;;37145:61:0::1;8705:353:1::0;35811:256:0;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;35952:3:::1;35944:4;35922:13;10377:12:::0;;;10289:108;35922:13:::1;:18;::::0;35938:2:::1;35922:18;:::i;:::-;35921:27;;;;:::i;:::-;35920:35;;;;:::i;:::-;35910:6;:45;;35888:132;;;::::0;-1:-1:-1;;;35888:132:0;;9265:2:1;35888:132:0::1;::::0;::::1;9247:21:1::0;9304:2;9284:18;;;9277:30;9343:34;9323:18;;;9316:62;-1:-1:-1;;;9394:18:1;;;9387:35;9439:19;;35888:132:0::1;9063:401:1::0;35888:132:0::1;36043:16;:6:::0;36053:5:::1;36043:16;:::i;:::-;36031:9;:28:::0;-1:-1:-1;35811:256:0:o;35023:496::-;2170:6;;35131:4;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;35210:5:::1;35189:13;10377:12:::0;;;10289:108;35189:13:::1;:17;::::0;35205:1:::1;35189:17;:::i;:::-;35188:27;;;;:::i;:::-;35175:9;:40;;35153:143;;;::::0;-1:-1:-1;;;35153:143:0;;9671:2:1;35153:143:0::1;::::0;::::1;9653:21:1::0;9710:2;9690:18;;;9683:30;9749:34;9729:18;;;9722:62;-1:-1:-1;;;9800:18:1;;;9793:51;9861:19;;35153:143:0::1;9469:417:1::0;35153:143:0::1;35364:4;35343:13;10377:12:::0;;;10289:108;35343:13:::1;:17;::::0;35359:1:::1;35343:17;:::i;:::-;35342:26;;;;:::i;:::-;35329:9;:39;;35307:141;;;::::0;-1:-1:-1;;;35307:141:0;;10093:2:1;35307:141:0::1;::::0;::::1;10075:21:1::0;10132:2;10112:18;;;10105:30;10171:34;10151:18;;;10144:62;-1:-1:-1;;;10222:18:1;;;10215:50;10282:19;;35307:141:0::1;9891:416:1::0;35307:141:0::1;-1:-1:-1::0;35459:18:0::1;:30:::0;;;35507:4:::1;2388:1;35023:496:::0;;;:::o;2663:201::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2752:22:0;::::1;2744:73;;;::::0;-1:-1:-1;;;2744:73:0;;10514:2:1;2744:73:0::1;::::0;::::1;10496:21:1::0;10553:2;10533:18;;;10526:30;10592:34;10572:18;;;10565:62;-1:-1:-1;;;10643:18:1;;;10636:36;10689:19;;2744:73:0::1;10312:402:1::0;2744:73:0::1;2828:28;2847:8;2828:18;:28::i;:::-;2663:201:::0;:::o;47764:1056::-;2170:6;;47875:4;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;47960:19:::1;;47937:20;;:42;;;;:::i;:::-;47919:15;:60;47897:142;;;::::0;-1:-1:-1;;;47897:142:0;;10921:2:1;47897:142:0::1;::::0;::::1;10903:21:1::0;;;10940:18;;;10933:30;10999:34;10979:18;;;10972:62;11051:18;;47897:142:0::1;10719:356:1::0;47897:142:0::1;48069:4;48058:7;:15;;48050:70;;;::::0;-1:-1:-1;;;48050:70:0;;11282:2:1;48050:70:0::1;::::0;::::1;11264:21:1::0;11321:2;11301:18;;;11294:30;11360:34;11340:18;;;11333:62;-1:-1:-1;;;11411:18:1;;;11404:40;11461:19;;48050:70:0::1;11080:406:1::0;48050:70:0::1;48154:15;48131:20;:38:::0;48255:29:::1;::::0;-1:-1:-1;;;48255:29:0;;-1:-1:-1;;;;;48270:13:0::1;1658:32:1::0;48255:29:0::1;::::0;::::1;1640:51:1::0;48224:28:0::1;::::0;48255:4:::1;::::0;:14:::1;::::0;1613:18:1;;48255:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48224:60:::0;-1:-1:-1;48334:20:0::1;48357:44;48395:5;48357:33;48224:60:::0;48382:7;48357:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;48334:67:::0;-1:-1:-1;48506:16:0;;48502:110:::1;;48539:61;48555:13;48578:6;48587:12;48539:15;:61::i;:::-;48687:19;48724:13;48687:51;;48749:4;-1:-1:-1::0;;;;;48749:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48776:14:0::1;::::0;::::1;::::0;-1:-1:-1;48776:14:0;;-1:-1:-1;48776:14:0::1;-1:-1:-1::0;48808:4:0::1;::::0;47764:1056;-1:-1:-1;;;;47764:1056:0:o;17331:380::-;-1:-1:-1;;;;;17467:19:0;;17459:68;;;;-1:-1:-1;;;17459:68:0;;11882:2:1;17459:68:0;;;11864:21:1;11921:2;11901:18;;;11894:30;11960:34;11940:18;;;11933:62;-1:-1:-1;;;12011:18:1;;;12004:34;12055:19;;17459:68:0;11680:400:1;17459:68:0;-1:-1:-1;;;;;17546:21:0;;17538:68;;;;-1:-1:-1;;;17538:68:0;;12287:2:1;17538:68:0;;;12269:21:1;12326:2;12306:18;;;12299:30;12365:34;12345:18;;;12338:62;-1:-1:-1;;;12416:18:1;;;12409:32;12458:19;;17538:68:0;12085:398:1;17538:68:0;-1:-1:-1;;;;;17619:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17671:32;;1848:25:1;;;17671:32:0;;1821:18:1;17671:32:0;;;;;;;17331:380;;;:::o;38496:5012::-;-1:-1:-1;;;;;38628:18:0;;38620:68;;;;-1:-1:-1;;;38620:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38707:16:0;;38699:64;;;;-1:-1:-1;;;38699:64:0;;;;;;;:::i;:::-;38780:6;38790:1;38780:11;38776:93;;38808:28;38824:4;38830:2;38834:1;38808:15;:28::i;38776:93::-;38885:14;;;;38881:2486;;;2170:6;;-1:-1:-1;;;;;38938:15:0;;;2170:6;;38938:15;;;;:49;;-1:-1:-1;2170:6:0;;-1:-1:-1;;;;;38974:13:0;;;2170:6;;38974:13;;38938:49;:86;;;;-1:-1:-1;;;;;;39008:16:0;;;;38938:86;:128;;;;-1:-1:-1;;;;;;39045:21:0;;39059:6;39045:21;;38938:128;:158;;;;-1:-1:-1;39088:8:0;;-1:-1:-1;;;39088:8:0;;;;39087:9;38938:158;38916:2440;;;39136:12;;;;;;;39131:222;;-1:-1:-1;;;;;39207:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39236:23:0;;;;;;:19;:23;;;;;;;;39207:52;39173:160;;;;-1:-1:-1;;;39173:160:0;;13500:2:1;39173:160:0;;;13482:21:1;13539:2;13519:18;;;13512:30;-1:-1:-1;;;13558:18:1;;;13551:52;13620:18;;39173:160:0;13298:346:1;39173:160:0;39509:20;;;;39505:641;;;2170:6;;-1:-1:-1;;;;;39584:13:0;;;2170:6;;39584:13;;;;:72;;;39640:15;-1:-1:-1;;;;;39626:30:0;:2;-1:-1:-1;;;;;39626:30:0;;;39584:72;:129;;;;;39699:13;-1:-1:-1;;;;;39685:28:0;:2;-1:-1:-1;;;;;39685:28:0;;;39584:129;39554:573;;;39831:9;39802:39;;;;:28;:39;;;;;;39877:12;-1:-1:-1;39764:258:0;;;;-1:-1:-1;;;39764:258:0;;13851:2:1;39764:258:0;;;13833:21:1;13890:2;13870:18;;;13863:30;13929:34;13909:18;;;13902:62;14000:34;13980:18;;;13973:62;-1:-1:-1;;;14051:19:1;;;14044:40;14101:19;;39764:258:0;13649:477:1;39764:258:0;40078:9;40049:39;;;;:28;:39;;;;;40091:12;40049:54;;39554:573;-1:-1:-1;;;;;40220:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40277:35:0;;;;;;:31;:35;;;;;;;;40276:36;40220:92;40194:1147;;;40399:20;;40389:6;:30;;40355:169;;;;-1:-1:-1;;;40355:169:0;;14333:2:1;40355:169:0;;;14315:21:1;14372:2;14352:18;;;14345:30;14411:34;14391:18;;;14384:62;-1:-1:-1;;;14462:18:1;;;14455:51;14523:19;;40355:169:0;14131:417:1;40355:169:0;40607:9;;-1:-1:-1;;;;;10561:18:0;;10534:7;10561:18;;;;;;;;;;;40581:22;;:6;:22;:::i;:::-;:35;;40547:140;;;;-1:-1:-1;;;40547:140:0;;14755:2:1;40547:140:0;;;14737:21:1;14794:2;14774:18;;;14767:30;-1:-1:-1;;;14813:18:1;;;14806:49;14872:18;;40547:140:0;14553:343:1;40547:140:0;40194:1147;;;-1:-1:-1;;;;;40785:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40840:37:0;;;;;;:31;:37;;;;;;;;40839:38;40785:92;40759:582;;;40964:20;;40954:6;:30;;40920:170;;;;-1:-1:-1;;;40920:170:0;;15103:2:1;40920:170:0;;;15085:21:1;15142:2;15122:18;;;15115:30;15181:34;15161:18;;;15154:62;-1:-1:-1;;;15232:18:1;;;15225:52;15294:19;;40920:170:0;14901:418:1;40759:582:0;-1:-1:-1;;;;;41121:35:0;;;;;;:31;:35;;;;;;;;41116:225;;41241:9;;-1:-1:-1;;;;;10561:18:0;;10534:7;10561:18;;;;;;;;;;;41215:22;;:6;:22;:::i;:::-;:35;;41181:140;;;;-1:-1:-1;;;41181:140:0;;14755:2:1;41181:140:0;;;14737:21:1;14794:2;14774:18;;;14767:30;-1:-1:-1;;;14813:18:1;;;14806:49;14872:18;;41181:140:0;14553:343:1;41181:140:0;41428:4;41379:28;10561:18;;;;;;;;;;;41486;;41462:42;;;;;;;41535:37;;-1:-1:-1;41559:13:0;;;;;;;41535:37;:63;;;;-1:-1:-1;41590:8:0;;-1:-1:-1;;;41590:8:0;;;;41589:9;41535:63;:112;;;;-1:-1:-1;;;;;;41616:31:0;;;;;;:25;:31;;;;;;;;41615:32;41535:112;:155;;;;-1:-1:-1;;;;;;41665:25:0;;;;;;:19;:25;;;;;;;;41664:26;41535:155;:196;;;;-1:-1:-1;;;;;;41708:23:0;;;;;;:19;:23;;;;;;;;41707:24;41535:196;41517:328;;;41758:8;:15;;-1:-1:-1;;;;41758:15:0;-1:-1:-1;;;41758:15:0;;;41790:10;:8;:10::i;:::-;41817:8;:16;;-1:-1:-1;;;;41817:16:0;;;41517:328;41876:8;;-1:-1:-1;;;41876:8:0;;;;41875:9;:55;;;;-1:-1:-1;;;;;;41901:29:0;;;;;;:25;:29;;;;;;;;41875:55;:85;;;;-1:-1:-1;41947:13:0;;;;41875:85;:153;;;;;42013:15;;41996:14;;:32;;;;:::i;:::-;41977:15;:51;;41875:153;:196;;;;-1:-1:-1;;;;;;42046:25:0;;;;;;:19;:25;;;;;;;;42045:26;41875:196;41857:282;;;42098:29;:27;:29::i;:::-;;41857:282;42167:8;;-1:-1:-1;;;;;42277:25:0;;42151:12;42277:25;;;:19;:25;;;;;;42167:8;-1:-1:-1;;;42167:8:0;;;;;42166:9;;42277:25;;:52;;-1:-1:-1;;;;;;42306:23:0;;;;;;:19;:23;;;;;;;;42277:52;42273:100;;;-1:-1:-1;42356:5:0;42273:100;42385:12;42490:7;42486:969;;;-1:-1:-1;;;;;42542:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42591:1;42575:13;;:17;42542:50;42538:768;;;42620:34;42650:3;42620:25;42631:13;;42620:6;:10;;:25;;;;:::i;:34::-;42613:41;;42723:13;;42703:16;;42696:4;:23;;;;:::i;:::-;42695:41;;;;:::i;:::-;42673:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42793:13:0;;42779:10;;42772:17;;:4;:17;:::i;:::-;42771:35;;;;:::i;:::-;42755:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;42875:13:0;;42855:16;;42848:23;;:4;:23;:::i;:::-;42847:41;;;;:::i;:::-;42825:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;42538:768:0;;-1:-1:-1;42538:768:0;;-1:-1:-1;;;;;42950:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43000:1;42985:12;;:16;42950:51;42946:360;;;43029:33;43058:3;43029:24;43040:12;;43029:6;:10;;:24;;;;:::i;:33::-;43022:40;;43130:12;;43111:15;;43104:4;:22;;;;:::i;:::-;43103:39;;;;:::i;:::-;43081:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43198:12:0;;43185:9;;43178:16;;:4;:16;:::i;:::-;43177:33;;;;:::i;:::-;43161:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43278:12:0;;43259:15;;43252:22;;:4;:22;:::i;:::-;43251:39;;;;:::i;:::-;43229:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42946:360:0;43326:8;;43322:91;;43355:42;43371:4;43385;43392;43355:15;:42::i;:::-;43429:14;43439:4;43429:14;;:::i;:::-;;;42486:969;43467:33;43483:4;43489:2;43493:6;43467:15;:33::i;:::-;38609:4899;;;;38496:5012;;;:::o;3024:191::-;3117:6;;;-1:-1:-1;;;;;3134:17:0;;;-1:-1:-1;;;;;;3134:17:0;;;;;;;3167:40;;3117:6;;;3134:17;3117:6;;3167:40;;3098:16;;3167:40;3087:128;3024:191;:::o;37724:188::-;-1:-1:-1;;;;;37807:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37807:39:0;;;;;;;;;;37864:40;;37807:39;;:31;37864:40;;;37724:188;;:::o;22784:98::-;22842:7;22869:5;22873:1;22869;:5;:::i;:::-;22862:12;22784:98;-1:-1:-1;;;22784:98:0:o;23183:::-;23241:7;23268:5;23272:1;23268;:5;:::i;14509:733::-;-1:-1:-1;;;;;14649:20:0;;14641:70;;;;-1:-1:-1;;;14641:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14730:23:0;;14722:71;;;;-1:-1:-1;;;14722:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14890:17:0;;14866:21;14890:17;;;;;;;;;;;14926:23;;;;14918:74;;;;-1:-1:-1;;;14918:74:0;;15659:2:1;14918:74:0;;;15641:21:1;15698:2;15678:18;;;15671:30;15737:34;15717:18;;;15710:62;-1:-1:-1;;;15788:18:1;;;15781:36;15834:19;;14918:74:0;15457:402:1;14918:74:0;-1:-1:-1;;;;;15028:17:0;;;:9;:17;;;;;;;;;;;15048:22;;;15028:42;;15092:20;;;;;;;;:30;;15064:6;;15028:9;15092:30;;15064:6;;15092:30;:::i;:::-;;;;;;;;15157:9;-1:-1:-1;;;;;15140:35:0;15149:6;-1:-1:-1;;;;;15140:35:0;;15168:6;15140:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;15140:35:0;;;;;;;;14630:612;14509:733;;;:::o;44638:1756::-;44721:4;44677:23;10561:18;;;;;;;;;;;44677:50;;44738:25;44834:12;;44800:18;;44766;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;44738:108;-1:-1:-1;44857:12:0;44886:20;;;:46;;-1:-1:-1;44910:22:0;;44886:46;44882:85;;;44949:7;;;44638:1756::o;44882:85::-;45001:18;;:23;;45022:2;45001:23;:::i;:::-;44983:15;:41;44979:115;;;45059:18;;:23;;45080:2;45059:23;:::i;:::-;45041:41;;44979:115;45155:23;45268:1;45235:17;45200:18;;45182:15;:36;;;;:::i;:::-;45181:71;;;;:::i;:::-;:88;;;;:::i;:::-;45155:114;-1:-1:-1;45280:26:0;45309:36;:15;45155:114;45309:19;:36::i;:::-;45280:65;-1:-1:-1;45386:21:0;45420:36;45280:65;45420:16;:36::i;:::-;45469:18;45490:44;:21;45516:17;45490:25;:44::i;:::-;45469:65;;45547:23;45573:81;45626:17;45573:34;45588:18;;45573:10;:14;;:34;;;;:::i;:81::-;45547:107;;45665:17;45685:51;45718:17;45685:28;45700:12;;45685:10;:14;;:28;;;;:::i;:51::-;45665:71;-1:-1:-1;45749:23:0;45665:71;45775:28;45788:15;45775:10;:28;:::i;:::-;:40;;;;:::i;:::-;45849:1;45828:18;:22;;;45861:18;:22;;;45894:12;:16;;;45945:9;;45937:45;;45749:66;;-1:-1:-1;;;;;;45945:9:0;;45968;;45937:45;45849:1;45937:45;45968:9;45945;45937:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45923:59:0;;-1:-1:-1;;45999:19:0;;;;;:42;;;46040:1;46022:15;:19;45999:42;45995:278;;;46058:46;46071:15;46088;46058:12;:46::i;:::-;46228:18;;46124:137;;;16276:25:1;;;16332:2;16317:18;;16310:34;;;16360:18;;;16353:34;;;;46124:137:0;;;;;;16264:2:1;46124:137:0;;;45995:278;46307:15;;46299:87;;-1:-1:-1;;;;;46307:15:0;;;;46350:21;;46299:87;;;;46350:21;46307:15;46299:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;44638:1756:0:o;46968:788::-;47059:15;47042:14;:32;47160:29;;-1:-1:-1;;;47160:29:0;;-1:-1:-1;;;;;47175:13:0;1658:32:1;47160:29:0;;;1640:51:1;47025:4:0;;;;47160;;:14;;1613:18:1;;47160:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47129:60;;47239:20;47262:77;47323:5;47262:42;47287:16;;47262:20;:24;;:42;;;;:::i;:77::-;47239:100;-1:-1:-1;47444:16:0;;47440:110;;47477:61;47493:13;47516:6;47525:12;47477:15;:61::i;:::-;47625:19;47662:13;47625:51;;47687:4;-1:-1:-1;;;;;47687:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47714:12:0;;;;-1:-1:-1;47714:12:0;;-1:-1:-1;47714:12:0;47744:4;47737:11;;;;;46968:788;:::o;22427:98::-;22485:7;22512:5;22516:1;22512;:5;:::i;43516:589::-;43666:16;;;43680:1;43666:16;;;;;;;;43642:21;;43666:16;;;;;;;;;;-1:-1:-1;43666:16:0;43642:40;;43711:4;43693;43698:1;43693:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43693:23:0;;;-1:-1:-1;;;;;43693:23:0;;;;;43737:15;-1:-1:-1;;;;;43737:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43727:4;43732:1;43727:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43727:32:0;;;-1:-1:-1;;;;;43727:32:0;;;;;43772:62;43789:4;43804:15;43822:11;43772:8;:62::i;:::-;43873:224;;-1:-1:-1;;;43873:224:0;;-1:-1:-1;;;;;43873:15:0;:66;;;;:224;;43954:11;;43980:1;;44024:4;;44051;;44071:15;;43873:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43571:534;43516:589;:::o;44113:517::-;44261:62;44278:4;44293:15;44311:11;44261:8;:62::i;:::-;44366:256;;-1:-1:-1;;;44366:256:0;;44438:4;44366:256;;;18244:34:1;18294:18;;;18287:34;;;44484:1:0;18337:18:1;;;18330:34;;;18380:18;;;18373:34;29843:6:0;18423:19:1;;;18416:44;44596:15:0;18476:19:1;;;18469:35;44366:15:0;-1:-1:-1;;;;;44366:31:0;;;;44405:9;;18178:19:1;;44366:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44113:517;;:::o;206:548:1:-;318:4;347:2;376;365:9;358:21;408:6;402:13;451:6;446:2;435:9;431:18;424:34;476:1;486:140;500:6;497:1;494:13;486:140;;;595:14;;;591:23;;585:30;561:17;;;580:2;557:26;550:66;515:10;;486:140;;;490:3;675:1;670:2;661:6;650:9;646:22;642:31;635:42;745:2;738;734:7;729:2;721:6;717:15;713:29;702:9;698:45;694:54;686:62;;;;206:548;;;;:::o;759:131::-;-1:-1:-1;;;;;834:31:1;;824:42;;814:70;;880:1;877;870:12;895:315;963:6;971;1024:2;1012:9;1003:7;999:23;995:32;992:52;;;1040:1;1037;1030:12;992:52;1079:9;1066:23;1098:31;1123:5;1098:31;:::i;:::-;1148:5;1200:2;1185:18;;;;1172:32;;-1:-1:-1;;;895:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:160::-;2992:20;;3048:13;;3041:21;3031:32;;3021:60;;3077:1;3074;3067:12;3092:316;3166:6;3174;3182;3235:2;3223:9;3214:7;3210:23;3206:32;3203:52;;;3251:1;3248;3241:12;3203:52;3287:9;3274:23;3264:33;;3344:2;3333:9;3329:18;3316:32;3306:42;;3367:35;3398:2;3387:9;3383:18;3367:35;:::i;:::-;3357:45;;3092:316;;;;;:::o;3413:315::-;3478:6;3486;3539:2;3527:9;3518:7;3514:23;3510:32;3507:52;;;3555:1;3552;3545:12;3507:52;3594:9;3581:23;3613:31;3638:5;3613:31;:::i;:::-;3663:5;-1:-1:-1;3687:35:1;3718:2;3703:18;;3687:35;:::i;:::-;3677:45;;3413:315;;;;;:::o;3733:316::-;3810:6;3818;3826;3879:2;3867:9;3858:7;3854:23;3850:32;3847:52;;;3895:1;3892;3885:12;3847:52;-1:-1:-1;;3918:23:1;;;3988:2;3973:18;;3960:32;;-1:-1:-1;4039:2:1;4024:18;;;4011:32;;3733:316;-1:-1:-1;3733:316:1:o;4054:388::-;4122:6;4130;4183:2;4171:9;4162:7;4158:23;4154:32;4151:52;;;4199:1;4196;4189:12;4151:52;4238:9;4225:23;4257:31;4282:5;4257:31;:::i;:::-;4307:5;-1:-1:-1;4364:2:1;4349:18;;4336:32;4377:33;4336:32;4377:33;:::i;:::-;4429:7;4419:17;;;4054:388;;;;;:::o;4447:356::-;4649:2;4631:21;;;4668:18;;;4661:30;4727:34;4722:2;4707:18;;4700:62;4794:2;4779:18;;4447:356::o;4808:380::-;4887:1;4883:12;;;;4930;;;4951:61;;5005:4;4997:6;4993:17;4983:27;;4951:61;5058:2;5050:6;5047:14;5027:18;5024:38;5021:161;;5104:10;5099:3;5095:20;5092:1;5085:31;5139:4;5136:1;5129:15;5167:4;5164:1;5157:15;5021:161;;4808:380;;;:::o;5193:127::-;5254:10;5249:3;5245:20;5242:1;5235:31;5285:4;5282:1;5275:15;5309:4;5306:1;5299:15;5325:168;5398:9;;;5429;;5446:15;;;5440:22;;5426:37;5416:71;;5467:18;;:::i;5498:217::-;5538:1;5564;5554:132;;5608:10;5603:3;5599:20;5596:1;5589:31;5643:4;5640:1;5633:15;5671:4;5668:1;5661:15;5554:132;-1:-1:-1;5700:9:1;;5498:217::o;6548:125::-;6613:9;;;6634:10;;;6631:36;;;6647:18;;:::i;11491:184::-;11561:6;11614:2;11602:9;11593:7;11589:23;11585:32;11582:52;;;11630:1;11627;11620:12;11582:52;-1:-1:-1;11653:16:1;;11491:184;-1:-1:-1;11491:184:1:o;12488:401::-;12690:2;12672:21;;;12729:2;12709:18;;;12702:30;12768:34;12763:2;12748:18;;12741:62;-1:-1:-1;;;12834:2:1;12819:18;;12812:35;12879:3;12864:19;;12488:401::o;12894:399::-;13096:2;13078:21;;;13135:2;13115:18;;;13108:30;13174:34;13169:2;13154:18;;13147:62;-1:-1:-1;;;13240:2:1;13225:18;;13218:33;13283:3;13268:19;;12894:399::o;15324:128::-;15391:9;;;15412:11;;;15409:37;;;15426:18;;:::i;16530:127::-;16591:10;16586:3;16582:20;16579:1;16572:31;16622:4;16619:1;16612:15;16646:4;16643:1;16636:15;16662:251;16732:6;16785:2;16773:9;16764:7;16760:23;16756:32;16753:52;;;16801:1;16798;16791:12;16753:52;16833:9;16827:16;16852:31;16877:5;16852:31;:::i;16918:980::-;17180:4;17228:3;17217:9;17213:19;17259:6;17248:9;17241:25;17285:2;17323:6;17318:2;17307:9;17303:18;17296:34;17366:3;17361:2;17350:9;17346:18;17339:31;17390:6;17425;17419:13;17456:6;17448;17441:22;17494:3;17483:9;17479:19;17472:26;;17533:2;17525:6;17521:15;17507:29;;17554:1;17564:195;17578:6;17575:1;17572:13;17564:195;;;17643:13;;-1:-1:-1;;;;;17639:39:1;17627:52;;17734:15;;;;17699:12;;;;17675:1;17593:9;17564:195;;;-1:-1:-1;;;;;;;17815:32:1;;;;17810:2;17795:18;;17788:60;-1:-1:-1;;;17879:3:1;17864:19;17857:35;17776:3;16918:980;-1:-1:-1;;;16918:980:1:o;18515:306::-;18603:6;18611;18619;18672:2;18660:9;18651:7;18647:23;18643:32;18640:52;;;18688:1;18685;18678:12;18640:52;18717:9;18711:16;18701:26;;18767:2;18756:9;18752:18;18746:25;18736:35;;18811:2;18800:9;18796:18;18790:25;18780:35;;18515:306;;;;;:::o

Swarm Source

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