ETH Price: $2,852.68 (-10.28%)
Gas: 14 Gwei

Token

100x BOT (100X)
 

Overview

Max Total Supply

100,000,000 100X

Holders

646

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
58,770.049084340978878963 100X

Value
$0.00
0xc508da4522783b3b65233760b5001cf9fa0f2d3d
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:
BOT

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-24
*/

/**
 Website - https://100xbot.io
 Telegram - https://t.me/the100xbottg
 Twitter - https://twitter.com/the100xbot
/**

// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

contract BOT 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 revShareWallet;
    address public teamWallet;

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

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

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyRevShareFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

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

    // exclude 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 revShareWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

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

    constructor() ERC20("100x BOT", "100X") {
        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 _buyRevShareFee = 33;
        uint256 _buyLiquidityFee = 33;
        uint256 _buyTeamFee = 33;

        uint256 _sellRevShareFee = 2;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellTeamFee = 2;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = 1000_000 * 1e18; // 1%
        maxWallet = 1000_000 * 1e18; // 1% 
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% 

        buyRevShareFee = _buyRevShareFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;

        revShareWallet = address(0x52Cfc575f1276e5c1421dEFC4C5eB5b220863187); // set as revShare wallet
        teamWallet = owner(); // set as team wallet

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

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

      

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

    receive() external payable {}

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

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyRevShareFee = _revShareFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 50, "Buy fees must be <= 50.");
    }

    function updateSellFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellRevShareFee = _revShareFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

    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 updateRevShareWallet(address newRevShareWallet) external onlyOwner {
        emit revShareWalletUpdated(newRevShareWallet, revShareWallet);
        revShareWallet = newRevShareWallet;
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

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

        
        

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

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

        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;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / 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
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForRevShare +
            tokensForTeam;
        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 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam;

        tokensForLiquidity = 0;
        tokensForRevShare = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

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

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

    function withdrawStuckUnibot() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawStuckToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }
}

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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","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":"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","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":[{"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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckUnibot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805463ffffffff1916600117905534801562000020575f80fd5b50604051806040016040528060088152602001670c4c0c1e081093d560c21b815250604051806040016040528060048152602001630626060b60e31b8152508160039081620000709190620006fd565b5060046200007f8282620006fd565b5050506200009c62000096620003af60201b60201c565b620003b3565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000be81600162000404565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000107573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012d9190620007c5565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000179573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019f9190620007c5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002109190620007c5565b6001600160a01b031660a08190526200022b90600162000404565b60a0516200023b9060016200047c565b69d3c21bcecceda10000006008819055600a556021808060026001816a52b7d2dcc80cd2e40000006127106200027382600562000808565b6200027f919062000828565b600955600e879055600f8690556010859055846200029e878962000848565b620002aa919062000848565b600d5560128490556013839055601482905581620002c9848662000848565b620002d5919062000848565b601155600680546001600160a01b0319167352cfc575f1276e5c1421defc4c5eb5b220863187179055620003116005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b039283161790556005546200033e91166001620004cf565b6200034b306001620004cf565b6200035a61dead6001620004cf565b62000379620003716005546001600160a01b031690565b600162000404565b6200038630600162000404565b6200039561dead600162000404565b620003a1338262000577565b50505050505050506200085e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004525760405162461bcd60e51b815260206004820181905260248201525f80516020620037af83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005195760405162461bcd60e51b815260206004820181905260248201525f80516020620037af833981519152604482015260640162000449565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005cf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000449565b8060025f828254620005e2919062000848565b90915550506001600160a01b0382165f90815260208190526040812080548392906200061090849062000848565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200068757607f821691505b602082108103620006a657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000659575f81815260208120601f850160051c81016020861015620006d45750805b601f850160051c820191505b81811015620006f557828155600101620006e0565b505050505050565b81516001600160401b038111156200071957620007196200065e565b62000731816200072a845462000672565b84620006ac565b602080601f83116001811462000767575f84156200074f5750858301515b5f19600386901b1c1916600185901b178555620006f5565b5f85815260208120601f198616915b82811015620007975788860151825594840194600190910190840162000776565b5085821015620007b557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620007d6575f80fd5b81516001600160a01b0381168114620007ed575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008225762000822620007f4565b92915050565b5f826200084357634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008225762000822620007f4565b60805160a051612efe620008b15f395f81816105a801528181611235015261194d01525f818161045b015281816128570152818161290e0152818161294a015281816129be01526129e50152612efe5ff3fe608060405260043610610395575f3560e01c80637cb332bb116101de578063c17b5b8c11610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610a87578063f9f92be414610a0a578063fde83a3414610a9c578063fe575a8714610ab1575f80fd5b8063e2f4560514610a29578063f11a24d314610a3e578063f2fde38b14610a53578063f637434214610a72575f80fd5b8063d729715f116100d8578063d729715f1461099c578063d85ba063146109b1578063dd62ed3e146109c6578063e19b282314610a0a575f80fd5b8063c17b5b8c1461092a578063c18bc19514610949578063c8c8ebe414610968578063d257b34f1461097d575f80fd5b80639c2e4ac61161017e578063b62496f51161014e578063b62496f5146108a0578063bbc0c742146108ce578063bc205ad3146108ec578063c02466681461090b575f80fd5b80639c2e4ac61461082e578063a457c2d714610843578063a9059cbb14610862578063adee28ff14610881575f80fd5b80638da5cb5b116101b95780638da5cb5b146107bf578063924de9b7146107dc57806395d89b41146107fb5780639a7a23d61461080f575f80fd5b80637cb332bb1461076d5780638095d5641461078c5780638a8c523c146107ab575f80fd5b806349bd5a5e116102bf5780636ddd17131161025f5780637571336a1161022f5780637571336a146106f157806375e3661e14610710578063782c4e991461072f5780637ca8448a1461074e575f80fd5b80636ddd17131461067657806370a0823114610695578063715018a6146106c9578063751039fc146106dd575f80fd5b8063599270441161029a578063599270441461061a5780635ea92ddd146106395780635f1893611461064d5780636a486a8e14610661575f80fd5b806349bd5a5e146105975780634a62bb65146105ca5780634fbee193146105e3575f80fd5b80631a8145bb1161033557806327c8f8351161030557806327c8f83514610528578063313ce5671461053d57806339509351146105585780633dc599ff14610577575f80fd5b80631a8145bb146104be578063203e727e146104d357806323b872dd146104f457806324b9f3c114610513575f80fd5b8063156c2f3511610370578063156c2f35146104275780631694505e1461044a57806318160ddd1461049557806319eab042146104a9575f80fd5b806306fdde03146103a0578063095ea7b3146103ca57806310d5de53146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610ae8565b6040516103c19190612abb565b60405180910390f35b3480156103d5575f80fd5b506103e96103e4366004612b1a565b610b78565b60405190151581526020016103c1565b348015610404575f80fd5b506103e9610413366004612b44565b60196020525f908152604090205460ff1681565b348015610432575f80fd5b5061043c600e5481565b6040519081526020016103c1565b348015610455575f80fd5b5061047d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103c1565b3480156104a0575f80fd5b5060025461043c565b3480156104b4575f80fd5b5061043c60125481565b3480156104c9575f80fd5b5061043c60165481565b3480156104de575f80fd5b506104f26104ed366004612b5f565b610b8e565b005b3480156104ff575f80fd5b506103e961050e366004612b76565b610c74565b34801561051e575f80fd5b5061043c60155481565b348015610533575f80fd5b5061047d61dead81565b348015610548575f80fd5b50604051601281526020016103c1565b348015610563575f80fd5b506103e9610572366004612b1a565b610d1c565b348015610582575f80fd5b50600b546103e9906301000000900460ff1681565b3480156105a2575f80fd5b5061047d7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105d5575f80fd5b50600b546103e99060ff1681565b3480156105ee575f80fd5b506103e96105fd366004612b44565b6001600160a01b03165f9081526018602052604090205460ff1690565b348015610625575f80fd5b5060075461047d906001600160a01b031681565b348015610644575f80fd5b506104f2610d57565b348015610658575f80fd5b506104f2610e76565b34801561066c575f80fd5b5061043c60115481565b348015610681575f80fd5b50600b546103e99062010000900460ff1681565b3480156106a0575f80fd5b5061043c6106af366004612b44565b6001600160a01b03165f9081526020819052604090205490565b3480156106d4575f80fd5b506104f2610eb5565b3480156106e8575f80fd5b506103e9610eea565b3480156106fc575f80fd5b506104f261070b366004612bc1565b610f26565b34801561071b575f80fd5b506104f261072a366004612b44565b610f7a565b34801561073a575f80fd5b5060065461047d906001600160a01b031681565b348015610759575f80fd5b506104f2610768366004612b44565b610fc4565b348015610778575f80fd5b506104f2610787366004612b44565b611049565b348015610797575f80fd5b506104f26107a6366004612bf8565b6110cf565b3480156107b6575f80fd5b506104f2611177565b3480156107ca575f80fd5b506005546001600160a01b031661047d565b3480156107e7575f80fd5b506104f26107f6366004612c21565b6111b4565b348015610806575f80fd5b506103b46111fa565b34801561081a575f80fd5b506104f2610829366004612bc1565b611209565b348015610839575f80fd5b5061043c60105481565b34801561084e575f80fd5b506103e961085d366004612b1a565b6112e4565b34801561086d575f80fd5b506103e961087c366004612b1a565b61137c565b34801561088c575f80fd5b506104f261089b366004612b44565b611388565b3480156108ab575f80fd5b506103e96108ba366004612b44565b601a6020525f908152604090205460ff1681565b3480156108d9575f80fd5b50600b546103e990610100900460ff1681565b3480156108f7575f80fd5b506104f2610906366004612c3c565b61140e565b348015610916575f80fd5b506104f2610925366004612bc1565b611570565b348015610935575f80fd5b506104f2610944366004612bf8565b6115f8565b348015610954575f80fd5b506104f2610963366004612b5f565b61169b565b348015610973575f80fd5b5061043c60085481565b348015610988575f80fd5b506103e9610997366004612b5f565b61176c565b3480156109a7575f80fd5b5061043c60145481565b3480156109bc575f80fd5b5061043c600d5481565b3480156109d1575f80fd5b5061043c6109e0366004612c3c565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a15575f80fd5b506104f2610a24366004612b44565b6118bd565b348015610a34575f80fd5b5061043c60095481565b348015610a49575f80fd5b5061043c600f5481565b348015610a5e575f80fd5b506104f2610a6d366004612b44565b611a30565b348015610a7d575f80fd5b5061043c60135481565b348015610a92575f80fd5b5061043c600a5481565b348015610aa7575f80fd5b5061043c60175481565b348015610abc575f80fd5b506103e9610acb366004612b44565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610af790612c68565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2390612c68565b8015610b6e5780601f10610b4557610100808354040283529160200191610b6e565b820191905f5260205f20905b815481529060010190602001808311610b5157829003601f168201915b5050505050905090565b5f610b84338484611acb565b5060015b92915050565b6005546001600160a01b03163314610bc15760405162461bcd60e51b8152600401610bb890612ca0565b60405180910390fd5b670de0b6b3a76400006103e8610bd660025490565b610be1906005612ce9565b610beb9190612d00565b610bf59190612d00565b811015610c5c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bb8565b610c6e81670de0b6b3a7640000612ce9565b60085550565b5f610c80848484611bee565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb8565b610d118533858403611acb565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b84918590610d52908690612d1f565b611acb565b6005546001600160a01b03163314610d815760405162461bcd60e51b8152600401610bb890612ca0565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610dbc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de09190612d32565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610e24573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e489190612d49565b5060405133904780156108fc02915f818181858888f19350505050158015610e72573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610ea05760405162461bcd60e51b8152600401610bb890612ca0565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610edf5760405162461bcd60e51b8152600401610bb890612ca0565b610ee85f612398565b565b6005545f906001600160a01b03163314610f165760405162461bcd60e51b8152600401610bb890612ca0565b50600b805460ff19169055600190565b6005546001600160a01b03163314610f505760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fa45760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b03163314610fee5760405162461bcd60e51b8152600401610bb890612ca0565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114611037576040519150601f19603f3d011682016040523d82523d5f602084013e61103c565b606091505b5050905080610e72575f80fd5b6005546001600160a01b031633146110735760405162461bcd60e51b8152600401610bb890612ca0565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110f95760405162461bcd60e51b8152600401610bb890612ca0565b600e839055600f8290556010819055806111138385612d1f565b61111d9190612d1f565b600d819055603210156111725760405162461bcd60e51b815260206004820152601760248201527f4275792066656573206d757374206265203c3d2035302e0000000000000000006044820152606401610bb8565b505050565b6005546001600160a01b031633146111a15760405162461bcd60e51b8152600401610bb890612ca0565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146111de5760405162461bcd60e51b8152600401610bb890612ca0565b600b8054911515620100000262ff000019909216919091179055565b606060048054610af790612c68565b6005546001600160a01b031633146112335760405162461bcd60e51b8152600401610bb890612ca0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036112da5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bb8565b610e7282826123e9565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156113655760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb8565b6113723385858403611acb565b5060019392505050565b5f610b84338484611bee565b6005546001600160a01b031633146113b25760405162461bcd60e51b8152600401610bb890612ca0565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146114385760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b03821661148e5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bb8565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f69190612d32565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611546573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061156a9190612d49565b50505050565b6005546001600160a01b0316331461159a5760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146116225760405162461bcd60e51b8152600401610bb890612ca0565b6012839055601382905560148190558061163c8385612d1f565b6116469190612d1f565b6011819055600510156111725760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610bb8565b6005546001600160a01b031633146116c55760405162461bcd60e51b8152600401610bb890612ca0565b670de0b6b3a76400006103e86116da60025490565b6116e590600a612ce9565b6116ef9190612d00565b6116f99190612d00565b8110156117545760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610bb8565b61176681670de0b6b3a7640000612ce9565b600a5550565b6005545f906001600160a01b031633146117985760405162461bcd60e51b8152600401610bb890612ca0565b620186a06117a560025490565b6117b0906001612ce9565b6117ba9190612d00565b8210156118275760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bb8565b6103e861183360025490565b61183e906005612ce9565b6118489190612d00565b8211156118b45760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bb8565b50600955600190565b6005546001600160a01b031633146118e75760405162461bcd60e51b8152600401610bb890612ca0565b600b546301000000900460ff161561194b5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610bb8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316141580156119aa57506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a0d5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610bb8565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a5a5760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b038116611abf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb8565b611ac881612398565b50565b6001600160a01b038316611b2d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb8565b6001600160a01b038216611b8e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb8565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c145760405162461bcd60e51b8152600401610bb890612d64565b6001600160a01b038216611c3a5760405162461bcd60e51b8152600401610bb890612da9565b6001600160a01b0383165f908152600c602052604090205460ff1615611c975760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bb8565b6001600160a01b0382165f908152600c602052604090205460ff1615611cf65760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bb8565b805f03611d085761117283835f61243c565b600b5460ff1615612075576005546001600160a01b03848116911614801590611d3f57506005546001600160a01b03838116911614155b8015611d5357506001600160a01b03821615155b8015611d6a57506001600160a01b03821661dead14155b8015611d805750600554600160a01b900460ff16155b1561207557600b54610100900460ff16611e16576001600160a01b0383165f9081526018602052604090205460ff1680611dd157506001600160a01b0382165f9081526018602052604090205460ff165b611e165760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb8565b6001600160a01b0383165f908152601a602052604090205460ff168015611e5557506001600160a01b0382165f9081526019602052604090205460ff16155b15611f3857600854811115611eca5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bb8565b600a546001600160a01b0383165f90815260208190526040902054611eef9083612d1f565b1115611f335760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb8565b612075565b6001600160a01b0382165f908152601a602052604090205460ff168015611f7757506001600160a01b0383165f9081526019602052604090205460ff16155b15611fed57600854811115611f335760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bb8565b6001600160a01b0382165f9081526019602052604090205460ff1661207557600a546001600160a01b0383165f908152602081905260409020546120319083612d1f565b11156120755760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb8565b305f90815260208190526040902054600954811080159081906120a05750600b5462010000900460ff165b80156120b65750600554600160a01b900460ff16155b80156120da57506001600160a01b0385165f908152601a602052604090205460ff16155b80156120fe57506001600160a01b0385165f9081526018602052604090205460ff16155b801561212257506001600160a01b0384165f9081526018602052604090205460ff16155b15612150576005805460ff60a01b1916600160a01b17905561214261258e565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061219c57506001600160a01b0385165f9081526018602052604090205460ff165b156121a457505f5b5f8115612384576001600160a01b0386165f908152601a602052604090205460ff1680156121d357505f601154115b1561228e576121f860646121f2601154886127da90919063ffffffff16565b906127ec565b90506011546013548261220b9190612ce9565b6122159190612d00565b60165f8282546122259190612d1f565b909155505060115460145461223a9083612ce9565b6122449190612d00565b60175f8282546122549190612d1f565b90915550506011546012546122699083612ce9565b6122739190612d00565b60155f8282546122839190612d1f565b909155506123669050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122b657505f600d54115b15612366576122d560646121f2600d54886127da90919063ffffffff16565b9050600d54600f54826122e89190612ce9565b6122f29190612d00565b60165f8282546123029190612d1f565b9091555050600d546010546123179083612ce9565b6123219190612d00565b60175f8282546123319190612d1f565b9091555050600d54600e546123469083612ce9565b6123509190612d00565b60155f8282546123609190612d1f565b90915550505b80156123775761237787308361243c565b6123818186612dec565b94505b61238f87878761243c565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124625760405162461bcd60e51b8152600401610bb890612d64565b6001600160a01b0382166124885760405162461bcd60e51b8152600401610bb890612da9565b6001600160a01b0383165f90815260208190526040902054818110156124ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb8565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290612535908490612d1f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161258191815260200190565b60405180910390a361156a565b305f9081526020819052604081205490505f6017546015546016546125b39190612d1f565b6125bd9190612d1f565b90505f8215806125cb575081155b156125d557505050565b6009546125e3906014612ce9565b8311156125fb576009546125f8906014612ce9565b92505b5f6002836016548661260d9190612ce9565b6126179190612d00565b6126219190612d00565b90505f61262e85836127f7565b90504761263a82612802565b5f61264547836127f7565b90505f612672600260165461265a9190612d00565b6126649089612dec565b6015546121f29085906127da565b90505f61269f60026016546126879190612d00565b612691908a612dec565b6017546121f29086906127da565b90505f816126ad8486612dec565b6126b79190612dec565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f8114612711576040519150601f19603f3d011682016040523d82523d5f602084013e612716565b606091505b5090985050861580159061272957505f81115b1561277c5761273887826129b8565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127c6576040519150601f19603f3d011682016040523d82523d5f602084013e6127cb565b606091505b50505050505050505050505050565b5f6127e58284612ce9565b9392505050565b5f6127e58284612d00565b5f6127e58284612dec565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061283557612835612dff565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128d59190612e13565b816001815181106128e8576128e8612dff565b60200260200101906001600160a01b031690816001600160a01b031681525050612933307f000000000000000000000000000000000000000000000000000000000000000084611acb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906129879085905f90869030904290600401612e2e565b5f604051808303815f87803b15801561299e575f80fd5b505af11580156129b0573d5f803e3d5ffd5b505050505050565b6129e3307f000000000000000000000000000000000000000000000000000000000000000084611acb565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80612a296005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a8f573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612ab49190612e9d565b5050505050565b5f6020808352835180828501525f5b81811015612ae657858101830151858201604001528201612aca565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611ac8575f80fd5b5f8060408385031215612b2b575f80fd5b8235612b3681612b06565b946020939093013593505050565b5f60208284031215612b54575f80fd5b81356127e581612b06565b5f60208284031215612b6f575f80fd5b5035919050565b5f805f60608486031215612b88575f80fd5b8335612b9381612b06565b92506020840135612ba381612b06565b929592945050506040919091013590565b8015158114611ac8575f80fd5b5f8060408385031215612bd2575f80fd5b8235612bdd81612b06565b91506020830135612bed81612bb4565b809150509250929050565b5f805f60608486031215612c0a575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c31575f80fd5b81356127e581612bb4565b5f8060408385031215612c4d575f80fd5b8235612c5881612b06565b91506020830135612bed81612b06565b600181811c90821680612c7c57607f821691505b602082108103612c9a57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b8857610b88612cd5565b5f82612d1a57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b8857610b88612cd5565b5f60208284031215612d42575f80fd5b5051919050565b5f60208284031215612d59575f80fd5b81516127e581612bb4565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b8857610b88612cd5565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e23575f80fd5b81516127e581612b06565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612e7c5784516001600160a01b031683529383019391830191600101612e57565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612eaf575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f6be0b14450ca44a6b6163e89126e1a99a89aad3f5b8930de4b4c0bbc6f47c2564736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610395575f3560e01c80637cb332bb116101de578063c17b5b8c11610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610a87578063f9f92be414610a0a578063fde83a3414610a9c578063fe575a8714610ab1575f80fd5b8063e2f4560514610a29578063f11a24d314610a3e578063f2fde38b14610a53578063f637434214610a72575f80fd5b8063d729715f116100d8578063d729715f1461099c578063d85ba063146109b1578063dd62ed3e146109c6578063e19b282314610a0a575f80fd5b8063c17b5b8c1461092a578063c18bc19514610949578063c8c8ebe414610968578063d257b34f1461097d575f80fd5b80639c2e4ac61161017e578063b62496f51161014e578063b62496f5146108a0578063bbc0c742146108ce578063bc205ad3146108ec578063c02466681461090b575f80fd5b80639c2e4ac61461082e578063a457c2d714610843578063a9059cbb14610862578063adee28ff14610881575f80fd5b80638da5cb5b116101b95780638da5cb5b146107bf578063924de9b7146107dc57806395d89b41146107fb5780639a7a23d61461080f575f80fd5b80637cb332bb1461076d5780638095d5641461078c5780638a8c523c146107ab575f80fd5b806349bd5a5e116102bf5780636ddd17131161025f5780637571336a1161022f5780637571336a146106f157806375e3661e14610710578063782c4e991461072f5780637ca8448a1461074e575f80fd5b80636ddd17131461067657806370a0823114610695578063715018a6146106c9578063751039fc146106dd575f80fd5b8063599270441161029a578063599270441461061a5780635ea92ddd146106395780635f1893611461064d5780636a486a8e14610661575f80fd5b806349bd5a5e146105975780634a62bb65146105ca5780634fbee193146105e3575f80fd5b80631a8145bb1161033557806327c8f8351161030557806327c8f83514610528578063313ce5671461053d57806339509351146105585780633dc599ff14610577575f80fd5b80631a8145bb146104be578063203e727e146104d357806323b872dd146104f457806324b9f3c114610513575f80fd5b8063156c2f3511610370578063156c2f35146104275780631694505e1461044a57806318160ddd1461049557806319eab042146104a9575f80fd5b806306fdde03146103a0578063095ea7b3146103ca57806310d5de53146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610ae8565b6040516103c19190612abb565b60405180910390f35b3480156103d5575f80fd5b506103e96103e4366004612b1a565b610b78565b60405190151581526020016103c1565b348015610404575f80fd5b506103e9610413366004612b44565b60196020525f908152604090205460ff1681565b348015610432575f80fd5b5061043c600e5481565b6040519081526020016103c1565b348015610455575f80fd5b5061047d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103c1565b3480156104a0575f80fd5b5060025461043c565b3480156104b4575f80fd5b5061043c60125481565b3480156104c9575f80fd5b5061043c60165481565b3480156104de575f80fd5b506104f26104ed366004612b5f565b610b8e565b005b3480156104ff575f80fd5b506103e961050e366004612b76565b610c74565b34801561051e575f80fd5b5061043c60155481565b348015610533575f80fd5b5061047d61dead81565b348015610548575f80fd5b50604051601281526020016103c1565b348015610563575f80fd5b506103e9610572366004612b1a565b610d1c565b348015610582575f80fd5b50600b546103e9906301000000900460ff1681565b3480156105a2575f80fd5b5061047d7f0000000000000000000000007b5d0305f6ef35a9b9e233d5c17263f3a19c4e8181565b3480156105d5575f80fd5b50600b546103e99060ff1681565b3480156105ee575f80fd5b506103e96105fd366004612b44565b6001600160a01b03165f9081526018602052604090205460ff1690565b348015610625575f80fd5b5060075461047d906001600160a01b031681565b348015610644575f80fd5b506104f2610d57565b348015610658575f80fd5b506104f2610e76565b34801561066c575f80fd5b5061043c60115481565b348015610681575f80fd5b50600b546103e99062010000900460ff1681565b3480156106a0575f80fd5b5061043c6106af366004612b44565b6001600160a01b03165f9081526020819052604090205490565b3480156106d4575f80fd5b506104f2610eb5565b3480156106e8575f80fd5b506103e9610eea565b3480156106fc575f80fd5b506104f261070b366004612bc1565b610f26565b34801561071b575f80fd5b506104f261072a366004612b44565b610f7a565b34801561073a575f80fd5b5060065461047d906001600160a01b031681565b348015610759575f80fd5b506104f2610768366004612b44565b610fc4565b348015610778575f80fd5b506104f2610787366004612b44565b611049565b348015610797575f80fd5b506104f26107a6366004612bf8565b6110cf565b3480156107b6575f80fd5b506104f2611177565b3480156107ca575f80fd5b506005546001600160a01b031661047d565b3480156107e7575f80fd5b506104f26107f6366004612c21565b6111b4565b348015610806575f80fd5b506103b46111fa565b34801561081a575f80fd5b506104f2610829366004612bc1565b611209565b348015610839575f80fd5b5061043c60105481565b34801561084e575f80fd5b506103e961085d366004612b1a565b6112e4565b34801561086d575f80fd5b506103e961087c366004612b1a565b61137c565b34801561088c575f80fd5b506104f261089b366004612b44565b611388565b3480156108ab575f80fd5b506103e96108ba366004612b44565b601a6020525f908152604090205460ff1681565b3480156108d9575f80fd5b50600b546103e990610100900460ff1681565b3480156108f7575f80fd5b506104f2610906366004612c3c565b61140e565b348015610916575f80fd5b506104f2610925366004612bc1565b611570565b348015610935575f80fd5b506104f2610944366004612bf8565b6115f8565b348015610954575f80fd5b506104f2610963366004612b5f565b61169b565b348015610973575f80fd5b5061043c60085481565b348015610988575f80fd5b506103e9610997366004612b5f565b61176c565b3480156109a7575f80fd5b5061043c60145481565b3480156109bc575f80fd5b5061043c600d5481565b3480156109d1575f80fd5b5061043c6109e0366004612c3c565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a15575f80fd5b506104f2610a24366004612b44565b6118bd565b348015610a34575f80fd5b5061043c60095481565b348015610a49575f80fd5b5061043c600f5481565b348015610a5e575f80fd5b506104f2610a6d366004612b44565b611a30565b348015610a7d575f80fd5b5061043c60135481565b348015610a92575f80fd5b5061043c600a5481565b348015610aa7575f80fd5b5061043c60175481565b348015610abc575f80fd5b506103e9610acb366004612b44565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610af790612c68565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2390612c68565b8015610b6e5780601f10610b4557610100808354040283529160200191610b6e565b820191905f5260205f20905b815481529060010190602001808311610b5157829003601f168201915b5050505050905090565b5f610b84338484611acb565b5060015b92915050565b6005546001600160a01b03163314610bc15760405162461bcd60e51b8152600401610bb890612ca0565b60405180910390fd5b670de0b6b3a76400006103e8610bd660025490565b610be1906005612ce9565b610beb9190612d00565b610bf59190612d00565b811015610c5c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bb8565b610c6e81670de0b6b3a7640000612ce9565b60085550565b5f610c80848484611bee565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb8565b610d118533858403611acb565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b84918590610d52908690612d1f565b611acb565b6005546001600160a01b03163314610d815760405162461bcd60e51b8152600401610bb890612ca0565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610dbc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de09190612d32565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610e24573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e489190612d49565b5060405133904780156108fc02915f818181858888f19350505050158015610e72573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610ea05760405162461bcd60e51b8152600401610bb890612ca0565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610edf5760405162461bcd60e51b8152600401610bb890612ca0565b610ee85f612398565b565b6005545f906001600160a01b03163314610f165760405162461bcd60e51b8152600401610bb890612ca0565b50600b805460ff19169055600190565b6005546001600160a01b03163314610f505760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fa45760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b03163314610fee5760405162461bcd60e51b8152600401610bb890612ca0565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114611037576040519150601f19603f3d011682016040523d82523d5f602084013e61103c565b606091505b5050905080610e72575f80fd5b6005546001600160a01b031633146110735760405162461bcd60e51b8152600401610bb890612ca0565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110f95760405162461bcd60e51b8152600401610bb890612ca0565b600e839055600f8290556010819055806111138385612d1f565b61111d9190612d1f565b600d819055603210156111725760405162461bcd60e51b815260206004820152601760248201527f4275792066656573206d757374206265203c3d2035302e0000000000000000006044820152606401610bb8565b505050565b6005546001600160a01b031633146111a15760405162461bcd60e51b8152600401610bb890612ca0565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146111de5760405162461bcd60e51b8152600401610bb890612ca0565b600b8054911515620100000262ff000019909216919091179055565b606060048054610af790612c68565b6005546001600160a01b031633146112335760405162461bcd60e51b8152600401610bb890612ca0565b7f0000000000000000000000007b5d0305f6ef35a9b9e233d5c17263f3a19c4e816001600160a01b0316826001600160a01b0316036112da5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bb8565b610e7282826123e9565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156113655760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb8565b6113723385858403611acb565b5060019392505050565b5f610b84338484611bee565b6005546001600160a01b031633146113b25760405162461bcd60e51b8152600401610bb890612ca0565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146114385760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b03821661148e5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bb8565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f69190612d32565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611546573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061156a9190612d49565b50505050565b6005546001600160a01b0316331461159a5760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146116225760405162461bcd60e51b8152600401610bb890612ca0565b6012839055601382905560148190558061163c8385612d1f565b6116469190612d1f565b6011819055600510156111725760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610bb8565b6005546001600160a01b031633146116c55760405162461bcd60e51b8152600401610bb890612ca0565b670de0b6b3a76400006103e86116da60025490565b6116e590600a612ce9565b6116ef9190612d00565b6116f99190612d00565b8110156117545760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610bb8565b61176681670de0b6b3a7640000612ce9565b600a5550565b6005545f906001600160a01b031633146117985760405162461bcd60e51b8152600401610bb890612ca0565b620186a06117a560025490565b6117b0906001612ce9565b6117ba9190612d00565b8210156118275760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bb8565b6103e861183360025490565b61183e906005612ce9565b6118489190612d00565b8211156118b45760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bb8565b50600955600190565b6005546001600160a01b031633146118e75760405162461bcd60e51b8152600401610bb890612ca0565b600b546301000000900460ff161561194b5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610bb8565b7f0000000000000000000000007b5d0305f6ef35a9b9e233d5c17263f3a19c4e816001600160a01b0316816001600160a01b0316141580156119aa57506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a0d5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610bb8565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a5a5760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b038116611abf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb8565b611ac881612398565b50565b6001600160a01b038316611b2d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb8565b6001600160a01b038216611b8e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb8565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c145760405162461bcd60e51b8152600401610bb890612d64565b6001600160a01b038216611c3a5760405162461bcd60e51b8152600401610bb890612da9565b6001600160a01b0383165f908152600c602052604090205460ff1615611c975760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bb8565b6001600160a01b0382165f908152600c602052604090205460ff1615611cf65760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bb8565b805f03611d085761117283835f61243c565b600b5460ff1615612075576005546001600160a01b03848116911614801590611d3f57506005546001600160a01b03838116911614155b8015611d5357506001600160a01b03821615155b8015611d6a57506001600160a01b03821661dead14155b8015611d805750600554600160a01b900460ff16155b1561207557600b54610100900460ff16611e16576001600160a01b0383165f9081526018602052604090205460ff1680611dd157506001600160a01b0382165f9081526018602052604090205460ff165b611e165760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb8565b6001600160a01b0383165f908152601a602052604090205460ff168015611e5557506001600160a01b0382165f9081526019602052604090205460ff16155b15611f3857600854811115611eca5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bb8565b600a546001600160a01b0383165f90815260208190526040902054611eef9083612d1f565b1115611f335760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb8565b612075565b6001600160a01b0382165f908152601a602052604090205460ff168015611f7757506001600160a01b0383165f9081526019602052604090205460ff16155b15611fed57600854811115611f335760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bb8565b6001600160a01b0382165f9081526019602052604090205460ff1661207557600a546001600160a01b0383165f908152602081905260409020546120319083612d1f565b11156120755760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb8565b305f90815260208190526040902054600954811080159081906120a05750600b5462010000900460ff165b80156120b65750600554600160a01b900460ff16155b80156120da57506001600160a01b0385165f908152601a602052604090205460ff16155b80156120fe57506001600160a01b0385165f9081526018602052604090205460ff16155b801561212257506001600160a01b0384165f9081526018602052604090205460ff16155b15612150576005805460ff60a01b1916600160a01b17905561214261258e565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061219c57506001600160a01b0385165f9081526018602052604090205460ff165b156121a457505f5b5f8115612384576001600160a01b0386165f908152601a602052604090205460ff1680156121d357505f601154115b1561228e576121f860646121f2601154886127da90919063ffffffff16565b906127ec565b90506011546013548261220b9190612ce9565b6122159190612d00565b60165f8282546122259190612d1f565b909155505060115460145461223a9083612ce9565b6122449190612d00565b60175f8282546122549190612d1f565b90915550506011546012546122699083612ce9565b6122739190612d00565b60155f8282546122839190612d1f565b909155506123669050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122b657505f600d54115b15612366576122d560646121f2600d54886127da90919063ffffffff16565b9050600d54600f54826122e89190612ce9565b6122f29190612d00565b60165f8282546123029190612d1f565b9091555050600d546010546123179083612ce9565b6123219190612d00565b60175f8282546123319190612d1f565b9091555050600d54600e546123469083612ce9565b6123509190612d00565b60155f8282546123609190612d1f565b90915550505b80156123775761237787308361243c565b6123818186612dec565b94505b61238f87878761243c565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124625760405162461bcd60e51b8152600401610bb890612d64565b6001600160a01b0382166124885760405162461bcd60e51b8152600401610bb890612da9565b6001600160a01b0383165f90815260208190526040902054818110156124ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb8565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290612535908490612d1f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161258191815260200190565b60405180910390a361156a565b305f9081526020819052604081205490505f6017546015546016546125b39190612d1f565b6125bd9190612d1f565b90505f8215806125cb575081155b156125d557505050565b6009546125e3906014612ce9565b8311156125fb576009546125f8906014612ce9565b92505b5f6002836016548661260d9190612ce9565b6126179190612d00565b6126219190612d00565b90505f61262e85836127f7565b90504761263a82612802565b5f61264547836127f7565b90505f612672600260165461265a9190612d00565b6126649089612dec565b6015546121f29085906127da565b90505f61269f60026016546126879190612d00565b612691908a612dec565b6017546121f29086906127da565b90505f816126ad8486612dec565b6126b79190612dec565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f8114612711576040519150601f19603f3d011682016040523d82523d5f602084013e612716565b606091505b5090985050861580159061272957505f81115b1561277c5761273887826129b8565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127c6576040519150601f19603f3d011682016040523d82523d5f602084013e6127cb565b606091505b50505050505050505050505050565b5f6127e58284612ce9565b9392505050565b5f6127e58284612d00565b5f6127e58284612dec565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061283557612835612dff565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128d59190612e13565b816001815181106128e8576128e8612dff565b60200260200101906001600160a01b031690816001600160a01b031681525050612933307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611acb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906129879085905f90869030904290600401612e2e565b5f604051808303815f87803b15801561299e575f80fd5b505af11580156129b0573d5f803e3d5ffd5b505050505050565b6129e3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611acb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80612a296005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a8f573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612ab49190612e9d565b5050505050565b5f6020808352835180828501525f5b81811015612ae657858101830151858201604001528201612aca565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611ac8575f80fd5b5f8060408385031215612b2b575f80fd5b8235612b3681612b06565b946020939093013593505050565b5f60208284031215612b54575f80fd5b81356127e581612b06565b5f60208284031215612b6f575f80fd5b5035919050565b5f805f60608486031215612b88575f80fd5b8335612b9381612b06565b92506020840135612ba381612b06565b929592945050506040919091013590565b8015158114611ac8575f80fd5b5f8060408385031215612bd2575f80fd5b8235612bdd81612b06565b91506020830135612bed81612bb4565b809150509250929050565b5f805f60608486031215612c0a575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c31575f80fd5b81356127e581612bb4565b5f8060408385031215612c4d575f80fd5b8235612c5881612b06565b91506020830135612bed81612b06565b600181811c90821680612c7c57607f821691505b602082108103612c9a57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b8857610b88612cd5565b5f82612d1a57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b8857610b88612cd5565b5f60208284031215612d42575f80fd5b5051919050565b5f60208284031215612d59575f80fd5b81516127e581612bb4565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b8857610b88612cd5565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e23575f80fd5b81516127e581612b06565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612e7c5784516001600160a01b031683529383019391830191600101612e57565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612eaf575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f6be0b14450ca44a6b6163e89126e1a99a89aad3f5b8930de4b4c0bbc6f47c2564736f6c63430008140033

Deployed Bytecode Sourcemap

31068:17382:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9027:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11194:169;;;;;;;;;;-1:-1:-1;11194:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11194:169:0;1023:187:1;32330:63:0;;;;;;;;;;-1:-1:-1;32330:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31822:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;31822:29:0;1467:177:1;31141:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;31141:51:0;1649:230:1;10147:108:0;;;;;;;;;;-1:-1:-1;10235:12:0;;10147:108;;31964:30;;;;;;;;;;;;;;;;32113:33;;;;;;;;;;;;;;;;36388:275;;;;;;;;;;-1:-1:-1;36388:275:0;;;;;:::i;:::-;;:::i;:::-;;11845:492;;;;;;;;;;-1:-1:-1;11845:492:0;;;;;:::i;:::-;;:::i;32074:32::-;;;;;;;;;;;;;;;;31244:53;;;;;;;;;;;;31290:6;31244:53;;9989:93;;;;;;;;;;-1:-1:-1;9989:93:0;;10072:2;2880:36:1;;2868:2;2853:18;9989:93:0;2738:184:1;12746:215:0;;;;;;;;;;-1:-1:-1;12746:215:0;;;;;:::i;:::-;;:::i;31641:38::-;;;;;;;;;;-1:-1:-1;31641:38:0;;;;;;;;;;;31199;;;;;;;;;;;;;;;31521:33;;;;;;;;;;-1:-1:-1;31521:33:0;;;;;;;;39201:126;;;;;;;;;;-1:-1:-1;39201:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39291:28:0;39267:4;39291:28;;;:19;:28;;;;;;;;;39201:126;31372:25;;;;;;;;;;-1:-1:-1;31372:25:0;;;;-1:-1:-1;;;;;31372:25:0;;;46427:257;;;;;;;;;;;;;:::i;47238:90::-;;;;;;;;;;;;;:::i;31929:28::-;;;;;;;;;;;;;;;;31601:31;;;;;;;;;;-1:-1:-1;31601:31:0;;;;;;;;;;;10318:127;;;;;;;;;;-1:-1:-1;10318:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10419:18:0;10392:7;10419:18;;;;;;;;;;;;10318:127;2544:103;;;;;;;;;;;;;:::i;35692:121::-;;;;;;;;;;;;;:::i;36936:167::-;;;;;;;;;;-1:-1:-1;36936:167:0;;;;;:::i;:::-;;:::i;48349:98::-;;;;;;;;;;-1:-1:-1;48349:98:0;;;;;:::i;:::-;;:::i;31336:29::-;;;;;;;;;;-1:-1:-1;31336:29:0;;;;-1:-1:-1;;;;;31336:29:0;;;46988:196;;;;;;;;;;-1:-1:-1;46988:196:0;;;;;:::i;:::-;;:::i;39032:161::-;;;;;;;;;;-1:-1:-1;39032:161:0;;;;;:::i;:::-;;:::i;37307:397::-;;;;;;;;;;-1:-1:-1;37307:397:0;;;;;:::i;:::-;;:::i;35520:120::-;;;;;;;;;;;;;:::i;1893:87::-;;;;;;;;;;-1:-1:-1;1966:6:0;;-1:-1:-1;;;;;1966:6:0;1893:87;;37199:100;;;;;;;;;;-1:-1:-1;37199:100:0;;;;;:::i;:::-;;:::i;9246:104::-;;;;;;;;;;;;;:::i;38315:304::-;;;;;;;;;;-1:-1:-1;38315:304:0;;;;;:::i;:::-;;:::i;31895:25::-;;;;;;;;;;;;;;;;13464:413;;;;;;;;;;-1:-1:-1;13464:413:0;;;;;:::i;:::-;;:::i;10658:175::-;;;;;;;;;;-1:-1:-1;10658:175:0;;;;;:::i;:::-;;:::i;38823:201::-;;;;;;;;;;-1:-1:-1;38823:201:0;;;;;:::i;:::-;;:::i;32551:57::-;;;;;;;;;;-1:-1:-1;32551:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31561:33;;;;;;;;;;-1:-1:-1;31561:33:0;;;;;;;;;;;46692:288;;;;;;;;;;-1:-1:-1;46692:288:0;;;;;:::i;:::-;;:::i;38125:182::-;;;;;;;;;;-1:-1:-1;38125:182:0;;;;;:::i;:::-;;:::i;37712:405::-;;;;;;;;;;-1:-1:-1;37712:405:0;;;;;:::i;:::-;;:::i;36671:257::-;;;;;;;;;;-1:-1:-1;36671:257:0;;;;;:::i;:::-;;:::i;31406:35::-;;;;;;;;;;;;;;;;35883:497;;;;;;;;;;-1:-1:-1;35883:497:0;;;;;:::i;:::-;;:::i;32039:26::-;;;;;;;;;;;;;;;;31788:27;;;;;;;;;;;;;;;;10896:151;;;;;;;;;;-1:-1:-1;10896:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11012:18:0;;;10985:7;11012:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10896:151;47813:403;;;;;;;;;;-1:-1:-1;47813:403:0;;;;;:::i;:::-;;:::i;31448:33::-;;;;;;;;;;;;;;;;31858:30;;;;;;;;;;;;;;;;2802:201;;;;;;;;;;-1:-1:-1;2802:201:0;;;;;:::i;:::-;;:::i;32001:31::-;;;;;;;;;;;;;;;;31488:24;;;;;;;;;;;;;;;;32153:28;;;;;;;;;;;;;;;;39335:113;;;;;;;;;;-1:-1:-1;39335:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;39420:20:0;39396:4;39420:20;;;:11;:20;;;;;;;;;39335:113;9027:100;9081:13;9114:5;9107:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9027:100;:::o;11194:169::-;11277:4;11294:39;840:10;11317:7;11326:6;11294:8;:39::i;:::-;-1:-1:-1;11351:4:0;11194:169;;;;;:::o;36388:275::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;;;;;;;;;36525:4:::1;36517;36496:13;10235:12:::0;;;10147:108;36496:13:::1;:17;::::0;36512:1:::1;36496:17;:::i;:::-;36495:26;;;;:::i;:::-;36494:35;;;;:::i;:::-;36484:6;:45;;36462:142;;;::::0;-1:-1:-1;;;36462:142:0;;5872:2:1;36462:142:0::1;::::0;::::1;5854:21:1::0;5911:2;5891:18;;;5884:30;5950:34;5930:18;;;5923:62;-1:-1:-1;;;6001:18:1;;;5994:45;6056:19;;36462:142:0::1;5670:411:1::0;36462:142:0::1;36638:17;:6:::0;36648::::1;36638:17;:::i;:::-;36615:20;:40:::0;-1:-1:-1;36388:275:0:o;11845:492::-;11985:4;12002:36;12012:6;12020:9;12031:6;12002:9;:36::i;:::-;-1:-1:-1;;;;;12078:19:0;;12051:24;12078:19;;;:11;:19;;;;;;;;840:10;12078:33;;;;;;;;12130:26;;;;12122:79;;;;-1:-1:-1;;;12122:79:0;;6288:2:1;12122:79:0;;;6270:21:1;6327:2;6307:18;;;6300:30;6366:34;6346:18;;;6339:62;-1:-1:-1;;;6417:18:1;;;6410:38;6465:19;;12122:79:0;6086:404:1;12122:79:0;12237:57;12246:6;840:10;12287:6;12268:16;:25;12237:8;:57::i;:::-;-1:-1:-1;12325:4:0;;11845:492;-1:-1:-1;;;;11845:492:0:o;12746:215::-;840:10;12834:4;12883:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12883:34:0;;;;;;;;;;12834:4;;12851:80;;12874:7;;12883:47;;12920:10;;12883:47;:::i;:::-;12851:8;:80::i;46427:257::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;46506:46:::1;::::0;-1:-1:-1;;;46506:46:0;;46521:4:::1;46506:46;::::0;::::1;1822:51:1::0;;;46488:15:0::1;::::0;46506:31:::1;::::0;1795:18:1;;46506:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46563:51;::::0;-1:-1:-1;;;46563:51:0;;46594:10:::1;46563:51;::::0;::::1;6988::1::0;7055:18;;;7048:34;;;46488:64:0;;-1:-1:-1;46578:4:0::1;::::0;46563:30:::1;::::0;6961:18:1;;46563:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;46625:51:0::1;::::0;46633:10:::1;::::0;46654:21:::1;46625:51:::0;::::1;;;::::0;::::1;::::0;;;46654:21;46633:10;46625:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46477:207;46427:257::o:0;47238:90::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;47295:18:::1;:25:::0;;-1:-1:-1;;47295:25:0::1;::::0;::::1;::::0;;47238:90::o;2544:103::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;2609:30:::1;2636:1;2609:18;:30::i;:::-;2544:103::o:0;35692:121::-;1966:6;;35744:4;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;-1:-1:-1;35761:14:0::1;:22:::0;;-1:-1:-1;;35761:22:0::1;::::0;;;35692:121;:::o;36936:167::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37049:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37049:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36936:167::o;48349:98::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48413:18:0::1;48434:5;48413:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;48413:26:0::1;::::0;;48349:98::o;46988:196::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;47061:12:::1;47079:6;-1:-1:-1::0;;;;;47079:11:0::1;47112:21;47079:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47060:89;;;47168:7;47160:16;;;::::0;::::1;39032:161:::0;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;39141:10:::1;::::0;39112:40:::1;::::0;-1:-1:-1;;;;;39141:10:0;;::::1;::::0;39112:40;::::1;::::0;::::1;::::0;39141:10:::1;::::0;39112:40:::1;39163:10;:22:::0;;-1:-1:-1;;;;;;39163:22:0::1;-1:-1:-1::0;;;;;39163:22:0;;;::::1;::::0;;;::::1;::::0;;39032:161::o;37307:397::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;37457:14:::1;:29:::0;;;37497:15:::1;:31:::0;;;37539:10:::1;:21:::0;;;37552:8;37586:32:::1;37515:13:::0;37474:12;37586:32:::1;:::i;:::-;:45;;;;:::i;:::-;37571:12;:60:::0;;;37666:2:::1;-1:-1:-1::0;37650:18:0::1;37642:54;;;::::0;-1:-1:-1;;;37642:54:0;;7755:2:1;37642:54:0::1;::::0;::::1;7737:21:1::0;7794:2;7774:18;;;7767:30;7833:25;7813:18;;;7806:53;7876:18;;37642:54:0::1;7553:347:1::0;37642:54:0::1;37307:397:::0;;;:::o;35520:120::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;35575:13:::1;:20:::0;;-1:-1:-1;;35606:18:0;;;;;35520:120::o;37199:100::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;37270:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37270:21:0;;::::1;::::0;;;::::1;::::0;;37199:100::o;9246:104::-;9302:13;9335:7;9328:14;;;;;:::i;38315:304::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;38459:13:::1;-1:-1:-1::0;;;;;38451:21:0::1;:4;-1:-1:-1::0;;;;;38451:21:0::1;::::0;38429:128:::1;;;::::0;-1:-1:-1;;;38429:128:0;;8107:2:1;38429:128:0::1;::::0;::::1;8089:21:1::0;8146:2;8126:18;;;8119:30;8185:34;8165:18;;;8158:62;8256:27;8236:18;;;8229:55;8301:19;;38429:128:0::1;7905:421:1::0;38429:128:0::1;38570:41;38599:4;38605:5;38570:28;:41::i;13464:413::-:0;840:10;13557:4;13601:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13601:34:0;;;;;;;;;;13654:35;;;;13646:85;;;;-1:-1:-1;;;13646:85:0;;8533:2:1;13646:85:0;;;8515:21:1;8572:2;8552:18;;;8545:30;8611:34;8591:18;;;8584:62;-1:-1:-1;;;8662:18:1;;;8655:35;8707:19;;13646:85:0;8331:401:1;13646:85:0;13767:67;840:10;13790:7;13818:15;13799:16;:34;13767:8;:67::i;:::-;-1:-1:-1;13865:4:0;;13464:413;-1:-1:-1;;;13464:413:0:o;10658:175::-;10744:4;10761:42;840:10;10785:9;10796:6;10761:9;:42::i;38823:201::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;38956:14:::1;::::0;38915:56:::1;::::0;-1:-1:-1;;;;;38956:14:0;;::::1;::::0;38915:56;::::1;::::0;::::1;::::0;38956:14:::1;::::0;38915:56:::1;38982:14;:34:::0;;-1:-1:-1;;;;;;38982:34:0::1;-1:-1:-1::0;;;;;38982:34:0;;;::::1;::::0;;;::::1;::::0;;38823:201::o;46692:288::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46787:20:0;::::1;46779:59;;;::::0;-1:-1:-1;;;46779:59:0;;8939:2:1;46779:59:0::1;::::0;::::1;8921:21:1::0;8978:2;8958:18;;;8951:30;9017:28;8997:18;;;8990:56;9063:18;;46779:59:0::1;8737:350:1::0;46779:59:0::1;46876:39;::::0;-1:-1:-1;;;46876:39:0;;46909:4:::1;46876:39;::::0;::::1;1822:51:1::0;46849:24:0::1;::::0;-1:-1:-1;;;;;46876:24:0;::::1;::::0;::::1;::::0;1795:18:1;;46876:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46926:46;::::0;-1:-1:-1;;;46926:46:0;;-1:-1:-1;;;;;7006:32:1;;;46926:46:0::1;::::0;::::1;6988:51:1::0;7055:18;;;7048:34;;;46849:66:0;;-1:-1:-1;46926:23:0;;::::1;::::0;::::1;::::0;6961:18:1;;46926:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46768:212;46692:288:::0;;:::o;38125:182::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38210:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38210:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38265:34;;1163:41:1;;;38265:34:0::1;::::0;1136:18:1;38265:34:0::1;;;;;;;38125:182:::0;;:::o;37712:405::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;37863:15:::1;:30:::0;;;37904:16:::1;:32:::0;;;37947:11:::1;:22:::0;;;37961:8;37996:34:::1;37923:13:::0;37881:12;37996:34:::1;:::i;:::-;:48;;;;:::i;:::-;37980:13;:64:::0;;;38080:1:::1;-1:-1:-1::0;38063:18:0::1;38055:54;;;::::0;-1:-1:-1;;;38055:54:0;;9294:2:1;38055:54:0::1;::::0;::::1;9276:21:1::0;9333:2;9313:18;;;9306:30;9372:25;9352:18;;;9345:53;9415:18;;38055:54:0::1;9092:347:1::0;36671:257:0;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;36812:4:::1;36804;36782:13;10235:12:::0;;;10147:108;36782:13:::1;:18;::::0;36798:2:::1;36782:18;:::i;:::-;36781:27;;;;:::i;:::-;36780:36;;;;:::i;:::-;36770:6;:46;;36748:132;;;::::0;-1:-1:-1;;;36748:132:0;;9646:2:1;36748:132:0::1;::::0;::::1;9628:21:1::0;9685:2;9665:18;;;9658:30;9724:34;9704:18;;;9697:62;-1:-1:-1;;;9775:18:1;;;9768:34;9819:19;;36748:132:0::1;9444:400:1::0;36748:132:0::1;36903:17;:6:::0;36913::::1;36903:17;:::i;:::-;36891:9;:29:::0;-1:-1:-1;36671:257:0:o;35883:497::-;1966:6;;35991:4;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;36070:6:::1;36049:13;10235:12:::0;;;10147:108;36049:13:::1;:17;::::0;36065:1:::1;36049:17;:::i;:::-;36048:28;;;;:::i;:::-;36035:9;:41;;36013:144;;;::::0;-1:-1:-1;;;36013:144:0;;10051:2:1;36013:144:0::1;::::0;::::1;10033:21:1::0;10090:2;10070:18;;;10063:30;10129:34;10109:18;;;10102:62;-1:-1:-1;;;10180:18:1;;;10173:51;10241:19;;36013:144:0::1;9849:417:1::0;36013:144:0::1;36225:4;36204:13;10235:12:::0;;;10147:108;36204:13:::1;:17;::::0;36220:1:::1;36204:17;:::i;:::-;36203:26;;;;:::i;:::-;36190:9;:39;;36168:141;;;::::0;-1:-1:-1;;;36168:141:0;;10473:2:1;36168:141:0::1;::::0;::::1;10455:21:1::0;10512:2;10492:18;;;10485:30;10551:34;10531:18;;;10524:62;-1:-1:-1;;;10602:18:1;;;10595:50;10662:19;;36168:141:0::1;10271:416:1::0;36168:141:0::1;-1:-1:-1::0;36320:18:0::1;:30:::0;36368:4:::1;::::0;35883:497::o;47813:403::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;47901:18:::1;::::0;;;::::1;;;47900:19;47892:65;;;::::0;-1:-1:-1;;;47892:65:0;;10894:2:1;47892:65:0::1;::::0;::::1;10876:21:1::0;10933:2;10913:18;;;10906:30;10972:34;10952:18;;;10945:62;-1:-1:-1;;;11023:18:1;;;11016:31;11064:19;;47892:65:0::1;10692:397:1::0;47892:65:0::1;48011:13;-1:-1:-1::0;;;;;47990:35:0::1;:9;-1:-1:-1::0;;;;;47990:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;48029:64:0;::::1;48050:42;48029:64;;47990:103;47968:200;;;::::0;-1:-1:-1;;;47968:200:0;;11296:2:1;47968:200:0::1;::::0;::::1;11278:21:1::0;11335:2;11315:18;;;11308:30;11374:34;11354:18;;;11347:62;-1:-1:-1;;;11425:18:1;;;11418:44;11479:19;;47968:200:0::1;11094:410:1::0;47968:200:0::1;-1:-1:-1::0;;;;;48179:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;48179:29:0::1;48204:4;48179:29;::::0;;47813:403::o;2802:201::-;1966:6;;-1:-1:-1;;;;;1966:6:0;840:10;2113:23;2105:68;;;;-1:-1:-1;;;2105:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2891:22:0;::::1;2883:73;;;::::0;-1:-1:-1;;;2883:73:0;;11711:2:1;2883:73:0::1;::::0;::::1;11693:21:1::0;11750:2;11730:18;;;11723:30;11789:34;11769:18;;;11762:62;-1:-1:-1;;;11840:18:1;;;11833:36;11886:19;;2883:73:0::1;11509:402:1::0;2883:73:0::1;2967:28;2986:8;2967:18;:28::i;:::-;2802:201:::0;:::o;17148:380::-;-1:-1:-1;;;;;17284:19:0;;17276:68;;;;-1:-1:-1;;;17276:68:0;;12118:2:1;17276:68:0;;;12100:21:1;12157:2;12137:18;;;12130:30;12196:34;12176:18;;;12169:62;-1:-1:-1;;;12247:18:1;;;12240:34;12291:19;;17276:68:0;11916:400:1;17276:68:0;-1:-1:-1;;;;;17363:21:0;;17355:68;;;;-1:-1:-1;;;17355:68:0;;12523:2:1;17355:68:0;;;12505:21:1;12562:2;12542:18;;;12535:30;12601:34;12581:18;;;12574:62;-1:-1:-1;;;12652:18:1;;;12645:32;12694:19;;17355:68:0;12321:398:1;17355:68:0;-1:-1:-1;;;;;17436:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17488:32;;1613:25:1;;;17488:32:0;;1586:18:1;17488:32:0;;;;;;;17148:380;;;:::o;39456:4064::-;-1:-1:-1;;;;;39588:18:0;;39580:68;;;;-1:-1:-1;;;39580:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39667:16:0;;39659:64;;;;-1:-1:-1;;;39659:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39743:17:0;;;;;;:11;:17;;;;;;;;39742:18;39734:48;;;;-1:-1:-1;;;39734:48:0;;13736:2:1;39734:48:0;;;13718:21:1;13775:2;13755:18;;;13748:30;-1:-1:-1;;;13794:18:1;;;13787:48;13852:18;;39734:48:0;13534:342:1;39734:48:0;-1:-1:-1;;;;;39802:15:0;;;;;;:11;:15;;;;;;;;39801:16;39793:48;;;;-1:-1:-1;;;39793:48:0;;14083:2:1;39793:48:0;;;14065:21:1;14122:2;14102:18;;;14095:30;-1:-1:-1;;;14141:18:1;;;14134:50;14201:18;;39793:48:0;13881:344:1;39793:48:0;39880:6;39890:1;39880:11;39876:93;;39908:28;39924:4;39930:2;39934:1;39908:15;:28::i;39876:93::-;39985:14;;;;39981:1694;;;1966:6;;-1:-1:-1;;;;;40038:15:0;;;1966:6;;40038:15;;;;:49;;-1:-1:-1;1966:6:0;;-1:-1:-1;;;;;40074:13:0;;;1966:6;;40074:13;;40038:49;:86;;;;-1:-1:-1;;;;;;40108:16:0;;;;40038:86;:128;;;;-1:-1:-1;;;;;;40145:21:0;;40159:6;40145:21;;40038:128;:158;;;;-1:-1:-1;40188:8:0;;-1:-1:-1;;;40188:8:0;;;;40187:9;40038:158;40016:1648;;;40236:13;;;;;;;40231:223;;-1:-1:-1;;;;;40308:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40337:23:0;;;;;;:19;:23;;;;;;;;40308:52;40274:160;;;;-1:-1:-1;;;40274:160:0;;14432:2:1;40274:160:0;;;14414:21:1;14471:2;14451:18;;;14444:30;-1:-1:-1;;;14490:18:1;;;14483:52;14552:18;;40274:160:0;14230:346:1;40274:160:0;-1:-1:-1;;;;;40528:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40585:35:0;;;;;;:31;:35;;;;;;;;40584:36;40528:92;40502:1147;;;40707:20;;40697:6;:30;;40663:169;;;;-1:-1:-1;;;40663:169:0;;14783:2:1;40663:169:0;;;14765:21:1;14822:2;14802:18;;;14795:30;14861:34;14841:18;;;14834:62;-1:-1:-1;;;14912:18:1;;;14905:51;14973:19;;40663:169:0;14581:417:1;40663:169:0;40915:9;;-1:-1:-1;;;;;10419:18:0;;10392:7;10419:18;;;;;;;;;;;40889:22;;:6;:22;:::i;:::-;:35;;40855:140;;;;-1:-1:-1;;;40855:140:0;;15205:2:1;40855:140:0;;;15187:21:1;15244:2;15224:18;;;15217:30;-1:-1:-1;;;15263:18:1;;;15256:49;15322:18;;40855:140:0;15003:343:1;40855:140:0;40502:1147;;;-1:-1:-1;;;;;41093:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41148:37:0;;;;;;:31;:37;;;;;;;;41147:38;41093:92;41067:582;;;41272:20;;41262:6;:30;;41228:170;;;;-1:-1:-1;;;41228:170:0;;15553:2:1;41228:170:0;;;15535:21:1;15592:2;15572:18;;;15565:30;15631:34;15611:18;;;15604:62;-1:-1:-1;;;15682:18:1;;;15675:52;15744:19;;41228:170:0;15351:418:1;41067:582:0;-1:-1:-1;;;;;41429:35:0;;;;;;:31;:35;;;;;;;;41424:225;;41549:9;;-1:-1:-1;;;;;10419:18:0;;10392:7;10419:18;;;;;;;;;;;41523:22;;:6;:22;:::i;:::-;:35;;41489:140;;;;-1:-1:-1;;;41489:140:0;;15205:2:1;41489:140:0;;;15187:21:1;15244:2;15224:18;;;15217:30;-1:-1:-1;;;15263:18:1;;;15256:49;15322:18;;41489:140:0;15003:343:1;41489:140:0;41736:4;41687:28;10419:18;;;;;;;;;;;41794;;41770:42;;;;;;;41843:35;;-1:-1:-1;41867:11:0;;;;;;;41843:35;:61;;;;-1:-1:-1;41896:8:0;;-1:-1:-1;;;41896:8:0;;;;41895:9;41843:61;:110;;;;-1:-1:-1;;;;;;41922:31:0;;;;;;:25;:31;;;;;;;;41921:32;41843:110;:153;;;;-1:-1:-1;;;;;;41971:25:0;;;;;;:19;:25;;;;;;;;41970:26;41843:153;:194;;;;-1:-1:-1;;;;;;42014:23:0;;;;;;:19;:23;;;;;;;;42013:24;41843:194;41825:326;;;42064:8;:15;;-1:-1:-1;;;;42064:15:0;-1:-1:-1;;;42064:15:0;;;42096:10;:8;:10::i;:::-;42123:8;:16;;-1:-1:-1;;;;42123:16:0;;;41825:326;42179:8;;-1:-1:-1;;;;;42289:25:0;;42163:12;42289:25;;;:19;:25;;;;;;42179:8;-1:-1:-1;;;42179:8:0;;;;;42178:9;;42289:25;;:52;;-1:-1:-1;;;;;;42318:23:0;;;;;;:19;:23;;;;;;;;42289:52;42285:100;;;-1:-1:-1;42368:5:0;42285:100;42397:12;42502:7;42498:969;;;-1:-1:-1;;;;;42554:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42603:1;42587:13;;:17;42554:50;42550:768;;;42632:34;42662:3;42632:25;42643:13;;42632:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;42625:41;;42735:13;;42715:16;;42708:4;:23;;;;:::i;:::-;42707:41;;;;:::i;:::-;42685:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42807:13:0;;42792:11;;42785:18;;:4;:18;:::i;:::-;42784:36;;;;:::i;:::-;42767:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;42887:13:0;;42868:15;;42861:22;;:4;:22;:::i;:::-;42860:40;;;;:::i;:::-;42839:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;42550:768:0;;-1:-1:-1;42550:768:0;;-1:-1:-1;;;;;42962:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43012:1;42997:12;;:16;42962:51;42958:360;;;43041:33;43070:3;43041:24;43052:12;;43041:6;:10;;:24;;;;:::i;:33::-;43034:40;;43142:12;;43123:15;;43116:4;:22;;;;:::i;:::-;43115:39;;;;:::i;:::-;43093:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43212:12:0;;43198:10;;43191:17;;:4;:17;:::i;:::-;43190:34;;;;:::i;:::-;43173:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43290:12:0;;43272:14;;43265:21;;:4;:21;:::i;:::-;43264:38;;;;:::i;:::-;43243:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;42958:360:0;43338:8;;43334:91;;43367:42;43383:4;43397;43404;43367:15;:42::i;:::-;43441:14;43451:4;43441:14;;:::i;:::-;;;42498:969;43479:33;43495:4;43501:2;43505:6;43479:15;:33::i;:::-;39569:3951;;;;39456:4064;;;:::o;3163:191::-;3256:6;;;-1:-1:-1;;;;;3273:17:0;;;-1:-1:-1;;;;;;3273:17:0;;;;;;;3306:40;;3256:6;;;3273:17;3256:6;;3306:40;;3237:16;;3306:40;3226:128;3163:191;:::o;38627:188::-;-1:-1:-1;;;;;38710:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38710:39:0;;;;;;;;;;38767:40;;38710:39;;:31;38767:40;;;38627:188;;:::o;14367:733::-;-1:-1:-1;;;;;14507:20:0;;14499:70;;;;-1:-1:-1;;;14499:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14588:23:0;;14580:71;;;;-1:-1:-1;;;14580:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14748:17:0;;14724:21;14748:17;;;;;;;;;;;14784:23;;;;14776:74;;;;-1:-1:-1;;;14776:74:0;;16109:2:1;14776:74:0;;;16091:21:1;16148:2;16128:18;;;16121:30;16187:34;16167:18;;;16160:62;-1:-1:-1;;;16238:18:1;;;16231:36;16284:19;;14776:74:0;15907:402:1;14776:74:0;-1:-1:-1;;;;;14886:17:0;;;:9;:17;;;;;;;;;;;14906:22;;;14886:42;;14950:20;;;;;;;;:30;;14922:6;;14886:9;14950:30;;14922:6;;14950:30;:::i;:::-;;;;;;;;15015:9;-1:-1:-1;;;;;14998:35:0;15007:6;-1:-1:-1;;;;;14998:35:0;;15026:6;14998:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;14998:35:0;;;;;;;;15046:46;37307:397;44646:1773;44729:4;44685:23;10419:18;;;;;;;;;;;44685:50;;44746:25;44841:13;;44808:17;;44774:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;44746:108;-1:-1:-1;44865:12:0;44894:20;;;:46;;-1:-1:-1;44918:22:0;;44894:46;44890:85;;;44957:7;;;44646:1773::o;44890:85::-;45009:18;;:23;;45030:2;45009:23;:::i;:::-;44991:15;:41;44987:115;;;45067:18;;:23;;45088:2;45067:23;:::i;:::-;45049:41;;44987:115;45163:23;45276:1;45243:17;45208:18;;45190:15;:36;;;;:::i;:::-;45189:71;;;;:::i;:::-;:88;;;;:::i;:::-;45163:114;-1:-1:-1;45288:26:0;45317:36;:15;45163:114;45317:19;:36::i;:::-;45288:65;-1:-1:-1;45394:21:0;45428:36;45288:65;45428:16;:36::i;:::-;45477:18;45498:44;:21;45524:17;45498:25;:44::i;:::-;45477:65;;45555:22;45580:83;45660:1;45639:18;;:22;;;;:::i;:::-;45618:44;;:17;:44;:::i;:::-;45595:17;;45580:33;;:10;;:14;:33::i;:83::-;45555:108;;45684:18;45705:79;45781:1;45760:18;;:22;;;;:::i;:::-;45739:44;;:17;:44;:::i;:::-;45720:13;;45705:29;;:10;;:14;:29::i;:79::-;45684:100;-1:-1:-1;45797:23:0;45684:100;45823:27;45836:14;45823:10;:27;:::i;:::-;:40;;;;:::i;:::-;45897:1;45876:18;:22;;;45909:17;:21;;;45941:13;:17;;;45993:10;;45985:47;;45797:66;;-1:-1:-1;;;;;;45993:10:0;;46017;;45985:47;45897:1;45985:47;46017:10;45993;45985:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45971:61:0;;-1:-1:-1;;46049:19:0;;;;;:42;;;46090:1;46072:15;:19;46049:42;46045:278;;;46108:46;46121:15;46138;46108:12;:46::i;:::-;46278:18;;46174:137;;;16516:25:1;;;16572:2;16557:18;;16550:34;;;16600:18;;;16593:34;;;;46174:137:0;;;;;;16504:2:1;46174:137:0;;;46045:278;46357:14;;46349:62;;-1:-1:-1;;;;;46357:14:0;;;;46385:21;;46349:62;;;;46385:21;46357:14;46349:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;44646:1773:0:o;22280:98::-;22338:7;22365:5;22369:1;22365;:5;:::i;:::-;22358:12;22280:98;-1:-1:-1;;;22280:98:0:o;22679:::-;22737:7;22764:5;22768:1;22764;:5;:::i;21923:98::-;21981:7;22008:5;22012:1;22008;:5;:::i;43528:589::-;43678:16;;;43692:1;43678:16;;;;;;;;43654:21;;43678:16;;;;;;;;;;-1:-1:-1;43678:16:0;43654:40;;43723:4;43705;43710:1;43705:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43705:23:0;;;-1:-1:-1;;;;;43705:23:0;;;;;43749:15;-1:-1:-1;;;;;43749:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43739:4;43744:1;43739:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43739:32:0;;;-1:-1:-1;;;;;43739:32:0;;;;;43784:62;43801:4;43816:15;43834:11;43784:8;:62::i;:::-;43885:224;;-1:-1:-1;;;43885:224:0;;-1:-1:-1;;;;;43885:15:0;:66;;;;:224;;43966:11;;43992:1;;44036:4;;44063;;44083:15;;43885:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43583:534;43528:589;:::o;44125:513::-;44273:62;44290:4;44305:15;44323:11;44273:8;:62::i;:::-;44378:15;-1:-1:-1;;;;;44378:31:0;;44417:9;44450:4;44470:11;44496:1;44539;44582:7;1966:6;;-1:-1:-1;;;;;1966:6:0;;1893:87;44582:7;44378:252;;;;;;-1:-1:-1;;;;;;44378:252:0;;;-1:-1:-1;;;;;18502:15:1;;;44378:252:0;;;18484:34:1;18534:18;;;18527:34;;;;18577:18;;;18570:34;;;;18620:18;;;18613:34;18684:15;;;18663:19;;;18656:44;44604:15:0;18716:19:1;;;18709:35;18418:19;;44378:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44125:513;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:356::-;4984:2;4966:21;;;5003:18;;;4996:30;5062:34;5057:2;5042:18;;5035:62;5129:2;5114:18;;4782:356::o;5143:127::-;5204:10;5199:3;5195:20;5192:1;5185:31;5235:4;5232:1;5225:15;5259:4;5256:1;5249:15;5275:168;5348:9;;;5379;;5396:15;;;5390:22;;5376:37;5366:71;;5417:18;;:::i;5448:217::-;5488:1;5514;5504:132;;5558:10;5553:3;5549:20;5546:1;5539:31;5593:4;5590:1;5583:15;5621:4;5618:1;5611:15;5504:132;-1:-1:-1;5650:9:1;;5448:217::o;6495:125::-;6560:9;;;6581:10;;;6578:36;;;6594:18;;:::i;6625:184::-;6695:6;6748:2;6736:9;6727:7;6723:23;6719:32;6716:52;;;6764:1;6761;6754:12;6716:52;-1:-1:-1;6787:16:1;;6625:184;-1:-1:-1;6625:184:1:o;7093:245::-;7160:6;7213:2;7201:9;7192:7;7188:23;7184:32;7181:52;;;7229:1;7226;7219:12;7181:52;7261:9;7255:16;7280:28;7302:5;7280:28;:::i;12724:401::-;12926:2;12908:21;;;12965:2;12945:18;;;12938:30;13004:34;12999:2;12984:18;;12977:62;-1:-1:-1;;;13070:2:1;13055:18;;13048:35;13115:3;13100:19;;12724:401::o;13130:399::-;13332:2;13314:21;;;13371:2;13351:18;;;13344:30;13410:34;13405:2;13390:18;;13383:62;-1:-1:-1;;;13476:2:1;13461:18;;13454:33;13519:3;13504:19;;13130:399::o;15774:128::-;15841:9;;;15862:11;;;15859:37;;;15876:18;;:::i;16770:127::-;16831:10;16826:3;16822:20;16819:1;16812:31;16862:4;16859:1;16852:15;16886:4;16883:1;16876:15;16902:251;16972:6;17025:2;17013:9;17004:7;17000:23;16996:32;16993:52;;;17041:1;17038;17031:12;16993:52;17073:9;17067:16;17092:31;17117:5;17092:31;:::i;17158:980::-;17420:4;17468:3;17457:9;17453:19;17499:6;17488:9;17481:25;17525:2;17563:6;17558:2;17547:9;17543:18;17536:34;17606:3;17601:2;17590:9;17586:18;17579:31;17630:6;17665;17659:13;17696:6;17688;17681:22;17734:3;17723:9;17719:19;17712:26;;17773:2;17765:6;17761:15;17747:29;;17794:1;17804:195;17818:6;17815:1;17812:13;17804:195;;;17883:13;;-1:-1:-1;;;;;17879:39:1;17867:52;;17974:15;;;;17939:12;;;;17915:1;17833:9;17804:195;;;-1:-1:-1;;;;;;;18055:32:1;;;;18050:2;18035:18;;18028:60;-1:-1:-1;;;18119:3:1;18104:19;18097:35;18016:3;17158:980;-1:-1:-1;;;17158:980:1:o;18755:306::-;18843:6;18851;18859;18912:2;18900:9;18891:7;18887:23;18883:32;18880:52;;;18928:1;18925;18918:12;18880:52;18957:9;18951:16;18941:26;;19007:2;18996:9;18992:18;18986:25;18976:35;;19051:2;19040:9;19036:18;19030:25;19020:35;;18755:306;;;;;:::o

Swarm Source

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