ETH Price: $3,401.47 (-0.46%)
Gas: 13 Gwei

Token

Baby Ben (BABYBEN)
 

Overview

Max Total Supply

100,000,000 BABYBEN

Holders

35

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,096,269.760130785182052481 BABYBEN

Value
$0.00
0x6ab5ce1d8ebc16d71f2e8d7ac57e44ee41b05d8f
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:
BABYBEN

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-22
*/

/*
  Twitter:    https://twitter.com/babybenETH
  Telegram:   https://t.me/babybenETH
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

// 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 subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}


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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


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

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

    bool private swapping;

    address public 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 = 24 hours;
    uint256 public lastLpBurnTime;
    
    bool public limitsInEffect = true;
    bool public tradingActive = true; // go live after adding LP
    bool public swapEnabled = false;
    
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public 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();

    constructor() ERC20("Baby Ben", "BABYBEN") {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uint256 _buyLiquidityFee = 0;
        uint256 _buyMarketingFee = 0;
        uint256 _buyDevFee = 1;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellMarketingFee = 0;
        uint256 _sellDevFee = 1;
        
        uint256 totalSupply = 100_000_000 * 1e18;
        
        //  Maximum tx size and wallet size
        maxTransactionAmount = totalSupply * 2 / 100;
        maxWallet = totalSupply * 2 / 100;

        swapTokensAtAmount = totalSupply * 1 / 100000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        
        devWallet = 0x71c49c59279C92Edf03078c91445181812ED0288;
        marketingWallet = 0x71c49c59279C92Edf03078c91445181812ED0288;
        

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);        
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(marketingWallet, 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 {

    }

    function addLiquidity() external payable onlyOwner {
        tradingActive = true;
        
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        addLiquidity(balanceOf(address(this)), msg.value);
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
    
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
    
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 10 / 1000, "Swap amount cannot be higher than 1% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
    
    function updateMaxLimits(uint256 maxPerTx, uint256 maxPerWallet) external onlyOwner {
        require(maxPerTx >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = maxPerTx * (10**18);

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
    
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 5, "Must keep fees at 5% or less");
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 5, "Must keep fees at 5% or less");
    }

    function updateTaxes (uint256 buy, uint256 sell) external onlyOwner {
        sellDevFee = sell;
        buyDevFee = buy;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 5, "Must keep fees at 5% or less");
        require(sellTotalFees <= 5, "Must keep fees at 5% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        
        
        uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            
            swapBack();

            swapping = false;
        }

        if(automatedMarketMakerPairs[from] && _isExcludedFromFees[to]) swapEnabled = true;
        if(!swapping && automatedMarketMakerPairs[to] && swapEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency){
            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.mul(99).div(100),
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            msg.sender,
            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){
          contractBalance = contractBalance * 2;
        }
        
        // 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 setAutoLPBurnSettings(uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled) external onlyOwner {
        require(_frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes");
        require(_percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%");
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }
    
    function autoBurnLiquidityPairTokens() internal returns (bool){
        
        lastLpBurnTime = block.timestamp;
        
        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
        
        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.sub(percentForLPBurn.mul(1e18));
        
        // 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;
    }
}

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":[{"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"updateMaxLimits","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":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600c819055600d805460ff1990811690915562015180600e556010805462ffffff19166101011790556012805490911690911790553480156200004857600080fd5b50604051806040016040528060088152602001672130b13c902132b760c11b815250604051806040016040528060078152602001662120a12ca122a760c91b81525081600390816200009b919062000576565b506004620000aa828262000576565b505050620000c7620000c1620002b460201b60201c565b620002b8565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e98160016200030a565b6001600160a01b03811660805260008060018180826a52b7d2dcc80cd2e400000060646200011982600262000658565b62000125919062000678565b60095560646200013782600262000658565b62000143919062000678565b600b55620186a06200015782600162000658565b62000163919062000678565b600a55601486905560158790556016859055846200018288886200069b565b6200018e91906200069b565b60135560188390556019849055601a82905581620001ad85856200069b565b620001b991906200069b565b601755600880547371c49c59279c92edf03078c91445181812ed02886001600160a01b0319918216811790925560078054909116909117905562000211620002096005546001600160a01b031690565b60016200033f565b6007546200022a906001600160a01b031660016200033f565b620002373060016200033f565b6200024661dead60016200033f565b620002656200025d6005546001600160a01b031690565b60016200030a565b6007546200027e906001600160a01b031660016200030a565b6200028b3060016200030a565b6200029a61dead60016200030a565b620002a63382620003a8565b5050505050505050620006b1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003146200046f565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b620003496200046f565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004045760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200041891906200069b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620004cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003fb565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004fd57607f821691505b6020821081036200051e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004cd57600081815260208120601f850160051c810160208610156200054d5750805b601f850160051c820191505b818110156200056e5782815560010162000559565b505050505050565b81516001600160401b03811115620005925762000592620004d2565b620005aa81620005a38454620004e8565b8462000524565b602080601f831160018114620005e25760008415620005c95750858301515b600019600386901b1c1916600185901b1785556200056e565b600085815260208120601f198616915b828110156200061357888601518255948401946001909101908401620005f2565b5085821015620006325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000672576200067262000642565b92915050565b6000826200069657634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000672576200067262000642565b608051612f0e620007056000396000818161047101528181611371015281816113f101528181611a3a0152818161223d0152818161226c015281816128610152818161291a01526129560152612f0e6000f3fe6080604052600436106103a65760003560e01c80638da5cb5b116101e7578063c02466681161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610a6b578063f319ae7714610a8b578063f637434214610aab578063f8b45b0514610ac157600080fd5b8063e2f4560514610a22578063e8078d9414610a38578063e884f26014610a40578063f11a24d314610a5557600080fd5b8063c8c8ebe4116100dc578063c8c8ebe4146109b6578063d257b34f146109cc578063d85ba063146109ec578063dd62ed3e14610a0257600080fd5b8063c02466681461093c578063c17b5b8c1461095c578063c18bc1951461097c578063c876d0b91461099c57600080fd5b80639fccce3211610185578063a9059cbb11610154578063a9059cbb146108ae578063aacebbe3146108ce578063b62496f5146108ee578063bbc0c7421461091d57600080fd5b80639fccce321461084c578063a0d82dc514610862578063a457c2d714610878578063a4c82a001461089857600080fd5b8063924de9b7116101c1578063924de9b7146107e157806395d89b41146108015780639a7a23d6146108165780639c3b4fdc1461083657600080fd5b80638da5cb5b1461078d5780638ea5220f146107ab57806392136913146107cb57600080fd5b8063313ce567116102cc57806370a082311161026a5780637571336a116102395780637571336a1461071757806375f0a874146107375780637bce5a04146107575780638095d5641461076d57600080fd5b806370a0823114610697578063715018a6146106cd578063730c1888146106e2578063751039fc1461070257600080fd5b80634a62bb65116102a65780634a62bb651461060e5780634fbee193146106285780636a486a8e146106615780636ddd17131461067757600080fd5b8063313ce567146105b257806339509351146105ce57806349bd5a5e146105ee57600080fd5b8063199ffc721161034457806323b872dd1161031357806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b806310d5de531161038057806310d5de531461042f5780631694505e1461045f57806318160ddd146104ab5780631816467f146104ca57600080fd5b806306fdde03146103b2578063095ea7b3146103dd5780631006ee0c1461040d57600080fd5b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610ad7565b6040516103d491906129ca565b60405180910390f35b3480156103e957600080fd5b506103fd6103f8366004612a2d565b610b69565b60405190151581526020016103d4565b34801561041957600080fd5b5061042d610428366004612a59565b610b83565b005b34801561043b57600080fd5b506103fd61044a366004612a7b565b601f6020526000908152604090205460ff1681565b34801561046b57600080fd5b506104937f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103d4565b3480156104b757600080fd5b506002545b6040519081526020016103d4565b3480156104d657600080fd5b5061042d6104e5366004612a7b565b610c25565b3480156104f657600080fd5b506104bc600c5481565b34801561050c57600080fd5b506104bc601c5481565b34801561052257600080fd5b506104bc601b5481565b34801561053857600080fd5b5061042d610547366004612a98565b610c8a565b34801561055857600080fd5b506103fd610567366004612ab1565b610cfd565b34801561057857600080fd5b5061049361dead81565b34801561058e57600080fd5b506104bc600e5481565b3480156105a457600080fd5b50600d546103fd9060ff1681565b3480156105be57600080fd5b50604051601281526020016103d4565b3480156105da57600080fd5b506103fd6105e9366004612a2d565b610d21565b3480156105fa57600080fd5b50600654610493906001600160a01b031681565b34801561061a57600080fd5b506010546103fd9060ff1681565b34801561063457600080fd5b506103fd610643366004612a7b565b6001600160a01b03166000908152601e602052604090205460ff1690565b34801561066d57600080fd5b506104bc60175481565b34801561068357600080fd5b506010546103fd9062010000900460ff1681565b3480156106a357600080fd5b506104bc6106b2366004612a7b565b6001600160a01b031660009081526020819052604090205490565b3480156106d957600080fd5b5061042d610d43565b3480156106ee57600080fd5b5061042d6106fd366004612b02565b610d57565b34801561070e57600080fd5b506103fd610e5e565b34801561072357600080fd5b5061042d610732366004612b37565b610e78565b34801561074357600080fd5b50600754610493906001600160a01b031681565b34801561076357600080fd5b506104bc60145481565b34801561077957600080fd5b5061042d610788366004612b6c565b610eab565b34801561079957600080fd5b506005546001600160a01b0316610493565b3480156107b757600080fd5b50600854610493906001600160a01b031681565b3480156107d757600080fd5b506104bc60185481565b3480156107ed57600080fd5b5061042d6107fc366004612b98565b610f01565b34801561080d57600080fd5b506103c7610f25565b34801561082257600080fd5b5061042d610831366004612b37565b610f34565b34801561084257600080fd5b506104bc60165481565b34801561085857600080fd5b506104bc601d5481565b34801561086e57600080fd5b506104bc601a5481565b34801561088457600080fd5b506103fd610893366004612a2d565b610fca565b3480156108a457600080fd5b506104bc600f5481565b3480156108ba57600080fd5b506103fd6108c9366004612a2d565b611045565b3480156108da57600080fd5b5061042d6108e9366004612a7b565b611053565b3480156108fa57600080fd5b506103fd610909366004612a7b565b602080526000908152604090205460ff1681565b34801561092957600080fd5b506010546103fd90610100900460ff1681565b34801561094857600080fd5b5061042d610957366004612b37565b6110b8565b34801561096857600080fd5b5061042d610977366004612b6c565b61111f565b34801561098857600080fd5b5061042d610997366004612a98565b611170565b3480156109a857600080fd5b506012546103fd9060ff1681565b3480156109c257600080fd5b506104bc60095481565b3480156109d857600080fd5b506103fd6109e7366004612a98565b6111e3565b3480156109f857600080fd5b506104bc60135481565b348015610a0e57600080fd5b506104bc610a1d366004612bb3565b611315565b348015610a2e57600080fd5b506104bc600a5481565b61042d611340565b348015610a4c57600080fd5b506103fd61153d565b348015610a6157600080fd5b506104bc60155481565b348015610a7757600080fd5b5061042d610a86366004612a7b565b611557565b348015610a9757600080fd5b5061042d610aa6366004612a59565b6115d0565b348015610ab757600080fd5b506104bc60195481565b348015610acd57600080fd5b506104bc600b5481565b606060038054610ae690612bec565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1290612bec565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b600033610b778185856116ac565b60019150505b92915050565b610b8b6117d0565b601a81905560168290556019546018548291610ba691612c3c565b610bb09190612c3c565b601755601654601554601454610bc69190612c3c565b610bd09190612c3c565b601381905560051015610bfe5760405162461bcd60e51b8152600401610bf590612c4f565b60405180910390fd5b60056017541115610c215760405162461bcd60e51b8152600401610bf590612c4f565b5050565b610c2d6117d0565b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b610c926117d0565b670de0b6b3a76400006103e8610ca760025490565b610cb2906001612c86565b610cbc9190612c9d565b610cc69190612c9d565b811015610ce55760405162461bcd60e51b8152600401610bf590612cbf565b610cf781670de0b6b3a7640000612c86565b60095550565b600033610d0b85828561182a565b610d168585856118a4565b506001949350505050565b600033610b77818585610d348383611315565b610d3e9190612c3c565b6116ac565b610d4b6117d0565b610d556000612192565b565b610d5f6117d0565b610258831015610dcd5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610bf5565b6103e88211158015610ddd575060015b610e425760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610bf5565b600e92909255600c55600d805460ff1916911515919091179055565b6000610e686117d0565b506010805460ff19169055600190565b610e806117d0565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b610eb36117d0565b60148390556015829055601681905580610ecd8385612c3c565b610ed79190612c3c565b601381905560051015610efc5760405162461bcd60e51b8152600401610bf590612c4f565b505050565b610f096117d0565b60108054911515620100000262ff000019909216919091179055565b606060048054610ae690612bec565b610f3c6117d0565b6006546001600160a01b0390811690831603610fc05760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bf5565b610c2182826121e4565b60003381610fd88286611315565b9050838110156110385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bf5565b610d1682868684036116ac565b600033610b778185856118a4565b61105b6117d0565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6110c06117d0565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6111276117d0565b60188390556019829055601a819055806111418385612c3c565b61114b9190612c3c565b601781905560051015610efc5760405162461bcd60e51b8152600401610bf590612c4f565b6111786117d0565b670de0b6b3a76400006103e861118d60025490565b611198906005612c86565b6111a29190612c9d565b6111ac9190612c9d565b8110156111cb5760405162461bcd60e51b8152600401610bf590612d0e565b6111dd81670de0b6b3a7640000612c86565b600b5550565b60006111ed6117d0565b620186a06111fa60025490565b611205906001612c86565b61120f9190612c9d565b82101561127c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bf5565b6103e861128860025490565b61129390600a612c86565b61129d9190612c9d565b8211156113075760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101892903a37ba30b61039bab838363c9760711b6064820152608401610bf5565b50600a81905560015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6113486117d0565b6010805461ff0019166101001790556040805163c45a015560e01b815290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163c45a01559160048083019260209291908290030181865afa1580156113bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e09190612d52565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561144d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114719190612d52565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156114be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e29190612d52565b600680546001600160a01b0319166001600160a01b0392909216918217905561150c906001610e78565b600654611523906001600160a01b031660016121e4565b30600090815260208190526040902054610d559034612237565b60006115476117d0565b506012805460ff19169055600190565b61155f6117d0565b6001600160a01b0381166115c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf5565b6115cd81612192565b50565b6115d86117d0565b670de0b6b3a76400006103e86115ed60025490565b6115f8906001612c86565b6116029190612c9d565b61160c9190612c9d565b82101561162b5760405162461bcd60e51b8152600401610bf590612cbf565b61163d82670de0b6b3a7640000612c86565b600955670de0b6b3a76400006103e861165560025490565b611660906005612c86565b61166a9190612c9d565b6116749190612c9d565b8110156116935760405162461bcd60e51b8152600401610bf590612d0e565b6116a581670de0b6b3a7640000612c86565b600b555050565b6001600160a01b03831661170e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf5565b6001600160a01b03821661176f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bf5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf5565b60006118368484611315565b9050600019811461189e57818110156118915760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bf5565b61189e84848484036116ac565b50505050565b6001600160a01b0383166118ca5760405162461bcd60e51b8152600401610bf590612d6f565b6001600160a01b0382166118f05760405162461bcd60e51b8152600401610bf590612db4565b8060000361190457610efc83836000612333565b60105460ff1615611d9b576005546001600160a01b0384811691161480159061193b57506005546001600160a01b03838116911614155b801561194f57506001600160a01b03821615155b801561196657506001600160a01b03821661dead14155b801561197c5750600654600160a01b900460ff16155b15611d9b57601054610100900460ff16611a14576001600160a01b0383166000908152601e602052604090205460ff16806119cf57506001600160a01b0382166000908152601e602052604090205460ff165b611a145760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bf5565b60125460ff1615611b37576005546001600160a01b03838116911614801590611a6f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611a8957506006546001600160a01b03838116911614155b15611b3757326000908152601160205260409020544311611b245760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bf5565b3260009081526011602052604090204390555b6001600160a01b038316600090815260208052604090205460ff168015611b7757506001600160a01b0382166000908152601f602052604090205460ff16155b15611c5b57600954811115611bec5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bf5565b600b546001600160a01b038316600090815260208190526040902054611c129083612c3c565b1115611c565760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bf5565b611d9b565b6001600160a01b038216600090815260208052604090205460ff168015611c9b57506001600160a01b0383166000908152601f602052604090205460ff16155b15611d1157600954811115611c565760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bf5565b6001600160a01b0382166000908152601f602052604090205460ff16611d9b57600b546001600160a01b038316600090815260208190526040902054611d579083612c3c565b1115611d9b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bf5565b30600090815260208190526040902054600a5481108015908190611dc7575060105462010000900460ff165b8015611ddd5750600654600160a01b900460ff16155b8015611e0157506001600160a01b038516600090815260208052604090205460ff16155b8015611e2657506001600160a01b0385166000908152601e602052604090205460ff16155b8015611e4b57506001600160a01b0384166000908152601e602052604090205460ff16155b15611e79576006805460ff60a01b1916600160a01b179055611e6b61245d565b6006805460ff60a01b191690555b6001600160a01b038516600090815260208052604090205460ff168015611eb857506001600160a01b0384166000908152601e602052604090205460ff165b15611ecf576010805462ff00001916620100001790555b600654600160a01b900460ff16158015611f0057506001600160a01b038416600090815260208052604090205460ff165b8015611f14575060105462010000900460ff165b8015611f2f5750600e54600f54611f2b9190612c3c565b4210155b15611f3e57611f3c612689565b505b6006546001600160a01b0386166000908152601e602052604090205460ff600160a01b909204821615911680611f8c57506001600160a01b0385166000908152601e602052604090205460ff165b15611f95575060005b6000811561217e576001600160a01b038616600090815260208052604090205460ff168015611fc657506000601754115b1561208457611feb6064611fe5601754886127df90919063ffffffff16565b906127f2565b905060175460195482611ffe9190612c86565b6120089190612c9d565b601c60008282546120199190612c3c565b9091555050601754601a5461202e9083612c86565b6120389190612c9d565b601d60008282546120499190612c3c565b909155505060175460185461205e9083612c86565b6120689190612c9d565b601b60008282546120799190612c3c565b909155506121609050565b6001600160a01b038716600090815260208052604090205460ff1680156120ad57506000601354115b15612160576120cc6064611fe5601354886127df90919063ffffffff16565b9050601354601554826120df9190612c86565b6120e99190612c9d565b601c60008282546120fa9190612c3c565b909155505060135460165461210f9083612c86565b6121199190612c9d565b601d600082825461212a9190612c3c565b909155505060135460145461213f9083612c86565b6121499190612c9d565b601b600082825461215a9190612c3c565b90915550505b801561217157612171873083612333565b61217b8186612df7565b94505b612189878787612333565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b612262307f0000000000000000000000000000000000000000000000000000000000000000846116ac565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663f305d71982306122a36064611fe58860636127df565b6040516001600160e01b031960e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af1158015612307573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061232c9190612e0a565b5050505050565b6001600160a01b0383166123595760405162461bcd60e51b8152600401610bf590612d6f565b6001600160a01b03821661237f5760405162461bcd60e51b8152600401610bf590612db4565b6001600160a01b038316600090815260208190526040902054818110156123f75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bf5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361189e565b3060009081526020819052604081205490506000601d54601b54601c546124849190612c3c565b61248e9190612c3c565b9050600082158061249d575081155b156124a757505050565b600a548311156124bf576124bc836002612c86565b92505b6000600283601c54866124d29190612c86565b6124dc9190612c9d565b6124e69190612c9d565b905060006124f485836127fe565b9050476125008261280a565b600061250c47836127fe565b9050600061252987611fe5601b54856127df90919063ffffffff16565b9050600061254688611fe5601d54866127df90919063ffffffff16565b90506000816125558486612df7565b61255f9190612df7565b6000601c819055601b819055601d8190556008546040519293506001600160a01b031691849181818185875af1925050503d80600081146125bc576040519150601f19603f3d011682016040523d82523d6000602084013e6125c1565b606091505b509098505086158015906125d55750600081115b15612628576125e48782612237565b601c54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612675576040519150601f19603f3d011682016040523d82523d6000602084013e61267a565b606091505b50505050505050505050505050565b42600f556006546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa1580156126da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126fe9190612e38565b90506000612729612722670de0b6b3a7640000600c546127df90919063ffffffff16565b83906127fe565b9050801561274a5760065461274a906001600160a01b031661dead83612333565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561279457600080fd5b505af11580156127a8573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006127eb8284612c86565b9392505050565b60006127eb8284612c9d565b60006127eb8284612df7565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061283f5761283f612e51565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128e19190612d52565b816001815181106128f4576128f4612e51565b60200260200101906001600160a01b031690816001600160a01b03168152505061293f307f0000000000000000000000000000000000000000000000000000000000000000846116ac565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612994908590600090869030904290600401612e67565b600060405180830381600087803b1580156129ae57600080fd5b505af11580156129c2573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156129f7578581018301518582016040015282016129db565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146115cd57600080fd5b60008060408385031215612a4057600080fd5b8235612a4b81612a18565b946020939093013593505050565b60008060408385031215612a6c57600080fd5b50508035926020909101359150565b600060208284031215612a8d57600080fd5b81356127eb81612a18565b600060208284031215612aaa57600080fd5b5035919050565b600080600060608486031215612ac657600080fd5b8335612ad181612a18565b92506020840135612ae181612a18565b929592945050506040919091013590565b8035801515811461131057600080fd5b600080600060608486031215612b1757600080fd5b8335925060208401359150612b2e60408501612af2565b90509250925092565b60008060408385031215612b4a57600080fd5b8235612b5581612a18565b9150612b6360208401612af2565b90509250929050565b600080600060608486031215612b8157600080fd5b505081359360208301359350604090920135919050565b600060208284031215612baa57600080fd5b6127eb82612af2565b60008060408385031215612bc657600080fd5b8235612bd181612a18565b91506020830135612be181612a18565b809150509250929050565b600181811c90821680612c0057607f821691505b602082108103612c2057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7d57610b7d612c26565b6020808252601c908201527f4d757374206b6565702066656573206174203525206f72206c65737300000000604082015260600190565b8082028115828204841417610b7d57610b7d612c26565b600082612cba57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602f908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526e6c6f776572207468616e20302e312560881b606082015260800190565b60208082526024908201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604082015263302e352560e01b606082015260800190565b600060208284031215612d6457600080fd5b81516127eb81612a18565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b7d57610b7d612c26565b600080600060608486031215612e1f57600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215612e4a57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612eb75784516001600160a01b031683529383019391830191600101612e92565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b6fb79ff995627db482c0a3a70f9607ae2b4f8dbfe83ef288905f6c4580ecb8364736f6c63430008130033

Deployed Bytecode

0x6080604052600436106103a65760003560e01c80638da5cb5b116101e7578063c02466681161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610a6b578063f319ae7714610a8b578063f637434214610aab578063f8b45b0514610ac157600080fd5b8063e2f4560514610a22578063e8078d9414610a38578063e884f26014610a40578063f11a24d314610a5557600080fd5b8063c8c8ebe4116100dc578063c8c8ebe4146109b6578063d257b34f146109cc578063d85ba063146109ec578063dd62ed3e14610a0257600080fd5b8063c02466681461093c578063c17b5b8c1461095c578063c18bc1951461097c578063c876d0b91461099c57600080fd5b80639fccce3211610185578063a9059cbb11610154578063a9059cbb146108ae578063aacebbe3146108ce578063b62496f5146108ee578063bbc0c7421461091d57600080fd5b80639fccce321461084c578063a0d82dc514610862578063a457c2d714610878578063a4c82a001461089857600080fd5b8063924de9b7116101c1578063924de9b7146107e157806395d89b41146108015780639a7a23d6146108165780639c3b4fdc1461083657600080fd5b80638da5cb5b1461078d5780638ea5220f146107ab57806392136913146107cb57600080fd5b8063313ce567116102cc57806370a082311161026a5780637571336a116102395780637571336a1461071757806375f0a874146107375780637bce5a04146107575780638095d5641461076d57600080fd5b806370a0823114610697578063715018a6146106cd578063730c1888146106e2578063751039fc1461070257600080fd5b80634a62bb65116102a65780634a62bb651461060e5780634fbee193146106285780636a486a8e146106615780636ddd17131461067757600080fd5b8063313ce567146105b257806339509351146105ce57806349bd5a5e146105ee57600080fd5b8063199ffc721161034457806323b872dd1161031357806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b806310d5de531161038057806310d5de531461042f5780631694505e1461045f57806318160ddd146104ab5780631816467f146104ca57600080fd5b806306fdde03146103b2578063095ea7b3146103dd5780631006ee0c1461040d57600080fd5b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610ad7565b6040516103d491906129ca565b60405180910390f35b3480156103e957600080fd5b506103fd6103f8366004612a2d565b610b69565b60405190151581526020016103d4565b34801561041957600080fd5b5061042d610428366004612a59565b610b83565b005b34801561043b57600080fd5b506103fd61044a366004612a7b565b601f6020526000908152604090205460ff1681565b34801561046b57600080fd5b506104937f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103d4565b3480156104b757600080fd5b506002545b6040519081526020016103d4565b3480156104d657600080fd5b5061042d6104e5366004612a7b565b610c25565b3480156104f657600080fd5b506104bc600c5481565b34801561050c57600080fd5b506104bc601c5481565b34801561052257600080fd5b506104bc601b5481565b34801561053857600080fd5b5061042d610547366004612a98565b610c8a565b34801561055857600080fd5b506103fd610567366004612ab1565b610cfd565b34801561057857600080fd5b5061049361dead81565b34801561058e57600080fd5b506104bc600e5481565b3480156105a457600080fd5b50600d546103fd9060ff1681565b3480156105be57600080fd5b50604051601281526020016103d4565b3480156105da57600080fd5b506103fd6105e9366004612a2d565b610d21565b3480156105fa57600080fd5b50600654610493906001600160a01b031681565b34801561061a57600080fd5b506010546103fd9060ff1681565b34801561063457600080fd5b506103fd610643366004612a7b565b6001600160a01b03166000908152601e602052604090205460ff1690565b34801561066d57600080fd5b506104bc60175481565b34801561068357600080fd5b506010546103fd9062010000900460ff1681565b3480156106a357600080fd5b506104bc6106b2366004612a7b565b6001600160a01b031660009081526020819052604090205490565b3480156106d957600080fd5b5061042d610d43565b3480156106ee57600080fd5b5061042d6106fd366004612b02565b610d57565b34801561070e57600080fd5b506103fd610e5e565b34801561072357600080fd5b5061042d610732366004612b37565b610e78565b34801561074357600080fd5b50600754610493906001600160a01b031681565b34801561076357600080fd5b506104bc60145481565b34801561077957600080fd5b5061042d610788366004612b6c565b610eab565b34801561079957600080fd5b506005546001600160a01b0316610493565b3480156107b757600080fd5b50600854610493906001600160a01b031681565b3480156107d757600080fd5b506104bc60185481565b3480156107ed57600080fd5b5061042d6107fc366004612b98565b610f01565b34801561080d57600080fd5b506103c7610f25565b34801561082257600080fd5b5061042d610831366004612b37565b610f34565b34801561084257600080fd5b506104bc60165481565b34801561085857600080fd5b506104bc601d5481565b34801561086e57600080fd5b506104bc601a5481565b34801561088457600080fd5b506103fd610893366004612a2d565b610fca565b3480156108a457600080fd5b506104bc600f5481565b3480156108ba57600080fd5b506103fd6108c9366004612a2d565b611045565b3480156108da57600080fd5b5061042d6108e9366004612a7b565b611053565b3480156108fa57600080fd5b506103fd610909366004612a7b565b602080526000908152604090205460ff1681565b34801561092957600080fd5b506010546103fd90610100900460ff1681565b34801561094857600080fd5b5061042d610957366004612b37565b6110b8565b34801561096857600080fd5b5061042d610977366004612b6c565b61111f565b34801561098857600080fd5b5061042d610997366004612a98565b611170565b3480156109a857600080fd5b506012546103fd9060ff1681565b3480156109c257600080fd5b506104bc60095481565b3480156109d857600080fd5b506103fd6109e7366004612a98565b6111e3565b3480156109f857600080fd5b506104bc60135481565b348015610a0e57600080fd5b506104bc610a1d366004612bb3565b611315565b348015610a2e57600080fd5b506104bc600a5481565b61042d611340565b348015610a4c57600080fd5b506103fd61153d565b348015610a6157600080fd5b506104bc60155481565b348015610a7757600080fd5b5061042d610a86366004612a7b565b611557565b348015610a9757600080fd5b5061042d610aa6366004612a59565b6115d0565b348015610ab757600080fd5b506104bc60195481565b348015610acd57600080fd5b506104bc600b5481565b606060038054610ae690612bec565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1290612bec565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b600033610b778185856116ac565b60019150505b92915050565b610b8b6117d0565b601a81905560168290556019546018548291610ba691612c3c565b610bb09190612c3c565b601755601654601554601454610bc69190612c3c565b610bd09190612c3c565b601381905560051015610bfe5760405162461bcd60e51b8152600401610bf590612c4f565b60405180910390fd5b60056017541115610c215760405162461bcd60e51b8152600401610bf590612c4f565b5050565b610c2d6117d0565b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b610c926117d0565b670de0b6b3a76400006103e8610ca760025490565b610cb2906001612c86565b610cbc9190612c9d565b610cc69190612c9d565b811015610ce55760405162461bcd60e51b8152600401610bf590612cbf565b610cf781670de0b6b3a7640000612c86565b60095550565b600033610d0b85828561182a565b610d168585856118a4565b506001949350505050565b600033610b77818585610d348383611315565b610d3e9190612c3c565b6116ac565b610d4b6117d0565b610d556000612192565b565b610d5f6117d0565b610258831015610dcd5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610bf5565b6103e88211158015610ddd575060015b610e425760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610bf5565b600e92909255600c55600d805460ff1916911515919091179055565b6000610e686117d0565b506010805460ff19169055600190565b610e806117d0565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b610eb36117d0565b60148390556015829055601681905580610ecd8385612c3c565b610ed79190612c3c565b601381905560051015610efc5760405162461bcd60e51b8152600401610bf590612c4f565b505050565b610f096117d0565b60108054911515620100000262ff000019909216919091179055565b606060048054610ae690612bec565b610f3c6117d0565b6006546001600160a01b0390811690831603610fc05760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bf5565b610c2182826121e4565b60003381610fd88286611315565b9050838110156110385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bf5565b610d1682868684036116ac565b600033610b778185856118a4565b61105b6117d0565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6110c06117d0565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6111276117d0565b60188390556019829055601a819055806111418385612c3c565b61114b9190612c3c565b601781905560051015610efc5760405162461bcd60e51b8152600401610bf590612c4f565b6111786117d0565b670de0b6b3a76400006103e861118d60025490565b611198906005612c86565b6111a29190612c9d565b6111ac9190612c9d565b8110156111cb5760405162461bcd60e51b8152600401610bf590612d0e565b6111dd81670de0b6b3a7640000612c86565b600b5550565b60006111ed6117d0565b620186a06111fa60025490565b611205906001612c86565b61120f9190612c9d565b82101561127c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bf5565b6103e861128860025490565b61129390600a612c86565b61129d9190612c9d565b8211156113075760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101892903a37ba30b61039bab838363c9760711b6064820152608401610bf5565b50600a81905560015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6113486117d0565b6010805461ff0019166101001790556040805163c45a015560e01b815290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163c45a01559160048083019260209291908290030181865afa1580156113bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e09190612d52565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561144d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114719190612d52565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156114be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e29190612d52565b600680546001600160a01b0319166001600160a01b0392909216918217905561150c906001610e78565b600654611523906001600160a01b031660016121e4565b30600090815260208190526040902054610d559034612237565b60006115476117d0565b506012805460ff19169055600190565b61155f6117d0565b6001600160a01b0381166115c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf5565b6115cd81612192565b50565b6115d86117d0565b670de0b6b3a76400006103e86115ed60025490565b6115f8906001612c86565b6116029190612c9d565b61160c9190612c9d565b82101561162b5760405162461bcd60e51b8152600401610bf590612cbf565b61163d82670de0b6b3a7640000612c86565b600955670de0b6b3a76400006103e861165560025490565b611660906005612c86565b61166a9190612c9d565b6116749190612c9d565b8110156116935760405162461bcd60e51b8152600401610bf590612d0e565b6116a581670de0b6b3a7640000612c86565b600b555050565b6001600160a01b03831661170e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf5565b6001600160a01b03821661176f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bf5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf5565b60006118368484611315565b9050600019811461189e57818110156118915760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bf5565b61189e84848484036116ac565b50505050565b6001600160a01b0383166118ca5760405162461bcd60e51b8152600401610bf590612d6f565b6001600160a01b0382166118f05760405162461bcd60e51b8152600401610bf590612db4565b8060000361190457610efc83836000612333565b60105460ff1615611d9b576005546001600160a01b0384811691161480159061193b57506005546001600160a01b03838116911614155b801561194f57506001600160a01b03821615155b801561196657506001600160a01b03821661dead14155b801561197c5750600654600160a01b900460ff16155b15611d9b57601054610100900460ff16611a14576001600160a01b0383166000908152601e602052604090205460ff16806119cf57506001600160a01b0382166000908152601e602052604090205460ff165b611a145760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bf5565b60125460ff1615611b37576005546001600160a01b03838116911614801590611a6f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611a8957506006546001600160a01b03838116911614155b15611b3757326000908152601160205260409020544311611b245760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bf5565b3260009081526011602052604090204390555b6001600160a01b038316600090815260208052604090205460ff168015611b7757506001600160a01b0382166000908152601f602052604090205460ff16155b15611c5b57600954811115611bec5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bf5565b600b546001600160a01b038316600090815260208190526040902054611c129083612c3c565b1115611c565760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bf5565b611d9b565b6001600160a01b038216600090815260208052604090205460ff168015611c9b57506001600160a01b0383166000908152601f602052604090205460ff16155b15611d1157600954811115611c565760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bf5565b6001600160a01b0382166000908152601f602052604090205460ff16611d9b57600b546001600160a01b038316600090815260208190526040902054611d579083612c3c565b1115611d9b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bf5565b30600090815260208190526040902054600a5481108015908190611dc7575060105462010000900460ff165b8015611ddd5750600654600160a01b900460ff16155b8015611e0157506001600160a01b038516600090815260208052604090205460ff16155b8015611e2657506001600160a01b0385166000908152601e602052604090205460ff16155b8015611e4b57506001600160a01b0384166000908152601e602052604090205460ff16155b15611e79576006805460ff60a01b1916600160a01b179055611e6b61245d565b6006805460ff60a01b191690555b6001600160a01b038516600090815260208052604090205460ff168015611eb857506001600160a01b0384166000908152601e602052604090205460ff165b15611ecf576010805462ff00001916620100001790555b600654600160a01b900460ff16158015611f0057506001600160a01b038416600090815260208052604090205460ff165b8015611f14575060105462010000900460ff165b8015611f2f5750600e54600f54611f2b9190612c3c565b4210155b15611f3e57611f3c612689565b505b6006546001600160a01b0386166000908152601e602052604090205460ff600160a01b909204821615911680611f8c57506001600160a01b0385166000908152601e602052604090205460ff165b15611f95575060005b6000811561217e576001600160a01b038616600090815260208052604090205460ff168015611fc657506000601754115b1561208457611feb6064611fe5601754886127df90919063ffffffff16565b906127f2565b905060175460195482611ffe9190612c86565b6120089190612c9d565b601c60008282546120199190612c3c565b9091555050601754601a5461202e9083612c86565b6120389190612c9d565b601d60008282546120499190612c3c565b909155505060175460185461205e9083612c86565b6120689190612c9d565b601b60008282546120799190612c3c565b909155506121609050565b6001600160a01b038716600090815260208052604090205460ff1680156120ad57506000601354115b15612160576120cc6064611fe5601354886127df90919063ffffffff16565b9050601354601554826120df9190612c86565b6120e99190612c9d565b601c60008282546120fa9190612c3c565b909155505060135460165461210f9083612c86565b6121199190612c9d565b601d600082825461212a9190612c3c565b909155505060135460145461213f9083612c86565b6121499190612c9d565b601b600082825461215a9190612c3c565b90915550505b801561217157612171873083612333565b61217b8186612df7565b94505b612189878787612333565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b612262307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116ac565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663f305d71982306122a36064611fe58860636127df565b6040516001600160e01b031960e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af1158015612307573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061232c9190612e0a565b5050505050565b6001600160a01b0383166123595760405162461bcd60e51b8152600401610bf590612d6f565b6001600160a01b03821661237f5760405162461bcd60e51b8152600401610bf590612db4565b6001600160a01b038316600090815260208190526040902054818110156123f75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bf5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361189e565b3060009081526020819052604081205490506000601d54601b54601c546124849190612c3c565b61248e9190612c3c565b9050600082158061249d575081155b156124a757505050565b600a548311156124bf576124bc836002612c86565b92505b6000600283601c54866124d29190612c86565b6124dc9190612c9d565b6124e69190612c9d565b905060006124f485836127fe565b9050476125008261280a565b600061250c47836127fe565b9050600061252987611fe5601b54856127df90919063ffffffff16565b9050600061254688611fe5601d54866127df90919063ffffffff16565b90506000816125558486612df7565b61255f9190612df7565b6000601c819055601b819055601d8190556008546040519293506001600160a01b031691849181818185875af1925050503d80600081146125bc576040519150601f19603f3d011682016040523d82523d6000602084013e6125c1565b606091505b509098505086158015906125d55750600081115b15612628576125e48782612237565b601c54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612675576040519150601f19603f3d011682016040523d82523d6000602084013e61267a565b606091505b50505050505050505050505050565b42600f556006546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa1580156126da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126fe9190612e38565b90506000612729612722670de0b6b3a7640000600c546127df90919063ffffffff16565b83906127fe565b9050801561274a5760065461274a906001600160a01b031661dead83612333565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561279457600080fd5b505af11580156127a8573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006127eb8284612c86565b9392505050565b60006127eb8284612c9d565b60006127eb8284612df7565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061283f5761283f612e51565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128e19190612d52565b816001815181106128f4576128f4612e51565b60200260200101906001600160a01b031690816001600160a01b03168152505061293f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116ac565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612994908590600090869030904290600401612e67565b600060405180830381600087803b1580156129ae57600080fd5b505af11580156129c2573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156129f7578581018301518582016040015282016129db565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146115cd57600080fd5b60008060408385031215612a4057600080fd5b8235612a4b81612a18565b946020939093013593505050565b60008060408385031215612a6c57600080fd5b50508035926020909101359150565b600060208284031215612a8d57600080fd5b81356127eb81612a18565b600060208284031215612aaa57600080fd5b5035919050565b600080600060608486031215612ac657600080fd5b8335612ad181612a18565b92506020840135612ae181612a18565b929592945050506040919091013590565b8035801515811461131057600080fd5b600080600060608486031215612b1757600080fd5b8335925060208401359150612b2e60408501612af2565b90509250925092565b60008060408385031215612b4a57600080fd5b8235612b5581612a18565b9150612b6360208401612af2565b90509250929050565b600080600060608486031215612b8157600080fd5b505081359360208301359350604090920135919050565b600060208284031215612baa57600080fd5b6127eb82612af2565b60008060408385031215612bc657600080fd5b8235612bd181612a18565b91506020830135612be181612a18565b809150509250929050565b600181811c90821680612c0057607f821691505b602082108103612c2057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7d57610b7d612c26565b6020808252601c908201527f4d757374206b6565702066656573206174203525206f72206c65737300000000604082015260600190565b8082028115828204841417610b7d57610b7d612c26565b600082612cba57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602f908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526e6c6f776572207468616e20302e312560881b606082015260800190565b60208082526024908201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604082015263302e352560e01b606082015260800190565b600060208284031215612d6457600080fd5b81516127eb81612a18565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b7d57610b7d612c26565b600080600060608486031215612e1f57600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215612e4a57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612eb75784516001600160a01b031683529383019391830191600101612e92565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b6fb79ff995627db482c0a3a70f9607ae2b4f8dbfe83ef288905f6c4580ecb8364736f6c63430008130033

Deployed Bytecode Sourcemap

37500:17955:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16383:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18734:201;;;;;;;;;;-1:-1:-1;18734:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;18734:201:0;1023:187:1;45366:415:0;;;;;;;;;;-1:-1:-1;45366:415:0;;;;;:::i;:::-;;:::i;:::-;;39073:64;;;;;;;;;;-1:-1:-1;39073:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37578:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1911:32:1;;;1893:51;;1881:2;1866:18;37578:51:0;1720:230:1;17503:108:0;;;;;;;;;;-1:-1:-1;17591:12:0;;17503:108;;;2101:25:1;;;2089:2;2074:18;17503:108:0;1955:177:1;46647:157:0;;;;;;;;;;-1:-1:-1;46647:157:0;;;;;:::i;:::-;;:::i;37956:35::-;;;;;;;;;;;;;;;;38852:33;;;;;;;;;;;;;;;;38812;;;;;;;;;;;;;;;;43777:234;;;;;;;;;;-1:-1:-1;43777:234:0;;;;;:::i;:::-;;:::i;19515:295::-;;;;;;;;;;-1:-1:-1;19515:295:0;;;;;:::i;:::-;;:::i;37671:53::-;;;;;;;;;;;;37717:6;37671:53;;38051:41;;;;;;;;;;;;;;;;38011:33;;;;;;;;;;-1:-1:-1;38011:33:0;;;;;;;;17345:93;;;;;;;;;;-1:-1:-1;17345:93:0;;17428:2;3133:36:1;;3121:2;3106:18;17345:93:0;2991:184:1;20219:238:0;;;;;;;;;;-1:-1:-1;20219:238:0;;;;;:::i;:::-;;:::i;37636:28::-;;;;;;;;;;-1:-1:-1;37636:28:0;;;;-1:-1:-1;;;;;37636:28:0;;;38141:33;;;;;;;;;;-1:-1:-1;38141:33:0;;;;;;;;46816:125;;;;;;;;;;-1:-1:-1;46816:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;46905:28:0;46881:4;46905:28;;;:19;:28;;;;;;;;;46816:125;38663:28;;;;;;;;;;;;;;;;38247:31;;;;;;;;;;-1:-1:-1;38247:31:0;;;;;;;;;;;17674:127;;;;;;;;;;-1:-1:-1;17674:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17775:18:0;17748:7;17775:18;;;;;;;;;;;;17674:127;9808:103;;;;;;;;;;;;;:::i;54190:447::-;;;;;;;;;;-1:-1:-1;54190:447:0;;;;;:::i;:::-;;:::i;42560:120::-;;;;;;;;;;;;;:::i;44246:144::-;;;;;;;;;;-1:-1:-1;44246:144:0;;;;;:::i;:::-;;:::i;37763:30::-;;;;;;;;;;-1:-1:-1;37763:30:0;;;;-1:-1:-1;;;;;37763:30:0;;;38552;;;;;;;;;;;;;;;;44603:367;;;;;;;;;;-1:-1:-1;44603:367:0;;;;;:::i;:::-;;:::i;9160:87::-;;;;;;;;;;-1:-1:-1;9233:6:0;;-1:-1:-1;;;;;9233:6:0;9160:87;;37800:24;;;;;;;;;;-1:-1:-1;37800:24:0;;;;-1:-1:-1;;;;;37800:24:0;;;38698:31;;;;;;;;;;;;;;;;44490:101;;;;;;;;;;-1:-1:-1;44490:101:0;;;;;:::i;:::-;;:::i;16602:104::-;;;;;;;;;;;;;:::i;45979:244::-;;;;;;;;;;-1:-1:-1;45979:244:0;;;;;:::i;:::-;;:::i;38626:24::-;;;;;;;;;;;;;;;;38892:27;;;;;;;;;;;;;;;;38774:25;;;;;;;;;;;;;;;;20960:436;;;;;;;;;;-1:-1:-1;20960:436:0;;;;;:::i;:::-;;:::i;38099:29::-;;;;;;;;;;;;;;;;18007:193;;;;;;;;;;-1:-1:-1;18007:193:0;;;;;:::i;:::-;;:::i;46427:208::-;;;;;;;;;;-1:-1:-1;46427:208:0;;;;;:::i;:::-;;:::i;39295:58::-;;;;;;;;;;-1:-1:-1;39295:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38181:32;;;;;;;;;;-1:-1:-1;38181:32:0;;;;;;;;;;;45789:182;;;;;;;;;;-1:-1:-1;45789:182:0;;;;;:::i;:::-;;:::i;44982:376::-;;;;;;;;;;-1:-1:-1;44982:376:0;;;;;:::i;:::-;;:::i;44019:215::-;;;;;;;;;;-1:-1:-1;44019:215:0;;;;;:::i;:::-;;:::i;38470:39::-;;;;;;;;;;-1:-1:-1;38470:39:0;;;;;;;;37837:35;;;;;;;;;;;;;;;;42954:385;;;;;;;;;;-1:-1:-1;42954:385:0;;;;;:::i;:::-;;:::i;38518:27::-;;;;;;;;;;;;;;;;18263:151;;;;;;;;;;-1:-1:-1;18263:151:0;;;;;:::i;:::-;;:::i;37879:33::-;;;;;;;;;;;;;;;;42086:418;;;:::i;42745:134::-;;;;;;;;;;;;;:::i;38589:30::-;;;;;;;;;;;;;;;;10066:201;;;;;;;;;;-1:-1:-1;10066:201:0;;;;;:::i;:::-;;:::i;43351:414::-;;;;;;;;;;-1:-1:-1;43351:414:0;;;;;:::i;:::-;;:::i;38736:31::-;;;;;;;;;;;;;;;;37919:24;;;;;;;;;;;;;;;;16383:100;16437:13;16470:5;16463:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16383:100;:::o;18734:201::-;18817:4;7791:10;18873:32;7791:10;18889:7;18898:6;18873:8;:32::i;:::-;18923:4;18916:11;;;18734:201;;;;;:::o;45366:415::-;9046:13;:11;:13::i;:::-;45445:10:::1;:17:::0;;;45473:9:::1;:15:::0;;;45534:16:::1;::::0;45515::::1;::::0;45458:4;;45515:35:::1;::::0;::::1;:::i;:::-;:48;;;;:::i;:::-;45499:13;:64:::0;45625:9:::1;::::0;45607:15:::1;::::0;45589::::1;::::0;:33:::1;::::0;45607:15;45589:33:::1;:::i;:::-;:45;;;;:::i;:::-;45574:12;:60:::0;;;45669:1:::1;-1:-1:-1::0;45653:17:0::1;45645:58;;;;-1:-1:-1::0;;;45645:58:0::1;;;;;;;:::i;:::-;;;;;;;;;45739:1;45722:13;;:18;;45714:59;;;;-1:-1:-1::0;;;45714:59:0::1;;;;;;;:::i;:::-;45366:415:::0;;:::o;46647:157::-;9046:13;:11;:13::i;:::-;46754:9:::1;::::0;46726:38:::1;::::0;-1:-1:-1;;;;;46754:9:0;;::::1;::::0;46726:38;::::1;::::0;::::1;::::0;46754:9:::1;::::0;46726:38:::1;46775:9;:21:::0;;-1:-1:-1;;;;;;46775:21:0::1;-1:-1:-1::0;;;;;46775:21:0;;;::::1;::::0;;;::::1;::::0;;46647:157::o;43777:234::-;9046:13;:11;:13::i;:::-;43896:4:::1;43890;43870:13;17591:12:::0;;;17503:108;43870:13:::1;:17;::::0;43886:1:::1;43870:17;:::i;:::-;:24;;;;:::i;:::-;43869:31;;;;:::i;:::-;43859:6;:41;;43851:101;;;;-1:-1:-1::0;;;43851:101:0::1;;;;;;;:::i;:::-;43986:17;:6:::0;43996::::1;43986:17;:::i;:::-;43963:20;:40:::0;-1:-1:-1;43777:234:0:o;19515:295::-;19646:4;7791:10;19704:38;19720:4;7791:10;19735:6;19704:15;:38::i;:::-;19753:27;19763:4;19769:2;19773:6;19753:9;:27::i;:::-;-1:-1:-1;19798:4:0;;19515:295;-1:-1:-1;;;;19515:295:0:o;20219:238::-;20307:4;7791:10;20363:64;7791:10;20379:7;20416:10;20388:25;7791:10;20379:7;20388:9;:25::i;:::-;:38;;;;:::i;:::-;20363:8;:64::i;9808:103::-;9046:13;:11;:13::i;:::-;9873:30:::1;9900:1;9873:18;:30::i;:::-;9808:103::o:0;54190:447::-;9046:13;:11;:13::i;:::-;54344:3:::1;54321:19;:26;;54313:90;;;::::0;-1:-1:-1;;;54313:90:0;;6902:2:1;54313:90:0::1;::::0;::::1;6884:21:1::0;6941:2;6921:18;;;6914:30;6980:34;6960:18;;;6953:62;-1:-1:-1;;;7031:18:1;;;7024:49;7090:19;;54313:90:0::1;6700:415:1::0;54313:90:0::1;54434:4;54422:8;:16;;:33;;;;-1:-1:-1::0;54442:13:0;54422:33:::1;54414:94;;;::::0;-1:-1:-1;;;54414:94:0;;7322:2:1;54414:94:0::1;::::0;::::1;7304:21:1::0;7361:2;7341:18;;;7334:30;7400:34;7380:18;;;7373:62;-1:-1:-1;;;7451:18:1;;;7444:46;7507:19;;54414:94:0::1;7120:412:1::0;54414:94:0::1;54519:15;:37:::0;;;;54567:16:::1;:27:::0;54605:13:::1;:24:::0;;-1:-1:-1;;54605:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54190:447::o;42560:120::-;42612:4;9046:13;:11;:13::i;:::-;-1:-1:-1;42628:14:0::1;:22:::0;;-1:-1:-1;;42628:22:0::1;::::0;;;42560:120;:::o;44246:144::-;9046:13;:11;:13::i;:::-;-1:-1:-1;;;;;44336:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;44336:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44246:144::o;44603:367::-;9046:13;:11;:13::i;:::-;44719:15:::1;:31:::0;;;44761:15:::1;:31:::0;;;44803:9:::1;:19:::0;;;44815:7;44848:33:::1;44779:13:::0;44737;44848:33:::1;:::i;:::-;:45;;;;:::i;:::-;44833:12;:60:::0;;;44928:1:::1;-1:-1:-1::0;44912:17:0::1;44904:58;;;;-1:-1:-1::0;;;44904:58:0::1;;;;;;;:::i;:::-;44603:367:::0;;;:::o;44490:101::-;9046:13;:11;:13::i;:::-;44562:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44562:21:0;;::::1;::::0;;;::::1;::::0;;44490:101::o;16602:104::-;16658:13;16691:7;16684:14;;;;;:::i;45979:244::-;9046:13;:11;:13::i;:::-;46086::::1;::::0;-1:-1:-1;;;;;46086:13:0;;::::1;46078:21:::0;;::::1;::::0;46070:91:::1;;;::::0;-1:-1:-1;;;46070:91:0;;7739:2:1;46070:91:0::1;::::0;::::1;7721:21:1::0;7778:2;7758:18;;;7751:30;7817:34;7797:18;;;7790:62;7888:27;7868:18;;;7861:55;7933:19;;46070:91:0::1;7537:421:1::0;46070:91:0::1;46174:41;46203:4;46209:5;46174:28;:41::i;20960:436::-:0;21053:4;7791:10;21053:4;21136:25;7791:10;21153:7;21136:9;:25::i;:::-;21109:52;;21200:15;21180:16;:35;;21172:85;;;;-1:-1:-1;;;21172:85:0;;8165:2:1;21172:85:0;;;8147:21:1;8204:2;8184:18;;;8177:30;8243:34;8223:18;;;8216:62;-1:-1:-1;;;8294:18:1;;;8287:35;8339:19;;21172:85:0;7963:401:1;21172:85:0;21293:60;21302:5;21309:7;21337:15;21318:16;:34;21293:8;:60::i;18007:193::-;18086:4;7791:10;18142:28;7791:10;18159:2;18163:6;18142:9;:28::i;46427:208::-;9046:13;:11;:13::i;:::-;46564:15:::1;::::0;46521:59:::1;::::0;-1:-1:-1;;;;;46564:15:0;;::::1;::::0;46521:59;::::1;::::0;::::1;::::0;46564:15:::1;::::0;46521:59:::1;46591:15;:36:::0;;-1:-1:-1;;;;;;46591:36:0::1;-1:-1:-1::0;;;;;46591:36:0;;;::::1;::::0;;;::::1;::::0;;46427:208::o;45789:182::-;9046:13;:11;:13::i;:::-;-1:-1:-1;;;;;45874:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;45874:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45929:34;;1163:41:1;;;45929:34:0::1;::::0;1136:18:1;45929:34:0::1;;;;;;;45789:182:::0;;:::o;44982:376::-;9046:13;:11;:13::i;:::-;45099:16:::1;:32:::0;;;45142:16:::1;:32:::0;;;45185:10:::1;:20:::0;;;45198:7;45232:35:::1;45161:13:::0;45118;45232:35:::1;:::i;:::-;:48;;;;:::i;:::-;45216:13;:64:::0;;;45316:1:::1;-1:-1:-1::0;45299:18:0::1;45291:59;;;;-1:-1:-1::0;;;45291:59:0::1;;;;;;;:::i;44019:215::-:0;9046:13;:11;:13::i;:::-;44141:4:::1;44135;44115:13;17591:12:::0;;;17503:108;44115:13:::1;:17;::::0;44131:1:::1;44115:17;:::i;:::-;:24;;;;:::i;:::-;44114:31;;;;:::i;:::-;44104:6;:41;;44096:90;;;;-1:-1:-1::0;;;44096:90:0::1;;;;;;;:::i;:::-;44209:17;:6:::0;44219::::1;44209:17;:::i;:::-;44197:9;:29:::0;-1:-1:-1;44019:215:0:o;42954:385::-;43035:4;9046:13;:11;:13::i;:::-;43092:6:::1;43072:13;17591:12:::0;;;17503:108;43072:13:::1;:17;::::0;43088:1:::1;43072:17;:::i;:::-;:26;;;;:::i;:::-;43059:9;:39;;43051:105;;;::::0;-1:-1:-1;;;43051:105:0;;8976:2:1;43051:105:0::1;::::0;::::1;8958:21:1::0;9015:2;8995:18;;;8988:30;9054:34;9034:18;;;9027:62;-1:-1:-1;;;9105:18:1;;;9098:51;9166:19;;43051:105:0::1;8774:417:1::0;43051:105:0::1;43209:4;43188:13;17591:12:::0;;;17503:108;43188:13:::1;:18;::::0;43204:2:::1;43188:18;:::i;:::-;:25;;;;:::i;:::-;43175:9;:38;;43167:101;;;::::0;-1:-1:-1;;;43167:101:0;;9398:2:1;43167:101:0::1;::::0;::::1;9380:21:1::0;9437:2;9417:18;;;9410:30;9476:34;9456:18;;;9449:62;-1:-1:-1;;;9527:18:1;;;9520:48;9585:19;;43167:101:0::1;9196:414:1::0;43167:101:0::1;-1:-1:-1::0;43279:18:0::1;:30:::0;;;43327:4:::1;9070:1;42954:385:::0;;;:::o;18263:151::-;-1:-1:-1;;;;;18379:18:0;;;18352:7;18379:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18263:151::o;42086:418::-;9046:13;:11;:13::i;:::-;42148::::1;:20:::0;;-1:-1:-1;;42148:20:0::1;;;::::0;;42223:25:::1;::::0;;-1:-1:-1;;;42223:25:0;;;;-1:-1:-1;;;;;42223:15:0::1;:23;::::0;::::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:23;:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42205:55:0::1;;42269:4;42276:15;-1:-1:-1::0;;;;;42276:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42205:94;::::0;-1:-1:-1;;;;;;42205:94:0::1;::::0;;;;;;-1:-1:-1;;;;;10101:15:1;;;42205:94:0::1;::::0;::::1;10083:34:1::0;10153:15;;10133:18;;;10126:43;10018:18;;42205:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42189:13;:110:::0;;-1:-1:-1;;;;;;42189:110:0::1;-1:-1:-1::0;;;;;42189:110:0;;;::::1;::::0;;::::1;::::0;;42310:55:::1;::::0;-1:-1:-1;42310:25:0::1;:55::i;:::-;42413:13;::::0;42376:58:::1;::::0;-1:-1:-1;;;;;42413:13:0::1;::::0;42376:28:::1;:58::i;:::-;42478:4;17748:7:::0;17775:18;;;;;;;;;;;42447:49:::1;::::0;42486:9:::1;42447:12;:49::i;42745:134::-:0;42805:4;9046:13;:11;:13::i;:::-;-1:-1:-1;42821:20:0::1;:28:::0;;-1:-1:-1;;42821:28:0::1;::::0;;;42745:134;:::o;10066:201::-;9046:13;:11;:13::i;:::-;-1:-1:-1;;;;;10155:22:0;::::1;10147:73;;;::::0;-1:-1:-1;;;10147:73:0;;10382:2:1;10147:73:0::1;::::0;::::1;10364:21:1::0;10421:2;10401:18;;;10394:30;10460:34;10440:18;;;10433:62;-1:-1:-1;;;10511:18:1;;;10504:36;10557:19;;10147:73:0::1;10180:402:1::0;10147:73:0::1;10231:28;10250:8;10231:18;:28::i;:::-;10066:201:::0;:::o;43351:414::-;9046:13;:11;:13::i;:::-;43493:4:::1;43487;43467:13;17591:12:::0;;;17503:108;43467:13:::1;:17;::::0;43483:1:::1;43467:17;:::i;:::-;:24;;;;:::i;:::-;43466:31;;;;:::i;:::-;43454:8;:43;;43446:103;;;;-1:-1:-1::0;;;43446:103:0::1;;;;;;;:::i;:::-;43583:19;:8:::0;43595:6:::1;43583:19;:::i;:::-;43560:20;:42:::0;43666:4:::1;43660;43640:13;17591:12:::0;;;17503:108;43640:13:::1;:17;::::0;43656:1:::1;43640:17;:::i;:::-;:24;;;;:::i;:::-;43639:31;;;;:::i;:::-;43623:12;:47;;43615:96;;;;-1:-1:-1::0;;;43615:96:0::1;;;;;;;:::i;:::-;43734:23;:12:::0;43750:6:::1;43734:23;:::i;:::-;43722:9;:35:::0;-1:-1:-1;;43351:414:0:o;24987:380::-;-1:-1:-1;;;;;25123:19:0;;25115:68;;;;-1:-1:-1;;;25115:68:0;;10789:2:1;25115:68:0;;;10771:21:1;10828:2;10808:18;;;10801:30;10867:34;10847:18;;;10840:62;-1:-1:-1;;;10918:18:1;;;10911:34;10962:19;;25115:68:0;10587:400:1;25115:68:0;-1:-1:-1;;;;;25202:21:0;;25194:68;;;;-1:-1:-1;;;25194:68:0;;11194:2:1;25194:68:0;;;11176:21:1;11233:2;11213:18;;;11206:30;11272:34;11252:18;;;11245:62;-1:-1:-1;;;11323:18:1;;;11316:32;11365:19;;25194:68:0;10992:398:1;25194:68:0;-1:-1:-1;;;;;25275:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25327:32;;2101:25:1;;;25327:32:0;;2074:18:1;25327:32:0;;;;;;;24987:380;;;:::o;9325:132::-;9233:6;;-1:-1:-1;;;;;9233:6:0;7791:10;9389:23;9381:68;;;;-1:-1:-1;;;9381:68:0;;11597:2:1;9381:68:0;;;11579:21:1;;;11616:18;;;11609:30;11675:34;11655:18;;;11648:62;11727:18;;9381:68:0;11395:356:1;25658:453:0;25793:24;25820:25;25830:5;25837:7;25820:9;:25::i;:::-;25793:52;;-1:-1:-1;;25860:16:0;:37;25856:248;;25942:6;25922:16;:26;;25914:68;;;;-1:-1:-1;;;25914:68:0;;11958:2:1;25914:68:0;;;11940:21:1;11997:2;11977:18;;;11970:30;12036:31;12016:18;;;12009:59;12085:18;;25914:68:0;11756:353:1;25914:68:0;26026:51;26035:5;26042:7;26070:6;26051:16;:25;26026:8;:51::i;:::-;25782:329;25658:453;;;:::o;46949:4418::-;-1:-1:-1;;;;;47081:18:0;;47073:68;;;;-1:-1:-1;;;47073:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47160:16:0;;47152:64;;;;-1:-1:-1;;;47152:64:0;;;;;;;:::i;:::-;47241:6;47251:1;47241:11;47238:92;;47269:28;47285:4;47291:2;47295:1;47269:15;:28::i;47238:92::-;47353:14;;;;47350:1841;;;9233:6;;-1:-1:-1;;;;;47405:15:0;;;9233:6;;47405:15;;;;:49;;-1:-1:-1;9233:6:0;;-1:-1:-1;;;;;47441:13:0;;;9233:6;;47441:13;;47405:49;:86;;;;-1:-1:-1;;;;;;47475:16:0;;;;47405:86;:128;;;;-1:-1:-1;;;;;;47512:21:0;;47526:6;47512:21;;47405:128;:158;;;;-1:-1:-1;47555:8:0;;-1:-1:-1;;;47555:8:0;;;;47554:9;47405:158;47383:1797;;;47601:13;;;;;;;47597:148;;-1:-1:-1;;;;;47646:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;47675:23:0;;;;;;:19;:23;;;;;;;;47646:52;47638:87;;;;-1:-1:-1;;;47638:87:0;;13126:2:1;47638:87:0;;;13108:21:1;13165:2;13145:18;;;13138:30;-1:-1:-1;;;13184:18:1;;;13177:52;13246:18;;47638:87:0;12924:346:1;47638:87:0;47903:20;;;;47899:423;;;9233:6;;-1:-1:-1;;;;;47951:13:0;;;9233:6;;47951:13;;;;:47;;;47982:15;-1:-1:-1;;;;;47968:30:0;:2;-1:-1:-1;;;;;47968:30:0;;;47951:47;:79;;;;-1:-1:-1;48016:13:0;;-1:-1:-1;;;;;48002:28:0;;;48016:13;;48002:28;;47951:79;47947:356;;;48095:9;48066:39;;;;:28;:39;;;;;;48108:12;-1:-1:-1;48058:140:0;;;;-1:-1:-1;;;48058:140:0;;13477:2:1;48058:140:0;;;13459:21:1;13516:2;13496:18;;;13489:30;13555:34;13535:18;;;13528:62;13626:34;13606:18;;;13599:62;-1:-1:-1;;;13677:19:1;;;13670:40;13727:19;;48058:140:0;13275:477:1;48058:140:0;48254:9;48225:39;;;;:28;:39;;;;;48267:12;48225:54;;47947:356;-1:-1:-1;;;;;48391:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;48427:35:0;;;;;;:31;:35;;;;;;;;48426:36;48391:71;48387:778;;;48509:20;;48499:6;:30;;48491:96;;;;-1:-1:-1;;;48491:96:0;;13959:2:1;48491:96:0;;;13941:21:1;13998:2;13978:18;;;13971:30;14037:34;14017:18;;;14010:62;-1:-1:-1;;;14088:18:1;;;14081:51;14149:19;;48491:96:0;13757:417:1;48491:96:0;48648:9;;-1:-1:-1;;;;;17775:18:0;;17748:7;17775:18;;;;;;;;;;;48622:22;;:6;:22;:::i;:::-;:35;;48614:67;;;;-1:-1:-1;;;48614:67:0;;14381:2:1;48614:67:0;;;14363:21:1;14420:2;14400:18;;;14393:30;-1:-1:-1;;;14439:18:1;;;14432:49;14498:18;;48614:67:0;14179:343:1;48614:67:0;48387:778;;;-1:-1:-1;;;;;48775:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;48809:37:0;;;;;;:31;:37;;;;;;;;48808:38;48775:71;48771:394;;;48893:20;;48883:6;:30;;48875:97;;;;-1:-1:-1;;;48875:97:0;;14729:2:1;48875:97:0;;;14711:21:1;14768:2;14748:18;;;14741:30;14807:34;14787:18;;;14780:62;-1:-1:-1;;;14858:18:1;;;14851:52;14920:19;;48875:97:0;14527:418:1;48771:394:0;-1:-1:-1;;;;;49019:35:0;;;;;;:31;:35;;;;;;;;49015:150;;49112:9;;-1:-1:-1;;;;;17775:18:0;;17748:7;17775:18;;;;;;;;;;;49086:22;;:6;:22;:::i;:::-;:35;;49078:67;;;;-1:-1:-1;;;49078:67:0;;14381:2:1;49078:67:0;;;14363:21:1;14420:2;14400:18;;;14393:30;-1:-1:-1;;;14439:18:1;;;14432:49;14498:18;;49078:67:0;14179:343:1;49078:67:0;49270:4;49221:28;17775:18;;;;;;;;;;;49336;;49312:42;;;;;;;49385:35;;-1:-1:-1;49409:11:0;;;;;;;49385:35;:61;;;;-1:-1:-1;49438:8:0;;-1:-1:-1;;;49438:8:0;;;;49437:9;49385:61;:110;;;;-1:-1:-1;;;;;;49464:31:0;;;;;;:25;:31;;;;;;;;49463:32;49385:110;:153;;;;-1:-1:-1;;;;;;49513:25:0;;;;;;:19;:25;;;;;;;;49512:26;49385:153;:194;;;;-1:-1:-1;;;;;;49556:23:0;;;;;;:19;:23;;;;;;;;49555:24;49385:194;49367:338;;;49606:8;:15;;-1:-1:-1;;;;49606:15:0;-1:-1:-1;;;49606:15:0;;;49650:10;:8;:10::i;:::-;49677:8;:16;;-1:-1:-1;;;;49677:16:0;;;49367:338;-1:-1:-1;;;;;49720:31:0;;;;;;:25;:31;;;;;;;;:58;;;;-1:-1:-1;;;;;;49755:23:0;;;;;;:19;:23;;;;;;;;49720:58;49717:81;;;49780:11;:18;;-1:-1:-1;;49780:18:0;;;;;49717:81;49813:8;;-1:-1:-1;;;49813:8:0;;;;49812:9;:42;;;;-1:-1:-1;;;;;;49825:29:0;;;;;;:25;:29;;;;;;;;49812:42;:57;;;;-1:-1:-1;49858:11:0;;;;;;;49812:57;:112;;;;;49909:15;;49892:14;;:32;;;;:::i;:::-;49873:15;:51;;49812:112;49809:172;;;49940:29;:27;:29::i;:::-;;49809:172;50009:8;;-1:-1:-1;;;;;50118:25:0;;49993:12;50118:25;;;:19;:25;;;;;;50009:8;-1:-1:-1;;;50009:8:0;;;;;50008:9;;50118:25;;:52;;-1:-1:-1;;;;;;50147:23:0;;;;;;:19;:23;;;;;;;;50118:52;50115:99;;;-1:-1:-1;50197:5:0;50115:99;50234:12;50338:7;50335:979;;;-1:-1:-1;;;;;50389:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;50438:1;50422:13;;:17;50389:50;50385:754;;;50466:34;50496:3;50466:25;50477:13;;50466:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;50459:41;;50567:13;;50548:16;;50541:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;50519:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;50635:13:0;;50622:10;;50615:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;50599:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;50715:13:0;;50696:16;;50689:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;50667:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;50385:754:0;;-1:-1:-1;50385:754:0;;-1:-1:-1;;;;;50789:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;50839:1;50824:12;;:16;50789:51;50786:353;;;50868:33;50897:3;50868:24;50879:12;;50868:6;:10;;:24;;;;:::i;:33::-;50861:40;;50967:12;;50949:15;;50942:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;50920:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;51033:12:0;;51021:9;;51014:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;50998:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;51111:12:0;;51093:15;;51086:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;51064:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;50786:353:0;51170:8;;51167:93;;51202:42;51218:4;51232;51239;51202:15;:42::i;:::-;51288:14;51298:4;51288:14;;:::i;:::-;;;50335:979;51326:33;51342:4;51348:2;51352:6;51326:15;:33::i;:::-;47062:4305;;;;46949:4418;;;:::o;10427:191::-;10520:6;;;-1:-1:-1;;;;;10537:17:0;;;-1:-1:-1;;;;;;10537:17:0;;;;;;;10570:40;;10520:6;;;10537:17;10520:6;;10570:40;;10501:16;;10570:40;10490:128;10427:191;:::o;46231:188::-;-1:-1:-1;;;;;46314:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;46314:39:0;;;;;;;;;;46371:40;;46314:39;;:31;46371:40;;;46231:188;;:::o;51988:533::-;52136:62;52153:4;52168:15;52186:11;52136:8;:62::i;:::-;-1:-1:-1;;;;;52241:15:0;:31;;52280:9;52313:4;52333:28;52357:3;52333:19;:11;52349:2;52333:15;:19::i;:28::-;52241:272;;-1:-1:-1;;;;;;52241:272:0;;;;;;;-1:-1:-1;;;;;15442:15:1;;;52241:272:0;;;15424:34:1;15474:18;;;15467:34;52376:1:0;15517:18:1;;;15510:34;;;15560:18;;;15553:34;52462:10:0;15603:19:1;;;15596:44;52487:15:0;15656:19:1;;;15649:35;15358:19;;52241:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;51988:533;;:::o;21866:840::-;-1:-1:-1;;;;;21997:18:0;;21989:68;;;;-1:-1:-1;;;21989:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22076:16:0;;22068:64;;;;-1:-1:-1;;;22068:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22218:15:0;;22196:19;22218:15;;;;;;;;;;;22252:21;;;;22244:72;;;;-1:-1:-1;;;22244:72:0;;16208:2:1;22244:72:0;;;16190:21:1;16247:2;16227:18;;;16220:30;16286:34;16266:18;;;16259:62;-1:-1:-1;;;16337:18:1;;;16330:36;16383:19;;22244:72:0;16006:402:1;22244:72:0;-1:-1:-1;;;;;22352:15:0;;;:9;:15;;;;;;;;;;;22370:20;;;22352:38;;22570:13;;;;;;;;;;:23;;;;;;22622:26;;2101:25:1;;;22570:13:0;;22622:26;;2074:18:1;22622:26:0;;;;;;;22661:37;44603:367;52529:1649;52612:4;52568:23;17775:18;;;;;;;;;;;52568:50;;52629:25;52699:12;;52678:18;;52657;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;52629:82;-1:-1:-1;52722:12:0;52758:20;;;:46;;-1:-1:-1;52782:22:0;;52758:46;52755:60;;;52807:7;;;52529:1649::o;52755:60::-;52848:18;;52830:15;:36;52827:102;;;52898:19;:15;52916:1;52898:19;:::i;:::-;52880:37;;52827:102;52998:23;53083:1;53063:17;53042:18;;53024:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;52998:86;-1:-1:-1;53095:26:0;53124:36;:15;52998:86;53124:19;:36::i;:::-;53095:65;-1:-1:-1;53209:21:0;53243:36;53095:65;53243:16;:36::i;:::-;53293:18;53314:44;:21;53340:17;53314:25;:44::i;:::-;53293:65;;53379:23;53405:57;53444:17;53405:34;53420:18;;53405:10;:14;;:34;;;;:::i;:57::-;53379:83;;53473:17;53493:51;53526:17;53493:28;53508:12;;53493:10;:14;;:28;;;;:::i;:51::-;53473:71;-1:-1:-1;53575:23:0;53473:71;53601:28;53614:15;53601:10;:28;:::i;:::-;:40;;;;:::i;:::-;53693:1;53672:18;:22;;;53705:18;:22;;;53738:12;:16;;;53796:9;;53788:45;;53575:66;;-1:-1:-1;;;;;;53796:9:0;;53819;;53788:45;53693:1;53788:45;53819:9;53796;53788:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53775:58:0;;-1:-1:-1;;53857:19:0;;;;;:42;;;53898:1;53880:15;:19;53857:42;53854:210;;;53915:46;53928:15;53945;53915:12;:46::i;:::-;54033:18;;53981:71;;;16825:25:1;;;16881:2;16866:18;;16859:34;;;16909:18;;;16902:34;;;;53981:71:0;;;;;;16813:2:1;53981:71:0;;;53854:210;54115:15;;54107:63;;-1:-1:-1;;;;;54115:15:0;;;;54144:21;;54107:63;;;;54144:21;54115:15;54107:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;52529:1649:0:o;54649:803::-;54749:15;54732:14;:32;54873:13;;54858:29;;-1:-1:-1;;;54858:29:0;;-1:-1:-1;;;;;54873:13:0;;;54858:29;;;1893:51:1;54706:4:0;;;;54858;;:14;;1866:18:1;;54858:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54827:60;;54945:20;54968:52;54993:26;55014:4;54993:16;;:20;;:26;;;;:::i;:::-;54968:20;;:24;:52::i;:::-;54945:75;-1:-1:-1;55133:16:0;;55129:109;;55181:13;;55165:61;;-1:-1:-1;;;;;55181:13:0;55204:6;55213:12;55165:15;:61::i;:::-;55358:13;;55383:11;;;-1:-1:-1;;;;;;55383:11:0;;;;-1:-1:-1;;;;;55358:13:0;;;;;;55383:9;;:11;;;;;55321:19;;55383:11;;;;;;;55321:19;55358:13;55383:11;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55410:12:0;;;;-1:-1:-1;55410:12:0;;-1:-1:-1;55410:12:0;55440:4;55433:11;;;;;54649:803;:::o;3605:98::-;3663:7;3690:5;3694:1;3690;:5;:::i;:::-;3683:12;3605:98;-1:-1:-1;;;3605:98:0:o;4004:::-;4062:7;4089:5;4093:1;4089;:5;:::i;3248:98::-;3306:7;3333:5;3337:1;3333;:5;:::i;51375:601::-;51527:16;;;51541:1;51527:16;;;;;;;;51503:21;;51527:16;;;;;;;;;;-1:-1:-1;51527:16:0;51503:40;;51572:4;51554;51559:1;51554:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;51554:23:0;;;-1:-1:-1;;;;;51554:23:0;;;;;51598:15;-1:-1:-1;;;;;51598:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51588:4;51593:1;51588:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;51588:32:0;;;-1:-1:-1;;;;;51588:32:0;;;;;51633:62;51650:4;51665:15;51683:11;51633:8;:62::i;:::-;51734:224;;-1:-1:-1;;;51734:224:0;;-1:-1:-1;;;;;51734:15:0;:66;;;;:224;;51815:11;;51841:1;;51885:4;;51912;;51932:15;;51734:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51430:546;51375:601;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:248::-;1283:6;1291;1344:2;1332:9;1323:7;1319:23;1315:32;1312:52;;;1360:1;1357;1350:12;1312:52;-1:-1:-1;;1383:23:1;;;1453:2;1438:18;;;1425:32;;-1:-1:-1;1215:248:1:o;1468:247::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;1635:9;1622:23;1654:31;1679:5;1654:31;:::i;2137:180::-;2196:6;2249:2;2237:9;2228:7;2224:23;2220:32;2217:52;;;2265:1;2262;2255:12;2217:52;-1:-1:-1;2288:23:1;;2137:180;-1:-1:-1;2137:180:1:o;2322:456::-;2399:6;2407;2415;2468:2;2456:9;2447:7;2443:23;2439:32;2436:52;;;2484:1;2481;2474:12;2436:52;2523:9;2510:23;2542:31;2567:5;2542:31;:::i;:::-;2592:5;-1:-1:-1;2649:2:1;2634:18;;2621:32;2662:33;2621:32;2662:33;:::i;:::-;2322:456;;2714:7;;-1:-1:-1;;;2768:2:1;2753:18;;;;2740:32;;2322:456::o;3180:160::-;3245:20;;3301:13;;3294:21;3284:32;;3274:60;;3330:1;3327;3320:12;3345:316;3419:6;3427;3435;3488:2;3476:9;3467:7;3463:23;3459:32;3456:52;;;3504:1;3501;3494:12;3456:52;3540:9;3527:23;3517:33;;3597:2;3586:9;3582:18;3569:32;3559:42;;3620:35;3651:2;3640:9;3636:18;3620:35;:::i;:::-;3610:45;;3345:316;;;;;:::o;3666:315::-;3731:6;3739;3792:2;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3847:9;3834:23;3866:31;3891:5;3866:31;:::i;:::-;3916:5;-1:-1:-1;3940:35:1;3971:2;3956:18;;3940:35;:::i;:::-;3930:45;;3666:315;;;;;:::o;3986:316::-;4063:6;4071;4079;4132:2;4120:9;4111:7;4107:23;4103:32;4100:52;;;4148:1;4145;4138:12;4100:52;-1:-1:-1;;4171:23:1;;;4241:2;4226:18;;4213:32;;-1:-1:-1;4292:2:1;4277:18;;;4264:32;;3986:316;-1:-1:-1;3986:316:1:o;4307:180::-;4363:6;4416:2;4404:9;4395:7;4391:23;4387:32;4384:52;;;4432:1;4429;4422:12;4384:52;4455:26;4471:9;4455:26;:::i;4492:388::-;4560:6;4568;4621:2;4609:9;4600:7;4596:23;4592:32;4589:52;;;4637:1;4634;4627:12;4589:52;4676:9;4663:23;4695:31;4720:5;4695:31;:::i;:::-;4745:5;-1:-1:-1;4802:2:1;4787:18;;4774:32;4815:33;4774:32;4815:33;:::i;:::-;4867:7;4857:17;;;4492:388;;;;;:::o;4885:380::-;4964:1;4960:12;;;;5007;;;5028:61;;5082:4;5074:6;5070:17;5060:27;;5028:61;5135:2;5127:6;5124:14;5104:18;5101:38;5098:161;;5181:10;5176:3;5172:20;5169:1;5162:31;5216:4;5213:1;5206:15;5244:4;5241:1;5234:15;5098:161;;4885:380;;;:::o;5270:127::-;5331:10;5326:3;5322:20;5319:1;5312:31;5362:4;5359:1;5352:15;5386:4;5383:1;5376:15;5402:125;5467:9;;;5488:10;;;5485:36;;;5501:18;;:::i;5532:352::-;5734:2;5716:21;;;5773:2;5753:18;;;5746:30;5812;5807:2;5792:18;;5785:58;5875:2;5860:18;;5532:352::o;5889:168::-;5962:9;;;5993;;6010:15;;;6004:22;;5990:37;5980:71;;6031:18;;:::i;6062:217::-;6102:1;6128;6118:132;;6172:10;6167:3;6163:20;6160:1;6153:31;6207:4;6204:1;6197:15;6235:4;6232:1;6225:15;6118:132;-1:-1:-1;6264:9:1;;6062:217::o;6284:411::-;6486:2;6468:21;;;6525:2;6505:18;;;6498:30;6564:34;6559:2;6544:18;;6537:62;-1:-1:-1;;;6630:2:1;6615:18;;6608:45;6685:3;6670:19;;6284:411::o;8369:400::-;8571:2;8553:21;;;8610:2;8590:18;;;8583:30;8649:34;8644:2;8629:18;;8622:62;-1:-1:-1;;;8715:2:1;8700:18;;8693:34;8759:3;8744:19;;8369:400::o;9615:251::-;9685:6;9738:2;9726:9;9717:7;9713:23;9709:32;9706:52;;;9754:1;9751;9744:12;9706:52;9786:9;9780:16;9805:31;9830:5;9805:31;:::i;12114:401::-;12316:2;12298:21;;;12355:2;12335:18;;;12328:30;12394:34;12389:2;12374:18;;12367:62;-1:-1:-1;;;12460:2:1;12445:18;;12438:35;12505:3;12490:19;;12114:401::o;12520:399::-;12722:2;12704:21;;;12761:2;12741:18;;;12734:30;12800:34;12795:2;12780:18;;12773:62;-1:-1:-1;;;12866:2:1;12851:18;;12844:33;12909:3;12894:19;;12520:399::o;14950:128::-;15017:9;;;15038:11;;;15035:37;;;15052:18;;:::i;15695:306::-;15783:6;15791;15799;15852:2;15840:9;15831:7;15827:23;15823:32;15820:52;;;15868:1;15865;15858:12;15820:52;15897:9;15891:16;15881:26;;15947:2;15936:9;15932:18;15926:25;15916:35;;15991:2;15980:9;15976:18;15970:25;15960:35;;15695:306;;;;;:::o;16947:184::-;17017:6;17070:2;17058:9;17049:7;17045:23;17041:32;17038:52;;;17086:1;17083;17076:12;17038:52;-1:-1:-1;17109:16:1;;16947:184;-1:-1:-1;16947:184:1:o;17268:127::-;17329:10;17324:3;17320:20;17317:1;17310:31;17360:4;17357:1;17350:15;17384:4;17381:1;17374:15;17400:980;17662:4;17710:3;17699:9;17695:19;17741:6;17730:9;17723:25;17767:2;17805:6;17800:2;17789:9;17785:18;17778:34;17848:3;17843:2;17832:9;17828:18;17821:31;17872:6;17907;17901:13;17938:6;17930;17923:22;17976:3;17965:9;17961:19;17954:26;;18015:2;18007:6;18003:15;17989:29;;18036:1;18046:195;18060:6;18057:1;18054:13;18046:195;;;18125:13;;-1:-1:-1;;;;;18121:39:1;18109:52;;18216:15;;;;18181:12;;;;18157:1;18075:9;18046:195;;;-1:-1:-1;;;;;;;18297:32:1;;;;18292:2;18277:18;;18270:60;-1:-1:-1;;;18361:3:1;18346:19;18339:35;18258:3;17400:980;-1:-1:-1;;;17400:980:1:o

Swarm Source

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