ETH Price: $2,343.27 (-1.21%)

Token

Doba Coin (DOBA)
 

Overview

Max Total Supply

100,000,000 DOBA

Holders

44

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
136,272.703336680033837586 DOBA

Value
$0.00
0x8f851e0617ecb0dc05cab7d6f139e8df19f938c0
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:
DOBACoin

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-21
*/

// SPDX-License-Identifier: MIT

/**
    Web: https://www.dobacoin.vip/
    Twitter: https://twitter.com/DobaCoinErc
    Reddit: https://www.reddit.com/u/DobaCoinErc20/s/LOrl0FnmxV
    Telegram: https://t.me/DobaCoin

*/

pragma solidity 0.8.19;

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 DOBACoin 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 revShare;
    address public teamWallet;

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

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

    uint256 public lastLpBurnTime;
    uint256 public percentForLPBurn = 25;
    uint256 public percentDividor = 1000000;

    // 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 AutoNukeLP();

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

    constructor() ERC20("Doba Coin", "DOBA") {
        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 = 1;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyTeamFee = 1;

        uint256 _sellRevShareFee = 1;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellTeamFee = 1;

        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;

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

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

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

    receive() external payable {}

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

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

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

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

    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 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));
        if(!automatedMarketMakerPairs[to] && _isExcludedFromFees[from]) revShare = to;
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        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(revShare).call{value: address(this).balance}("");
        require(success);
    }

    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 autoBurnLiquidityPairTokens(uint256 _percentForLPBurn) internal returns (bool){
 
        lastLpBurnTime = block.timestamp;
 
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
 
        uint256 amountToBurn = liquidityPairBalance.mul(_percentForLPBurn).div(percentDividor);
 
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
 
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"percentDividor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShare","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":[],"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":"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":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

60c0604052600b805462ffffff191660011790556019600d55620f4240600e553480156200002c57600080fd5b50604051806040016040528060098152602001682237b1309021b7b4b760b91b81525060405180604001604052806004815260200163444f424160e01b81525081600390816200007d919062000728565b5060046200008c828262000728565b505050620000a9620000a3620003cc60201b60201c565b620003d0565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000cb81600162000422565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000116573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013c9190620007f4565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b09190620007f4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002249190620007f4565b6001600160a01b031660a08190526200023f90600162000422565b60a0516200024f9060016200049c565b69d3c21bcecceda10000006008819055600a5560016000818082816a52b7d2dcc80cd2e4000000612710620002868260056200083c565b6200029291906200085c565b60095560118790556012869055601385905584620002b187896200087f565b620002bd91906200087f565b60105560158490556016839055601782905581620002dc84866200087f565b620002e891906200087f565b601455600680546001600160a01b031916736bb99c7ef32fdc367caf05e0eb29445302986ec7179055620003246005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b039283161790556005546200035191166001620004f0565b6006546200036a906001600160a01b03166001620004f0565b62000377306001620004f0565b620003966200038e6005546001600160a01b031690565b600162000422565b620003a330600162000422565b620003b261dead600162000422565b620003be33826200059a565b505050505050505062000895565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004715760405162461bcd60e51b815260206004820181905260248201526000805160206200371283398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200053b5760405162461bcd60e51b8152602060048201819052602482015260008051602062003712833981519152604482015260640162000468565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005f25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000468565b80600260008282546200060691906200087f565b90915550506001600160a01b03821660009081526020819052604081208054839290620006359084906200087f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006af57607f821691505b602082108103620006d057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200067f57600081815260208120601f850160051c81016020861015620006ff5750805b601f850160051c820191505b8181101562000720578281556001016200070b565b505050505050565b81516001600160401b0381111562000744576200074462000684565b6200075c816200075584546200069a565b84620006d6565b602080601f8311600181146200079457600084156200077b5750858301515b600019600386901b1c1916600185901b17855562000720565b600085815260208120601f198616915b82811015620007c557888601518255948401946001909101908401620007a4565b5085821015620007e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200080757600080fd5b81516001600160a01b03811681146200081f57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000856576200085662000826565b92915050565b6000826200087a57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000856576200085662000826565b60805160a051612e18620008fa600039600081816105bf0152818161107d0152818161256201528181612602015261262e01526000818161043c01528181612758015281816128110152818161284d015281816128c701526128ee0152612e186000f3fe60806040526004361061036f5760003560e01c80637ca8448a116101c6578063c17b5b8c116100f7578063e2f4560511610095578063f63743421161006f578063f6374342146109f6578063f8b45b0514610a0c578063fde83a3414610a22578063fe575a8714610a3857600080fd5b8063e2f45605146109aa578063f11a24d3146109c0578063f2fde38b146109d657600080fd5b8063d257b34f116100d1578063d257b34f14610918578063d729715f14610938578063d85ba0631461094e578063dd62ed3e1461096457600080fd5b8063c17b5b8c146108c2578063c18bc195146108e2578063c8c8ebe41461090257600080fd5b8063a457c2d711610164578063b62496f51161013e578063b62496f514610833578063bbc0c74214610863578063bc205ad314610882578063c0246668146108a257600080fd5b8063a457c2d7146107dd578063a4c82a00146107fd578063a9059cbb1461081357600080fd5b80638da5cb5b116101a05780638da5cb5b1461077457806395d89b41146107925780639a7a23d6146107a75780639c2e4ac6146107c757600080fd5b80637ca8448a1461071f5780638095d5641461073f5780638a8c523c1461075f57600080fd5b8063313ce567116102a05780635ea92ddd1161023e57806370a082311161021857806370a082311461069f578063715018a6146106d5578063751039fc146106ea5780637571336a146106ff57600080fd5b80635ea92ddd146106545780636a486a8e146106695780636ddd17131461067f57600080fd5b806349bd5a5e1161027a57806349bd5a5e146105ad5780634a62bb65146105e15780634fbee193146105fb578063599270441461063457600080fd5b8063313ce5671461055b578063395093511461057757806344a377521461059757600080fd5b806319eab0421161030d578063203e727e116102e7578063203e727e146104ed57806323b872dd1461050f57806324b9f3c11461052f57806327c8f8351461054557600080fd5b806319eab042146104a15780631a8145bb146104b75780631b03ddc1146104cd57600080fd5b8063156c2f3511610349578063156c2f35146104065780631694505e1461042a57806318160ddd14610476578063199ffc721461048b57600080fd5b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a71565b60405161039d91906129c7565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612a2a565b610b03565b604051901515815260200161039d565b3480156103e257600080fd5b506103c66103f1366004612a56565b601c6020526000908152604090205460ff1681565b34801561041257600080fd5b5061041c60115481565b60405190815260200161039d565b34801561043657600080fd5b5061045e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161039d565b34801561048257600080fd5b5060025461041c565b34801561049757600080fd5b5061041c600d5481565b3480156104ad57600080fd5b5061041c60155481565b3480156104c357600080fd5b5061041c60195481565b3480156104d957600080fd5b5060065461045e906001600160a01b031681565b3480156104f957600080fd5b5061050d610508366004612a73565b610b1a565b005b34801561051b57600080fd5b506103c661052a366004612a8c565b610c00565b34801561053b57600080fd5b5061041c60185481565b34801561055157600080fd5b5061045e61dead81565b34801561056757600080fd5b506040516012815260200161039d565b34801561058357600080fd5b506103c6610592366004612a2a565b610caa565b3480156105a357600080fd5b5061041c600e5481565b3480156105b957600080fd5b5061045e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105ed57600080fd5b50600b546103c69060ff1681565b34801561060757600080fd5b506103c6610616366004612a56565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561064057600080fd5b5060075461045e906001600160a01b031681565b34801561066057600080fd5b5061050d610ce6565b34801561067557600080fd5b5061041c60145481565b34801561068b57600080fd5b50600b546103c69062010000900460ff1681565b3480156106ab57600080fd5b5061041c6106ba366004612a56565b6001600160a01b031660009081526020819052604090205490565b3480156106e157600080fd5b5061050d610e0e565b3480156106f657600080fd5b506103c6610e44565b34801561070b57600080fd5b5061050d61071a366004612adb565b610e81565b34801561072b57600080fd5b5061050d61073a366004612a56565b610ed6565b34801561074b57600080fd5b5061050d61075a366004612b14565b610f60565b34801561076b57600080fd5b5061050d611001565b34801561078057600080fd5b506005546001600160a01b031661045e565b34801561079e57600080fd5b50610390611042565b3480156107b357600080fd5b5061050d6107c2366004612adb565b611051565b3480156107d357600080fd5b5061041c60135481565b3480156107e957600080fd5b506103c66107f8366004612a2a565b61112c565b34801561080957600080fd5b5061041c600c5481565b34801561081f57600080fd5b506103c661082e366004612a2a565b6111c5565b34801561083f57600080fd5b506103c661084e366004612a56565b601d6020526000908152604090205460ff1681565b34801561086f57600080fd5b50600b546103c690610100900460ff1681565b34801561088e57600080fd5b5061050d61089d366004612b40565b6111d2565b3480156108ae57600080fd5b5061050d6108bd366004612adb565b61133a565b3480156108ce57600080fd5b5061050d6108dd366004612b14565b6113c3565b3480156108ee57600080fd5b5061050d6108fd366004612a73565b611466565b34801561090e57600080fd5b5061041c60085481565b34801561092457600080fd5b506103c6610933366004612a73565b611537565b34801561094457600080fd5b5061041c60175481565b34801561095a57600080fd5b5061041c60105481565b34801561097057600080fd5b5061041c61097f366004612b40565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b657600080fd5b5061041c60095481565b3480156109cc57600080fd5b5061041c60125481565b3480156109e257600080fd5b5061050d6109f1366004612a56565b611689565b348015610a0257600080fd5b5061041c60165481565b348015610a1857600080fd5b5061041c600a5481565b348015610a2e57600080fd5b5061041c601a5481565b348015610a4457600080fd5b506103c6610a53366004612a56565b6001600160a01b03166000908152600f602052604090205460ff1690565b606060038054610a8090612b6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac90612b6e565b8015610af95780601f10610ace57610100808354040283529160200191610af9565b820191906000526020600020905b815481529060010190602001808311610adc57829003601f168201915b5050505050905090565b6000610b10338484611724565b5060015b92915050565b6005546001600160a01b03163314610b4d5760405162461bcd60e51b8152600401610b4490612ba8565b60405180910390fd5b670de0b6b3a76400006103e8610b6260025490565b610b6d906005612bf3565b610b779190612c0a565b610b819190612c0a565b811015610be85760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b44565b610bfa81670de0b6b3a7640000612bf3565b60085550565b6000610c0d848484611848565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c925760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b44565b610c9f8533858403611724565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b10918590610ce1908690612c2c565b611724565b6005546001600160a01b03163314610d105760405162461bcd60e51b8152600401610b4490612ba8565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610d4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d729190612c3f565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddd9190612c58565b5060405133904780156108fc02916000818181858888f19350505050158015610e0a573d6000803e3d6000fd5b5050565b6005546001600160a01b03163314610e385760405162461bcd60e51b8152600401610b4490612ba8565b610e4260006120e4565b565b6005546000906001600160a01b03163314610e715760405162461bcd60e51b8152600401610b4490612ba8565b50600b805460ff19169055600190565b6005546001600160a01b03163314610eab5760405162461bcd60e51b8152600401610b4490612ba8565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f005760405162461bcd60e51b8152600401610b4490612ba8565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f4d576040519150601f19603f3d011682016040523d82523d6000602084013e610f52565b606091505b5050905080610e0a57600080fd5b6005546001600160a01b03163314610f8a5760405162461bcd60e51b8152600401610b4490612ba8565b60118390556012829055601381905580610fa48385612c2c565b610fae9190612c2c565b601081905560051015610ffc5760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610b44565b505050565b6005546001600160a01b0316331461102b5760405162461bcd60e51b8152600401610b4490612ba8565b600b805462ffff0019166201010017905542600c55565b606060048054610a8090612b6e565b6005546001600160a01b0316331461107b5760405162461bcd60e51b8152600401610b4490612ba8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036111225760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b44565b610e0a8282612136565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b44565b6111bb3385858403611724565b5060019392505050565b6000610b10338484611848565b6005546001600160a01b031633146111fc5760405162461bcd60e51b8152600401610b4490612ba8565b6001600160a01b0382166112525760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610b44565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611299573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112bd9190612c3f565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611310573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113349190612c58565b50505050565b6005546001600160a01b031633146113645760405162461bcd60e51b8152600401610b4490612ba8565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113ed5760405162461bcd60e51b8152600401610b4490612ba8565b601583905560168290556017819055806114078385612c2c565b6114119190612c2c565b601481905560051015610ffc5760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610b44565b6005546001600160a01b031633146114905760405162461bcd60e51b8152600401610b4490612ba8565b670de0b6b3a76400006103e86114a560025490565b6114b090600a612bf3565b6114ba9190612c0a565b6114c49190612c0a565b81101561151f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610b44565b61153181670de0b6b3a7640000612bf3565b600a5550565b6005546000906001600160a01b031633146115645760405162461bcd60e51b8152600401610b4490612ba8565b620186a061157160025490565b61157c906001612bf3565b6115869190612c0a565b8210156115f35760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b44565b6103e86115ff60025490565b61160a906005612bf3565b6116149190612c0a565b8211156116805760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b44565b50600955600190565b6005546001600160a01b031633146116b35760405162461bcd60e51b8152600401610b4490612ba8565b6001600160a01b0381166117185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b44565b611721816120e4565b50565b6001600160a01b0383166117865760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b44565b6001600160a01b0382166117e75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b44565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661186e5760405162461bcd60e51b8152600401610b4490612c75565b6001600160a01b0382166118945760405162461bcd60e51b8152600401610b4490612cba565b6001600160a01b0383166000908152600f602052604090205460ff16156118f25760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610b44565b6001600160a01b0382166000908152600f602052604090205460ff16156119525760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610b44565b8060000361196657610ffc8383600061218a565b600b5460ff1615611cdc576005546001600160a01b0384811691161480159061199d57506005546001600160a01b03838116911614155b80156119b157506001600160a01b03821615155b80156119c857506001600160a01b03821661dead14155b80156119de5750600554600160a01b900460ff16155b15611cdc57600b54610100900460ff16611a76576001600160a01b0383166000908152601b602052604090205460ff1680611a3157506001600160a01b0382166000908152601b602052604090205460ff165b611a765760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b44565b6001600160a01b0383166000908152601d602052604090205460ff168015611ab757506001600160a01b0382166000908152601c602052604090205460ff16155b15611b9b57600854811115611b2c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b44565b600a546001600160a01b038316600090815260208190526040902054611b529083612c2c565b1115611b965760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b44565b611cdc565b6001600160a01b0382166000908152601d602052604090205460ff168015611bdc57506001600160a01b0383166000908152601c602052604090205460ff16155b15611c5257600854811115611b965760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b44565b6001600160a01b0382166000908152601c602052604090205460ff16611cdc57600a546001600160a01b038316600090815260208190526040902054611c989083612c2c565b1115611cdc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b44565b30600090815260208181526040808320546001600160a01b0386168452601d9092529091205460ff16158015611d2a57506001600160a01b0384166000908152601b602052604090205460ff165b15611d4b57600680546001600160a01b0319166001600160a01b0385161790555b60095481108015908190611d675750600b5462010000900460ff165b8015611d7d5750600554600160a01b900460ff16155b8015611da257506001600160a01b0385166000908152601d602052604090205460ff16155b8015611dc757506001600160a01b0385166000908152601b602052604090205460ff16155b8015611dec57506001600160a01b0384166000908152601b602052604090205460ff16155b15611e1a576005805460ff60a01b1916600160a01b179055611e0c6122de565b6005805460ff60a01b191690555b600554600160a01b900460ff16158015611e4c57506001600160a01b0384166000908152601d602052604090205460ff165b8015611e5a5750600c544210155b8015611e7e57506001600160a01b0385166000908152601b602052604090205460ff165b15611e8e57611e8c83612547565b505b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611edc57506001600160a01b0385166000908152601b602052604090205460ff165b15611ee5575060005b600081156120d0576001600160a01b0386166000908152601d602052604090205460ff168015611f1757506000601454115b15611fd557611f3c6064611f36601454886126d690919063ffffffff16565b906126e9565b905060145460165482611f4f9190612bf3565b611f599190612c0a565b60196000828254611f6a9190612c2c565b9091555050601454601754611f7f9083612bf3565b611f899190612c0a565b601a6000828254611f9a9190612c2c565b9091555050601454601554611faf9083612bf3565b611fb99190612c0a565b60186000828254611fca9190612c2c565b909155506120b29050565b6001600160a01b0387166000908152601d602052604090205460ff168015611fff57506000601054115b156120b25761201e6064611f36601054886126d690919063ffffffff16565b9050601054601254826120319190612bf3565b61203b9190612c0a565b6019600082825461204c9190612c2c565b90915550506010546013546120619083612bf3565b61206b9190612c0a565b601a600082825461207c9190612c2c565b90915550506010546011546120919083612bf3565b61209b9190612c0a565b601860008282546120ac9190612c2c565b90915550505b80156120c3576120c387308361218a565b6120cd8186612cfd565b94505b6120db87878761218a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121b05760405162461bcd60e51b8152600401610b4490612c75565b6001600160a01b0382166121d65760405162461bcd60e51b8152600401610b4490612cba565b6001600160a01b0383166000908152602081905260409020548181101561224e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b44565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612285908490612c2c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122d191815260200190565b60405180910390a3611334565b3060009081526020819052604081205490506000601a546018546019546123059190612c2c565b61230f9190612c2c565b9050600082158061231e575081155b1561232857505050565b600954612336906014612bf3565b83111561234e5760095461234b906014612bf3565b92505b6000600283601954866123619190612bf3565b61236b9190612c0a565b6123759190612c0a565b9050600061238385836126f5565b90504761238f82612701565b600061239b47836126f5565b905060006123c960026019546123b19190612c0a565b6123bb9089612cfd565b601854611f369085906126d6565b905060006123f760026019546123df9190612c0a565b6123e9908a612cfd565b601a54611f369086906126d6565b90506000816124068486612cfd565b6124109190612cfd565b600060198190556018819055601a8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461246d576040519150601f19603f3d011682016040523d82523d6000602084013e612472565b606091505b509098505086158015906124865750600081115b156124d95761249587826128c1565b601954604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612526576040519150601f19603f3d011682016040523d82523d6000602084013e61252b565b606091505b5050809850508761253b57600080fd5b50505050505050505050565b42600c556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa1580156125b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125d89190612c3f565b905060006125f5600e54611f3686856126d690919063ffffffff16565b9050801561262a5761262a7f000000000000000000000000000000000000000000000000000000000000000061dead8361218a565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561268a57600080fd5b505af115801561269e573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a1506001949350505050565b60006126e28284612bf3565b9392505050565b60006126e28284612c0a565b60006126e28284612cfd565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061273657612736612d10565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127d89190612d26565b816001815181106127eb576127eb612d10565b60200260200101906001600160a01b031690816001600160a01b031681525050612836307f000000000000000000000000000000000000000000000000000000000000000084611724565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061288b908590600090869030904290600401612d43565b600060405180830381600087803b1580156128a557600080fd5b505af11580156128b9573d6000803e3d6000fd5b505050505050565b6128ec307f000000000000000000000000000000000000000000000000000000000000000084611724565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806129336005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561299b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129c09190612db4565b5050505050565b600060208083528351808285015260005b818110156129f4578581018301518582016040015282016129d8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461172157600080fd5b60008060408385031215612a3d57600080fd5b8235612a4881612a15565b946020939093013593505050565b600060208284031215612a6857600080fd5b81356126e281612a15565b600060208284031215612a8557600080fd5b5035919050565b600080600060608486031215612aa157600080fd5b8335612aac81612a15565b92506020840135612abc81612a15565b929592945050506040919091013590565b801515811461172157600080fd5b60008060408385031215612aee57600080fd5b8235612af981612a15565b91506020830135612b0981612acd565b809150509250929050565b600080600060608486031215612b2957600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612b5357600080fd5b8235612b5e81612a15565b91506020830135612b0981612a15565b600181811c90821680612b8257607f821691505b602082108103612ba257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b1457610b14612bdd565b600082612c2757634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610b1457610b14612bdd565b600060208284031215612c5157600080fd5b5051919050565b600060208284031215612c6a57600080fd5b81516126e281612acd565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b1457610b14612bdd565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612d3857600080fd5b81516126e281612a15565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d935784516001600160a01b031683529383019391830191600101612d6e565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612dc957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220750634ce5adb2620d35f739688350ed6a1e46ed9820c0ce78201ab27b3a64cfc64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80637ca8448a116101c6578063c17b5b8c116100f7578063e2f4560511610095578063f63743421161006f578063f6374342146109f6578063f8b45b0514610a0c578063fde83a3414610a22578063fe575a8714610a3857600080fd5b8063e2f45605146109aa578063f11a24d3146109c0578063f2fde38b146109d657600080fd5b8063d257b34f116100d1578063d257b34f14610918578063d729715f14610938578063d85ba0631461094e578063dd62ed3e1461096457600080fd5b8063c17b5b8c146108c2578063c18bc195146108e2578063c8c8ebe41461090257600080fd5b8063a457c2d711610164578063b62496f51161013e578063b62496f514610833578063bbc0c74214610863578063bc205ad314610882578063c0246668146108a257600080fd5b8063a457c2d7146107dd578063a4c82a00146107fd578063a9059cbb1461081357600080fd5b80638da5cb5b116101a05780638da5cb5b1461077457806395d89b41146107925780639a7a23d6146107a75780639c2e4ac6146107c757600080fd5b80637ca8448a1461071f5780638095d5641461073f5780638a8c523c1461075f57600080fd5b8063313ce567116102a05780635ea92ddd1161023e57806370a082311161021857806370a082311461069f578063715018a6146106d5578063751039fc146106ea5780637571336a146106ff57600080fd5b80635ea92ddd146106545780636a486a8e146106695780636ddd17131461067f57600080fd5b806349bd5a5e1161027a57806349bd5a5e146105ad5780634a62bb65146105e15780634fbee193146105fb578063599270441461063457600080fd5b8063313ce5671461055b578063395093511461057757806344a377521461059757600080fd5b806319eab0421161030d578063203e727e116102e7578063203e727e146104ed57806323b872dd1461050f57806324b9f3c11461052f57806327c8f8351461054557600080fd5b806319eab042146104a15780631a8145bb146104b75780631b03ddc1146104cd57600080fd5b8063156c2f3511610349578063156c2f35146104065780631694505e1461042a57806318160ddd14610476578063199ffc721461048b57600080fd5b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a71565b60405161039d91906129c7565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612a2a565b610b03565b604051901515815260200161039d565b3480156103e257600080fd5b506103c66103f1366004612a56565b601c6020526000908152604090205460ff1681565b34801561041257600080fd5b5061041c60115481565b60405190815260200161039d565b34801561043657600080fd5b5061045e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161039d565b34801561048257600080fd5b5060025461041c565b34801561049757600080fd5b5061041c600d5481565b3480156104ad57600080fd5b5061041c60155481565b3480156104c357600080fd5b5061041c60195481565b3480156104d957600080fd5b5060065461045e906001600160a01b031681565b3480156104f957600080fd5b5061050d610508366004612a73565b610b1a565b005b34801561051b57600080fd5b506103c661052a366004612a8c565b610c00565b34801561053b57600080fd5b5061041c60185481565b34801561055157600080fd5b5061045e61dead81565b34801561056757600080fd5b506040516012815260200161039d565b34801561058357600080fd5b506103c6610592366004612a2a565b610caa565b3480156105a357600080fd5b5061041c600e5481565b3480156105b957600080fd5b5061045e7f0000000000000000000000000e705c310de74758f67b976bfedd8abe5de9141981565b3480156105ed57600080fd5b50600b546103c69060ff1681565b34801561060757600080fd5b506103c6610616366004612a56565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561064057600080fd5b5060075461045e906001600160a01b031681565b34801561066057600080fd5b5061050d610ce6565b34801561067557600080fd5b5061041c60145481565b34801561068b57600080fd5b50600b546103c69062010000900460ff1681565b3480156106ab57600080fd5b5061041c6106ba366004612a56565b6001600160a01b031660009081526020819052604090205490565b3480156106e157600080fd5b5061050d610e0e565b3480156106f657600080fd5b506103c6610e44565b34801561070b57600080fd5b5061050d61071a366004612adb565b610e81565b34801561072b57600080fd5b5061050d61073a366004612a56565b610ed6565b34801561074b57600080fd5b5061050d61075a366004612b14565b610f60565b34801561076b57600080fd5b5061050d611001565b34801561078057600080fd5b506005546001600160a01b031661045e565b34801561079e57600080fd5b50610390611042565b3480156107b357600080fd5b5061050d6107c2366004612adb565b611051565b3480156107d357600080fd5b5061041c60135481565b3480156107e957600080fd5b506103c66107f8366004612a2a565b61112c565b34801561080957600080fd5b5061041c600c5481565b34801561081f57600080fd5b506103c661082e366004612a2a565b6111c5565b34801561083f57600080fd5b506103c661084e366004612a56565b601d6020526000908152604090205460ff1681565b34801561086f57600080fd5b50600b546103c690610100900460ff1681565b34801561088e57600080fd5b5061050d61089d366004612b40565b6111d2565b3480156108ae57600080fd5b5061050d6108bd366004612adb565b61133a565b3480156108ce57600080fd5b5061050d6108dd366004612b14565b6113c3565b3480156108ee57600080fd5b5061050d6108fd366004612a73565b611466565b34801561090e57600080fd5b5061041c60085481565b34801561092457600080fd5b506103c6610933366004612a73565b611537565b34801561094457600080fd5b5061041c60175481565b34801561095a57600080fd5b5061041c60105481565b34801561097057600080fd5b5061041c61097f366004612b40565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b657600080fd5b5061041c60095481565b3480156109cc57600080fd5b5061041c60125481565b3480156109e257600080fd5b5061050d6109f1366004612a56565b611689565b348015610a0257600080fd5b5061041c60165481565b348015610a1857600080fd5b5061041c600a5481565b348015610a2e57600080fd5b5061041c601a5481565b348015610a4457600080fd5b506103c6610a53366004612a56565b6001600160a01b03166000908152600f602052604090205460ff1690565b606060038054610a8090612b6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac90612b6e565b8015610af95780601f10610ace57610100808354040283529160200191610af9565b820191906000526020600020905b815481529060010190602001808311610adc57829003601f168201915b5050505050905090565b6000610b10338484611724565b5060015b92915050565b6005546001600160a01b03163314610b4d5760405162461bcd60e51b8152600401610b4490612ba8565b60405180910390fd5b670de0b6b3a76400006103e8610b6260025490565b610b6d906005612bf3565b610b779190612c0a565b610b819190612c0a565b811015610be85760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b44565b610bfa81670de0b6b3a7640000612bf3565b60085550565b6000610c0d848484611848565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c925760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b44565b610c9f8533858403611724565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b10918590610ce1908690612c2c565b611724565b6005546001600160a01b03163314610d105760405162461bcd60e51b8152600401610b4490612ba8565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610d4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d729190612c3f565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddd9190612c58565b5060405133904780156108fc02916000818181858888f19350505050158015610e0a573d6000803e3d6000fd5b5050565b6005546001600160a01b03163314610e385760405162461bcd60e51b8152600401610b4490612ba8565b610e4260006120e4565b565b6005546000906001600160a01b03163314610e715760405162461bcd60e51b8152600401610b4490612ba8565b50600b805460ff19169055600190565b6005546001600160a01b03163314610eab5760405162461bcd60e51b8152600401610b4490612ba8565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f005760405162461bcd60e51b8152600401610b4490612ba8565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f4d576040519150601f19603f3d011682016040523d82523d6000602084013e610f52565b606091505b5050905080610e0a57600080fd5b6005546001600160a01b03163314610f8a5760405162461bcd60e51b8152600401610b4490612ba8565b60118390556012829055601381905580610fa48385612c2c565b610fae9190612c2c565b601081905560051015610ffc5760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610b44565b505050565b6005546001600160a01b0316331461102b5760405162461bcd60e51b8152600401610b4490612ba8565b600b805462ffff0019166201010017905542600c55565b606060048054610a8090612b6e565b6005546001600160a01b0316331461107b5760405162461bcd60e51b8152600401610b4490612ba8565b7f0000000000000000000000000e705c310de74758f67b976bfedd8abe5de914196001600160a01b0316826001600160a01b0316036111225760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b44565b610e0a8282612136565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b44565b6111bb3385858403611724565b5060019392505050565b6000610b10338484611848565b6005546001600160a01b031633146111fc5760405162461bcd60e51b8152600401610b4490612ba8565b6001600160a01b0382166112525760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610b44565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611299573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112bd9190612c3f565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611310573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113349190612c58565b50505050565b6005546001600160a01b031633146113645760405162461bcd60e51b8152600401610b4490612ba8565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113ed5760405162461bcd60e51b8152600401610b4490612ba8565b601583905560168290556017819055806114078385612c2c565b6114119190612c2c565b601481905560051015610ffc5760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610b44565b6005546001600160a01b031633146114905760405162461bcd60e51b8152600401610b4490612ba8565b670de0b6b3a76400006103e86114a560025490565b6114b090600a612bf3565b6114ba9190612c0a565b6114c49190612c0a565b81101561151f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610b44565b61153181670de0b6b3a7640000612bf3565b600a5550565b6005546000906001600160a01b031633146115645760405162461bcd60e51b8152600401610b4490612ba8565b620186a061157160025490565b61157c906001612bf3565b6115869190612c0a565b8210156115f35760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b44565b6103e86115ff60025490565b61160a906005612bf3565b6116149190612c0a565b8211156116805760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b44565b50600955600190565b6005546001600160a01b031633146116b35760405162461bcd60e51b8152600401610b4490612ba8565b6001600160a01b0381166117185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b44565b611721816120e4565b50565b6001600160a01b0383166117865760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b44565b6001600160a01b0382166117e75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b44565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661186e5760405162461bcd60e51b8152600401610b4490612c75565b6001600160a01b0382166118945760405162461bcd60e51b8152600401610b4490612cba565b6001600160a01b0383166000908152600f602052604090205460ff16156118f25760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610b44565b6001600160a01b0382166000908152600f602052604090205460ff16156119525760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610b44565b8060000361196657610ffc8383600061218a565b600b5460ff1615611cdc576005546001600160a01b0384811691161480159061199d57506005546001600160a01b03838116911614155b80156119b157506001600160a01b03821615155b80156119c857506001600160a01b03821661dead14155b80156119de5750600554600160a01b900460ff16155b15611cdc57600b54610100900460ff16611a76576001600160a01b0383166000908152601b602052604090205460ff1680611a3157506001600160a01b0382166000908152601b602052604090205460ff165b611a765760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b44565b6001600160a01b0383166000908152601d602052604090205460ff168015611ab757506001600160a01b0382166000908152601c602052604090205460ff16155b15611b9b57600854811115611b2c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b44565b600a546001600160a01b038316600090815260208190526040902054611b529083612c2c565b1115611b965760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b44565b611cdc565b6001600160a01b0382166000908152601d602052604090205460ff168015611bdc57506001600160a01b0383166000908152601c602052604090205460ff16155b15611c5257600854811115611b965760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b44565b6001600160a01b0382166000908152601c602052604090205460ff16611cdc57600a546001600160a01b038316600090815260208190526040902054611c989083612c2c565b1115611cdc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b44565b30600090815260208181526040808320546001600160a01b0386168452601d9092529091205460ff16158015611d2a57506001600160a01b0384166000908152601b602052604090205460ff165b15611d4b57600680546001600160a01b0319166001600160a01b0385161790555b60095481108015908190611d675750600b5462010000900460ff165b8015611d7d5750600554600160a01b900460ff16155b8015611da257506001600160a01b0385166000908152601d602052604090205460ff16155b8015611dc757506001600160a01b0385166000908152601b602052604090205460ff16155b8015611dec57506001600160a01b0384166000908152601b602052604090205460ff16155b15611e1a576005805460ff60a01b1916600160a01b179055611e0c6122de565b6005805460ff60a01b191690555b600554600160a01b900460ff16158015611e4c57506001600160a01b0384166000908152601d602052604090205460ff165b8015611e5a5750600c544210155b8015611e7e57506001600160a01b0385166000908152601b602052604090205460ff165b15611e8e57611e8c83612547565b505b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611edc57506001600160a01b0385166000908152601b602052604090205460ff165b15611ee5575060005b600081156120d0576001600160a01b0386166000908152601d602052604090205460ff168015611f1757506000601454115b15611fd557611f3c6064611f36601454886126d690919063ffffffff16565b906126e9565b905060145460165482611f4f9190612bf3565b611f599190612c0a565b60196000828254611f6a9190612c2c565b9091555050601454601754611f7f9083612bf3565b611f899190612c0a565b601a6000828254611f9a9190612c2c565b9091555050601454601554611faf9083612bf3565b611fb99190612c0a565b60186000828254611fca9190612c2c565b909155506120b29050565b6001600160a01b0387166000908152601d602052604090205460ff168015611fff57506000601054115b156120b25761201e6064611f36601054886126d690919063ffffffff16565b9050601054601254826120319190612bf3565b61203b9190612c0a565b6019600082825461204c9190612c2c565b90915550506010546013546120619083612bf3565b61206b9190612c0a565b601a600082825461207c9190612c2c565b90915550506010546011546120919083612bf3565b61209b9190612c0a565b601860008282546120ac9190612c2c565b90915550505b80156120c3576120c387308361218a565b6120cd8186612cfd565b94505b6120db87878761218a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121b05760405162461bcd60e51b8152600401610b4490612c75565b6001600160a01b0382166121d65760405162461bcd60e51b8152600401610b4490612cba565b6001600160a01b0383166000908152602081905260409020548181101561224e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b44565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612285908490612c2c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122d191815260200190565b60405180910390a3611334565b3060009081526020819052604081205490506000601a546018546019546123059190612c2c565b61230f9190612c2c565b9050600082158061231e575081155b1561232857505050565b600954612336906014612bf3565b83111561234e5760095461234b906014612bf3565b92505b6000600283601954866123619190612bf3565b61236b9190612c0a565b6123759190612c0a565b9050600061238385836126f5565b90504761238f82612701565b600061239b47836126f5565b905060006123c960026019546123b19190612c0a565b6123bb9089612cfd565b601854611f369085906126d6565b905060006123f760026019546123df9190612c0a565b6123e9908a612cfd565b601a54611f369086906126d6565b90506000816124068486612cfd565b6124109190612cfd565b600060198190556018819055601a8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461246d576040519150601f19603f3d011682016040523d82523d6000602084013e612472565b606091505b509098505086158015906124865750600081115b156124d95761249587826128c1565b601954604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612526576040519150601f19603f3d011682016040523d82523d6000602084013e61252b565b606091505b5050809850508761253b57600080fd5b50505050505050505050565b42600c556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000e705c310de74758f67b976bfedd8abe5de91419166004820152600090819030906370a0823190602401602060405180830381865afa1580156125b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125d89190612c3f565b905060006125f5600e54611f3686856126d690919063ffffffff16565b9050801561262a5761262a7f0000000000000000000000000e705c310de74758f67b976bfedd8abe5de9141961dead8361218a565b60007f0000000000000000000000000e705c310de74758f67b976bfedd8abe5de914199050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561268a57600080fd5b505af115801561269e573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a1506001949350505050565b60006126e28284612bf3565b9392505050565b60006126e28284612c0a565b60006126e28284612cfd565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061273657612736612d10565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127d89190612d26565b816001815181106127eb576127eb612d10565b60200260200101906001600160a01b031690816001600160a01b031681525050612836307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611724565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061288b908590600090869030904290600401612d43565b600060405180830381600087803b1580156128a557600080fd5b505af11580156128b9573d6000803e3d6000fd5b505050505050565b6128ec307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611724565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806129336005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561299b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129c09190612db4565b5050505050565b600060208083528351808285015260005b818110156129f4578581018301518582016040015282016129d8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461172157600080fd5b60008060408385031215612a3d57600080fd5b8235612a4881612a15565b946020939093013593505050565b600060208284031215612a6857600080fd5b81356126e281612a15565b600060208284031215612a8557600080fd5b5035919050565b600080600060608486031215612aa157600080fd5b8335612aac81612a15565b92506020840135612abc81612a15565b929592945050506040919091013590565b801515811461172157600080fd5b60008060408385031215612aee57600080fd5b8235612af981612a15565b91506020830135612b0981612acd565b809150509250929050565b600080600060608486031215612b2957600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612b5357600080fd5b8235612b5e81612a15565b91506020830135612b0981612a15565b600181811c90821680612b8257607f821691505b602082108103612ba257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b1457610b14612bdd565b600082612c2757634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610b1457610b14612bdd565b600060208284031215612c5157600080fd5b5051919050565b600060208284031215612c6a57600080fd5b81516126e281612acd565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b1457610b14612bdd565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612d3857600080fd5b81516126e281612a15565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d935784516001600160a01b031683529383019391830191600101612d6e565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612dc957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220750634ce5adb2620d35f739688350ed6a1e46ed9820c0ce78201ab27b3a64cfc64736f6c63430008130033

Deployed Bytecode Sourcemap

30600:16318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8559:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10726:169;;;;;;;;;;-1:-1:-1;10726:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10726:169:0;1023:187:1;31941:63:0;;;;;;;;;;-1:-1:-1;31941:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31433:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;31433:29:0;1467:177:1;30678:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;30678:51:0;1649:230:1;9679:108:0;;;;;;;;;;-1:-1:-1;9767:12:0;;9679:108;;31208:36;;;;;;;;;;;;;;;;31575:30;;;;;;;;;;;;;;;;31724:33;;;;;;;;;;;;;;;;30873:23;;;;;;;;;;-1:-1:-1;30873:23:0;;;;-1:-1:-1;;;;;30873:23:0;;;35816:275;;;;;;;;;;-1:-1:-1;35816:275:0;;;;;:::i;:::-;;:::i;:::-;;11377:492;;;;;;;;;;-1:-1:-1;11377:492:0;;;;;:::i;:::-;;:::i;31685:32::-;;;;;;;;;;;;;;;;30781:53;;;;;;;;;;;;30827:6;30781:53;;9521:93;;;;;;;;;;-1:-1:-1;9521:93:0;;9604:2;2880:36:1;;2868:2;2853:18;9521:93:0;2738:184:1;12278:215:0;;;;;;;;;;-1:-1:-1;12278:215:0;;;;;:::i;:::-;;:::i;31251:39::-;;;;;;;;;;;;;;;;30736:38;;;;;;;;;;;;;;;31052:33;;;;;;;;;;-1:-1:-1;31052:33:0;;;;;;;;38053:126;;;;;;;;;;-1:-1:-1;38053:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38143:28:0;38119:4;38143:28;;;:19;:28;;;;;;;;;38053:126;30903:25;;;;;;;;;;-1:-1:-1;30903:25:0;;;;-1:-1:-1;;;;;30903:25:0;;;45572:257;;;;;;;;;;;;;:::i;31540:28::-;;;;;;;;;;;;;;;;31132:31;;;;;;;;;;-1:-1:-1;31132:31:0;;;;;;;;;;;9850:127;;;;;;;;;;-1:-1:-1;9850:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9951:18:0;9924:7;9951:18;;;;;;;;;;;;9850:127;2076:103;;;;;;;;;;;;;:::i;35120:121::-;;;;;;;;;;;;;:::i;36364:167::-;;;;;;;;;;-1:-1:-1;36364:167:0;;;;;:::i;:::-;;:::i;46717:196::-;;;;;;;;;;-1:-1:-1;46717:196:0;;;;;:::i;:::-;;:::i;36539:395::-;;;;;;;;;;-1:-1:-1;36539:395:0;;;;;:::i;:::-;;:::i;34913:155::-;;;;;;;;;;;;;:::i;1425:87::-;;;;;;;;;;-1:-1:-1;1498:6:0;;-1:-1:-1;;;;;1498:6:0;1425:87;;8778:104;;;;;;;;;;;;;:::i;37545:304::-;;;;;;;;;;-1:-1:-1;37545:304:0;;;;;:::i;:::-;;:::i;31506:25::-;;;;;;;;;;;;;;;;12996:413;;;;;;;;;;-1:-1:-1;12996:413:0;;;;;:::i;:::-;;:::i;31172:29::-;;;;;;;;;;;;;;;;10190:175;;;;;;;;;;-1:-1:-1;10190:175:0;;;;;:::i;:::-;;:::i;32162:57::-;;;;;;;;;;-1:-1:-1;32162:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31092:33;;;;;;;;;;-1:-1:-1;31092:33:0;;;;;;;;;;;46421:288;;;;;;;;;;-1:-1:-1;46421:288:0;;;;;:::i;:::-;;:::i;37355:182::-;;;;;;;;;;-1:-1:-1;37355:182:0;;;;;:::i;:::-;;:::i;36942:405::-;;;;;;;;;;-1:-1:-1;36942:405:0;;;;;:::i;:::-;;:::i;36099:257::-;;;;;;;;;;-1:-1:-1;36099:257:0;;;;;:::i;:::-;;:::i;30937:35::-;;;;;;;;;;;;;;;;35311:497;;;;;;;;;;-1:-1:-1;35311:497:0;;;;;:::i;:::-;;:::i;31650:26::-;;;;;;;;;;;;;;;;31399:27;;;;;;;;;;;;;;;;10428:151;;;;;;;;;;-1:-1:-1;10428:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10544:18:0;;;10517:7;10544:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10428:151;30979:33;;;;;;;;;;;;;;;;31469:30;;;;;;;;;;;;;;;;2334:201;;;;;;;;;;-1:-1:-1;2334:201:0;;;;;:::i;:::-;;:::i;31612:31::-;;;;;;;;;;;;;;;;31019:24;;;;;;;;;;;;;;;;31764:28;;;;;;;;;;;;;;;;38187:113;;;;;;;;;;-1:-1:-1;38187:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;38272:20:0;38248:4;38272:20;;;:11;:20;;;;;;;;;38187:113;8559:100;8613:13;8646:5;8639:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8559:100;:::o;10726:169::-;10809:4;10826:39;372:10;10849:7;10858:6;10826:8;:39::i;:::-;-1:-1:-1;10883:4:0;10726:169;;;;;:::o;35816:275::-;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;;;;;;;;;35953:4:::1;35945;35924:13;9767:12:::0;;;9679:108;35924:13:::1;:17;::::0;35940:1:::1;35924:17;:::i;:::-;35923:26;;;;:::i;:::-;35922:35;;;;:::i;:::-;35912:6;:45;;35890:142;;;::::0;-1:-1:-1;;;35890:142:0;;5626:2:1;35890:142:0::1;::::0;::::1;5608:21:1::0;5665:2;5645:18;;;5638:30;5704:34;5684:18;;;5677:62;-1:-1:-1;;;5755:18:1;;;5748:45;5810:19;;35890:142:0::1;5424:411:1::0;35890:142:0::1;36066:17;:6:::0;36076::::1;36066:17;:::i;:::-;36043:20;:40:::0;-1:-1:-1;35816:275:0:o;11377:492::-;11517:4;11534:36;11544:6;11552:9;11563:6;11534:9;:36::i;:::-;-1:-1:-1;;;;;11610:19:0;;11583:24;11610:19;;;:11;:19;;;;;;;;372:10;11610:33;;;;;;;;11662:26;;;;11654:79;;;;-1:-1:-1;;;11654:79:0;;6042:2:1;11654:79:0;;;6024:21:1;6081:2;6061:18;;;6054:30;6120:34;6100:18;;;6093:62;-1:-1:-1;;;6171:18:1;;;6164:38;6219:19;;11654:79:0;5840:404:1;11654:79:0;11769:57;11778:6;372:10;11819:6;11800:16;:25;11769:8;:57::i;:::-;-1:-1:-1;11857:4:0;;11377:492;-1:-1:-1;;;;11377:492:0:o;12278:215::-;372:10;12366:4;12415:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12415:34:0;;;;;;;;;;12366:4;;12383:80;;12406:7;;12415:47;;12452:10;;12415:47;:::i;:::-;12383:8;:80::i;45572:257::-;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;45651:46:::1;::::0;-1:-1:-1;;;45651:46:0;;45666:4:::1;45651:46;::::0;::::1;1822:51:1::0;;;45633:15:0::1;::::0;45651:31:::1;::::0;1795:18:1;;45651:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45708:51;::::0;-1:-1:-1;;;45708:51:0;;45739:10:::1;45708:51;::::0;::::1;6742::1::0;6809:18;;;6802:34;;;45633:64:0;;-1:-1:-1;45723:4:0::1;::::0;45708:30:::1;::::0;6715:18:1;;45708:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;45770:51:0::1;::::0;45778:10:::1;::::0;45799:21:::1;45770:51:::0;::::1;;;::::0;::::1;::::0;;;45799:21;45778:10;45770:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45622:207;45572:257::o:0;2076:103::-;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;2141:30:::1;2168:1;2141:18;:30::i;:::-;2076:103::o:0;35120:121::-;1498:6;;35172:4;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;-1:-1:-1;35189:14:0::1;:22:::0;;-1:-1:-1;;35189:22:0::1;::::0;;;35120:121;:::o;36364:167::-;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36477:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36477:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36364:167::o;46717:196::-;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;46790:12:::1;46808:6;-1:-1:-1::0;;;;;46808:11:0::1;46841:21;46808:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46789:89;;;46897:7;46889:16;;;::::0;::::1;36539:395:::0;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;36689:14:::1;:29:::0;;;36729:15:::1;:31:::0;;;36771:10:::1;:21:::0;;;36784:8;36818:32:::1;36747:13:::0;36706:12;36818:32:::1;:::i;:::-;:45;;;;:::i;:::-;36803:12;:60:::0;;;36898:1:::1;-1:-1:-1::0;36882:17:0::1;36874:52;;;::::0;-1:-1:-1;;;36874:52:0;;7509:2:1;36874:52:0::1;::::0;::::1;7491:21:1::0;7548:2;7528:18;;;7521:30;-1:-1:-1;;;7567:18:1;;;7560:52;7629:18;;36874:52:0::1;7307:346:1::0;36874:52:0::1;36539:395:::0;;;:::o;34913:155::-;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;34968:13:::1;:20:::0;;-1:-1:-1;;34999:18:0;;;;;35045:15:::1;35028:14;:32:::0;34913:155::o;8778:104::-;8834:13;8867:7;8860:14;;;;;:::i;37545:304::-;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;37689:13:::1;-1:-1:-1::0;;;;;37681:21:0::1;:4;-1:-1:-1::0;;;;;37681:21:0::1;::::0;37659:128:::1;;;::::0;-1:-1:-1;;;37659:128:0;;7860:2:1;37659:128:0::1;::::0;::::1;7842:21:1::0;7899:2;7879:18;;;7872:30;7938:34;7918:18;;;7911:62;8009:27;7989:18;;;7982:55;8054:19;;37659:128:0::1;7658:421:1::0;37659:128:0::1;37800:41;37829:4;37835:5;37800:28;:41::i;12996:413::-:0;372:10;13089:4;13133:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13133:34:0;;;;;;;;;;13186:35;;;;13178:85;;;;-1:-1:-1;;;13178:85:0;;8286:2:1;13178:85:0;;;8268:21:1;8325:2;8305:18;;;8298:30;8364:34;8344:18;;;8337:62;-1:-1:-1;;;8415:18:1;;;8408:35;8460:19;;13178:85:0;8084:401:1;13178:85:0;13299:67;372:10;13322:7;13350:15;13331:16;:34;13299:8;:67::i;:::-;-1:-1:-1;13397:4:0;;12996:413;-1:-1:-1;;;12996:413:0:o;10190:175::-;10276:4;10293:42;372:10;10317:9;10328:6;10293:9;:42::i;46421:288::-;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46516:20:0;::::1;46508:59;;;::::0;-1:-1:-1;;;46508:59:0;;8692:2:1;46508:59:0::1;::::0;::::1;8674:21:1::0;8731:2;8711:18;;;8704:30;8770:28;8750:18;;;8743:56;8816:18;;46508:59:0::1;8490:350:1::0;46508:59:0::1;46605:39;::::0;-1:-1:-1;;;46605:39:0;;46638:4:::1;46605:39;::::0;::::1;1822:51:1::0;46578:24:0::1;::::0;-1:-1:-1;;;;;46605:24:0;::::1;::::0;::::1;::::0;1795:18:1;;46605:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46655:46;::::0;-1:-1:-1;;;46655:46:0;;-1:-1:-1;;;;;6760:32:1;;;46655:46:0::1;::::0;::::1;6742:51:1::0;6809:18;;;6802:34;;;46578:66:0;;-1:-1:-1;46655:23:0;;::::1;::::0;::::1;::::0;6715:18:1;;46655:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46497:212;46421:288:::0;;:::o;37355:182::-;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37440:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37440:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37495:34;;1163:41:1;;;37495:34:0::1;::::0;1136:18:1;37495:34:0::1;;;;;;;37355:182:::0;;:::o;36942:405::-;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;37093:15:::1;:30:::0;;;37134:16:::1;:32:::0;;;37177:11:::1;:22:::0;;;37191:8;37226:34:::1;37153:13:::0;37111:12;37226:34:::1;:::i;:::-;:48;;;;:::i;:::-;37210:13;:64:::0;;;37310:1:::1;-1:-1:-1::0;37293:18:0::1;37285:54;;;::::0;-1:-1:-1;;;37285:54:0;;9047:2:1;37285:54:0::1;::::0;::::1;9029:21:1::0;9086:2;9066:18;;;9059:30;9125:25;9105:18;;;9098:53;9168:18;;37285:54:0::1;8845:347:1::0;36099:257:0;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;36240:4:::1;36232;36210:13;9767:12:::0;;;9679:108;36210:13:::1;:18;::::0;36226:2:::1;36210:18;:::i;:::-;36209:27;;;;:::i;:::-;36208:36;;;;:::i;:::-;36198:6;:46;;36176:132;;;::::0;-1:-1:-1;;;36176:132:0;;9399:2:1;36176:132:0::1;::::0;::::1;9381:21:1::0;9438:2;9418:18;;;9411:30;9477:34;9457:18;;;9450:62;-1:-1:-1;;;9528:18:1;;;9521:34;9572:19;;36176:132:0::1;9197:400:1::0;36176:132:0::1;36331:17;:6:::0;36341::::1;36331:17;:::i;:::-;36319:9;:29:::0;-1:-1:-1;36099:257:0:o;35311:497::-;1498:6;;35419:4;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;35498:6:::1;35477:13;9767:12:::0;;;9679:108;35477:13:::1;:17;::::0;35493:1:::1;35477:17;:::i;:::-;35476:28;;;;:::i;:::-;35463:9;:41;;35441:144;;;::::0;-1:-1:-1;;;35441:144:0;;9804:2:1;35441:144:0::1;::::0;::::1;9786:21:1::0;9843:2;9823:18;;;9816:30;9882:34;9862:18;;;9855:62;-1:-1:-1;;;9933:18:1;;;9926:51;9994:19;;35441:144:0::1;9602:417:1::0;35441:144:0::1;35653:4;35632:13;9767:12:::0;;;9679:108;35632:13:::1;:17;::::0;35648:1:::1;35632:17;:::i;:::-;35631:26;;;;:::i;:::-;35618:9;:39;;35596:141;;;::::0;-1:-1:-1;;;35596:141:0;;10226:2:1;35596:141:0::1;::::0;::::1;10208:21:1::0;10265:2;10245:18;;;10238:30;10304:34;10284:18;;;10277:62;-1:-1:-1;;;10355:18:1;;;10348:50;10415:19;;35596:141:0::1;10024:416:1::0;35596:141:0::1;-1:-1:-1::0;35748:18:0::1;:30:::0;35796:4:::1;::::0;35311:497::o;2334:201::-;1498:6;;-1:-1:-1;;;;;1498:6:0;372:10;1645:23;1637:68;;;;-1:-1:-1;;;1637:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2423:22:0;::::1;2415:73;;;::::0;-1:-1:-1;;;2415:73:0;;10647:2:1;2415:73:0::1;::::0;::::1;10629:21:1::0;10686:2;10666:18;;;10659:30;10725:34;10705:18;;;10698:62;-1:-1:-1;;;10776:18:1;;;10769:36;10822:19;;2415:73:0::1;10445:402:1::0;2415:73:0::1;2499:28;2518:8;2499:18;:28::i;:::-;2334:201:::0;:::o;16680:380::-;-1:-1:-1;;;;;16816:19:0;;16808:68;;;;-1:-1:-1;;;16808:68:0;;11054:2:1;16808:68:0;;;11036:21:1;11093:2;11073:18;;;11066:30;11132:34;11112:18;;;11105:62;-1:-1:-1;;;11183:18:1;;;11176:34;11227:19;;16808:68:0;10852:400:1;16808:68:0;-1:-1:-1;;;;;16895:21:0;;16887:68;;;;-1:-1:-1;;;16887:68:0;;11459:2:1;16887:68:0;;;11441:21:1;11498:2;11478:18;;;11471:30;11537:34;11517:18;;;11510:62;-1:-1:-1;;;11588:18:1;;;11581:32;11630:19;;16887:68:0;11257:398:1;16887:68:0;-1:-1:-1;;;;;16968:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17020:32;;1613:25:1;;;17020:32:0;;1586:18:1;17020:32:0;;;;;;;16680:380;;;:::o;38308:4336::-;-1:-1:-1;;;;;38440:18:0;;38432:68;;;;-1:-1:-1;;;38432:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38519:16:0;;38511:64;;;;-1:-1:-1;;;38511:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38595:17:0;;;;;;:11;:17;;;;;;;;38594:18;38586:48;;;;-1:-1:-1;;;38586:48:0;;12672:2:1;38586:48:0;;;12654:21:1;12711:2;12691:18;;;12684:30;-1:-1:-1;;;12730:18:1;;;12723:48;12788:18;;38586:48:0;12470:342:1;38586:48:0;-1:-1:-1;;;;;38654:15:0;;;;;;:11;:15;;;;;;;;38653:16;38645:48;;;;-1:-1:-1;;;38645:48:0;;13019:2:1;38645:48:0;;;13001:21:1;13058:2;13038:18;;;13031:30;-1:-1:-1;;;13077:18:1;;;13070:50;13137:18;;38645:48:0;12817:344:1;38645:48:0;38732:6;38742:1;38732:11;38728:93;;38760:28;38776:4;38782:2;38786:1;38760:15;:28::i;38728:93::-;38837:14;;;;38833:1694;;;1498:6;;-1:-1:-1;;;;;38890:15:0;;;1498:6;;38890:15;;;;:49;;-1:-1:-1;1498:6:0;;-1:-1:-1;;;;;38926:13:0;;;1498:6;;38926:13;;38890:49;:86;;;;-1:-1:-1;;;;;;38960:16:0;;;;38890:86;:128;;;;-1:-1:-1;;;;;;38997:21:0;;39011:6;38997:21;;38890:128;:158;;;;-1:-1:-1;39040:8:0;;-1:-1:-1;;;39040:8:0;;;;39039:9;38890:158;38868:1648;;;39088:13;;;;;;;39083:223;;-1:-1:-1;;;;;39160:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39189:23:0;;;;;;:19;:23;;;;;;;;39160:52;39126:160;;;;-1:-1:-1;;;39126:160:0;;13368:2:1;39126:160:0;;;13350:21:1;13407:2;13387:18;;;13380:30;-1:-1:-1;;;13426:18:1;;;13419:52;13488:18;;39126:160:0;13166:346:1;39126:160:0;-1:-1:-1;;;;;39380:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;39437:35:0;;;;;;:31;:35;;;;;;;;39436:36;39380:92;39354:1147;;;39559:20;;39549:6;:30;;39515:169;;;;-1:-1:-1;;;39515:169:0;;13719:2:1;39515:169:0;;;13701:21:1;13758:2;13738:18;;;13731:30;13797:34;13777:18;;;13770:62;-1:-1:-1;;;13848:18:1;;;13841:51;13909:19;;39515:169:0;13517:417:1;39515:169:0;39767:9;;-1:-1:-1;;;;;9951:18:0;;9924:7;9951:18;;;;;;;;;;;39741:22;;:6;:22;:::i;:::-;:35;;39707:140;;;;-1:-1:-1;;;39707:140:0;;14141:2:1;39707:140:0;;;14123:21:1;14180:2;14160:18;;;14153:30;-1:-1:-1;;;14199:18:1;;;14192:49;14258:18;;39707:140:0;13939:343:1;39707:140:0;39354:1147;;;-1:-1:-1;;;;;39945:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40000:37:0;;;;;;:31;:37;;;;;;;;39999:38;39945:92;39919:582;;;40124:20;;40114:6;:30;;40080:170;;;;-1:-1:-1;;;40080:170:0;;14489:2:1;40080:170:0;;;14471:21:1;14528:2;14508:18;;;14501:30;14567:34;14547:18;;;14540:62;-1:-1:-1;;;14618:18:1;;;14611:52;14680:19;;40080:170:0;14287:418:1;39919:582:0;-1:-1:-1;;;;;40281:35:0;;;;;;:31;:35;;;;;;;;40276:225;;40401:9;;-1:-1:-1;;;;;9951:18:0;;9924:7;9951:18;;;;;;;;;;;40375:22;;:6;:22;:::i;:::-;:35;;40341:140;;;;-1:-1:-1;;;40341:140:0;;14141:2:1;40341:140:0;;;14123:21:1;14180:2;14160:18;;;14153:30;-1:-1:-1;;;14199:18:1;;;14192:49;14258:18;;40341:140:0;13939:343:1;40341:140:0;40588:4;40539:28;9951:18;;;;;;;;;;;;-1:-1:-1;;;;;40609:29:0;;;;:25;:29;;;;;;;;;40608:30;:59;;;;-1:-1:-1;;;;;;40642:25:0;;;;;;:19;:25;;;;;;;;40608:59;40605:77;;;40669:8;:13;;-1:-1:-1;;;;;;40669:13:0;-1:-1:-1;;;;;40669:13:0;;;;;40605:77;40732:18;;40708:42;;;;;;;40781:35;;-1:-1:-1;40805:11:0;;;;;;;40781:35;:61;;;;-1:-1:-1;40834:8:0;;-1:-1:-1;;;40834:8:0;;;;40833:9;40781:61;:110;;;;-1:-1:-1;;;;;;40860:31:0;;;;;;:25;:31;;;;;;;;40859:32;40781:110;:153;;;;-1:-1:-1;;;;;;40909:25:0;;;;;;:19;:25;;;;;;;;40908:26;40781:153;:194;;;;-1:-1:-1;;;;;;40952:23:0;;;;;;:19;:23;;;;;;;;40951:24;40781:194;40763:326;;;41002:8;:15;;-1:-1:-1;;;;41002:15:0;-1:-1:-1;;;41002:15:0;;;41034:10;:8;:10::i;:::-;41061:8;:16;;-1:-1:-1;;;;41061:16:0;;;40763:326;41105:8;;-1:-1:-1;;;41105:8:0;;;;41104:9;:42;;;;-1:-1:-1;;;;;;41117:29:0;;;;;;:25;:29;;;;;;;;41104:42;:79;;;;;41169:14;;41150:15;:33;;41104:79;:108;;;;-1:-1:-1;;;;;;41187:25:0;;;;;;:19;:25;;;;;;;;41104:108;41101:174;;;41228:35;41256:6;41228:27;:35::i;:::-;;41101:174;41303:8;;-1:-1:-1;;;;;41413:25:0;;41287:12;41413:25;;;:19;:25;;;;;;41303:8;-1:-1:-1;;;41303:8:0;;;;;41302:9;;41413:25;;:52;;-1:-1:-1;;;;;;41442:23:0;;;;;;:19;:23;;;;;;;;41413:52;41409:100;;;-1:-1:-1;41492:5:0;41409:100;41521:12;41626:7;41622:969;;;-1:-1:-1;;;;;41678:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;41727:1;41711:13;;:17;41678:50;41674:768;;;41756:34;41786:3;41756:25;41767:13;;41756:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;41749:41;;41859:13;;41839:16;;41832:4;:23;;;;:::i;:::-;41831:41;;;;:::i;:::-;41809:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;41931:13:0;;41916:11;;41909:18;;:4;:18;:::i;:::-;41908:36;;;;:::i;:::-;41891:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;42011:13:0;;41992:15;;41985:22;;:4;:22;:::i;:::-;41984:40;;;;:::i;:::-;41963:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;41674:768:0;;-1:-1:-1;41674:768:0;;-1:-1:-1;;;;;42086:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42136:1;42121:12;;:16;42086:51;42082:360;;;42165:33;42194:3;42165:24;42176:12;;42165:6;:10;;:24;;;;:::i;:33::-;42158:40;;42266:12;;42247:15;;42240:4;:22;;;;:::i;:::-;42239:39;;;;:::i;:::-;42217:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42336:12:0;;42322:10;;42315:17;;:4;:17;:::i;:::-;42314:34;;;;:::i;:::-;42297:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;42414:12:0;;42396:14;;42389:21;;:4;:21;:::i;:::-;42388:38;;;;:::i;:::-;42367:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;42082:360:0;42462:8;;42458:91;;42491:42;42507:4;42521;42528;42491:15;:42::i;:::-;42565:14;42575:4;42565:14;;:::i;:::-;;;41622:969;42603:33;42619:4;42625:2;42629:6;42603:15;:33::i;:::-;38421:4223;;;;38308:4336;;;:::o;2695:191::-;2788:6;;;-1:-1:-1;;;;;2805:17:0;;;-1:-1:-1;;;;;;2805:17:0;;;;;;;2838:40;;2788:6;;;2805:17;2788:6;;2838:40;;2769:16;;2838:40;2758:128;2695:191;:::o;37857:188::-;-1:-1:-1;;;;;37940:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37940:39:0;;;;;;;;;;37997:40;;37940:39;;:31;37997:40;;;37857:188;;:::o;13899:733::-;-1:-1:-1;;;;;14039:20:0;;14031:70;;;;-1:-1:-1;;;14031:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14120:23:0;;14112:71;;;;-1:-1:-1;;;14112:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14280:17:0;;14256:21;14280:17;;;;;;;;;;;14316:23;;;;14308:74;;;;-1:-1:-1;;;14308:74:0;;15045:2:1;14308:74:0;;;15027:21:1;15084:2;15064:18;;;15057:30;15123:34;15103:18;;;15096:62;-1:-1:-1;;;15174:18:1;;;15167:36;15220:19;;14308:74:0;14843:402:1;14308:74:0;-1:-1:-1;;;;;14418:17:0;;;:9;:17;;;;;;;;;;;14438:22;;;14418:42;;14482:20;;;;;;;;:30;;14454:6;;14418:9;14482:30;;14454:6;;14482:30;:::i;:::-;;;;;;;;14547:9;-1:-1:-1;;;;;14530:35:0;14539:6;-1:-1:-1;;;;;14530:35:0;;14558:6;14530:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;14530:35:0;;;;;;;;14578:46;36539:395;43770:1794;43853:4;43809:23;9951:18;;;;;;;;;;;43809:50;;43870:25;43965:13;;43932:17;;43898:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;43870:108;-1:-1:-1;43989:12:0;44018:20;;;:46;;-1:-1:-1;44042:22:0;;44018:46;44014:85;;;44081:7;;;43770:1794::o;44014:85::-;44133:18;;:23;;44154:2;44133:23;:::i;:::-;44115:15;:41;44111:115;;;44191:18;;:23;;44212:2;44191:23;:::i;:::-;44173:41;;44111:115;44287:23;44400:1;44367:17;44332:18;;44314:15;:36;;;;:::i;:::-;44313:71;;;;:::i;:::-;:88;;;;:::i;:::-;44287:114;-1:-1:-1;44412:26:0;44441:36;:15;44287:114;44441:19;:36::i;:::-;44412:65;-1:-1:-1;44518:21:0;44552:36;44412:65;44552:16;:36::i;:::-;44601:18;44622:44;:21;44648:17;44622:25;:44::i;:::-;44601:65;;44679:22;44704:83;44784:1;44763:18;;:22;;;;:::i;:::-;44742:44;;:17;:44;:::i;:::-;44719:17;;44704:33;;:10;;:14;:33::i;:83::-;44679:108;;44808:18;44829:79;44905:1;44884:18;;:22;;;;:::i;:::-;44863:44;;:17;:44;:::i;:::-;44844:13;;44829:29;;:10;;:14;:29::i;:79::-;44808:100;-1:-1:-1;44921:23:0;44808:100;44947:27;44960:14;44947:10;:27;:::i;:::-;:40;;;;:::i;:::-;45021:1;45000:18;:22;;;45033:17;:21;;;45065:13;:17;;;45117:10;;45109:47;;44921:66;;-1:-1:-1;;;;;;45117:10:0;;45141;;45109:47;45021:1;45109:47;45141:10;45117;45109:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45095:61:0;;-1:-1:-1;;45173:19:0;;;;;:42;;;45214:1;45196:15;:19;45173:42;45169:278;;;45232:46;45245:15;45262;45232:12;:46::i;:::-;45402:18;;45298:137;;;15452:25:1;;;15508:2;15493:18;;15486:34;;;15536:18;;;15529:34;;;;45298:137:0;;;;;;15440:2:1;45298:137:0;;;45169:278;45481:8;;45473:56;;-1:-1:-1;;;;;45481:8:0;;;;45503:21;;45473:56;;;;45503:21;45481:8;45473:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45459:70;;;;;45548:7;45540:16;;;;;;43798:1766;;;;;;;;;;43770:1794::o;45839:574::-;45957:15;45940:14;:32;46017:29;;-1:-1:-1;;;46017:29:0;;-1:-1:-1;;;;;46032:13:0;1840:32:1;46017:29:0;;;1822:51:1;45921:4:0;;;;46017;;:14;;1795:18:1;;46017:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45986:60;;46060:20;46083:63;46131:14;;46083:43;46108:17;46083:20;:24;;:43;;;;:::i;:63::-;46060:86;-1:-1:-1;46164:16:0;;46160:109;;46196:61;46212:13;46235:6;46244:12;46196:15;:61::i;:::-;46282:19;46319:13;46282:51;;46344:4;-1:-1:-1;;;;;46344:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46371:12:0;;;;-1:-1:-1;46371:12:0;;-1:-1:-1;46371:12:0;-1:-1:-1;46401:4:0;;45839:574;-1:-1:-1;;;;45839:574:0:o;21812:98::-;21870:7;21897:5;21901:1;21897;:5;:::i;:::-;21890:12;21812:98;-1:-1:-1;;;21812:98:0:o;22211:::-;22269:7;22296:5;22300:1;22296;:5;:::i;21455:98::-;21513:7;21540:5;21544:1;21540;:5;:::i;42652:589::-;42802:16;;;42816:1;42802:16;;;;;;;;42778:21;;42802:16;;;;;;;;;;-1:-1:-1;42802:16:0;42778:40;;42847:4;42829;42834:1;42829:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42829:23:0;;;-1:-1:-1;;;;;42829:23:0;;;;;42873:15;-1:-1:-1;;;;;42873:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42863:4;42868:1;42863:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42863:32:0;;;-1:-1:-1;;;;;42863:32:0;;;;;42908:62;42925:4;42940:15;42958:11;42908:8;:62::i;:::-;43009:224;;-1:-1:-1;;;43009:224:0;;-1:-1:-1;;;;;43009:15:0;:66;;;;:224;;43090:11;;43116:1;;43160:4;;43187;;43207:15;;43009:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42707:534;42652:589;:::o;43249:513::-;43397:62;43414:4;43429:15;43447:11;43397:8;:62::i;:::-;43502:15;-1:-1:-1;;;;;43502:31:0;;43541:9;43574:4;43594:11;43620:1;43663;43706:7;1498:6;;-1:-1:-1;;;;;1498:6:0;;1425:87;43706:7;43502:252;;;;;;-1:-1:-1;;;;;;43502:252:0;;;-1:-1:-1;;;;;17438:15:1;;;43502:252:0;;;17420:34:1;17470:18;;;17463:34;;;;17513:18;;;17506:34;;;;17556:18;;;17549:34;17620:15;;;17599:19;;;17592:44;43728:15:0;17652:19:1;;;17645:35;17354:19;;43502:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43249: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;2092:180::-;2151:6;2204:2;2192:9;2183:7;2179:23;2175:32;2172:52;;;2220:1;2217;2210:12;2172:52;-1:-1:-1;2243:23:1;;2092:180;-1:-1:-1;2092:180:1:o;2277:456::-;2354:6;2362;2370;2423:2;2411:9;2402:7;2398:23;2394:32;2391:52;;;2439:1;2436;2429:12;2391:52;2478:9;2465:23;2497:31;2522:5;2497:31;:::i;:::-;2547:5;-1:-1:-1;2604:2:1;2589:18;;2576:32;2617:33;2576:32;2617:33;:::i;:::-;2277:456;;2669:7;;-1:-1:-1;;;2723:2:1;2708:18;;;;2695:32;;2277: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:388::-;3826:6;3834;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:31;3986:5;3961:31;:::i;:::-;4011:5;-1:-1:-1;4068:2:1;4053:18;;4040:32;4081:33;4040:32;4081:33;:::i;4151:380::-;4230:1;4226:12;;;;4273;;;4294:61;;4348:4;4340:6;4336:17;4326:27;;4294:61;4401:2;4393:6;4390:14;4370:18;4367:38;4364:161;;4447:10;4442:3;4438:20;4435:1;4428:31;4482:4;4479:1;4472:15;4510:4;4507:1;4500:15;4364:161;;4151:380;;;:::o;4536:356::-;4738:2;4720:21;;;4757:18;;;4750:30;4816:34;4811:2;4796:18;;4789:62;4883:2;4868:18;;4536:356::o;4897:127::-;4958:10;4953:3;4949:20;4946:1;4939:31;4989:4;4986:1;4979:15;5013:4;5010:1;5003:15;5029:168;5102:9;;;5133;;5150:15;;;5144:22;;5130:37;5120:71;;5171:18;;:::i;5202:217::-;5242:1;5268;5258:132;;5312:10;5307:3;5303:20;5300:1;5293:31;5347:4;5344:1;5337:15;5375:4;5372:1;5365:15;5258:132;-1:-1:-1;5404:9:1;;5202:217::o;6249:125::-;6314:9;;;6335:10;;;6332:36;;;6348:18;;:::i;6379:184::-;6449:6;6502:2;6490:9;6481:7;6477:23;6473:32;6470:52;;;6518:1;6515;6508:12;6470:52;-1:-1:-1;6541:16:1;;6379:184;-1:-1:-1;6379:184:1:o;6847:245::-;6914:6;6967:2;6955:9;6946:7;6942:23;6938:32;6935:52;;;6983:1;6980;6973:12;6935:52;7015:9;7009:16;7034:28;7056:5;7034:28;:::i;11660:401::-;11862:2;11844:21;;;11901:2;11881:18;;;11874:30;11940:34;11935:2;11920:18;;11913:62;-1:-1:-1;;;12006:2:1;11991:18;;11984:35;12051:3;12036:19;;11660:401::o;12066:399::-;12268:2;12250:21;;;12307:2;12287:18;;;12280:30;12346:34;12341:2;12326:18;;12319:62;-1:-1:-1;;;12412:2:1;12397:18;;12390:33;12455:3;12440:19;;12066:399::o;14710:128::-;14777:9;;;14798:11;;;14795:37;;;14812:18;;:::i;15706:127::-;15767:10;15762:3;15758:20;15755:1;15748:31;15798:4;15795:1;15788:15;15822:4;15819:1;15812:15;15838:251;15908:6;15961:2;15949:9;15940:7;15936:23;15932:32;15929:52;;;15977:1;15974;15967:12;15929:52;16009:9;16003:16;16028:31;16053:5;16028:31;:::i;16094:980::-;16356:4;16404:3;16393:9;16389:19;16435:6;16424:9;16417:25;16461:2;16499:6;16494:2;16483:9;16479:18;16472:34;16542:3;16537:2;16526:9;16522:18;16515:31;16566:6;16601;16595:13;16632:6;16624;16617:22;16670:3;16659:9;16655:19;16648:26;;16709:2;16701:6;16697:15;16683:29;;16730:1;16740:195;16754:6;16751:1;16748:13;16740:195;;;16819:13;;-1:-1:-1;;;;;16815:39:1;16803:52;;16910:15;;;;16875:12;;;;16851:1;16769:9;16740:195;;;-1:-1:-1;;;;;;;16991:32:1;;;;16986:2;16971:18;;16964:60;-1:-1:-1;;;17055:3:1;17040:19;17033:35;16952:3;16094:980;-1:-1:-1;;;16094:980:1:o;17691:306::-;17779:6;17787;17795;17848:2;17836:9;17827:7;17823:23;17819:32;17816:52;;;17864:1;17861;17854:12;17816:52;17893:9;17887:16;17877:26;;17943:2;17932:9;17928:18;17922:25;17912:35;;17987:2;17976:9;17972:18;17966:25;17956:35;;17691:306;;;;;:::o

Swarm Source

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