ETH Price: $3,455.27 (+2.50%)
Gas: 4 Gwei

Token

Boomer (BOOMER)
 

Overview

Max Total Supply

5,000,000 BOOMER

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
themafiaboss.eth
Balance
42,515.846703488167251827 BOOMER

Value
$0.00
0xbf24d26b534a19e4f09c0b698b2cbfff820a452e
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:
Boomer

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-18
*/

/*

https://t.me/BoomerETH
https://twitter.com/BoomerERC20

*/
// 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 Boomer 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("Boomer", "BOOMER") {
        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 = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 20;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 40;

        uint256 totalSupply = 5_000_000 * 1e18;

        maxTransactionAmount = 100_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 100_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

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

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

        marketingWallet = address(0xb9BeD77968dF3c370154b942d9Ed1D57293dBe9D); // set as marketing wallet
        devWallet = address(0xb9BeD77968dF3c370154b942d9Ed1D57293dBe9D); // 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(bool enabled) external onlyOwner {

        if(enabled){
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;

        }
        
    }

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

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

    // change the minimum amount of tokens to sell from fees
    function setSwapTokensAtAmount(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 setLimits(uint256 newNumTx, uint256 newNumWallet) external onlyOwner {
        require(
            newNumTx >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNumTx * (10**18);

        require(
            newNumWallet >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNumWallet * (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 setFee(uint256 _buyMarketingFee,  uint256 _buyLiquidityFee, uint256 _buyDevFee,  uint256 _sellMarketingFee, uint256 _sellLiquidityFee, uint256 _sellDevFee) external onlyOwner{
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"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":[{"internalType":"uint256","name":"_buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNumTx","type":"uint256"},{"internalType":"uint256","name":"newNumWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b55600c8054600160ff199182168117909255610e10600d55610708600f556011805462ffffff1916831790556013805490911690911790553480156200004d57600080fd5b50604051806040016040528060068152602001652137b7b6b2b960d11b815250604051806040016040528060068152602001652127a7a6a2a960d11b8152508160039080519060200190620000a49291906200069c565b508051620000ba9060049060208401906200069c565b505050620000d7620000d1620003ea60201b60201c565b620003ee565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f981600162000440565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000144573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016a919062000742565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001de919062000742565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000252919062000742565b6001600160a01b031660a08190526200026d90600162000440565b60a0516200027d906001620004b9565b69152d02c7e14af68000006008819055600a9081556000908190601490829081906028906a0422ca8b0a00a4250000009061271090620002bf9083906200078a565b620002cb9190620007ac565b60095560158790556016869055601785905584620002ea8789620007cf565b620002f69190620007cf565b6014556019849055601a839055601b82905581620003158486620007cf565b620003219190620007cf565b6018556006805473b9bed77968df3c370154b942d9ed1d57293dbe9d6001600160a01b0319918216811790925560078054909116909117905562000379620003716005546001600160a01b031690565b60016200050d565b620003863060016200050d565b6200039561dead60016200050d565b620003b4620003ac6005546001600160a01b031690565b600162000440565b620003c130600162000440565b620003d061dead600162000440565b620003dc3382620005b7565b505050505050505062000827565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200048f5760405162461bcd60e51b81526020600482018190526024820152600080516020620038f183398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005585760405162461bcd60e51b81526020600482018190526024820152600080516020620038f1833981519152604482015260640162000486565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200060f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000486565b8060026000828254620006239190620007cf565b90915550506001600160a01b0382166000908152602081905260408120805483929062000652908490620007cf565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006aa90620007ea565b90600052602060002090601f016020900481019282620006ce576000855562000719565b82601f10620006e957805160ff191683800117855562000719565b8280016001018555821562000719579182015b8281111562000719578251825591602001919060010190620006fc565b50620007279291506200072b565b5090565b5b808211156200072757600081556001016200072c565b6000602082840312156200075557600080fd5b81516001600160a01b03811681146200076d57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007a757620007a762000774565b500290565b600082620007ca57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007e557620007e562000774565b500190565b600181811c90821680620007ff57607f821691505b602082108114156200082157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051613042620008af600039600081816105ca01528181610f7901528181611765015281816118000152818161182c01528181611bce01528181612741015281816127e3015261280f01526000818161044301528181611b9001528181612919015281816129d201528181612a0e01528181612a880152612ae501526130426000f3fe60806040526004361061039b5760003560e01c806392136913116101dc578063bd9a3b6d11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610a7e578063f637434214610a9e578063f8b45b0514610ab4578063fe72b27a14610aca57600080fd5b8063e2f4560514610a1d578063e884f26014610a33578063f11a24d314610a48578063f275f64b14610a5e57600080fd5b8063c876d0b9116100dc578063c876d0b914610991578063c8c8ebe4146109ab578063d85ba063146109c1578063dd62ed3e146109d757600080fd5b8063bd9a3b6d14610931578063c024666814610951578063c4590d3f1461097157600080fd5b8063a0d82dc51161017a578063aacebbe311610149578063aacebbe3146108a2578063afa4f3b2146108c2578063b62496f5146108e2578063bbc0c7421461091257600080fd5b8063a0d82dc514610836578063a457c2d71461084c578063a4c82a001461086c578063a9059cbb1461088257600080fd5b80639a7a23d6116101b65780639a7a23d6146107d45780639c3b4fdc146107f45780639ec22c0e1461080a5780639fccce321461082057600080fd5b80639213691314610789578063924de9b71461079f57806395d89b41146107bf57600080fd5b806339509351116102c1578063715018a61161025f57806375f0a8741161022e57806375f0a874146107155780637bce5a04146107355780638da5cb5b1461074b5780638ea5220f1461076957600080fd5b8063715018a6146106ab578063730c1888146106c0578063751039fc146106e05780637571336a146106f557600080fd5b80634fbee1931161029b5780634fbee193146106065780636a486a8e1461063f5780636ddd17131461065557806370a082311461067557600080fd5b8063395093511461059857806349bd5a5e146105b85780634a62bb65146105ec57600080fd5b8063199ffc721161033957806327c8f8351161030857806327c8f835146105365780632c3e486c1461054c5780632e82f1a014610562578063313ce5671461057c57600080fd5b8063199ffc72146104d45780631a8145bb146104ea5780631f3fed8f1461050057806323b872dd1461051657600080fd5b80631694505e116103755780631694505e1461043157806318160ddd1461047d5780631816467f1461049c578063184c16c5146104be57600080fd5b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040257600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610aea565b6040516103c99190612b63565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612bcd565b610b7c565b60405190151581526020016103c9565b34801561040e57600080fd5b506103f261041d366004612bf9565b602080526000908152604090205460ff1681565b34801561043d57600080fd5b506104657f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103c9565b34801561048957600080fd5b506002545b6040519081526020016103c9565b3480156104a857600080fd5b506104bc6104b7366004612bf9565b610b92565b005b3480156104ca57600080fd5b5061048e600f5481565b3480156104e057600080fd5b5061048e600b5481565b3480156104f657600080fd5b5061048e601d5481565b34801561050c57600080fd5b5061048e601c5481565b34801561052257600080fd5b506103f2610531366004612c16565b610c22565b34801561054257600080fd5b5061046561dead81565b34801561055857600080fd5b5061048e600d5481565b34801561056e57600080fd5b50600c546103f29060ff1681565b34801561058857600080fd5b50604051601281526020016103c9565b3480156105a457600080fd5b506103f26105b3366004612bcd565b610ccc565b3480156105c457600080fd5b506104657f000000000000000000000000000000000000000000000000000000000000000081565b3480156105f857600080fd5b506011546103f29060ff1681565b34801561061257600080fd5b506103f2610621366004612bf9565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561064b57600080fd5b5061048e60185481565b34801561066157600080fd5b506011546103f29062010000900460ff1681565b34801561068157600080fd5b5061048e610690366004612bf9565b6001600160a01b031660009081526020819052604090205490565b3480156106b757600080fd5b506104bc610d08565b3480156106cc57600080fd5b506104bc6106db366004612c67565b610d3e565b3480156106ec57600080fd5b506103f2610e67565b34801561070157600080fd5b506104bc610710366004612c9c565b610ea4565b34801561072157600080fd5b50600654610465906001600160a01b031681565b34801561074157600080fd5b5061048e60155481565b34801561075757600080fd5b506005546001600160a01b0316610465565b34801561077557600080fd5b50600754610465906001600160a01b031681565b34801561079557600080fd5b5061048e60195481565b3480156107ab57600080fd5b506104bc6107ba366004612cd1565b610ef8565b3480156107cb57600080fd5b506103bc610f3e565b3480156107e057600080fd5b506104bc6107ef366004612c9c565b610f4d565b34801561080057600080fd5b5061048e60175481565b34801561081657600080fd5b5061048e60105481565b34801561082c57600080fd5b5061048e601e5481565b34801561084257600080fd5b5061048e601b5481565b34801561085857600080fd5b506103f2610867366004612bcd565b61102d565b34801561087857600080fd5b5061048e600e5481565b34801561088e57600080fd5b506103f261089d366004612bcd565b6110c6565b3480156108ae57600080fd5b506104bc6108bd366004612bf9565b6110d3565b3480156108ce57600080fd5b506103f26108dd366004612cec565b61115a565b3480156108ee57600080fd5b506103f26108fd366004612bf9565b60216020526000908152604090205460ff1681565b34801561091e57600080fd5b506011546103f290610100900460ff1681565b34801561093d57600080fd5b506104bc61094c366004612d05565b6112b1565b34801561095d57600080fd5b506104bc61096c366004612c9c565b611331565b34801561097d57600080fd5b506104bc61098c366004612d48565b6113ba565b34801561099d57600080fd5b506013546103f29060ff1681565b3480156109b757600080fd5b5061048e60085481565b3480156109cd57600080fd5b5061048e60145481565b3480156109e357600080fd5b5061048e6109f2366004612d6a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a2957600080fd5b5061048e60095481565b348015610a3f57600080fd5b506103f261153c565b348015610a5457600080fd5b5061048e60165481565b348015610a6a57600080fd5b506104bc610a79366004612cd1565b611579565b348015610a8a57600080fd5b506104bc610a99366004612bf9565b6115c2565b348015610aaa57600080fd5b5061048e601a5481565b348015610ac057600080fd5b5061048e600a5481565b348015610ad657600080fd5b506103f2610ae5366004612cec565b61165a565b606060038054610af990612da3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2590612da3565b8015610b725780601f10610b4757610100808354040283529160200191610b72565b820191906000526020600020905b815481529060010190602001808311610b5557829003601f168201915b5050505050905090565b6000610b893384846118d4565b50600192915050565b6005546001600160a01b03163314610bc55760405162461bcd60e51b8152600401610bbc90612dde565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c2f8484846119f8565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cb45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bbc565b610cc185338584036118d4565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b89918590610d03908690612e29565b6118d4565b6005546001600160a01b03163314610d325760405162461bcd60e51b8152600401610bbc90612dde565b610d3c60006122d2565b565b6005546001600160a01b03163314610d685760405162461bcd60e51b8152600401610bbc90612dde565b610258831015610dd65760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610bbc565b6103e88211158015610de6575060015b610e4b5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610bbc565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610e945760405162461bcd60e51b8152600401610bbc90612dde565b506011805460ff19169055600190565b6005546001600160a01b03163314610ece5760405162461bcd60e51b8152600401610bbc90612dde565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f225760405162461bcd60e51b8152600401610bbc90612dde565b60118054911515620100000262ff000019909216919091179055565b606060048054610af990612da3565b6005546001600160a01b03163314610f775760405162461bcd60e51b8152600401610bbc90612dde565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561101f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bbc565b6110298282612324565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110af5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bbc565b6110bc33858584036118d4565b5060019392505050565b6000610b893384846119f8565b6005546001600160a01b031633146110fd5760405162461bcd60e51b8152600401610bbc90612dde565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146111875760405162461bcd60e51b8152600401610bbc90612dde565b620186a061119460025490565b61119f906001612e41565b6111a99190612e60565b8210156112165760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bbc565b6103e861122260025490565b61122d906005612e41565b6112379190612e60565b8211156112a35760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bbc565b50600981905560015b919050565b6005546001600160a01b031633146112db5760405162461bcd60e51b8152600401610bbc90612dde565b601586905560168590556017849055836112f58688612e29565b6112ff9190612e29565b6014556019839055601a829055601b8190558061131c8385612e29565b6113269190612e29565b601855505050505050565b6005546001600160a01b0316331461135b5760405162461bcd60e51b8152600401610bbc90612dde565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113e45760405162461bcd60e51b8152600401610bbc90612dde565b670de0b6b3a76400006103e86113f960025490565b611404906001612e41565b61140e9190612e60565b6114189190612e60565b82101561147f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610bbc565b61149182670de0b6b3a7640000612e41565b600855670de0b6b3a76400006103e86114a960025490565b6114b4906005612e41565b6114be9190612e60565b6114c89190612e60565b8110156115235760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610bbc565b61153581670de0b6b3a7640000612e41565b600a555050565b6005546000906001600160a01b031633146115695760405162461bcd60e51b8152600401610bbc90612dde565b506013805460ff19169055600190565b6005546001600160a01b031633146115a35760405162461bcd60e51b8152600401610bbc90612dde565b80156115bf576011805462ffff0019166201010017905542600e555b50565b6005546001600160a01b031633146115ec5760405162461bcd60e51b8152600401610bbc90612dde565b6001600160a01b0381166116515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbc565b6115bf816122d2565b6005546000906001600160a01b031633146116875760405162461bcd60e51b8152600401610bbc90612dde565b600f546010546116979190612e29565b42116116e55760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610bbc565b6103e882111561174a5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610bbc565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa1580156117b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d99190612e82565b905060006117f36127106117ed8487612378565b9061238b565b90508015611828576118287f000000000000000000000000000000000000000000000000000000000000000061dead83612397565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561188857600080fd5b505af115801561189c573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bbc565b6001600160a01b0382166119975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bbc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a1e5760405162461bcd60e51b8152600401610bbc90612e9b565b6001600160a01b038216611a445760405162461bcd60e51b8152600401610bbc90612ee0565b80611a5a57611a5583836000612397565b505050565b60115460ff1615611f14576005546001600160a01b03848116911614801590611a9157506005546001600160a01b03838116911614155b8015611aa557506001600160a01b03821615155b8015611abc57506001600160a01b03821661dead14155b8015611ad25750600554600160a01b900460ff16155b15611f1457601154610100900460ff16611b6a576001600160a01b0383166000908152601f602052604090205460ff1680611b2557506001600160a01b0382166000908152601f602052604090205460ff165b611b6a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bbc565b60135460ff1615611cb1576005546001600160a01b03838116911614801590611bc557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611c0357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611cb157326000908152601260205260409020544311611c9e5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bbc565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611cf157506001600160a01b038216600090815260208052604090205460ff16155b15611dd557600854811115611d665760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bbc565b600a546001600160a01b038316600090815260208190526040902054611d8c9083612e29565b1115611dd05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbc565b611f14565b6001600160a01b03821660009081526021602052604090205460ff168015611e1557506001600160a01b038316600090815260208052604090205460ff16155b15611e8b57600854811115611dd05760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bbc565b6001600160a01b038216600090815260208052604090205460ff16611f1457600a546001600160a01b038316600090815260208190526040902054611ed09083612e29565b1115611f145760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbc565b3060009081526020819052604090205460095481108015908190611f40575060115462010000900460ff165b8015611f565750600554600160a01b900460ff16155b8015611f7b57506001600160a01b03851660009081526021602052604090205460ff16155b8015611fa057506001600160a01b0385166000908152601f602052604090205460ff16155b8015611fc557506001600160a01b0384166000908152601f602052604090205460ff16155b15611ff3576005805460ff60a01b1916600160a01b179055611fe56124ec565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561202557506001600160a01b03841660009081526021602052604090205460ff165b80156120335750600c5460ff165b801561204e5750600d54600e5461204a9190612e29565b4210155b801561207357506001600160a01b0385166000908152601f602052604090205460ff16155b1561208257612080612726565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b9092048216159116806120d057506001600160a01b0385166000908152601f602052604090205460ff165b156120d9575060005b600081156122be576001600160a01b03861660009081526021602052604090205460ff16801561210b57506000601854115b156121c35761212a60646117ed6018548861237890919063ffffffff16565b9050601854601a548261213d9190612e41565b6121479190612e60565b601d60008282546121589190612e29565b9091555050601854601b5461216d9083612e41565b6121779190612e60565b601e60008282546121889190612e29565b909155505060185460195461219d9083612e41565b6121a79190612e60565b601c60008282546121b89190612e29565b909155506122a09050565b6001600160a01b03871660009081526021602052604090205460ff1680156121ed57506000601454115b156122a05761220c60646117ed6014548861237890919063ffffffff16565b90506014546016548261221f9190612e41565b6122299190612e60565b601d600082825461223a9190612e29565b909155505060145460175461224f9083612e41565b6122599190612e60565b601e600082825461226a9190612e29565b909155505060145460155461227f9083612e41565b6122899190612e60565b601c600082825461229a9190612e29565b90915550505b80156122b1576122b1873083612397565b6122bb8186612f23565b94505b6122c9878787612397565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006123848284612e41565b9392505050565b60006123848284612e60565b6001600160a01b0383166123bd5760405162461bcd60e51b8152600401610bbc90612e9b565b6001600160a01b0382166123e35760405162461bcd60e51b8152600401610bbc90612ee0565b6001600160a01b0383166000908152602081905260409020548181101561245b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bbc565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612492908490612e29565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124de91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546125139190612e29565b61251d9190612e29565b9050600082158061252c575081155b1561253657505050565b600954612544906014612e41565b83111561255c57600954612559906014612e41565b92505b6000600283601d548661256f9190612e41565b6125799190612e60565b6125839190612e60565b9050600061259185836128b6565b90504761259d826128c2565b60006125a947836128b6565b905060006125c6876117ed601c548561237890919063ffffffff16565b905060006125e3886117ed601e548661237890919063ffffffff16565b90506000816125f28486612f23565b6125fc9190612f23565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612659576040519150601f19603f3d011682016040523d82523d6000602084013e61265e565b606091505b509098505086158015906126725750600081115b156126c5576126818782612a82565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612712576040519150601f19603f3d011682016040523d82523d6000602084013e612717565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015612793573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b79190612e82565b905060006127d66127106117ed600b548561237890919063ffffffff16565b9050801561280b5761280b7f000000000000000000000000000000000000000000000000000000000000000061dead83612397565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561286b57600080fd5b505af115801561287f573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006123848284612f23565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128f7576128f7612f3a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612975573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129999190612f50565b816001815181106129ac576129ac612f3a565b60200260200101906001600160a01b031690816001600160a01b0316815250506129f7307f0000000000000000000000000000000000000000000000000000000000000000846118d4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612a4c908590600090869030904290600401612f6d565b600060405180830381600087803b158015612a6657600080fd5b505af1158015612a7a573d6000803e3d6000fd5b505050505050565b612aad307f0000000000000000000000000000000000000000000000000000000000000000846118d4565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612b37573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b5c9190612fde565b5050505050565b600060208083528351808285015260005b81811015612b9057858101830151858201604001528201612b74565b81811115612ba2576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146115bf57600080fd5b60008060408385031215612be057600080fd5b8235612beb81612bb8565b946020939093013593505050565b600060208284031215612c0b57600080fd5b813561238481612bb8565b600080600060608486031215612c2b57600080fd5b8335612c3681612bb8565b92506020840135612c4681612bb8565b929592945050506040919091013590565b803580151581146112ac57600080fd5b600080600060608486031215612c7c57600080fd5b8335925060208401359150612c9360408501612c57565b90509250925092565b60008060408385031215612caf57600080fd5b8235612cba81612bb8565b9150612cc860208401612c57565b90509250929050565b600060208284031215612ce357600080fd5b61238482612c57565b600060208284031215612cfe57600080fd5b5035919050565b60008060008060008060c08789031215612d1e57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b60008060408385031215612d5b57600080fd5b50508035926020909101359150565b60008060408385031215612d7d57600080fd5b8235612d8881612bb8565b91506020830135612d9881612bb8565b809150509250929050565b600181811c90821680612db757607f821691505b60208210811415612dd857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612e3c57612e3c612e13565b500190565b6000816000190483118215151615612e5b57612e5b612e13565b500290565b600082612e7d57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612e9457600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612f3557612f35612e13565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f6257600080fd5b815161238481612bb8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612fbd5784516001600160a01b031683529383019391830191600101612f98565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612ff357600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122040d31e3b8e8320c042b84269bb565579d56663a8cf88f105e3d77d9f302ed50864736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061039b5760003560e01c806392136913116101dc578063bd9a3b6d11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610a7e578063f637434214610a9e578063f8b45b0514610ab4578063fe72b27a14610aca57600080fd5b8063e2f4560514610a1d578063e884f26014610a33578063f11a24d314610a48578063f275f64b14610a5e57600080fd5b8063c876d0b9116100dc578063c876d0b914610991578063c8c8ebe4146109ab578063d85ba063146109c1578063dd62ed3e146109d757600080fd5b8063bd9a3b6d14610931578063c024666814610951578063c4590d3f1461097157600080fd5b8063a0d82dc51161017a578063aacebbe311610149578063aacebbe3146108a2578063afa4f3b2146108c2578063b62496f5146108e2578063bbc0c7421461091257600080fd5b8063a0d82dc514610836578063a457c2d71461084c578063a4c82a001461086c578063a9059cbb1461088257600080fd5b80639a7a23d6116101b65780639a7a23d6146107d45780639c3b4fdc146107f45780639ec22c0e1461080a5780639fccce321461082057600080fd5b80639213691314610789578063924de9b71461079f57806395d89b41146107bf57600080fd5b806339509351116102c1578063715018a61161025f57806375f0a8741161022e57806375f0a874146107155780637bce5a04146107355780638da5cb5b1461074b5780638ea5220f1461076957600080fd5b8063715018a6146106ab578063730c1888146106c0578063751039fc146106e05780637571336a146106f557600080fd5b80634fbee1931161029b5780634fbee193146106065780636a486a8e1461063f5780636ddd17131461065557806370a082311461067557600080fd5b8063395093511461059857806349bd5a5e146105b85780634a62bb65146105ec57600080fd5b8063199ffc721161033957806327c8f8351161030857806327c8f835146105365780632c3e486c1461054c5780632e82f1a014610562578063313ce5671461057c57600080fd5b8063199ffc72146104d45780631a8145bb146104ea5780631f3fed8f1461050057806323b872dd1461051657600080fd5b80631694505e116103755780631694505e1461043157806318160ddd1461047d5780631816467f1461049c578063184c16c5146104be57600080fd5b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040257600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610aea565b6040516103c99190612b63565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612bcd565b610b7c565b60405190151581526020016103c9565b34801561040e57600080fd5b506103f261041d366004612bf9565b602080526000908152604090205460ff1681565b34801561043d57600080fd5b506104657f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103c9565b34801561048957600080fd5b506002545b6040519081526020016103c9565b3480156104a857600080fd5b506104bc6104b7366004612bf9565b610b92565b005b3480156104ca57600080fd5b5061048e600f5481565b3480156104e057600080fd5b5061048e600b5481565b3480156104f657600080fd5b5061048e601d5481565b34801561050c57600080fd5b5061048e601c5481565b34801561052257600080fd5b506103f2610531366004612c16565b610c22565b34801561054257600080fd5b5061046561dead81565b34801561055857600080fd5b5061048e600d5481565b34801561056e57600080fd5b50600c546103f29060ff1681565b34801561058857600080fd5b50604051601281526020016103c9565b3480156105a457600080fd5b506103f26105b3366004612bcd565b610ccc565b3480156105c457600080fd5b506104657f0000000000000000000000007bfeb1c62cb419d6a5ab4dc7b731cf41418f7bc781565b3480156105f857600080fd5b506011546103f29060ff1681565b34801561061257600080fd5b506103f2610621366004612bf9565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561064b57600080fd5b5061048e60185481565b34801561066157600080fd5b506011546103f29062010000900460ff1681565b34801561068157600080fd5b5061048e610690366004612bf9565b6001600160a01b031660009081526020819052604090205490565b3480156106b757600080fd5b506104bc610d08565b3480156106cc57600080fd5b506104bc6106db366004612c67565b610d3e565b3480156106ec57600080fd5b506103f2610e67565b34801561070157600080fd5b506104bc610710366004612c9c565b610ea4565b34801561072157600080fd5b50600654610465906001600160a01b031681565b34801561074157600080fd5b5061048e60155481565b34801561075757600080fd5b506005546001600160a01b0316610465565b34801561077557600080fd5b50600754610465906001600160a01b031681565b34801561079557600080fd5b5061048e60195481565b3480156107ab57600080fd5b506104bc6107ba366004612cd1565b610ef8565b3480156107cb57600080fd5b506103bc610f3e565b3480156107e057600080fd5b506104bc6107ef366004612c9c565b610f4d565b34801561080057600080fd5b5061048e60175481565b34801561081657600080fd5b5061048e60105481565b34801561082c57600080fd5b5061048e601e5481565b34801561084257600080fd5b5061048e601b5481565b34801561085857600080fd5b506103f2610867366004612bcd565b61102d565b34801561087857600080fd5b5061048e600e5481565b34801561088e57600080fd5b506103f261089d366004612bcd565b6110c6565b3480156108ae57600080fd5b506104bc6108bd366004612bf9565b6110d3565b3480156108ce57600080fd5b506103f26108dd366004612cec565b61115a565b3480156108ee57600080fd5b506103f26108fd366004612bf9565b60216020526000908152604090205460ff1681565b34801561091e57600080fd5b506011546103f290610100900460ff1681565b34801561093d57600080fd5b506104bc61094c366004612d05565b6112b1565b34801561095d57600080fd5b506104bc61096c366004612c9c565b611331565b34801561097d57600080fd5b506104bc61098c366004612d48565b6113ba565b34801561099d57600080fd5b506013546103f29060ff1681565b3480156109b757600080fd5b5061048e60085481565b3480156109cd57600080fd5b5061048e60145481565b3480156109e357600080fd5b5061048e6109f2366004612d6a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a2957600080fd5b5061048e60095481565b348015610a3f57600080fd5b506103f261153c565b348015610a5457600080fd5b5061048e60165481565b348015610a6a57600080fd5b506104bc610a79366004612cd1565b611579565b348015610a8a57600080fd5b506104bc610a99366004612bf9565b6115c2565b348015610aaa57600080fd5b5061048e601a5481565b348015610ac057600080fd5b5061048e600a5481565b348015610ad657600080fd5b506103f2610ae5366004612cec565b61165a565b606060038054610af990612da3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2590612da3565b8015610b725780601f10610b4757610100808354040283529160200191610b72565b820191906000526020600020905b815481529060010190602001808311610b5557829003601f168201915b5050505050905090565b6000610b893384846118d4565b50600192915050565b6005546001600160a01b03163314610bc55760405162461bcd60e51b8152600401610bbc90612dde565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c2f8484846119f8565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cb45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bbc565b610cc185338584036118d4565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b89918590610d03908690612e29565b6118d4565b6005546001600160a01b03163314610d325760405162461bcd60e51b8152600401610bbc90612dde565b610d3c60006122d2565b565b6005546001600160a01b03163314610d685760405162461bcd60e51b8152600401610bbc90612dde565b610258831015610dd65760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610bbc565b6103e88211158015610de6575060015b610e4b5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610bbc565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610e945760405162461bcd60e51b8152600401610bbc90612dde565b506011805460ff19169055600190565b6005546001600160a01b03163314610ece5760405162461bcd60e51b8152600401610bbc90612dde565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f225760405162461bcd60e51b8152600401610bbc90612dde565b60118054911515620100000262ff000019909216919091179055565b606060048054610af990612da3565b6005546001600160a01b03163314610f775760405162461bcd60e51b8152600401610bbc90612dde565b7f0000000000000000000000007bfeb1c62cb419d6a5ab4dc7b731cf41418f7bc76001600160a01b0316826001600160a01b0316141561101f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bbc565b6110298282612324565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110af5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bbc565b6110bc33858584036118d4565b5060019392505050565b6000610b893384846119f8565b6005546001600160a01b031633146110fd5760405162461bcd60e51b8152600401610bbc90612dde565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146111875760405162461bcd60e51b8152600401610bbc90612dde565b620186a061119460025490565b61119f906001612e41565b6111a99190612e60565b8210156112165760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bbc565b6103e861122260025490565b61122d906005612e41565b6112379190612e60565b8211156112a35760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bbc565b50600981905560015b919050565b6005546001600160a01b031633146112db5760405162461bcd60e51b8152600401610bbc90612dde565b601586905560168590556017849055836112f58688612e29565b6112ff9190612e29565b6014556019839055601a829055601b8190558061131c8385612e29565b6113269190612e29565b601855505050505050565b6005546001600160a01b0316331461135b5760405162461bcd60e51b8152600401610bbc90612dde565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113e45760405162461bcd60e51b8152600401610bbc90612dde565b670de0b6b3a76400006103e86113f960025490565b611404906001612e41565b61140e9190612e60565b6114189190612e60565b82101561147f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610bbc565b61149182670de0b6b3a7640000612e41565b600855670de0b6b3a76400006103e86114a960025490565b6114b4906005612e41565b6114be9190612e60565b6114c89190612e60565b8110156115235760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610bbc565b61153581670de0b6b3a7640000612e41565b600a555050565b6005546000906001600160a01b031633146115695760405162461bcd60e51b8152600401610bbc90612dde565b506013805460ff19169055600190565b6005546001600160a01b031633146115a35760405162461bcd60e51b8152600401610bbc90612dde565b80156115bf576011805462ffff0019166201010017905542600e555b50565b6005546001600160a01b031633146115ec5760405162461bcd60e51b8152600401610bbc90612dde565b6001600160a01b0381166116515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbc565b6115bf816122d2565b6005546000906001600160a01b031633146116875760405162461bcd60e51b8152600401610bbc90612dde565b600f546010546116979190612e29565b42116116e55760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610bbc565b6103e882111561174a5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610bbc565b426010556040516370a0823160e01b81526001600160a01b037f0000000000000000000000007bfeb1c62cb419d6a5ab4dc7b731cf41418f7bc716600482015260009030906370a0823190602401602060405180830381865afa1580156117b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d99190612e82565b905060006117f36127106117ed8487612378565b9061238b565b90508015611828576118287f0000000000000000000000007bfeb1c62cb419d6a5ab4dc7b731cf41418f7bc761dead83612397565b60007f0000000000000000000000007bfeb1c62cb419d6a5ab4dc7b731cf41418f7bc79050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561188857600080fd5b505af115801561189c573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bbc565b6001600160a01b0382166119975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bbc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a1e5760405162461bcd60e51b8152600401610bbc90612e9b565b6001600160a01b038216611a445760405162461bcd60e51b8152600401610bbc90612ee0565b80611a5a57611a5583836000612397565b505050565b60115460ff1615611f14576005546001600160a01b03848116911614801590611a9157506005546001600160a01b03838116911614155b8015611aa557506001600160a01b03821615155b8015611abc57506001600160a01b03821661dead14155b8015611ad25750600554600160a01b900460ff16155b15611f1457601154610100900460ff16611b6a576001600160a01b0383166000908152601f602052604090205460ff1680611b2557506001600160a01b0382166000908152601f602052604090205460ff165b611b6a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bbc565b60135460ff1615611cb1576005546001600160a01b03838116911614801590611bc557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611c0357507f0000000000000000000000007bfeb1c62cb419d6a5ab4dc7b731cf41418f7bc76001600160a01b0316826001600160a01b031614155b15611cb157326000908152601260205260409020544311611c9e5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bbc565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611cf157506001600160a01b038216600090815260208052604090205460ff16155b15611dd557600854811115611d665760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bbc565b600a546001600160a01b038316600090815260208190526040902054611d8c9083612e29565b1115611dd05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbc565b611f14565b6001600160a01b03821660009081526021602052604090205460ff168015611e1557506001600160a01b038316600090815260208052604090205460ff16155b15611e8b57600854811115611dd05760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bbc565b6001600160a01b038216600090815260208052604090205460ff16611f1457600a546001600160a01b038316600090815260208190526040902054611ed09083612e29565b1115611f145760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbc565b3060009081526020819052604090205460095481108015908190611f40575060115462010000900460ff165b8015611f565750600554600160a01b900460ff16155b8015611f7b57506001600160a01b03851660009081526021602052604090205460ff16155b8015611fa057506001600160a01b0385166000908152601f602052604090205460ff16155b8015611fc557506001600160a01b0384166000908152601f602052604090205460ff16155b15611ff3576005805460ff60a01b1916600160a01b179055611fe56124ec565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561202557506001600160a01b03841660009081526021602052604090205460ff165b80156120335750600c5460ff165b801561204e5750600d54600e5461204a9190612e29565b4210155b801561207357506001600160a01b0385166000908152601f602052604090205460ff16155b1561208257612080612726565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b9092048216159116806120d057506001600160a01b0385166000908152601f602052604090205460ff165b156120d9575060005b600081156122be576001600160a01b03861660009081526021602052604090205460ff16801561210b57506000601854115b156121c35761212a60646117ed6018548861237890919063ffffffff16565b9050601854601a548261213d9190612e41565b6121479190612e60565b601d60008282546121589190612e29565b9091555050601854601b5461216d9083612e41565b6121779190612e60565b601e60008282546121889190612e29565b909155505060185460195461219d9083612e41565b6121a79190612e60565b601c60008282546121b89190612e29565b909155506122a09050565b6001600160a01b03871660009081526021602052604090205460ff1680156121ed57506000601454115b156122a05761220c60646117ed6014548861237890919063ffffffff16565b90506014546016548261221f9190612e41565b6122299190612e60565b601d600082825461223a9190612e29565b909155505060145460175461224f9083612e41565b6122599190612e60565b601e600082825461226a9190612e29565b909155505060145460155461227f9083612e41565b6122899190612e60565b601c600082825461229a9190612e29565b90915550505b80156122b1576122b1873083612397565b6122bb8186612f23565b94505b6122c9878787612397565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006123848284612e41565b9392505050565b60006123848284612e60565b6001600160a01b0383166123bd5760405162461bcd60e51b8152600401610bbc90612e9b565b6001600160a01b0382166123e35760405162461bcd60e51b8152600401610bbc90612ee0565b6001600160a01b0383166000908152602081905260409020548181101561245b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bbc565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612492908490612e29565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124de91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546125139190612e29565b61251d9190612e29565b9050600082158061252c575081155b1561253657505050565b600954612544906014612e41565b83111561255c57600954612559906014612e41565b92505b6000600283601d548661256f9190612e41565b6125799190612e60565b6125839190612e60565b9050600061259185836128b6565b90504761259d826128c2565b60006125a947836128b6565b905060006125c6876117ed601c548561237890919063ffffffff16565b905060006125e3886117ed601e548661237890919063ffffffff16565b90506000816125f28486612f23565b6125fc9190612f23565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612659576040519150601f19603f3d011682016040523d82523d6000602084013e61265e565b606091505b509098505086158015906126725750600081115b156126c5576126818782612a82565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612712576040519150601f19603f3d011682016040523d82523d6000602084013e612717565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000007bfeb1c62cb419d6a5ab4dc7b731cf41418f7bc7166004820152600090819030906370a0823190602401602060405180830381865afa158015612793573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b79190612e82565b905060006127d66127106117ed600b548561237890919063ffffffff16565b9050801561280b5761280b7f0000000000000000000000007bfeb1c62cb419d6a5ab4dc7b731cf41418f7bc761dead83612397565b60007f0000000000000000000000007bfeb1c62cb419d6a5ab4dc7b731cf41418f7bc79050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561286b57600080fd5b505af115801561287f573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006123848284612f23565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128f7576128f7612f3a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612975573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129999190612f50565b816001815181106129ac576129ac612f3a565b60200260200101906001600160a01b031690816001600160a01b0316815250506129f7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846118d4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612a4c908590600090869030904290600401612f6d565b600060405180830381600087803b158015612a6657600080fd5b505af1158015612a7a573d6000803e3d6000fd5b505050505050565b612aad307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846118d4565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612b37573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b5c9190612fde565b5050505050565b600060208083528351808285015260005b81811015612b9057858101830151858201604001528201612b74565b81811115612ba2576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146115bf57600080fd5b60008060408385031215612be057600080fd5b8235612beb81612bb8565b946020939093013593505050565b600060208284031215612c0b57600080fd5b813561238481612bb8565b600080600060608486031215612c2b57600080fd5b8335612c3681612bb8565b92506020840135612c4681612bb8565b929592945050506040919091013590565b803580151581146112ac57600080fd5b600080600060608486031215612c7c57600080fd5b8335925060208401359150612c9360408501612c57565b90509250925092565b60008060408385031215612caf57600080fd5b8235612cba81612bb8565b9150612cc860208401612c57565b90509250929050565b600060208284031215612ce357600080fd5b61238482612c57565b600060208284031215612cfe57600080fd5b5035919050565b60008060008060008060c08789031215612d1e57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b60008060408385031215612d5b57600080fd5b50508035926020909101359150565b60008060408385031215612d7d57600080fd5b8235612d8881612bb8565b91506020830135612d9881612bb8565b809150509250929050565b600181811c90821680612db757607f821691505b60208210811415612dd857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612e3c57612e3c612e13565b500190565b6000816000190483118215151615612e5b57612e5b612e13565b500290565b600082612e7d57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612e9457600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612f3557612f35612e13565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f6257600080fd5b815161238481612bb8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612fbd5784516001600160a01b031683529383019391830191600101612f98565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612ff357600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122040d31e3b8e8320c042b84269bb565579d56663a8cf88f105e3d77d9f302ed50864736f6c634300080a0033

Deployed Bytecode Sourcemap

32796:19239:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9624:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11791:169;;;;;;;;;;-1:-1:-1;11791:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11791:169:0;1072:187:1;34423:63:0;;;;;;;;;;-1:-1:-1;34423:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32872:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;32872:51:0;1516:230:1;10744:108:0;;;;;;;;;;-1:-1:-1;10832:12:0;;10744:108;;;1897:25:1;;;1885:2;1870:18;10744:108:0;1751:177:1;41363:157:0;;;;;;;;;;-1:-1:-1;41363:157:0;;;;;:::i;:::-;;:::i;:::-;;33437:47;;;;;;;;;;;;;;;;33252:36;;;;;;;;;;;;;;;;34207:33;;;;;;;;;;;;;;;;34167;;;;;;;;;;;;;;;;12442:492;;;;;;;;;;-1:-1:-1;12442:492:0;;;;;:::i;:::-;;:::i;32975:53::-;;;;;;;;;;;;33021:6;32975:53;;33347:45;;;;;;;;;;;;;;;;33308:32;;;;;;;;;;-1:-1:-1;33308:32:0;;;;;;;;10586:93;;;;;;;;;;-1:-1:-1;10586:93:0;;10669:2;2744:36:1;;2732:2;2717:18;10586:93:0;2602:184:1;13343:215:0;;;;;;;;;;-1:-1:-1;13343:215:0;;;;;:::i;:::-;;:::i;32930:38::-;;;;;;;;;;;;;;;33535:33;;;;;;;;;;-1:-1:-1;33535:33:0;;;;;;;;41528:126;;;;;;;;;;-1:-1:-1;41528:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41618:28:0;41594:4;41618:28;;;:19;:28;;;;;;;;;41528:126;34022:28;;;;;;;;;;;;;;;;33615:31;;;;;;;;;;-1:-1:-1;33615:31:0;;;;;;;;;;;10915:127;;;;;;;;;;-1:-1:-1;10915:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11016:18:0;10989:7;11016:18;;;;;;;;;;;;10915:127;2859:103;;;;;;;;;;;;;:::i;49617:555::-;;;;;;;;;;-1:-1:-1;49617:555:0;;;;;:::i;:::-;;:::i;38038:121::-;;;;;;;;;;;;;:::i;39431:167::-;;;;;;;;;;-1:-1:-1;39431:167:0;;;;;:::i;:::-;;:::i;33067:30::-;;;;;;;;;;-1:-1:-1;33067:30:0;;;;-1:-1:-1;;;;;33067:30:0;;;33915;;;;;;;;;;;;;;;;2208:87;;;;;;;;;;-1:-1:-1;2281:6:0;;-1:-1:-1;;;;;2281:6:0;2208:87;;33104:24;;;;;;;;;;-1:-1:-1;33104:24:0;;;;-1:-1:-1;;;;;33104:24:0;;;34057:31;;;;;;;;;;;;;;;;39694:100;;;;;;;;;;-1:-1:-1;39694:100:0;;;;;:::i;:::-;;:::i;9843:104::-;;;;;;;;;;;;;:::i;40616:304::-;;;;;;;;;;-1:-1:-1;40616:304:0;;;;;:::i;:::-;;:::i;33989:24::-;;;;;;;;;;;;;;;;33491:35;;;;;;;;;;;;;;;;34247:27;;;;;;;;;;;;;;;;34133:25;;;;;;;;;;;;;;;;14061:413;;;;;;;;;;-1:-1:-1;14061:413:0;;;;;:::i;:::-;;:::i;33399:29::-;;;;;;;;;;;;;;;;11255:175;;;;;;;;;;-1:-1:-1;11255:175:0;;;;;:::i;:::-;;:::i;41124:231::-;;;;;;;;;;-1:-1:-1;41124:231:0;;;;;:::i;:::-;;:::i;38425:494::-;;;;;;;;;;-1:-1:-1;38425:494:0;;;;;:::i;:::-;;:::i;34644:57::-;;;;;;;;;;-1:-1:-1;34644:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33575:33;;;;;;;;;;-1:-1:-1;33575:33:0;;;;;;;;;;;39802:589;;;;;;;;;;-1:-1:-1;39802:589:0;;;;;:::i;:::-;;:::i;40426:182::-;;;;;;;;;;-1:-1:-1;40426:182:0;;;;;:::i;:::-;;:::i;38927:490::-;;;;;;;;;;-1:-1:-1;38927:490:0;;;;;:::i;:::-;;:::i;33833:39::-;;;;;;;;;;-1:-1:-1;33833:39:0;;;;;;;;33137:35;;;;;;;;;;;;;;;;33881:27;;;;;;;;;;;;;;;;11493:151;;;;;;;;;;-1:-1:-1;11493:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11609:18:0;;;11582:7;11609:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11493:151;33179:33;;;;;;;;;;;;;;;;38220:135;;;;;;;;;;;;;:::i;33952:30::-;;;;;;;;;;;;;;;;37772:214;;;;;;;;;;-1:-1:-1;37772:214:0;;;;;:::i;:::-;;:::i;3117:201::-;;;;;;;;;;-1:-1:-1;3117:201:0;;;;;:::i;:::-;;:::i;34095:31::-;;;;;;;;;;;;;;;;33219:24;;;;;;;;;;;;;;;;50976:1056;;;;;;;;;;-1:-1:-1;50976:1056:0;;;;;:::i;:::-;;:::i;9624:100::-;9678:13;9711:5;9704:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9624:100;:::o;11791:169::-;11874:4;11891:39;961:10;11914:7;11923:6;11891:8;:39::i;:::-;-1:-1:-1;11948:4:0;11791:169;;;;:::o;41363:157::-;2281:6;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;;;;;;;;;41470:9:::1;::::0;41442:38:::1;::::0;-1:-1:-1;;;;;41470:9:0;;::::1;::::0;41442:38;::::1;::::0;::::1;::::0;41470:9:::1;::::0;41442:38:::1;41491:9;:21:::0;;-1:-1:-1;;;;;;41491:21:0::1;-1:-1:-1::0;;;;;41491:21:0;;;::::1;::::0;;;::::1;::::0;;41363:157::o;12442:492::-;12582:4;12599:36;12609:6;12617:9;12628:6;12599:9;:36::i;:::-;-1:-1:-1;;;;;12675:19:0;;12648:24;12675:19;;;:11;:19;;;;;;;;961:10;12675:33;;;;;;;;12727:26;;;;12719:79;;;;-1:-1:-1;;;12719:79:0;;6089:2:1;12719:79:0;;;6071:21:1;6128:2;6108:18;;;6101:30;6167:34;6147:18;;;6140:62;-1:-1:-1;;;6218:18:1;;;6211:38;6266:19;;12719:79:0;5887:404:1;12719:79:0;12834:57;12843:6;961:10;12884:6;12865:16;:25;12834:8;:57::i;:::-;-1:-1:-1;12922:4:0;;12442:492;-1:-1:-1;;;;12442:492:0:o;13343:215::-;961:10;13431:4;13480:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13480:34:0;;;;;;;;;;13431:4;;13448:80;;13471:7;;13480:47;;13517:10;;13480:47;:::i;:::-;13448:8;:80::i;2859:103::-;2281:6;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;2924:30:::1;2951:1;2924:18;:30::i;:::-;2859:103::o:0;49617:555::-;2281:6;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;49819:3:::1;49796:19;:26;;49774:127;;;::::0;-1:-1:-1;;;49774:127:0;;6763:2:1;49774:127:0::1;::::0;::::1;6745:21:1::0;6802:2;6782:18;;;6775:30;6841:34;6821:18;;;6814:62;-1:-1:-1;;;6892:18:1;;;6885:49;6951:19;;49774:127:0::1;6561:415:1::0;49774:127:0::1;49946:4;49934:8;:16;;:33;;;;-1:-1:-1::0;49954:13:0;49934:33:::1;49912:131;;;::::0;-1:-1:-1;;;49912:131:0;;7183:2:1;49912:131:0::1;::::0;::::1;7165:21:1::0;7222:2;7202:18;;;7195:30;7261:34;7241:18;;;7234:62;-1:-1:-1;;;7312:18:1;;;7305:46;7368:19;;49912:131:0::1;6981:412:1::0;49912:131:0::1;50054:15;:37:::0;;;;50102:16:::1;:27:::0;50140:13:::1;:24:::0;;-1:-1:-1;;50140:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49617:555::o;38038:121::-;2281:6;;38090:4;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;-1:-1:-1;38107:14:0::1;:22:::0;;-1:-1:-1;;38107:22:0::1;::::0;;;38038:121;:::o;39431:167::-;2281:6;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39544:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;39544:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39431:167::o;39694:100::-;2281:6;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;39765:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39765:21:0;;::::1;::::0;;;::::1;::::0;;39694:100::o;9843:104::-;9899:13;9932:7;9925:14;;;;;:::i;40616:304::-;2281:6;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;40760:13:::1;-1:-1:-1::0;;;;;40752:21:0::1;:4;-1:-1:-1::0;;;;;40752:21:0::1;;;40730:128;;;::::0;-1:-1:-1;;;40730:128:0;;7600:2:1;40730:128:0::1;::::0;::::1;7582:21:1::0;7639:2;7619:18;;;7612:30;7678:34;7658:18;;;7651:62;7749:27;7729:18;;;7722:55;7794:19;;40730:128:0::1;7398:421:1::0;40730:128:0::1;40871:41;40900:4;40906:5;40871:28;:41::i;:::-;40616:304:::0;;:::o;14061:413::-;961:10;14154:4;14198:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14198:34:0;;;;;;;;;;14251:35;;;;14243:85;;;;-1:-1:-1;;;14243:85:0;;8026:2:1;14243:85:0;;;8008:21:1;8065:2;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;-1:-1:-1;;;8155:18:1;;;8148:35;8200:19;;14243:85:0;7824:401:1;14243:85:0;14364:67;961:10;14387:7;14415:15;14396:16;:34;14364:8;:67::i;:::-;-1:-1:-1;14462:4:0;;14061:413;-1:-1:-1;;;14061:413:0:o;11255:175::-;11341:4;11358:42;961:10;11382:9;11393:6;11358:9;:42::i;41124:231::-;2281:6;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;41284:15:::1;::::0;41241:59:::1;::::0;-1:-1:-1;;;;;41284:15:0;;::::1;::::0;41241:59;::::1;::::0;::::1;::::0;41284:15:::1;::::0;41241:59:::1;41311:15;:36:::0;;-1:-1:-1;;;;;;41311:36:0::1;-1:-1:-1::0;;;;;41311:36:0;;;::::1;::::0;;;::::1;::::0;;41124:231::o;38425:494::-;2281:6;;38530:4;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;38609:6:::1;38588:13;10832:12:::0;;;10744:108;38588:13:::1;:17;::::0;38604:1:::1;38588:17;:::i;:::-;38587:28;;;;:::i;:::-;38574:9;:41;;38552:144;;;::::0;-1:-1:-1;;;38552:144:0;;8827:2:1;38552:144:0::1;::::0;::::1;8809:21:1::0;8866:2;8846:18;;;8839:30;8905:34;8885:18;;;8878:62;-1:-1:-1;;;8956:18:1;;;8949:51;9017:19;;38552:144:0::1;8625:417:1::0;38552:144:0::1;38764:4;38743:13;10832:12:::0;;;10744:108;38743:13:::1;:17;::::0;38759:1:::1;38743:17;:::i;:::-;38742:26;;;;:::i;:::-;38729:9;:39;;38707:141;;;::::0;-1:-1:-1;;;38707:141:0;;9249:2:1;38707:141:0::1;::::0;::::1;9231:21:1::0;9288:2;9268:18;;;9261:30;9327:34;9307:18;;;9300:62;-1:-1:-1;;;9378:18:1;;;9371:50;9438:19;;38707:141:0::1;9047:416:1::0;38707:141:0::1;-1:-1:-1::0;38859:18:0::1;:30:::0;;;38907:4:::1;2499:1;38425:494:::0;;;:::o;39802:589::-;2281:6;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;39996:15:::1;:34:::0;;;40041:15:::1;:34:::0;;;40086:9:::1;:22:::0;;;40098:10;40134:33:::1;40059:16:::0;40014;40134:33:::1;:::i;:::-;:45;;;;:::i;:::-;40119:12;:60:::0;40190:16:::1;:36:::0;;;40237:16:::1;:36:::0;;;40284:10:::1;:24:::0;;;40297:11;40335:35:::1;40256:17:::0;40209;40335:35:::1;:::i;:::-;:48;;;;:::i;:::-;40319:13;:64:::0;-1:-1:-1;;;;;;39802:589:0:o;40426:182::-;2281:6;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40511:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40511:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40566:34;;1212:41:1;;;40566:34:0::1;::::0;1185:18:1;40566:34:0::1;;;;;;;40426:182:::0;;:::o;38927:490::-;2281:6;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;39081:4:::1;39073;39052:13;10832:12:::0;;;10744:108;39052:13:::1;:17;::::0;39068:1:::1;39052:17;:::i;:::-;39051:26;;;;:::i;:::-;39050:35;;;;:::i;:::-;39038:8;:47;;39016:144;;;::::0;-1:-1:-1;;;39016:144:0;;9670:2:1;39016:144:0::1;::::0;::::1;9652:21:1::0;9709:2;9689:18;;;9682:30;9748:34;9728:18;;;9721:62;-1:-1:-1;;;9799:18:1;;;9792:45;9854:19;;39016:144:0::1;9468:411:1::0;39016:144:0::1;39194:19;:8:::0;39206:6:::1;39194:19;:::i;:::-;39171:20;:42:::0;39295:4:::1;39287;39266:13;10832:12:::0;;;10744:108;39266:13:::1;:17;::::0;39282:1:::1;39266:17;:::i;:::-;39265:26;;;;:::i;:::-;39264:35;;;;:::i;:::-;39248:12;:51;;39226:137;;;::::0;-1:-1:-1;;;39226:137:0;;10086:2:1;39226:137:0::1;::::0;::::1;10068:21:1::0;10125:2;10105:18;;;10098:30;10164:34;10144:18;;;10137:62;-1:-1:-1;;;10215:18:1;;;10208:34;10259:19;;39226:137:0::1;9884:400:1::0;39226:137:0::1;39386:23;:12:::0;39402:6:::1;39386:23;:::i;:::-;39374:9;:35:::0;-1:-1:-1;;38927:490:0:o;38220:135::-;2281:6;;38280:4;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;-1:-1:-1;38297:20:0::1;:28:::0;;-1:-1:-1;;38297:28:0::1;::::0;;;38220:135;:::o;37772:214::-;2281:6;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;37844:7:::1;37841:128;;;37863:13;:20:::0;;-1:-1:-1;;37894:18:0;;;;;37940:15:::1;37923:14;:32:::0;37841:128:::1;37772:214:::0;:::o;3117:201::-;2281:6;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3206:22:0;::::1;3198:73;;;::::0;-1:-1:-1;;;3198:73:0;;10491:2:1;3198:73:0::1;::::0;::::1;10473:21:1::0;10530:2;10510:18;;;10503:30;10569:34;10549:18;;;10542:62;-1:-1:-1;;;10620:18:1;;;10613:36;10666:19;;3198:73:0::1;10289:402:1::0;3198:73:0::1;3282:28;3301:8;3282:18;:28::i;50976:1056::-:0;2281:6;;51087:4;;-1:-1:-1;;;;;2281:6:0;961:10;2428:23;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;:::-;51172:19:::1;;51149:20;;:42;;;;:::i;:::-;51131:15;:60;51109:142;;;::::0;-1:-1:-1;;;51109:142:0;;10898:2:1;51109:142:0::1;::::0;::::1;10880:21:1::0;;;10917:18;;;10910:30;10976:34;10956:18;;;10949:62;11028:18;;51109:142:0::1;10696:356:1::0;51109:142:0::1;51281:4;51270:7;:15;;51262:70;;;::::0;-1:-1:-1;;;51262:70:0;;11259:2:1;51262:70:0::1;::::0;::::1;11241:21:1::0;11298:2;11278:18;;;11271:30;11337:34;11317:18;;;11310:62;-1:-1:-1;;;11388:18:1;;;11381:40;11438:19;;51262:70:0::1;11057:406:1::0;51262:70:0::1;51366:15;51343:20;:38:::0;51467:29:::1;::::0;-1:-1:-1;;;51467:29:0;;-1:-1:-1;;;;;51482:13:0::1;1707:32:1::0;51467:29:0::1;::::0;::::1;1689:51:1::0;51436:28:0::1;::::0;51467:4:::1;::::0;:14:::1;::::0;1662:18:1;;51467:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51436:60:::0;-1:-1:-1;51546:20:0::1;51569:44;51607:5;51569:33;51436:60:::0;51594:7;51569:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;51546:67:::0;-1:-1:-1;51718:16:0;;51714:110:::1;;51751:61;51767:13;51790:6;51799:12;51751:15;:61::i;:::-;51899:19;51936:13;51899:51;;51961:4;-1:-1:-1::0;;;;;51961:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;51988:14:0::1;::::0;::::1;::::0;-1:-1:-1;51988:14:0;;-1:-1:-1;51988:14:0::1;-1:-1:-1::0;52020:4:0::1;::::0;50976:1056;-1:-1:-1;;;;50976:1056:0:o;17745:380::-;-1:-1:-1;;;;;17881:19:0;;17873:68;;;;-1:-1:-1;;;17873:68:0;;11859:2:1;17873:68:0;;;11841:21:1;11898:2;11878:18;;;11871:30;11937:34;11917:18;;;11910:62;-1:-1:-1;;;11988:18:1;;;11981:34;12032:19;;17873:68:0;11657:400:1;17873:68:0;-1:-1:-1;;;;;17960:21:0;;17952:68;;;;-1:-1:-1;;;17952:68:0;;12264:2:1;17952:68:0;;;12246:21:1;12303:2;12283:18;;;12276:30;12342:34;12322:18;;;12315:62;-1:-1:-1;;;12393:18:1;;;12386:32;12435:19;;17952:68:0;12062:398:1;17952:68:0;-1:-1:-1;;;;;18033:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18085:32;;1897:25:1;;;18085:32:0;;1870:18:1;18085:32:0;;;;;;;17745:380;;;:::o;41712:5011::-;-1:-1:-1;;;;;41844:18:0;;41836:68;;;;-1:-1:-1;;;41836:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41923:16:0;;41915:64;;;;-1:-1:-1;;;41915:64:0;;;;;;;:::i;:::-;41996:11;41992:93;;42024:28;42040:4;42046:2;42050:1;42024:15;:28::i;:::-;41712:5011;;;:::o;41992:93::-;42101:14;;;;42097:2487;;;2281:6;;-1:-1:-1;;;;;42154:15:0;;;2281:6;;42154:15;;;;:49;;-1:-1:-1;2281:6:0;;-1:-1:-1;;;;;42190:13:0;;;2281:6;;42190:13;;42154:49;:86;;;;-1:-1:-1;;;;;;42224:16:0;;;;42154:86;:128;;;;-1:-1:-1;;;;;;42261:21:0;;42275:6;42261:21;;42154:128;:158;;;;-1:-1:-1;42304:8:0;;-1:-1:-1;;;42304:8:0;;;;42303:9;42154:158;42132:2441;;;42352:13;;;;;;;42347:223;;-1:-1:-1;;;;;42424:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42453:23:0;;;;;;:19;:23;;;;;;;;42424:52;42390:160;;;;-1:-1:-1;;;42390:160:0;;13477:2:1;42390:160:0;;;13459:21:1;13516:2;13496:18;;;13489:30;-1:-1:-1;;;13535:18:1;;;13528:52;13597:18;;42390:160:0;13275:346:1;42390:160:0;42726:20;;;;42722:641;;;2281:6;;-1:-1:-1;;;;;42801:13:0;;;2281:6;;42801:13;;;;:72;;;42857:15;-1:-1:-1;;;;;42843:30:0;:2;-1:-1:-1;;;;;42843:30:0;;;42801:72;:129;;;;;42916:13;-1:-1:-1;;;;;42902:28:0;:2;-1:-1:-1;;;;;42902:28:0;;;42801:129;42771:573;;;43048:9;43019:39;;;;:28;:39;;;;;;43094:12;-1:-1:-1;42981:258:0;;;;-1:-1:-1;;;42981:258:0;;13828:2:1;42981:258:0;;;13810:21:1;13867:2;13847:18;;;13840:30;13906:34;13886:18;;;13879:62;13977:34;13957:18;;;13950:62;-1:-1:-1;;;14028:19:1;;;14021:40;14078:19;;42981:258:0;13626:477:1;42981:258:0;43295:9;43266:39;;;;:28;:39;;;;;43308:12;43266:54;;42771:573;-1:-1:-1;;;;;43437:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43494:35:0;;;;;;:31;:35;;;;;;;;43493:36;43437:92;43411:1147;;;43616:20;;43606:6;:30;;43572:169;;;;-1:-1:-1;;;43572:169:0;;14310:2:1;43572:169:0;;;14292:21:1;14349:2;14329:18;;;14322:30;14388:34;14368:18;;;14361:62;-1:-1:-1;;;14439:18:1;;;14432:51;14500:19;;43572:169:0;14108:417:1;43572:169:0;43824:9;;-1:-1:-1;;;;;11016:18:0;;10989:7;11016:18;;;;;;;;;;;43798:22;;:6;:22;:::i;:::-;:35;;43764:140;;;;-1:-1:-1;;;43764:140:0;;14732:2:1;43764:140:0;;;14714:21:1;14771:2;14751:18;;;14744:30;-1:-1:-1;;;14790:18:1;;;14783:49;14849:18;;43764:140:0;14530:343:1;43764:140:0;43411:1147;;;-1:-1:-1;;;;;44002:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;44057:37:0;;;;;;:31;:37;;;;;;;;44056:38;44002:92;43976:582;;;44181:20;;44171:6;:30;;44137:170;;;;-1:-1:-1;;;44137:170:0;;15080:2:1;44137:170:0;;;15062:21:1;15119:2;15099:18;;;15092:30;15158:34;15138:18;;;15131:62;-1:-1:-1;;;15209:18:1;;;15202:52;15271:19;;44137:170:0;14878:418:1;43976:582:0;-1:-1:-1;;;;;44338:35:0;;;;;;:31;:35;;;;;;;;44333:225;;44458:9;;-1:-1:-1;;;;;11016:18:0;;10989:7;11016:18;;;;;;;;;;;44432:22;;:6;:22;:::i;:::-;:35;;44398:140;;;;-1:-1:-1;;;44398:140:0;;14732:2:1;44398:140:0;;;14714:21:1;14771:2;14751:18;;;14744:30;-1:-1:-1;;;14790:18:1;;;14783:49;14849:18;;44398:140:0;14530:343:1;44398:140:0;44645:4;44596:28;11016:18;;;;;;;;;;;44703;;44679:42;;;;;;;44752:35;;-1:-1:-1;44776:11:0;;;;;;;44752:35;:61;;;;-1:-1:-1;44805:8:0;;-1:-1:-1;;;44805:8:0;;;;44804:9;44752:61;:110;;;;-1:-1:-1;;;;;;44831:31:0;;;;;;:25;:31;;;;;;;;44830:32;44752:110;:153;;;;-1:-1:-1;;;;;;44880:25:0;;;;;;:19;:25;;;;;;;;44879:26;44752:153;:194;;;;-1:-1:-1;;;;;;44923:23:0;;;;;;:19;:23;;;;;;;;44922:24;44752:194;44734:326;;;44973:8;:15;;-1:-1:-1;;;;44973:15:0;-1:-1:-1;;;44973:15:0;;;45005:10;:8;:10::i;:::-;45032:8;:16;;-1:-1:-1;;;;45032:16:0;;;44734:326;45091:8;;-1:-1:-1;;;45091:8:0;;;;45090:9;:55;;;;-1:-1:-1;;;;;;45116:29:0;;;;;;:25;:29;;;;;;;;45090:55;:85;;;;-1:-1:-1;45162:13:0;;;;45090:85;:153;;;;;45228:15;;45211:14;;:32;;;;:::i;:::-;45192:15;:51;;45090:153;:196;;;;-1:-1:-1;;;;;;45261:25:0;;;;;;:19;:25;;;;;;;;45260:26;45090:196;45072:282;;;45313:29;:27;:29::i;:::-;;45072:282;45382:8;;-1:-1:-1;;;;;45492:25:0;;45366:12;45492:25;;;:19;:25;;;;;;45382:8;-1:-1:-1;;;45382:8:0;;;;;45381:9;;45492:25;;:52;;-1:-1:-1;;;;;;45521:23:0;;;;;;:19;:23;;;;;;;;45492:52;45488:100;;;-1:-1:-1;45571:5:0;45488:100;45600:12;45705:7;45701:969;;;-1:-1:-1;;;;;45757:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45806:1;45790:13;;:17;45757:50;45753:768;;;45835:34;45865:3;45835:25;45846:13;;45835:6;:10;;:25;;;;:::i;:34::-;45828:41;;45938:13;;45918:16;;45911:4;:23;;;;:::i;:::-;45910:41;;;;:::i;:::-;45888:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;46008:13:0;;45994:10;;45987:17;;:4;:17;:::i;:::-;45986:35;;;;:::i;:::-;45970:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;46090:13:0;;46070:16;;46063:23;;:4;:23;:::i;:::-;46062:41;;;;:::i;:::-;46040:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45753:768:0;;-1:-1:-1;45753:768:0;;-1:-1:-1;;;;;46165:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46215:1;46200:12;;:16;46165:51;46161:360;;;46244:33;46273:3;46244:24;46255:12;;46244:6;:10;;:24;;;;:::i;:33::-;46237:40;;46345:12;;46326:15;;46319:4;:22;;;;:::i;:::-;46318:39;;;;:::i;:::-;46296:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46413:12:0;;46400:9;;46393:16;;:4;:16;:::i;:::-;46392:33;;;;:::i;:::-;46376:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46493:12:0;;46474:15;;46467:22;;:4;:22;:::i;:::-;46466:39;;;;:::i;:::-;46444:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46161:360:0;46541:8;;46537:91;;46570:42;46586:4;46600;46607;46570:15;:42::i;:::-;46644:14;46654:4;46644:14;;:::i;:::-;;;45701:969;46682:33;46698:4;46704:2;46708:6;46682:15;:33::i;:::-;41825:4898;;;;41712:5011;;;:::o;3478:191::-;3571:6;;;-1:-1:-1;;;;;3588:17:0;;;-1:-1:-1;;;;;;3588:17:0;;;;;;;3621:40;;3571:6;;;3588:17;3571:6;;3621:40;;3552:16;;3621:40;3541:128;3478:191;:::o;40928:188::-;-1:-1:-1;;;;;41011:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41011:39:0;;;;;;;;;;41068:40;;41011:39;;:31;41068:40;;;40928:188;;:::o;23198:98::-;23256:7;23283:5;23287:1;23283;:5;:::i;:::-;23276:12;23198:98;-1:-1:-1;;;23198:98:0:o;23597:::-;23655:7;23682:5;23686:1;23682;:5;:::i;14964:733::-;-1:-1:-1;;;;;15104:20:0;;15096:70;;;;-1:-1:-1;;;15096:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15185:23:0;;15177:71;;;;-1:-1:-1;;;15177:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15345:17:0;;15321:21;15345:17;;;;;;;;;;;15381:23;;;;15373:74;;;;-1:-1:-1;;;15373:74:0;;15633:2:1;15373:74:0;;;15615:21:1;15672:2;15652:18;;;15645:30;15711:34;15691:18;;;15684:62;-1:-1:-1;;;15762:18:1;;;15755:36;15808:19;;15373:74:0;15431:402:1;15373:74:0;-1:-1:-1;;;;;15483:17:0;;;:9;:17;;;;;;;;;;;15503:22;;;15483:42;;15547:20;;;;;;;;:30;;15519:6;;15483:9;15547:30;;15519:6;;15547:30;:::i;:::-;;;;;;;;15612:9;-1:-1:-1;;;;;15595:35:0;15604:6;-1:-1:-1;;;;;15595:35:0;;15623:6;15595:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15595:35:0;;;;;;;;15085:612;14964:733;;;:::o;47853:1756::-;47936:4;47892:23;11016:18;;;;;;;;;;;47892:50;;47953:25;48049:12;;48015:18;;47981;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47953:108;-1:-1:-1;48072:12:0;48101:20;;;:46;;-1:-1:-1;48125:22:0;;48101:46;48097:85;;;48164:7;;;47853:1756::o;48097:85::-;48216:18;;:23;;48237:2;48216:23;:::i;:::-;48198:15;:41;48194:115;;;48274:18;;:23;;48295:2;48274:23;:::i;:::-;48256:41;;48194:115;48370:23;48483:1;48450:17;48415:18;;48397:15;:36;;;;:::i;:::-;48396:71;;;;:::i;:::-;:88;;;;:::i;:::-;48370:114;-1:-1:-1;48495:26:0;48524:36;:15;48370:114;48524:19;:36::i;:::-;48495:65;-1:-1:-1;48601:21:0;48635:36;48495:65;48635:16;:36::i;:::-;48684:18;48705:44;:21;48731:17;48705:25;:44::i;:::-;48684:65;;48762:23;48788:81;48841:17;48788:34;48803:18;;48788:10;:14;;:34;;;;:::i;:81::-;48762:107;;48880:17;48900:51;48933:17;48900:28;48915:12;;48900:10;:14;;:28;;;;:::i;:51::-;48880:71;-1:-1:-1;48964:23:0;48880:71;48990:28;49003:15;48990:10;:28;:::i;:::-;:40;;;;:::i;:::-;49064:1;49043:18;:22;;;49076:18;:22;;;49109:12;:16;;;49160:9;;49152:45;;48964:66;;-1:-1:-1;;;;;;49160:9:0;;49183;;49152:45;49064:1;49152:45;49183:9;49160;49152:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49138:59:0;;-1:-1:-1;;49214:19:0;;;;;:42;;;49255:1;49237:15;:19;49214:42;49210:278;;;49273:46;49286:15;49303;49273:12;:46::i;:::-;49443:18;;49339:137;;;16250:25:1;;;16306:2;16291:18;;16284:34;;;16334:18;;;16327:34;;;;49339:137:0;;;;;;16238:2:1;49339:137:0;;;49210:278;49522:15;;49514:87;;-1:-1:-1;;;;;49522:15:0;;;;49565:21;;49514:87;;;;49565:21;49522:15;49514:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;47853:1756:0:o;50180:788::-;50271:15;50254:14;:32;50372:29;;-1:-1:-1;;;50372:29:0;;-1:-1:-1;;;;;50387:13:0;1707:32:1;50372:29:0;;;1689:51:1;50237:4:0;;;;50372;;:14;;1662:18:1;;50372:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50341:60;;50451:20;50474:77;50535:5;50474:42;50499:16;;50474:20;:24;;:42;;;;:::i;:77::-;50451:100;-1:-1:-1;50656:16:0;;50652:110;;50689:61;50705:13;50728:6;50737:12;50689:15;:61::i;:::-;50837:19;50874:13;50837:51;;50899:4;-1:-1:-1;;;;;50899:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50926:12:0;;;;-1:-1:-1;50926:12:0;;-1:-1:-1;50926:12:0;50956:4;50949:11;;;;;50180:788;:::o;22841:98::-;22899:7;22926:5;22930:1;22926;:5;:::i;46731:589::-;46881:16;;;46895:1;46881:16;;;;;;;;46857:21;;46881:16;;;;;;;;;;-1:-1:-1;46881:16:0;46857:40;;46926:4;46908;46913:1;46908:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46908:23:0;;;-1:-1:-1;;;;;46908:23:0;;;;;46952:15;-1:-1:-1;;;;;46952:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46942:4;46947:1;46942:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46942:32:0;;;-1:-1:-1;;;;;46942:32:0;;;;;46987:62;47004:4;47019:15;47037:11;46987:8;:62::i;:::-;47088:224;;-1:-1:-1;;;47088:224:0;;-1:-1:-1;;;;;47088:15:0;:66;;;;:224;;47169:11;;47195:1;;47239:4;;47266;;47286:15;;47088:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46786:534;46731:589;:::o;47328:517::-;47476:62;47493:4;47508:15;47526:11;47476:8;:62::i;:::-;47581:256;;-1:-1:-1;;;47581:256:0;;47653:4;47581:256;;;18218:34:1;18268:18;;;18261:34;;;47699:1:0;18311:18:1;;;18304:34;;;18354:18;;;18347:34;33021:6:0;18397:19:1;;;18390:44;47811:15:0;18450:19:1;;;18443:35;47581:15:0;-1:-1:-1;;;;;47581:31:0;;;;47620:9;;18152:19:1;;47581:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47328: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:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2791:160::-;2856:20;;2912:13;;2905:21;2895:32;;2885:60;;2941:1;2938;2931:12;2956:316;3030:6;3038;3046;3099:2;3087:9;3078:7;3074:23;3070:32;3067:52;;;3115:1;3112;3105:12;3067:52;3151:9;3138:23;3128:33;;3208:2;3197:9;3193:18;3180:32;3170:42;;3231:35;3262:2;3251:9;3247:18;3231:35;:::i;:::-;3221:45;;2956:316;;;;;:::o;3277:315::-;3342:6;3350;3403:2;3391:9;3382:7;3378:23;3374:32;3371:52;;;3419:1;3416;3409:12;3371:52;3458:9;3445:23;3477:31;3502:5;3477:31;:::i;:::-;3527:5;-1:-1:-1;3551:35:1;3582:2;3567:18;;3551:35;:::i;:::-;3541:45;;3277:315;;;;;:::o;3597:180::-;3653:6;3706:2;3694:9;3685:7;3681:23;3677:32;3674:52;;;3722:1;3719;3712:12;3674:52;3745:26;3761:9;3745:26;:::i;3782:180::-;3841:6;3894:2;3882:9;3873:7;3869:23;3865:32;3862:52;;;3910:1;3907;3900:12;3862:52;-1:-1:-1;3933:23:1;;3782:180;-1:-1:-1;3782:180:1:o;3967:523::-;4071:6;4079;4087;4095;4103;4111;4164:3;4152:9;4143:7;4139:23;4135:33;4132:53;;;4181:1;4178;4171:12;4132:53;-1:-1:-1;;4204:23:1;;;4274:2;4259:18;;4246:32;;-1:-1:-1;4325:2:1;4310:18;;4297:32;;4376:2;4361:18;;4348:32;;-1:-1:-1;4427:3:1;4412:19;;4399:33;;-1:-1:-1;4479:3:1;4464:19;4451:33;;-1:-1:-1;3967:523:1;-1:-1:-1;3967:523:1:o;4495:248::-;4563:6;4571;4624:2;4612:9;4603:7;4599:23;4595:32;4592:52;;;4640:1;4637;4630:12;4592:52;-1:-1:-1;;4663:23:1;;;4733:2;4718:18;;;4705:32;;-1:-1:-1;4495:248:1:o;4748:388::-;4816:6;4824;4877:2;4865:9;4856:7;4852:23;4848:32;4845:52;;;4893:1;4890;4883:12;4845:52;4932:9;4919:23;4951:31;4976:5;4951:31;:::i;:::-;5001:5;-1:-1:-1;5058:2:1;5043:18;;5030:32;5071:33;5030:32;5071:33;:::i;:::-;5123:7;5113:17;;;4748:388;;;;;:::o;5141:380::-;5220:1;5216:12;;;;5263;;;5284:61;;5338:4;5330:6;5326:17;5316:27;;5284:61;5391:2;5383:6;5380:14;5360:18;5357:38;5354:161;;;5437:10;5432:3;5428:20;5425:1;5418:31;5472:4;5469:1;5462:15;5500:4;5497:1;5490:15;5354:161;;5141:380;;;:::o;5526:356::-;5728:2;5710:21;;;5747:18;;;5740:30;5806:34;5801:2;5786:18;;5779:62;5873:2;5858:18;;5526:356::o;6296:127::-;6357:10;6352:3;6348:20;6345:1;6338:31;6388:4;6385:1;6378:15;6412:4;6409:1;6402:15;6428:128;6468:3;6499:1;6495:6;6492:1;6489:13;6486:39;;;6505:18;;:::i;:::-;-1:-1:-1;6541:9:1;;6428:128::o;8230:168::-;8270:7;8336:1;8332;8328:6;8324:14;8321:1;8318:21;8313:1;8306:9;8299:17;8295:45;8292:71;;;8343:18;;:::i;:::-;-1:-1:-1;8383:9:1;;8230:168::o;8403:217::-;8443:1;8469;8459:132;;8513:10;8508:3;8504:20;8501:1;8494:31;8548:4;8545:1;8538:15;8576:4;8573:1;8566:15;8459:132;-1:-1:-1;8605:9:1;;8403:217::o;11468:184::-;11538:6;11591:2;11579:9;11570:7;11566:23;11562:32;11559:52;;;11607:1;11604;11597:12;11559:52;-1:-1:-1;11630:16:1;;11468:184;-1:-1:-1;11468:184:1:o;12465:401::-;12667:2;12649:21;;;12706:2;12686:18;;;12679:30;12745:34;12740:2;12725:18;;12718:62;-1:-1:-1;;;12811:2:1;12796:18;;12789:35;12856:3;12841:19;;12465:401::o;12871:399::-;13073:2;13055:21;;;13112:2;13092:18;;;13085:30;13151:34;13146:2;13131:18;;13124:62;-1:-1:-1;;;13217:2:1;13202:18;;13195:33;13260:3;13245:19;;12871:399::o;15301:125::-;15341:4;15369:1;15366;15363:8;15360:34;;;15374:18;;:::i;:::-;-1:-1:-1;15411:9:1;;15301:125::o;16504:127::-;16565:10;16560:3;16556:20;16553:1;16546:31;16596:4;16593:1;16586:15;16620:4;16617:1;16610:15;16636:251;16706:6;16759:2;16747:9;16738:7;16734:23;16730:32;16727:52;;;16775:1;16772;16765:12;16727:52;16807:9;16801:16;16826:31;16851:5;16826:31;:::i;16892:980::-;17154:4;17202:3;17191:9;17187:19;17233:6;17222:9;17215:25;17259:2;17297:6;17292:2;17281:9;17277:18;17270:34;17340:3;17335:2;17324:9;17320:18;17313:31;17364:6;17399;17393:13;17430:6;17422;17415:22;17468:3;17457:9;17453:19;17446:26;;17507:2;17499:6;17495:15;17481:29;;17528:1;17538:195;17552:6;17549:1;17546:13;17538:195;;;17617:13;;-1:-1:-1;;;;;17613:39:1;17601:52;;17708:15;;;;17673:12;;;;17649:1;17567:9;17538:195;;;-1:-1:-1;;;;;;;17789:32:1;;;;17784:2;17769:18;;17762:60;-1:-1:-1;;;17853:3:1;17838:19;17831:35;17750:3;16892:980;-1:-1:-1;;;16892:980:1:o;18489:306::-;18577:6;18585;18593;18646:2;18634:9;18625:7;18621:23;18617:32;18614:52;;;18662:1;18659;18652:12;18614:52;18691:9;18685:16;18675:26;;18741:2;18730:9;18726:18;18720:25;18710:35;;18785:2;18774:9;18770:18;18764:25;18754:35;;18489:306;;;;;:::o

Swarm Source

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