ETH Price: $2,457.61 (+0.79%)

Token

BananaBot.VIP (BBOT)
 

Overview

Max Total Supply

1,000,000,000 BBOT

Holders

31

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,500,000 BBOT

Value
$0.00
0x38d671409156608fe1dd66c2d1ac9936ff973ef3
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:
BananaBot

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-12
*/

/**
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
                                                            
                                ████                        
                              ████████                      
                              ██░░░░██                      
                              ██░░░░████                    
                              ██░░░░░░████                  
                              ██░░░░░░░░██                  
                              ██░░░░░░░░████                
                              ██░░░░░░░░░░██                
                          ██████████░░░░░░████              
                        ██  ██      ██░░░░░░██              
                        ████████    ██░░░░░░██              
                        ██  ██      ██░░░░░░██              
                          ██████████░░░░██░░██              
                            ██░░░░░░██████░░██              
                            ████████▓▓▓▓██░░██              
                              ██▓▓▓▓▓▓██░░░░██              
                              ██▓▓████░░░░░░████████        
                ██████      ██████░░░░░░░░████      ██      
              ██      ████  ██░░░░░░░░░░░░██        ██      
              ██        ██  ██░░░░░░░░░░██████      ██      
              ██      ██████░░░░░░░░░░░░██  ████████        
                ██████    ██░░░░░░░░░░██      ██            
                    ██  ██░░░░░░░░░░██    ██████            
                    ████░░░░░░░░░░██████████                
                  ████████░░░░████████████                  
              ████████  ████████      ████████              
            ██      ████            ████      ██            
            ██          ██        ██          ██            
              ████████████        ████████████              

    Telegram - @Banana_Portal
    Website - https://www.BananaBot.VIP
    Bot - https://t.me/+GRp9ZrzEmoUzMmRl

*/

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

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

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("BananaBot.VIP", "BBOT") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 10;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 15;

        uint256 _sellMarketingFee = 10;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 15;

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

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

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

        marketingWallet = address(0x66711A86edd6531208800d4Bf225A439F83d7418); // set as marketing wallet
        devWallet = address(0x66711A86edd6531208800d4Bf225A439F83d7418); // set as dev wallet

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

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

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

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

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"disableBanana","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b55600c8054600160ff199182168117909255610e10600d55610708600f556011805462ffffff1916831790556013805490911690911790553480156200004d57600080fd5b50604080518082018252600d81526c042616e616e61426f742e56495609c1b602080830191825283518085019094526004845263109093d560e21b9084015281519192916200009f916003916200068f565b508051620000b59060049060208401906200068f565b505050620000d2620000cc620003dd60201b60201c565b620003e1565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f481600162000433565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000165919062000735565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d9919062000735565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000227573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024d919062000735565b6001600160a01b031660a08190526200026890600162000433565b60a05162000278906001620004ac565b6a084595161401484a0000006008819055600a9081556000600f8282826b033b2e3c9fd0803ce8000000612710620002b28260056200077d565b620002be91906200079f565b60095560158790556016869055601785905584620002dd8789620007c2565b620002e99190620007c2565b6014556019849055601a839055601b82905581620003088486620007c2565b620003149190620007c2565b601855600680547366711a86edd6531208800d4bf225a439f83d74186001600160a01b031991821681179092556007805490911690911790556200036c620003646005546001600160a01b031690565b600162000500565b6200037930600162000500565b6200038861dead600162000500565b620003a76200039f6005546001600160a01b031690565b600162000433565b620003b430600162000433565b620003c361dead600162000433565b620003cf3382620005aa565b50505050505050506200081a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004825760405162461bcd60e51b815260206004820181905260248201526000805160206200394983398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200054b5760405162461bcd60e51b8152602060048201819052602482015260008051602062003949833981519152604482015260640162000479565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006025760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000479565b8060026000828254620006169190620007c2565b90915550506001600160a01b0382166000908152602081905260408120805483929062000645908490620007c2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200069d90620007dd565b90600052602060002090601f016020900481019282620006c157600085556200070c565b82601f10620006dc57805160ff19168380011785556200070c565b828001600101855582156200070c579182015b828111156200070c578251825591602001919060010190620006ef565b506200071a9291506200071e565b5090565b5b808211156200071a57600081556001016200071f565b6000602082840312156200074857600080fd5b81516001600160a01b03811681146200076057600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200079a576200079a62000767565b500290565b600082620007bd57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007d857620007d862000767565b500190565b600181811c90821680620007f257607f821691505b602082108114156200081457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516130a7620008a26000396000818161061501528181611175015281816118030152818161189e015281816118ca01528181611c6c015281816127df0152818161288101526128ad01526000818161045901528181611c2e015281816129b701528181612a7001528181612aac01528181612b260152612b8301526130a76000f3fe6080604052600436106103b15760003560e01c80638a8c523c116101e7578063b62496f51161010d578063d85ba063116100a0578063f2fde38b1161006f578063f2fde38b14610ac9578063f637434214610ae9578063f8b45b0514610aff578063fe72b27a14610b1557600080fd5b8063d85ba06314610a41578063dd62ed3e14610a57578063e2f4560514610a9d578063f11a24d314610ab357600080fd5b8063c18bc195116100dc578063c18bc195146109d1578063c876d0b9146109f1578063c8c8ebe414610a0b578063d257b34f14610a2157600080fd5b8063b62496f514610942578063bbc0c74214610972578063c024666814610991578063c17b5b8c146109b157600080fd5b80639c3b4fdc11610185578063a457c2d711610154578063a457c2d7146108cc578063a4c82a00146108ec578063a9059cbb14610902578063aacebbe31461092257600080fd5b80639c3b4fdc146108745780639ec22c0e1461088a5780639fccce32146108a0578063a0d82dc5146108b657600080fd5b806392136913116101c15780639213691314610809578063924de9b71461081f57806395d89b411461083f5780639a7a23d61461085457600080fd5b80638a8c523c146107b65780638da5cb5b146107cb5780638ea5220f146107e957600080fd5b8063313ce567116102d757806370a082311161026a5780637571336a116102395780637571336a1461074057806375f0a874146107605780637bce5a04146107805780638095d5641461079657600080fd5b806370a08231146106c0578063715018a6146106f6578063730c18881461070b578063751039fc1461072b57600080fd5b80634a62bb65116102a65780634a62bb65146106375780634fbee193146106515780636a486a8e1461068a5780636ddd1713146106a057600080fd5b8063313ce567146105b257806331f8397d146105ce57806339509351146105e357806349bd5a5e1461060357600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104935780631816467f146104b2578063184c16c5146104d457600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b35565b6040516103df9190612c01565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612c6b565b610bc7565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004612c97565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103df565b34801561049f57600080fd5b506002545b6040519081526020016103df565b3480156104be57600080fd5b506104d26104cd366004612c97565b610bdd565b005b3480156104e057600080fd5b506104a4600f5481565b3480156104f657600080fd5b506104a4600b5481565b34801561050c57600080fd5b506104a4601d5481565b34801561052257600080fd5b506104a4601c5481565b34801561053857600080fd5b506104d2610547366004612cb4565b610c6d565b34801561055857600080fd5b50610408610567366004612ccd565b610d4a565b34801561057857600080fd5b5061047b61dead81565b34801561058e57600080fd5b506104a4600d5481565b3480156105a457600080fd5b50600c546104089060ff1681565b3480156105be57600080fd5b50604051601281526020016103df565b3480156105da57600080fd5b50610408610df4565b3480156105ef57600080fd5b506104086105fe366004612c6b565b610e31565b34801561060f57600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561064357600080fd5b506011546104089060ff1681565b34801561065d57600080fd5b5061040861066c366004612c97565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561069657600080fd5b506104a460185481565b3480156106ac57600080fd5b506011546104089062010000900460ff1681565b3480156106cc57600080fd5b506104a46106db366004612c97565b6001600160a01b031660009081526020819052604090205490565b34801561070257600080fd5b506104d2610e6d565b34801561071757600080fd5b506104d2610726366004612d1e565b610ea3565b34801561073757600080fd5b50610408610fcc565b34801561074c57600080fd5b506104d261075b366004612d53565b611009565b34801561076c57600080fd5b5060065461047b906001600160a01b031681565b34801561078c57600080fd5b506104a460155481565b3480156107a257600080fd5b506104d26107b1366004612d88565b61105d565b3480156107c257600080fd5b506104d26110b3565b3480156107d757600080fd5b506005546001600160a01b031661047b565b3480156107f557600080fd5b5060075461047b906001600160a01b031681565b34801561081557600080fd5b506104a460195481565b34801561082b57600080fd5b506104d261083a366004612db4565b6110f4565b34801561084b57600080fd5b506103d261113a565b34801561086057600080fd5b506104d261086f366004612d53565b611149565b34801561088057600080fd5b506104a460175481565b34801561089657600080fd5b506104a460105481565b3480156108ac57600080fd5b506104a4601e5481565b3480156108c257600080fd5b506104a4601b5481565b3480156108d857600080fd5b506104086108e7366004612c6b565b611229565b3480156108f857600080fd5b506104a4600e5481565b34801561090e57600080fd5b5061040861091d366004612c6b565b6112c2565b34801561092e57600080fd5b506104d261093d366004612c97565b6112cf565b34801561094e57600080fd5b5061040861095d366004612c97565b60216020526000908152604090205460ff1681565b34801561097e57600080fd5b5060115461040890610100900460ff1681565b34801561099d57600080fd5b506104d26109ac366004612d53565b611356565b3480156109bd57600080fd5b506104d26109cc366004612d88565b6113df565b3480156109dd57600080fd5b506104d26109ec366004612cb4565b611435565b3480156109fd57600080fd5b506013546104089060ff1681565b348015610a1757600080fd5b506104a460085481565b348015610a2d57600080fd5b50610408610a3c366004612cb4565b611506565b348015610a4d57600080fd5b506104a460145481565b348015610a6357600080fd5b506104a4610a72366004612dcf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610aa957600080fd5b506104a460095481565b348015610abf57600080fd5b506104a460165481565b348015610ad557600080fd5b506104d2610ae4366004612c97565b61165d565b348015610af557600080fd5b506104a4601a5481565b348015610b0b57600080fd5b506104a4600a5481565b348015610b2157600080fd5b50610408610b30366004612cb4565b6116f8565b606060038054610b4490612e08565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090612e08565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd4338484611972565b50600192915050565b6005546001600160a01b03163314610c105760405162461bcd60e51b8152600401610c0790612e43565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c975760405162461bcd60e51b8152600401610c0790612e43565b670de0b6b3a76400006103e8610cac60025490565b610cb7906001612e8e565b610cc19190612ead565b610ccb9190612ead565b811015610d325760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c07565b610d4481670de0b6b3a7640000612e8e565b60085550565b6000610d57848484611a96565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ddc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c07565b610de98533858403611972565b506001949350505050565b6005546000906001600160a01b03163314610e215760405162461bcd60e51b8152600401610c0790612e43565b506013805460ff19169055600190565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bd4918590610e68908690612ecf565b611972565b6005546001600160a01b03163314610e975760405162461bcd60e51b8152600401610c0790612e43565b610ea16000612370565b565b6005546001600160a01b03163314610ecd5760405162461bcd60e51b8152600401610c0790612e43565b610258831015610f3b5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c07565b6103e88211158015610f4b575060015b610fb05760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c07565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610ff95760405162461bcd60e51b8152600401610c0790612e43565b506011805460ff19169055600190565b6005546001600160a01b031633146110335760405162461bcd60e51b8152600401610c0790612e43565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110875760405162461bcd60e51b8152600401610c0790612e43565b601583905560168290556017819055806110a18385612ecf565b6110ab9190612ecf565b601455505050565b6005546001600160a01b031633146110dd5760405162461bcd60e51b8152600401610c0790612e43565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b0316331461111e5760405162461bcd60e51b8152600401610c0790612e43565b60118054911515620100000262ff000019909216919091179055565b606060048054610b4490612e08565b6005546001600160a01b031633146111735760405162461bcd60e51b8152600401610c0790612e43565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561121b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c07565b61122582826123c2565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112ab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c07565b6112b83385858403611972565b5060019392505050565b6000610bd4338484611a96565b6005546001600160a01b031633146112f95760405162461bcd60e51b8152600401610c0790612e43565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113805760405162461bcd60e51b8152600401610c0790612e43565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146114095760405162461bcd60e51b8152600401610c0790612e43565b6019839055601a829055601b819055806114238385612ecf565b61142d9190612ecf565b601855505050565b6005546001600160a01b0316331461145f5760405162461bcd60e51b8152600401610c0790612e43565b670de0b6b3a76400006103e861147460025490565b61147f906005612e8e565b6114899190612ead565b6114939190612ead565b8110156114ee5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c07565b61150081670de0b6b3a7640000612e8e565b600a5550565b6005546000906001600160a01b031633146115335760405162461bcd60e51b8152600401610c0790612e43565b620186a061154060025490565b61154b906001612e8e565b6115559190612ead565b8210156115c25760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c07565b6103e86115ce60025490565b6115d9906005612e8e565b6115e39190612ead565b82111561164f5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c07565b50600981905560015b919050565b6005546001600160a01b031633146116875760405162461bcd60e51b8152600401610c0790612e43565b6001600160a01b0381166116ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c07565b6116f581612370565b50565b6005546000906001600160a01b031633146117255760405162461bcd60e51b8152600401610c0790612e43565b600f546010546117359190612ecf565b42116117835760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c07565b6103e88211156117e85760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c07565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118779190612ee7565b9050600061189161271061188b8487612416565b90612429565b905080156118c6576118c67f000000000000000000000000000000000000000000000000000000000000000061dead83612435565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561192657600080fd5b505af115801561193a573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c07565b6001600160a01b038216611a355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c07565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611abc5760405162461bcd60e51b8152600401610c0790612f00565b6001600160a01b038216611ae25760405162461bcd60e51b8152600401610c0790612f45565b80611af857611af383836000612435565b505050565b60115460ff1615611fb2576005546001600160a01b03848116911614801590611b2f57506005546001600160a01b03838116911614155b8015611b4357506001600160a01b03821615155b8015611b5a57506001600160a01b03821661dead14155b8015611b705750600554600160a01b900460ff16155b15611fb257601154610100900460ff16611c08576001600160a01b0383166000908152601f602052604090205460ff1680611bc357506001600160a01b0382166000908152601f602052604090205460ff165b611c085760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c07565b60135460ff1615611d4f576005546001600160a01b03838116911614801590611c6357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611ca157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611d4f57326000908152601260205260409020544311611d3c5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c07565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611d8f57506001600160a01b038216600090815260208052604090205460ff16155b15611e7357600854811115611e045760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c07565b600a546001600160a01b038316600090815260208190526040902054611e2a9083612ecf565b1115611e6e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c07565b611fb2565b6001600160a01b03821660009081526021602052604090205460ff168015611eb357506001600160a01b038316600090815260208052604090205460ff16155b15611f2957600854811115611e6e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c07565b6001600160a01b038216600090815260208052604090205460ff16611fb257600a546001600160a01b038316600090815260208190526040902054611f6e9083612ecf565b1115611fb25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c07565b3060009081526020819052604090205460095481108015908190611fde575060115462010000900460ff165b8015611ff45750600554600160a01b900460ff16155b801561201957506001600160a01b03851660009081526021602052604090205460ff16155b801561203e57506001600160a01b0385166000908152601f602052604090205460ff16155b801561206357506001600160a01b0384166000908152601f602052604090205460ff16155b15612091576005805460ff60a01b1916600160a01b17905561208361258a565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156120c357506001600160a01b03841660009081526021602052604090205460ff165b80156120d15750600c5460ff165b80156120ec5750600d54600e546120e89190612ecf565b4210155b801561211157506001600160a01b0385166000908152601f602052604090205460ff16155b156121205761211e6127c4565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061216e57506001600160a01b0385166000908152601f602052604090205460ff165b15612177575060005b6000811561235c576001600160a01b03861660009081526021602052604090205460ff1680156121a957506000601854115b15612261576121c8606461188b6018548861241690919063ffffffff16565b9050601854601a54826121db9190612e8e565b6121e59190612ead565b601d60008282546121f69190612ecf565b9091555050601854601b5461220b9083612e8e565b6122159190612ead565b601e60008282546122269190612ecf565b909155505060185460195461223b9083612e8e565b6122459190612ead565b601c60008282546122569190612ecf565b9091555061233e9050565b6001600160a01b03871660009081526021602052604090205460ff16801561228b57506000601454115b1561233e576122aa606461188b6014548861241690919063ffffffff16565b9050601454601654826122bd9190612e8e565b6122c79190612ead565b601d60008282546122d89190612ecf565b90915550506014546017546122ed9083612e8e565b6122f79190612ead565b601e60008282546123089190612ecf565b909155505060145460155461231d9083612e8e565b6123279190612ead565b601c60008282546123389190612ecf565b90915550505b801561234f5761234f873083612435565b6123598186612f88565b94505b612367878787612435565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124228284612e8e565b9392505050565b60006124228284612ead565b6001600160a01b03831661245b5760405162461bcd60e51b8152600401610c0790612f00565b6001600160a01b0382166124815760405162461bcd60e51b8152600401610c0790612f45565b6001600160a01b038316600090815260208190526040902054818110156124f95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c07565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612530908490612ecf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161257c91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546125b19190612ecf565b6125bb9190612ecf565b905060008215806125ca575081155b156125d457505050565b6009546125e2906014612e8e565b8311156125fa576009546125f7906014612e8e565b92505b6000600283601d548661260d9190612e8e565b6126179190612ead565b6126219190612ead565b9050600061262f8583612954565b90504761263b82612960565b60006126474783612954565b905060006126648761188b601c548561241690919063ffffffff16565b905060006126818861188b601e548661241690919063ffffffff16565b90506000816126908486612f88565b61269a9190612f88565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146126f7576040519150601f19603f3d011682016040523d82523d6000602084013e6126fc565b606091505b509098505086158015906127105750600081115b156127635761271f8782612b20565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146127b0576040519150601f19603f3d011682016040523d82523d6000602084013e6127b5565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015612831573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128559190612ee7565b9050600061287461271061188b600b548561241690919063ffffffff16565b905080156128a9576128a97f000000000000000000000000000000000000000000000000000000000000000061dead83612435565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561290957600080fd5b505af115801561291d573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124228284612f88565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061299557612995612f9f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a379190612fb5565b81600181518110612a4a57612a4a612f9f565b60200260200101906001600160a01b031690816001600160a01b031681525050612a95307f000000000000000000000000000000000000000000000000000000000000000084611972565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612aea908590600090869030904290600401612fd2565b600060405180830381600087803b158015612b0457600080fd5b505af1158015612b18573d6000803e3d6000fd5b505050505050565b612b4b307f000000000000000000000000000000000000000000000000000000000000000084611972565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612bd5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612bfa9190613043565b5050505050565b600060208083528351808285015260005b81811015612c2e57858101830151858201604001528201612c12565b81811115612c40576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146116f557600080fd5b60008060408385031215612c7e57600080fd5b8235612c8981612c56565b946020939093013593505050565b600060208284031215612ca957600080fd5b813561242281612c56565b600060208284031215612cc657600080fd5b5035919050565b600080600060608486031215612ce257600080fd5b8335612ced81612c56565b92506020840135612cfd81612c56565b929592945050506040919091013590565b8035801515811461165857600080fd5b600080600060608486031215612d3357600080fd5b8335925060208401359150612d4a60408501612d0e565b90509250925092565b60008060408385031215612d6657600080fd5b8235612d7181612c56565b9150612d7f60208401612d0e565b90509250929050565b600080600060608486031215612d9d57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612dc657600080fd5b61242282612d0e565b60008060408385031215612de257600080fd5b8235612ded81612c56565b91506020830135612dfd81612c56565b809150509250929050565b600181811c90821680612e1c57607f821691505b60208210811415612e3d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ea857612ea8612e78565b500290565b600082612eca57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612ee257612ee2612e78565b500190565b600060208284031215612ef957600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612f9a57612f9a612e78565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612fc757600080fd5b815161242281612c56565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130225784516001600160a01b031683529383019391830191600101612ffd565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561305857600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220ccff15be858bf981cdac8438ec7695aa49662ab839adbdcf71c36fe2cf0e2d6164736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638a8c523c116101e7578063b62496f51161010d578063d85ba063116100a0578063f2fde38b1161006f578063f2fde38b14610ac9578063f637434214610ae9578063f8b45b0514610aff578063fe72b27a14610b1557600080fd5b8063d85ba06314610a41578063dd62ed3e14610a57578063e2f4560514610a9d578063f11a24d314610ab357600080fd5b8063c18bc195116100dc578063c18bc195146109d1578063c876d0b9146109f1578063c8c8ebe414610a0b578063d257b34f14610a2157600080fd5b8063b62496f514610942578063bbc0c74214610972578063c024666814610991578063c17b5b8c146109b157600080fd5b80639c3b4fdc11610185578063a457c2d711610154578063a457c2d7146108cc578063a4c82a00146108ec578063a9059cbb14610902578063aacebbe31461092257600080fd5b80639c3b4fdc146108745780639ec22c0e1461088a5780639fccce32146108a0578063a0d82dc5146108b657600080fd5b806392136913116101c15780639213691314610809578063924de9b71461081f57806395d89b411461083f5780639a7a23d61461085457600080fd5b80638a8c523c146107b65780638da5cb5b146107cb5780638ea5220f146107e957600080fd5b8063313ce567116102d757806370a082311161026a5780637571336a116102395780637571336a1461074057806375f0a874146107605780637bce5a04146107805780638095d5641461079657600080fd5b806370a08231146106c0578063715018a6146106f6578063730c18881461070b578063751039fc1461072b57600080fd5b80634a62bb65116102a65780634a62bb65146106375780634fbee193146106515780636a486a8e1461068a5780636ddd1713146106a057600080fd5b8063313ce567146105b257806331f8397d146105ce57806339509351146105e357806349bd5a5e1461060357600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104935780631816467f146104b2578063184c16c5146104d457600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b35565b6040516103df9190612c01565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612c6b565b610bc7565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004612c97565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103df565b34801561049f57600080fd5b506002545b6040519081526020016103df565b3480156104be57600080fd5b506104d26104cd366004612c97565b610bdd565b005b3480156104e057600080fd5b506104a4600f5481565b3480156104f657600080fd5b506104a4600b5481565b34801561050c57600080fd5b506104a4601d5481565b34801561052257600080fd5b506104a4601c5481565b34801561053857600080fd5b506104d2610547366004612cb4565b610c6d565b34801561055857600080fd5b50610408610567366004612ccd565b610d4a565b34801561057857600080fd5b5061047b61dead81565b34801561058e57600080fd5b506104a4600d5481565b3480156105a457600080fd5b50600c546104089060ff1681565b3480156105be57600080fd5b50604051601281526020016103df565b3480156105da57600080fd5b50610408610df4565b3480156105ef57600080fd5b506104086105fe366004612c6b565b610e31565b34801561060f57600080fd5b5061047b7f0000000000000000000000008dd7015f9070218b52c900592f04da96b07d250b81565b34801561064357600080fd5b506011546104089060ff1681565b34801561065d57600080fd5b5061040861066c366004612c97565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561069657600080fd5b506104a460185481565b3480156106ac57600080fd5b506011546104089062010000900460ff1681565b3480156106cc57600080fd5b506104a46106db366004612c97565b6001600160a01b031660009081526020819052604090205490565b34801561070257600080fd5b506104d2610e6d565b34801561071757600080fd5b506104d2610726366004612d1e565b610ea3565b34801561073757600080fd5b50610408610fcc565b34801561074c57600080fd5b506104d261075b366004612d53565b611009565b34801561076c57600080fd5b5060065461047b906001600160a01b031681565b34801561078c57600080fd5b506104a460155481565b3480156107a257600080fd5b506104d26107b1366004612d88565b61105d565b3480156107c257600080fd5b506104d26110b3565b3480156107d757600080fd5b506005546001600160a01b031661047b565b3480156107f557600080fd5b5060075461047b906001600160a01b031681565b34801561081557600080fd5b506104a460195481565b34801561082b57600080fd5b506104d261083a366004612db4565b6110f4565b34801561084b57600080fd5b506103d261113a565b34801561086057600080fd5b506104d261086f366004612d53565b611149565b34801561088057600080fd5b506104a460175481565b34801561089657600080fd5b506104a460105481565b3480156108ac57600080fd5b506104a4601e5481565b3480156108c257600080fd5b506104a4601b5481565b3480156108d857600080fd5b506104086108e7366004612c6b565b611229565b3480156108f857600080fd5b506104a4600e5481565b34801561090e57600080fd5b5061040861091d366004612c6b565b6112c2565b34801561092e57600080fd5b506104d261093d366004612c97565b6112cf565b34801561094e57600080fd5b5061040861095d366004612c97565b60216020526000908152604090205460ff1681565b34801561097e57600080fd5b5060115461040890610100900460ff1681565b34801561099d57600080fd5b506104d26109ac366004612d53565b611356565b3480156109bd57600080fd5b506104d26109cc366004612d88565b6113df565b3480156109dd57600080fd5b506104d26109ec366004612cb4565b611435565b3480156109fd57600080fd5b506013546104089060ff1681565b348015610a1757600080fd5b506104a460085481565b348015610a2d57600080fd5b50610408610a3c366004612cb4565b611506565b348015610a4d57600080fd5b506104a460145481565b348015610a6357600080fd5b506104a4610a72366004612dcf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610aa957600080fd5b506104a460095481565b348015610abf57600080fd5b506104a460165481565b348015610ad557600080fd5b506104d2610ae4366004612c97565b61165d565b348015610af557600080fd5b506104a4601a5481565b348015610b0b57600080fd5b506104a4600a5481565b348015610b2157600080fd5b50610408610b30366004612cb4565b6116f8565b606060038054610b4490612e08565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090612e08565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd4338484611972565b50600192915050565b6005546001600160a01b03163314610c105760405162461bcd60e51b8152600401610c0790612e43565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c975760405162461bcd60e51b8152600401610c0790612e43565b670de0b6b3a76400006103e8610cac60025490565b610cb7906001612e8e565b610cc19190612ead565b610ccb9190612ead565b811015610d325760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c07565b610d4481670de0b6b3a7640000612e8e565b60085550565b6000610d57848484611a96565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ddc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c07565b610de98533858403611972565b506001949350505050565b6005546000906001600160a01b03163314610e215760405162461bcd60e51b8152600401610c0790612e43565b506013805460ff19169055600190565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bd4918590610e68908690612ecf565b611972565b6005546001600160a01b03163314610e975760405162461bcd60e51b8152600401610c0790612e43565b610ea16000612370565b565b6005546001600160a01b03163314610ecd5760405162461bcd60e51b8152600401610c0790612e43565b610258831015610f3b5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c07565b6103e88211158015610f4b575060015b610fb05760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c07565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610ff95760405162461bcd60e51b8152600401610c0790612e43565b506011805460ff19169055600190565b6005546001600160a01b031633146110335760405162461bcd60e51b8152600401610c0790612e43565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110875760405162461bcd60e51b8152600401610c0790612e43565b601583905560168290556017819055806110a18385612ecf565b6110ab9190612ecf565b601455505050565b6005546001600160a01b031633146110dd5760405162461bcd60e51b8152600401610c0790612e43565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b0316331461111e5760405162461bcd60e51b8152600401610c0790612e43565b60118054911515620100000262ff000019909216919091179055565b606060048054610b4490612e08565b6005546001600160a01b031633146111735760405162461bcd60e51b8152600401610c0790612e43565b7f0000000000000000000000008dd7015f9070218b52c900592f04da96b07d250b6001600160a01b0316826001600160a01b0316141561121b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c07565b61122582826123c2565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112ab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c07565b6112b83385858403611972565b5060019392505050565b6000610bd4338484611a96565b6005546001600160a01b031633146112f95760405162461bcd60e51b8152600401610c0790612e43565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113805760405162461bcd60e51b8152600401610c0790612e43565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146114095760405162461bcd60e51b8152600401610c0790612e43565b6019839055601a829055601b819055806114238385612ecf565b61142d9190612ecf565b601855505050565b6005546001600160a01b0316331461145f5760405162461bcd60e51b8152600401610c0790612e43565b670de0b6b3a76400006103e861147460025490565b61147f906005612e8e565b6114899190612ead565b6114939190612ead565b8110156114ee5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c07565b61150081670de0b6b3a7640000612e8e565b600a5550565b6005546000906001600160a01b031633146115335760405162461bcd60e51b8152600401610c0790612e43565b620186a061154060025490565b61154b906001612e8e565b6115559190612ead565b8210156115c25760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c07565b6103e86115ce60025490565b6115d9906005612e8e565b6115e39190612ead565b82111561164f5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c07565b50600981905560015b919050565b6005546001600160a01b031633146116875760405162461bcd60e51b8152600401610c0790612e43565b6001600160a01b0381166116ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c07565b6116f581612370565b50565b6005546000906001600160a01b031633146117255760405162461bcd60e51b8152600401610c0790612e43565b600f546010546117359190612ecf565b42116117835760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c07565b6103e88211156117e85760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c07565b426010556040516370a0823160e01b81526001600160a01b037f0000000000000000000000008dd7015f9070218b52c900592f04da96b07d250b16600482015260009030906370a0823190602401602060405180830381865afa158015611853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118779190612ee7565b9050600061189161271061188b8487612416565b90612429565b905080156118c6576118c67f0000000000000000000000008dd7015f9070218b52c900592f04da96b07d250b61dead83612435565b60007f0000000000000000000000008dd7015f9070218b52c900592f04da96b07d250b9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561192657600080fd5b505af115801561193a573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c07565b6001600160a01b038216611a355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c07565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611abc5760405162461bcd60e51b8152600401610c0790612f00565b6001600160a01b038216611ae25760405162461bcd60e51b8152600401610c0790612f45565b80611af857611af383836000612435565b505050565b60115460ff1615611fb2576005546001600160a01b03848116911614801590611b2f57506005546001600160a01b03838116911614155b8015611b4357506001600160a01b03821615155b8015611b5a57506001600160a01b03821661dead14155b8015611b705750600554600160a01b900460ff16155b15611fb257601154610100900460ff16611c08576001600160a01b0383166000908152601f602052604090205460ff1680611bc357506001600160a01b0382166000908152601f602052604090205460ff165b611c085760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c07565b60135460ff1615611d4f576005546001600160a01b03838116911614801590611c6357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611ca157507f0000000000000000000000008dd7015f9070218b52c900592f04da96b07d250b6001600160a01b0316826001600160a01b031614155b15611d4f57326000908152601260205260409020544311611d3c5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c07565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611d8f57506001600160a01b038216600090815260208052604090205460ff16155b15611e7357600854811115611e045760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c07565b600a546001600160a01b038316600090815260208190526040902054611e2a9083612ecf565b1115611e6e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c07565b611fb2565b6001600160a01b03821660009081526021602052604090205460ff168015611eb357506001600160a01b038316600090815260208052604090205460ff16155b15611f2957600854811115611e6e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c07565b6001600160a01b038216600090815260208052604090205460ff16611fb257600a546001600160a01b038316600090815260208190526040902054611f6e9083612ecf565b1115611fb25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c07565b3060009081526020819052604090205460095481108015908190611fde575060115462010000900460ff165b8015611ff45750600554600160a01b900460ff16155b801561201957506001600160a01b03851660009081526021602052604090205460ff16155b801561203e57506001600160a01b0385166000908152601f602052604090205460ff16155b801561206357506001600160a01b0384166000908152601f602052604090205460ff16155b15612091576005805460ff60a01b1916600160a01b17905561208361258a565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156120c357506001600160a01b03841660009081526021602052604090205460ff165b80156120d15750600c5460ff165b80156120ec5750600d54600e546120e89190612ecf565b4210155b801561211157506001600160a01b0385166000908152601f602052604090205460ff16155b156121205761211e6127c4565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061216e57506001600160a01b0385166000908152601f602052604090205460ff165b15612177575060005b6000811561235c576001600160a01b03861660009081526021602052604090205460ff1680156121a957506000601854115b15612261576121c8606461188b6018548861241690919063ffffffff16565b9050601854601a54826121db9190612e8e565b6121e59190612ead565b601d60008282546121f69190612ecf565b9091555050601854601b5461220b9083612e8e565b6122159190612ead565b601e60008282546122269190612ecf565b909155505060185460195461223b9083612e8e565b6122459190612ead565b601c60008282546122569190612ecf565b9091555061233e9050565b6001600160a01b03871660009081526021602052604090205460ff16801561228b57506000601454115b1561233e576122aa606461188b6014548861241690919063ffffffff16565b9050601454601654826122bd9190612e8e565b6122c79190612ead565b601d60008282546122d89190612ecf565b90915550506014546017546122ed9083612e8e565b6122f79190612ead565b601e60008282546123089190612ecf565b909155505060145460155461231d9083612e8e565b6123279190612ead565b601c60008282546123389190612ecf565b90915550505b801561234f5761234f873083612435565b6123598186612f88565b94505b612367878787612435565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124228284612e8e565b9392505050565b60006124228284612ead565b6001600160a01b03831661245b5760405162461bcd60e51b8152600401610c0790612f00565b6001600160a01b0382166124815760405162461bcd60e51b8152600401610c0790612f45565b6001600160a01b038316600090815260208190526040902054818110156124f95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c07565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612530908490612ecf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161257c91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546125b19190612ecf565b6125bb9190612ecf565b905060008215806125ca575081155b156125d457505050565b6009546125e2906014612e8e565b8311156125fa576009546125f7906014612e8e565b92505b6000600283601d548661260d9190612e8e565b6126179190612ead565b6126219190612ead565b9050600061262f8583612954565b90504761263b82612960565b60006126474783612954565b905060006126648761188b601c548561241690919063ffffffff16565b905060006126818861188b601e548661241690919063ffffffff16565b90506000816126908486612f88565b61269a9190612f88565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146126f7576040519150601f19603f3d011682016040523d82523d6000602084013e6126fc565b606091505b509098505086158015906127105750600081115b156127635761271f8782612b20565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146127b0576040519150601f19603f3d011682016040523d82523d6000602084013e6127b5565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000008dd7015f9070218b52c900592f04da96b07d250b166004820152600090819030906370a0823190602401602060405180830381865afa158015612831573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128559190612ee7565b9050600061287461271061188b600b548561241690919063ffffffff16565b905080156128a9576128a97f0000000000000000000000008dd7015f9070218b52c900592f04da96b07d250b61dead83612435565b60007f0000000000000000000000008dd7015f9070218b52c900592f04da96b07d250b9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561290957600080fd5b505af115801561291d573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124228284612f88565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061299557612995612f9f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a379190612fb5565b81600181518110612a4a57612a4a612f9f565b60200260200101906001600160a01b031690816001600160a01b031681525050612a95307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611972565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612aea908590600090869030904290600401612fd2565b600060405180830381600087803b158015612b0457600080fd5b505af1158015612b18573d6000803e3d6000fd5b505050505050565b612b4b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611972565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612bd5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612bfa9190613043565b5050505050565b600060208083528351808285015260005b81811015612c2e57858101830151858201604001528201612c12565b81811115612c40576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146116f557600080fd5b60008060408385031215612c7e57600080fd5b8235612c8981612c56565b946020939093013593505050565b600060208284031215612ca957600080fd5b813561242281612c56565b600060208284031215612cc657600080fd5b5035919050565b600080600060608486031215612ce257600080fd5b8335612ced81612c56565b92506020840135612cfd81612c56565b929592945050506040919091013590565b8035801515811461165857600080fd5b600080600060608486031215612d3357600080fd5b8335925060208401359150612d4a60408501612d0e565b90509250925092565b60008060408385031215612d6657600080fd5b8235612d7181612c56565b9150612d7f60208401612d0e565b90509250929050565b600080600060608486031215612d9d57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612dc657600080fd5b61242282612d0e565b60008060408385031215612de257600080fd5b8235612ded81612c56565b91506020830135612dfd81612c56565b809150509250929050565b600181811c90821680612e1c57607f821691505b60208210811415612e3d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ea857612ea8612e78565b500290565b600082612eca57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612ee257612ee2612e78565b500190565b600060208284031215612ef957600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612f9a57612f9a612e78565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612fc757600080fd5b815161242281612c56565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130225784516001600160a01b031683529383019391830191600101612ffd565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561305857600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220ccff15be858bf981cdac8438ec7695aa49662ab839adbdcf71c36fe2cf0e2d6164736f6c634300080a0033

Deployed Bytecode Sourcemap

35820:19303:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12648:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14815:169;;;;;;;;;;-1:-1:-1;14815:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;14815:169:0;1072:187:1;37450:63:0;;;;;;;;;;-1:-1:-1;37450:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35899:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;35899:51:0;1516:230:1;13768:108:0;;;;;;;;;;-1:-1:-1;13856:12:0;;13768:108;;;1897:25:1;;;1885:2;1870:18;13768:108:0;1751:177:1;44451:157:0;;;;;;;;;;-1:-1:-1;44451:157:0;;;;;:::i;:::-;;:::i;:::-;;36464:47;;;;;;;;;;;;;;;;36279:36;;;;;;;;;;;;;;;;37234:33;;;;;;;;;;;;;;;;37194;;;;;;;;;;;;;;;;41908:275;;;;;;;;;;-1:-1:-1;41908:275:0;;;;;:::i;:::-;;:::i;15466:492::-;;;;;;;;;;-1:-1:-1;15466:492:0;;;;;:::i;:::-;;:::i;36002:53::-;;;;;;;;;;;;36048:6;36002:53;;36374:45;;;;;;;;;;;;;;;;36335:32;;;;;;;;;;-1:-1:-1;36335:32:0;;;;;;;;13610:93;;;;;;;;;;-1:-1:-1;13610:93:0;;13693:2;2929:36:1;;2917:2;2902:18;13610:93:0;2787:184:1;41205:128:0;;;;;;;;;;;;;:::i;16367:215::-;;;;;;;;;;-1:-1:-1;16367:215:0;;;;;:::i;:::-;;:::i;35957:38::-;;;;;;;;;;;;;;;36562:33;;;;;;;;;;-1:-1:-1;36562:33:0;;;;;;;;44616:126;;;;;;;;;;-1:-1:-1;44616:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;44706:28:0;44682:4;44706:28;;;:19;:28;;;;;;;;;44616:126;37049:28;;;;;;;;;;;;;;;;36642:31;;;;;;;;;;-1:-1:-1;36642:31:0;;;;;;;;;;;13939:127;;;;;;;;;;-1:-1:-1;13939:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;14040:18:0;14013:7;14040:18;;;;;;;;;;;;13939:127;5883:103;;;;;;;;;;;;;:::i;52705:555::-;;;;;;;;;;-1:-1:-1;52705:555:0;;;;;:::i;:::-;;:::i;41023:121::-;;;;;;;;;;;;;:::i;42455:167::-;;;;;;;;;;-1:-1:-1;42455:167:0;;;;;:::i;:::-;;:::i;36094:30::-;;;;;;;;;;-1:-1:-1;36094:30:0;;;;-1:-1:-1;;;;;36094:30:0;;;36942;;;;;;;;;;;;;;;;42826:332;;;;;;;;;;-1:-1:-1;42826:332:0;;;;;:::i;:::-;;:::i;40816:155::-;;;;;;;;;;;;;:::i;5232:87::-;;;;;;;;;;-1:-1:-1;5305:6:0;;-1:-1:-1;;;;;5305:6:0;5232:87;;36131:24;;;;;;;;;;-1:-1:-1;36131:24:0;;;;-1:-1:-1;;;;;36131:24:0;;;37084:31;;;;;;;;;;;;;;;;42718:100;;;;;;;;;;-1:-1:-1;42718:100:0;;;;;:::i;:::-;;:::i;12867:104::-;;;;;;;;;;;;;:::i;43704:304::-;;;;;;;;;;-1:-1:-1;43704:304:0;;;;;:::i;:::-;;:::i;37016:24::-;;;;;;;;;;;;;;;;36518:35;;;;;;;;;;;;;;;;37274:27;;;;;;;;;;;;;;;;37160:25;;;;;;;;;;;;;;;;17085:413;;;;;;;;;;-1:-1:-1;17085:413:0;;;;;:::i;:::-;;:::i;36426:29::-;;;;;;;;;;;;;;;;14279:175;;;;;;;;;;-1:-1:-1;14279:175:0;;;;;:::i;:::-;;:::i;44212:231::-;;;;;;;;;;-1:-1:-1;44212:231:0;;;;;:::i;:::-;;:::i;37671:57::-;;;;;;;;;;-1:-1:-1;37671:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36602:33;;;;;;;;;;-1:-1:-1;36602:33:0;;;;;;;;;;;43514:182;;;;;;;;;;-1:-1:-1;43514:182:0;;;;;:::i;:::-;;:::i;43166:340::-;;;;;;;;;;-1:-1:-1;43166:340:0;;;;;:::i;:::-;;:::i;42191:256::-;;;;;;;;;;-1:-1:-1;42191:256:0;;;;;:::i;:::-;;:::i;36860:39::-;;;;;;;;;;-1:-1:-1;36860:39:0;;;;;;;;36164:35;;;;;;;;;;;;;;;;41403:497;;;;;;;;;;-1:-1:-1;41403:497:0;;;;;:::i;:::-;;:::i;36908:27::-;;;;;;;;;;;;;;;;14517:151;;;;;;;;;;-1:-1:-1;14517:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;14633:18:0;;;14606:7;14633:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14517:151;36206:33;;;;;;;;;;;;;;;;36979:30;;;;;;;;;;;;;;;;6141:201;;;;;;;;;;-1:-1:-1;6141:201:0;;;;;:::i;:::-;;:::i;37122:31::-;;;;;;;;;;;;;;;;36246:24;;;;;;;;;;;;;;;;54064:1056;;;;;;;;;;-1:-1:-1;54064:1056:0;;;;;:::i;:::-;;:::i;12648:100::-;12702:13;12735:5;12728:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12648:100;:::o;14815:169::-;14898:4;14915:39;3985:10;14938:7;14947:6;14915:8;:39::i;:::-;-1:-1:-1;14972:4:0;14815:169;;;;:::o;44451:157::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;;;;;;;;;44558:9:::1;::::0;44530:38:::1;::::0;-1:-1:-1;;;;;44558:9:0;;::::1;::::0;44530:38;::::1;::::0;::::1;::::0;44558:9:::1;::::0;44530:38:::1;44579:9;:21:::0;;-1:-1:-1;;;;;;44579:21:0::1;-1:-1:-1::0;;;;;44579:21:0;;;::::1;::::0;;;::::1;::::0;;44451:157::o;41908:275::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;42045:4:::1;42037;42016:13;13856:12:::0;;;13768:108;42016:13:::1;:17;::::0;42032:1:::1;42016:17;:::i;:::-;42015:26;;;;:::i;:::-;42014:35;;;;:::i;:::-;42004:6;:45;;41982:142;;;::::0;-1:-1:-1;;;41982:142:0;;6156:2:1;41982:142:0::1;::::0;::::1;6138:21:1::0;6195:2;6175:18;;;6168:30;6234:34;6214:18;;;6207:62;-1:-1:-1;;;6285:18:1;;;6278:45;6340:19;;41982:142:0::1;5954:411:1::0;41982:142:0::1;42158:17;:6:::0;42168::::1;42158:17;:::i;:::-;42135:20;:40:::0;-1:-1:-1;41908:275:0:o;15466:492::-;15606:4;15623:36;15633:6;15641:9;15652:6;15623:9;:36::i;:::-;-1:-1:-1;;;;;15699:19:0;;15672:24;15699:19;;;:11;:19;;;;;;;;3985:10;15699:33;;;;;;;;15751:26;;;;15743:79;;;;-1:-1:-1;;;15743:79:0;;6572:2:1;15743:79:0;;;6554:21:1;6611:2;6591:18;;;6584:30;6650:34;6630:18;;;6623:62;-1:-1:-1;;;6701:18:1;;;6694:38;6749:19;;15743:79:0;6370:404:1;15743:79:0;15858:57;15867:6;3985:10;15908:6;15889:16;:25;15858:8;:57::i;:::-;-1:-1:-1;15946:4:0;;15466:492;-1:-1:-1;;;;15466:492:0:o;41205:128::-;5305:6;;41258:4;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;-1:-1:-1;41275:20:0::1;:28:::0;;-1:-1:-1;;41275:28:0::1;::::0;;;41205:128;:::o;16367:215::-;3985:10;16455:4;16504:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16504:34:0;;;;;;;;;;16455:4;;16472:80;;16495:7;;16504:47;;16541:10;;16504:47;:::i;:::-;16472:8;:80::i;5883:103::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;5948:30:::1;5975:1;5948:18;:30::i;:::-;5883:103::o:0;52705:555::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;52907:3:::1;52884:19;:26;;52862:127;;;::::0;-1:-1:-1;;;52862:127:0;;7114:2:1;52862:127:0::1;::::0;::::1;7096:21:1::0;7153:2;7133:18;;;7126:30;7192:34;7172:18;;;7165:62;-1:-1:-1;;;7243:18:1;;;7236:49;7302:19;;52862:127:0::1;6912:415:1::0;52862:127:0::1;53034:4;53022:8;:16;;:33;;;;-1:-1:-1::0;53042:13:0;53022:33:::1;53000:131;;;::::0;-1:-1:-1;;;53000:131:0;;7534:2:1;53000:131:0::1;::::0;::::1;7516:21:1::0;7573:2;7553:18;;;7546:30;7612:34;7592:18;;;7585:62;-1:-1:-1;;;7663:18:1;;;7656:46;7719:19;;53000:131:0::1;7332:412:1::0;53000:131:0::1;53142:15;:37:::0;;;;53190:16:::1;:27:::0;53228:13:::1;:24:::0;;-1:-1:-1;;53228:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52705:555::o;41023:121::-;5305:6;;41075:4;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;-1:-1:-1;41092:14:0::1;:22:::0;;-1:-1:-1;;41092:22:0::1;::::0;;;41023:121;:::o;42455:167::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42568:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;42568:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42455:167::o;42826:332::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;42976:15:::1;:31:::0;;;43018:15:::1;:31:::0;;;43060:9:::1;:19:::0;;;43072:7;43105:33:::1;43036:13:::0;42994;43105:33:::1;:::i;:::-;:45;;;;:::i;:::-;43090:12;:60:::0;-1:-1:-1;;;42826:332:0:o;40816:155::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;40871:13:::1;:20:::0;;-1:-1:-1;;40902:18:0;;;;;40948:15:::1;40931:14;:32:::0;40816:155::o;42718:100::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;42789:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;42789:21:0;;::::1;::::0;;;::::1;::::0;;42718:100::o;12867:104::-;12923:13;12956:7;12949:14;;;;;:::i;43704:304::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;43848:13:::1;-1:-1:-1::0;;;;;43840:21:0::1;:4;-1:-1:-1::0;;;;;43840:21:0::1;;;43818:128;;;::::0;-1:-1:-1;;;43818:128:0;;7951:2:1;43818:128:0::1;::::0;::::1;7933:21:1::0;7990:2;7970:18;;;7963:30;8029:34;8009:18;;;8002:62;8100:27;8080:18;;;8073:55;8145:19;;43818:128:0::1;7749:421:1::0;43818:128:0::1;43959:41;43988:4;43994:5;43959:28;:41::i;:::-;43704:304:::0;;:::o;17085:413::-;3985:10;17178:4;17222:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17222:34:0;;;;;;;;;;17275:35;;;;17267:85;;;;-1:-1:-1;;;17267:85:0;;8377:2:1;17267:85:0;;;8359:21:1;8416:2;8396:18;;;8389:30;8455:34;8435:18;;;8428:62;-1:-1:-1;;;8506:18:1;;;8499:35;8551:19;;17267:85:0;8175:401:1;17267:85:0;17388:67;3985:10;17411:7;17439:15;17420:16;:34;17388:8;:67::i;:::-;-1:-1:-1;17486:4:0;;17085:413;-1:-1:-1;;;17085:413:0:o;14279:175::-;14365:4;14382:42;3985:10;14406:9;14417:6;14382:9;:42::i;44212:231::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;44372:15:::1;::::0;44329:59:::1;::::0;-1:-1:-1;;;;;44372:15:0;;::::1;::::0;44329:59;::::1;::::0;::::1;::::0;44372:15:::1;::::0;44329:59:::1;44399:15;:36:::0;;-1:-1:-1;;;;;;44399:36:0::1;-1:-1:-1::0;;;;;44399:36:0;;;::::1;::::0;;;::::1;::::0;;44212:231::o;43514:182::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43599:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;43599:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43654:34;;1212:41:1;;;43654:34:0::1;::::0;1185:18:1;43654:34:0::1;;;;;;;43514:182:::0;;:::o;43166:340::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;43317:16:::1;:32:::0;;;43360:16:::1;:32:::0;;;43403:10:::1;:20:::0;;;43416:7;43450:35:::1;43379:13:::0;43336;43450:35:::1;:::i;:::-;:48;;;;:::i;:::-;43434:13;:64:::0;-1:-1:-1;;;43166:340:0:o;42191:256::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;42331:4:::1;42323;42302:13;13856:12:::0;;;13768:108;42302:13:::1;:17;::::0;42318:1:::1;42302:17;:::i;:::-;42301:26;;;;:::i;:::-;42300:35;;;;:::i;:::-;42290:6;:45;;42268:131;;;::::0;-1:-1:-1;;;42268:131:0;;8783:2:1;42268:131:0::1;::::0;::::1;8765:21:1::0;8822:2;8802:18;;;8795:30;8861:34;8841:18;;;8834:62;-1:-1:-1;;;8912:18:1;;;8905:34;8956:19;;42268:131:0::1;8581:400:1::0;42268:131:0::1;42422:17;:6:::0;42432::::1;42422:17;:::i;:::-;42410:9;:29:::0;-1:-1:-1;42191:256:0:o;41403:497::-;5305:6;;41511:4;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;41590:6:::1;41569:13;13856:12:::0;;;13768:108;41569:13:::1;:17;::::0;41585:1:::1;41569:17;:::i;:::-;41568:28;;;;:::i;:::-;41555:9;:41;;41533:144;;;::::0;-1:-1:-1;;;41533:144:0;;9188:2:1;41533:144:0::1;::::0;::::1;9170:21:1::0;9227:2;9207:18;;;9200:30;9266:34;9246:18;;;9239:62;-1:-1:-1;;;9317:18:1;;;9310:51;9378:19;;41533:144:0::1;8986:417:1::0;41533:144:0::1;41745:4;41724:13;13856:12:::0;;;13768:108;41724:13:::1;:17;::::0;41740:1:::1;41724:17;:::i;:::-;41723:26;;;;:::i;:::-;41710:9;:39;;41688:141;;;::::0;-1:-1:-1;;;41688:141:0;;9610:2:1;41688:141:0::1;::::0;::::1;9592:21:1::0;9649:2;9629:18;;;9622:30;9688:34;9668:18;;;9661:62;-1:-1:-1;;;9739:18:1;;;9732:50;9799:19;;41688:141:0::1;9408:416:1::0;41688:141:0::1;-1:-1:-1::0;41840:18:0::1;:30:::0;;;41888:4:::1;5523:1;41403:497:::0;;;:::o;6141:201::-;5305:6;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6230:22:0;::::1;6222:73;;;::::0;-1:-1:-1;;;6222:73:0;;10031:2:1;6222:73:0::1;::::0;::::1;10013:21:1::0;10070:2;10050:18;;;10043:30;10109:34;10089:18;;;10082:62;-1:-1:-1;;;10160:18:1;;;10153:36;10206:19;;6222:73:0::1;9829:402:1::0;6222:73:0::1;6306:28;6325:8;6306:18;:28::i;:::-;6141:201:::0;:::o;54064:1056::-;5305:6;;54175:4;;-1:-1:-1;;;;;5305:6:0;3985:10;5452:23;5444:68;;;;-1:-1:-1;;;5444:68:0;;;;;;;:::i;:::-;54260:19:::1;;54237:20;;:42;;;;:::i;:::-;54219:15;:60;54197:142;;;::::0;-1:-1:-1;;;54197:142:0;;10438:2:1;54197:142:0::1;::::0;::::1;10420:21:1::0;;;10457:18;;;10450:30;10516:34;10496:18;;;10489:62;10568:18;;54197:142:0::1;10236:356:1::0;54197:142:0::1;54369:4;54358:7;:15;;54350:70;;;::::0;-1:-1:-1;;;54350:70:0;;10799:2:1;54350:70:0::1;::::0;::::1;10781:21:1::0;10838:2;10818:18;;;10811:30;10877:34;10857:18;;;10850:62;-1:-1:-1;;;10928:18:1;;;10921:40;10978:19;;54350:70:0::1;10597:406:1::0;54350:70:0::1;54454:15;54431:20;:38:::0;54555:29:::1;::::0;-1:-1:-1;;;54555:29:0;;-1:-1:-1;;;;;54570:13:0::1;1707:32:1::0;54555:29:0::1;::::0;::::1;1689:51:1::0;54524:28:0::1;::::0;54555:4:::1;::::0;:14:::1;::::0;1662:18:1;;54555:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54524:60:::0;-1:-1:-1;54634:20:0::1;54657:44;54695:5;54657:33;54524:60:::0;54682:7;54657:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;54634:67:::0;-1:-1:-1;54806:16:0;;54802:110:::1;;54839:61;54855:13;54878:6;54887:12;54839:15;:61::i;:::-;54987:19;55024:13;54987:51;;55049:4;-1:-1:-1::0;;;;;55049:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;55076:14:0::1;::::0;::::1;::::0;-1:-1:-1;55076:14:0;;-1:-1:-1;55076:14:0::1;-1:-1:-1::0;55108:4:0::1;::::0;54064:1056;-1:-1:-1;;;;54064:1056:0:o;20769:380::-;-1:-1:-1;;;;;20905:19:0;;20897:68;;;;-1:-1:-1;;;20897:68:0;;11399:2:1;20897:68:0;;;11381:21:1;11438:2;11418:18;;;11411:30;11477:34;11457:18;;;11450:62;-1:-1:-1;;;11528:18:1;;;11521:34;11572:19;;20897:68:0;11197:400:1;20897:68:0;-1:-1:-1;;;;;20984:21:0;;20976:68;;;;-1:-1:-1;;;20976:68:0;;11804:2:1;20976:68:0;;;11786:21:1;11843:2;11823:18;;;11816:30;11882:34;11862:18;;;11855:62;-1:-1:-1;;;11933:18:1;;;11926:32;11975:19;;20976:68:0;11602:398:1;20976:68:0;-1:-1:-1;;;;;21057:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21109:32;;1897:25:1;;;21109:32:0;;1870:18:1;21109:32:0;;;;;;;20769:380;;;:::o;44800:5011::-;-1:-1:-1;;;;;44932:18:0;;44924:68;;;;-1:-1:-1;;;44924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45011:16:0;;45003:64;;;;-1:-1:-1;;;45003:64:0;;;;;;;:::i;:::-;45084:11;45080:93;;45112:28;45128:4;45134:2;45138:1;45112:15;:28::i;:::-;44800:5011;;;:::o;45080:93::-;45189:14;;;;45185:2487;;;5305:6;;-1:-1:-1;;;;;45242:15:0;;;5305:6;;45242:15;;;;:49;;-1:-1:-1;5305:6:0;;-1:-1:-1;;;;;45278:13:0;;;5305:6;;45278:13;;45242:49;:86;;;;-1:-1:-1;;;;;;45312:16:0;;;;45242:86;:128;;;;-1:-1:-1;;;;;;45349:21:0;;45363:6;45349:21;;45242:128;:158;;;;-1:-1:-1;45392:8:0;;-1:-1:-1;;;45392:8:0;;;;45391:9;45242:158;45220:2441;;;45440:13;;;;;;;45435:223;;-1:-1:-1;;;;;45512:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;45541:23:0;;;;;;:19;:23;;;;;;;;45512:52;45478:160;;;;-1:-1:-1;;;45478:160:0;;13017:2:1;45478:160:0;;;12999:21:1;13056:2;13036:18;;;13029:30;-1:-1:-1;;;13075:18:1;;;13068:52;13137:18;;45478:160:0;12815:346:1;45478:160:0;45814:20;;;;45810:641;;;5305:6;;-1:-1:-1;;;;;45889:13:0;;;5305:6;;45889:13;;;;:72;;;45945:15;-1:-1:-1;;;;;45931:30:0;:2;-1:-1:-1;;;;;45931:30:0;;;45889:72;:129;;;;;46004:13;-1:-1:-1;;;;;45990:28:0;:2;-1:-1:-1;;;;;45990:28:0;;;45889:129;45859:573;;;46136:9;46107:39;;;;:28;:39;;;;;;46182:12;-1:-1:-1;46069:258:0;;;;-1:-1:-1;;;46069:258:0;;13368:2:1;46069:258:0;;;13350:21:1;13407:2;13387:18;;;13380:30;13446:34;13426:18;;;13419:62;13517:34;13497:18;;;13490:62;-1:-1:-1;;;13568:19:1;;;13561:40;13618:19;;46069:258:0;13166:477:1;46069:258:0;46383:9;46354:39;;;;:28;:39;;;;;46396:12;46354:54;;45859:573;-1:-1:-1;;;;;46525:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;46582:35:0;;;;;;:31;:35;;;;;;;;46581:36;46525:92;46499:1147;;;46704:20;;46694:6;:30;;46660:169;;;;-1:-1:-1;;;46660:169:0;;13850:2:1;46660:169:0;;;13832:21:1;13889:2;13869:18;;;13862:30;13928:34;13908:18;;;13901:62;-1:-1:-1;;;13979:18:1;;;13972:51;14040:19;;46660:169:0;13648:417:1;46660:169:0;46912:9;;-1:-1:-1;;;;;14040:18:0;;14013:7;14040:18;;;;;;;;;;;46886:22;;:6;:22;:::i;:::-;:35;;46852:140;;;;-1:-1:-1;;;46852:140:0;;14272:2:1;46852:140:0;;;14254:21:1;14311:2;14291:18;;;14284:30;-1:-1:-1;;;14330:18:1;;;14323:49;14389:18;;46852:140:0;14070:343:1;46852:140:0;46499:1147;;;-1:-1:-1;;;;;47090:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;47145:37:0;;;;;;:31;:37;;;;;;;;47144:38;47090:92;47064:582;;;47269:20;;47259:6;:30;;47225:170;;;;-1:-1:-1;;;47225:170:0;;14620:2:1;47225:170:0;;;14602:21:1;14659:2;14639:18;;;14632:30;14698:34;14678:18;;;14671:62;-1:-1:-1;;;14749:18:1;;;14742:52;14811:19;;47225:170:0;14418:418:1;47064:582:0;-1:-1:-1;;;;;47426:35:0;;;;;;:31;:35;;;;;;;;47421:225;;47546:9;;-1:-1:-1;;;;;14040:18:0;;14013:7;14040:18;;;;;;;;;;;47520:22;;:6;:22;:::i;:::-;:35;;47486:140;;;;-1:-1:-1;;;47486:140:0;;14272:2:1;47486:140:0;;;14254:21:1;14311:2;14291:18;;;14284:30;-1:-1:-1;;;14330:18:1;;;14323:49;14389:18;;47486:140:0;14070:343:1;47486:140:0;47733:4;47684:28;14040:18;;;;;;;;;;;47791;;47767:42;;;;;;;47840:35;;-1:-1:-1;47864:11:0;;;;;;;47840:35;:61;;;;-1:-1:-1;47893:8:0;;-1:-1:-1;;;47893:8:0;;;;47892:9;47840:61;:110;;;;-1:-1:-1;;;;;;47919:31:0;;;;;;:25;:31;;;;;;;;47918:32;47840:110;:153;;;;-1:-1:-1;;;;;;47968:25:0;;;;;;:19;:25;;;;;;;;47967:26;47840:153;:194;;;;-1:-1:-1;;;;;;48011:23:0;;;;;;:19;:23;;;;;;;;48010:24;47840:194;47822:326;;;48061:8;:15;;-1:-1:-1;;;;48061:15:0;-1:-1:-1;;;48061:15:0;;;48093:10;:8;:10::i;:::-;48120:8;:16;;-1:-1:-1;;;;48120:16:0;;;47822:326;48179:8;;-1:-1:-1;;;48179:8:0;;;;48178:9;:55;;;;-1:-1:-1;;;;;;48204:29:0;;;;;;:25;:29;;;;;;;;48178:55;:85;;;;-1:-1:-1;48250:13:0;;;;48178:85;:153;;;;;48316:15;;48299:14;;:32;;;;:::i;:::-;48280:15;:51;;48178:153;:196;;;;-1:-1:-1;;;;;;48349:25:0;;;;;;:19;:25;;;;;;;;48348:26;48178:196;48160:282;;;48401:29;:27;:29::i;:::-;;48160:282;48470:8;;-1:-1:-1;;;;;48580:25:0;;48454:12;48580:25;;;:19;:25;;;;;;48470:8;-1:-1:-1;;;48470:8:0;;;;;48469:9;;48580:25;;:52;;-1:-1:-1;;;;;;48609:23:0;;;;;;:19;:23;;;;;;;;48580:52;48576:100;;;-1:-1:-1;48659:5:0;48576:100;48688:12;48793:7;48789:969;;;-1:-1:-1;;;;;48845:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;48894:1;48878:13;;:17;48845:50;48841:768;;;48923:34;48953:3;48923:25;48934:13;;48923:6;:10;;:25;;;;:::i;:34::-;48916:41;;49026:13;;49006:16;;48999:4;:23;;;;:::i;:::-;48998:41;;;;:::i;:::-;48976:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;49096:13:0;;49082:10;;49075:17;;:4;:17;:::i;:::-;49074:35;;;;:::i;:::-;49058:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;49178:13:0;;49158:16;;49151:23;;:4;:23;:::i;:::-;49150:41;;;;:::i;:::-;49128:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;48841:768:0;;-1:-1:-1;48841:768:0;;-1:-1:-1;;;;;49253:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;49303:1;49288:12;;:16;49253:51;49249:360;;;49332:33;49361:3;49332:24;49343:12;;49332:6;:10;;:24;;;;:::i;:33::-;49325:40;;49433:12;;49414:15;;49407:4;:22;;;;:::i;:::-;49406:39;;;;:::i;:::-;49384:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;49501:12:0;;49488:9;;49481:16;;:4;:16;:::i;:::-;49480:33;;;;:::i;:::-;49464:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;49581:12:0;;49562:15;;49555:22;;:4;:22;:::i;:::-;49554:39;;;;:::i;:::-;49532:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;49249:360:0;49629:8;;49625:91;;49658:42;49674:4;49688;49695;49658:15;:42::i;:::-;49732:14;49742:4;49732:14;;:::i;:::-;;;48789:969;49770:33;49786:4;49792:2;49796:6;49770:15;:33::i;:::-;44913:4898;;;;44800:5011;;;:::o;6502:191::-;6595:6;;;-1:-1:-1;;;;;6612:17:0;;;-1:-1:-1;;;;;;6612:17:0;;;;;;;6645:40;;6595:6;;;6612:17;6595:6;;6645:40;;6576:16;;6645:40;6565:128;6502:191;:::o;44016:188::-;-1:-1:-1;;;;;44099:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;44099:39:0;;;;;;;;;;44156:40;;44099:39;;:31;44156:40;;;44016:188;;:::o;26222:98::-;26280:7;26307:5;26311:1;26307;:5;:::i;:::-;26300:12;26222:98;-1:-1:-1;;;26222:98:0:o;26621:::-;26679:7;26706:5;26710:1;26706;:5;:::i;17988:733::-;-1:-1:-1;;;;;18128:20:0;;18120:70;;;;-1:-1:-1;;;18120:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18209:23:0;;18201:71;;;;-1:-1:-1;;;18201:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18369:17:0;;18345:21;18369:17;;;;;;;;;;;18405:23;;;;18397:74;;;;-1:-1:-1;;;18397:74:0;;15173:2:1;18397:74:0;;;15155:21:1;15212:2;15192:18;;;15185:30;15251:34;15231:18;;;15224:62;-1:-1:-1;;;15302:18:1;;;15295:36;15348:19;;18397:74:0;14971:402:1;18397:74:0;-1:-1:-1;;;;;18507:17:0;;;:9;:17;;;;;;;;;;;18527:22;;;18507:42;;18571:20;;;;;;;;:30;;18543:6;;18507:9;18571:30;;18543:6;;18571:30;:::i;:::-;;;;;;;;18636:9;-1:-1:-1;;;;;18619:35:0;18628:6;-1:-1:-1;;;;;18619:35:0;;18647:6;18619:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;18619:35:0;;;;;;;;18109:612;17988:733;;;:::o;50941:1756::-;51024:4;50980:23;14040:18;;;;;;;;;;;50980:50;;51041:25;51137:12;;51103:18;;51069;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;51041:108;-1:-1:-1;51160:12:0;51189:20;;;:46;;-1:-1:-1;51213:22:0;;51189:46;51185:85;;;51252:7;;;50941:1756::o;51185:85::-;51304:18;;:23;;51325:2;51304:23;:::i;:::-;51286:15;:41;51282:115;;;51362:18;;:23;;51383:2;51362:23;:::i;:::-;51344:41;;51282:115;51458:23;51571:1;51538:17;51503:18;;51485:15;:36;;;;:::i;:::-;51484:71;;;;:::i;:::-;:88;;;;:::i;:::-;51458:114;-1:-1:-1;51583:26:0;51612:36;:15;51458:114;51612:19;:36::i;:::-;51583:65;-1:-1:-1;51689:21:0;51723:36;51583:65;51723:16;:36::i;:::-;51772:18;51793:44;:21;51819:17;51793:25;:44::i;:::-;51772:65;;51850:23;51876:81;51929:17;51876:34;51891:18;;51876:10;:14;;:34;;;;:::i;:81::-;51850:107;;51968:17;51988:51;52021:17;51988:28;52003:12;;51988:10;:14;;:28;;;;:::i;:51::-;51968:71;-1:-1:-1;52052:23:0;51968:71;52078:28;52091:15;52078:10;:28;:::i;:::-;:40;;;;:::i;:::-;52152:1;52131:18;:22;;;52164:18;:22;;;52197:12;:16;;;52248:9;;52240:45;;52052:66;;-1:-1:-1;;;;;;52248:9:0;;52271;;52240:45;52152:1;52240:45;52271:9;52248;52240:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52226:59:0;;-1:-1:-1;;52302:19:0;;;;;:42;;;52343:1;52325:15;:19;52302:42;52298:278;;;52361:46;52374:15;52391;52361:12;:46::i;:::-;52531:18;;52427:137;;;15790:25:1;;;15846:2;15831:18;;15824:34;;;15874:18;;;15867:34;;;;52427:137:0;;;;;;15778:2:1;52427:137:0;;;52298:278;52610:15;;52602:87;;-1:-1:-1;;;;;52610:15:0;;;;52653:21;;52602:87;;;;52653:21;52610:15;52602:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;50941:1756:0:o;53268:788::-;53359:15;53342:14;:32;53460:29;;-1:-1:-1;;;53460:29:0;;-1:-1:-1;;;;;53475:13:0;1707:32:1;53460:29:0;;;1689:51:1;53325:4:0;;;;53460;;:14;;1662:18:1;;53460:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53429:60;;53539:20;53562:77;53623:5;53562:42;53587:16;;53562:20;:24;;:42;;;;:::i;:77::-;53539:100;-1:-1:-1;53744:16:0;;53740:110;;53777:61;53793:13;53816:6;53825:12;53777:15;:61::i;:::-;53925:19;53962:13;53925:51;;53987:4;-1:-1:-1;;;;;53987:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54014:12:0;;;;-1:-1:-1;54014:12:0;;-1:-1:-1;54014:12:0;54044:4;54037:11;;;;;53268:788;:::o;25865:98::-;25923:7;25950:5;25954:1;25950;:5;:::i;49819:589::-;49969:16;;;49983:1;49969:16;;;;;;;;49945:21;;49969:16;;;;;;;;;;-1:-1:-1;49969:16:0;49945:40;;50014:4;49996;50001:1;49996:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;49996:23:0;;;-1:-1:-1;;;;;49996:23:0;;;;;50040:15;-1:-1:-1;;;;;50040:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50030:4;50035:1;50030:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;50030:32:0;;;-1:-1:-1;;;;;50030:32:0;;;;;50075:62;50092:4;50107:15;50125:11;50075:8;:62::i;:::-;50176:224;;-1:-1:-1;;;50176:224:0;;-1:-1:-1;;;;;50176:15:0;:66;;;;:224;;50257:11;;50283:1;;50327:4;;50354;;50374:15;;50176:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49874:534;49819:589;:::o;50416:517::-;50564:62;50581:4;50596:15;50614:11;50564:8;:62::i;:::-;50669:256;;-1:-1:-1;;;50669:256:0;;50741:4;50669:256;;;17758:34:1;17808:18;;;17801:34;;;50787:1:0;17851:18:1;;;17844:34;;;17894:18;;;17887:34;36048:6:0;17937:19:1;;;17930:44;50899:15:0;17990:19:1;;;17983:35;50669:15:0;-1:-1:-1;;;;;50669:31:0;;;;50708:9;;17692:19:1;;50669:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;50416:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:316;3215:6;3223;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3393:2;3382:9;3378:18;3365:32;3355:42;;3416:35;3447:2;3436:9;3432:18;3416:35;:::i;:::-;3406:45;;3141:316;;;;;:::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3736:35:1;3767:2;3752:18;;3736:35;:::i;:::-;3726:45;;3462:315;;;;;:::o;3782:316::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;-1:-1:-1;;3967:23:1;;;4037:2;4022:18;;4009:32;;-1:-1:-1;4088:2:1;4073:18;;;4060:32;;3782:316;-1:-1:-1;3782:316:1:o;4103:180::-;4159:6;4212:2;4200:9;4191:7;4187:23;4183:32;4180:52;;;4228:1;4225;4218:12;4180:52;4251:26;4267:9;4251:26;:::i;4288:388::-;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:31;4516:5;4491:31;:::i;:::-;4541:5;-1:-1:-1;4598:2:1;4583:18;;4570:32;4611:33;4570:32;4611:33;:::i;:::-;4663:7;4653:17;;;4288:388;;;;;:::o;4681:380::-;4760:1;4756:12;;;;4803;;;4824:61;;4878:4;4870:6;4866:17;4856:27;;4824:61;4931:2;4923:6;4920:14;4900:18;4897:38;4894:161;;;4977:10;4972:3;4968:20;4965:1;4958:31;5012:4;5009:1;5002:15;5040:4;5037:1;5030:15;4894:161;;4681:380;;;:::o;5066:356::-;5268:2;5250:21;;;5287:18;;;5280:30;5346:34;5341:2;5326:18;;5319:62;5413:2;5398:18;;5066:356::o;5427:127::-;5488:10;5483:3;5479:20;5476:1;5469:31;5519:4;5516:1;5509:15;5543:4;5540:1;5533:15;5559:168;5599:7;5665:1;5661;5657:6;5653:14;5650:1;5647:21;5642:1;5635:9;5628:17;5624:45;5621:71;;;5672:18;;:::i;:::-;-1:-1:-1;5712:9:1;;5559:168::o;5732:217::-;5772:1;5798;5788:132;;5842:10;5837:3;5833:20;5830:1;5823:31;5877:4;5874:1;5867:15;5905:4;5902:1;5895:15;5788:132;-1:-1:-1;5934:9:1;;5732:217::o;6779:128::-;6819:3;6850:1;6846:6;6843:1;6840:13;6837:39;;;6856:18;;:::i;:::-;-1:-1:-1;6892:9:1;;6779:128::o;11008:184::-;11078:6;11131:2;11119:9;11110:7;11106:23;11102:32;11099:52;;;11147:1;11144;11137:12;11099:52;-1:-1:-1;11170:16:1;;11008:184;-1:-1:-1;11008:184:1:o;12005:401::-;12207:2;12189:21;;;12246:2;12226:18;;;12219:30;12285:34;12280:2;12265:18;;12258:62;-1:-1:-1;;;12351:2:1;12336:18;;12329:35;12396:3;12381:19;;12005:401::o;12411:399::-;12613:2;12595:21;;;12652:2;12632:18;;;12625:30;12691:34;12686:2;12671:18;;12664:62;-1:-1:-1;;;12757:2:1;12742:18;;12735:33;12800:3;12785:19;;12411:399::o;14841:125::-;14881:4;14909:1;14906;14903:8;14900:34;;;14914:18;;:::i;:::-;-1:-1:-1;14951:9:1;;14841:125::o;16044:127::-;16105:10;16100:3;16096:20;16093:1;16086:31;16136:4;16133:1;16126:15;16160:4;16157:1;16150:15;16176:251;16246:6;16299:2;16287:9;16278:7;16274:23;16270:32;16267:52;;;16315:1;16312;16305:12;16267:52;16347:9;16341:16;16366:31;16391:5;16366:31;:::i;16432:980::-;16694:4;16742:3;16731:9;16727:19;16773:6;16762:9;16755:25;16799:2;16837:6;16832:2;16821:9;16817:18;16810:34;16880:3;16875:2;16864:9;16860:18;16853:31;16904:6;16939;16933:13;16970:6;16962;16955:22;17008:3;16997:9;16993:19;16986:26;;17047:2;17039:6;17035:15;17021:29;;17068:1;17078:195;17092:6;17089:1;17086:13;17078:195;;;17157:13;;-1:-1:-1;;;;;17153:39:1;17141:52;;17248:15;;;;17213:12;;;;17189:1;17107:9;17078:195;;;-1:-1:-1;;;;;;;17329:32:1;;;;17324:2;17309:18;;17302:60;-1:-1:-1;;;17393:3:1;17378:19;17371:35;17290:3;16432:980;-1:-1:-1;;;16432:980:1:o;18029:306::-;18117:6;18125;18133;18186:2;18174:9;18165:7;18161:23;18157:32;18154:52;;;18202:1;18199;18192:12;18154:52;18231:9;18225:16;18215:26;;18281:2;18270:9;18266:18;18260:25;18250:35;;18325:2;18314:9;18310:18;18304:25;18294:35;;18029:306;;;;;:::o

Swarm Source

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