ETH Price: $2,628.11 (+1.66%)

Token

BetIT (BETIT)
 

Overview

Max Total Supply

1,000,000 BETIT

Holders

380

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,614.551557320802074101 BETIT

Value
$0.00
0x2c61b62f6aab8c680b13f14e827aca62a82b27a4
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:
BETIT

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-16
*/

/**

 Telegram: https://t.me/betitportal
  Website: https://betitapp.com/
        X: https://x.com/teambetit

 */

pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public revShareWallet;
    address public teamWallet;

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

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

    mapping(address => bool) blacklisted;

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

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

    uint256 public tokensForRevShare;
    uint256 public tokensForTeam;

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

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    event FeesCollected(
        address indexed feePayer,
        uint256 feesReceived
    );

    constructor() ERC20("BetIT", "BETIT") {
        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 totalSupply = 1_000_000 * 1e18;

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

        buyRevShareFee = 1750;
        buyTeamFee = 750;
        buyTotalFees = buyRevShareFee + buyTeamFee;

        sellRevShareFee = 2800;
        sellTeamFee = 1200;
        sellTotalFees = sellRevShareFee + sellTeamFee;

        revShareWallet = address(0x1DE46317cF8067Db5f69ed8726840101aEe89A78);
        teamWallet = address(0xDF0409535a1166623c2Ee856A8307f867AbE0205);

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

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

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

    receive() external payable {}

    function enableTrading() external onlyOwner {
        swapEnabled = true;
        tradingActive = true;
    }

    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 _teamFee
    ) external onlyOwner {
        buyRevShareFee = _revShareFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyRevShareFee + buyTeamFee;
    }

    function updateSellFees(
        uint256 _revShareFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellRevShareFee = _revShareFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellRevShareFee + sellTeamFee;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateRevShareWallet(address newRevShareWallet) external onlyOwner {
        emit RevShareWalletUpdated(newRevShareWallet, revShareWallet);
        revShareWallet = newRevShareWallet;
    }

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

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

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

    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForRevShare + tokensForTeam;
        bool success;

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(contractBalance);

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

        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap);
        tokensForRevShare = 0;
        tokensForTeam = 0;

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

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

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

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

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

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

    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"feePayer","type":"address"},{"indexed":false,"internalType":"uint256","name":"feesReceived","type":"uint256"}],"name":"FeesCollected","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"RevShareWalletUpdated","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":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TeamWalletUpdated","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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_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":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckBETIT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b5f6101000a81548160ff0219169083151502179055505f600b60016101000a81548160ff0219169083151502179055505f600b60026101000a81548160ff0219169083151502179055503480156200005e575f80fd5b506040518060400160405280600581526020017f42657449540000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f42455449540000000000000000000000000000000000000000000000000000008152508160039081620000dc919062000cb5565b508060049081620000ee919062000cb5565b50505062000111620001056200052960201b60201c565b6200053060201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506200013c816001620005f360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001e0919062000dfe565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000246573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200026c919062000dfe565b6040518363ffffffff1660e01b81526004016200028b92919062000e3f565b6020604051808303815f875af1158015620002a8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ce919062000dfe565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200031660a0516001620005f360201b60201c565b6200032b60a0516001620006da60201b60201c565b5f69d3c21bcecceda1000000905069021e19e0c9bab240000060088190555069021e19e0c9bab2400000600a819055506127106005826200036d919062000e97565b62000379919062000f0e565b6009819055506106d6600e819055506102ee600f81905550600f54600e54620003a3919062000f45565b600d81905550610af06011819055506104b0601281905550601254601154620003cd919062000f45565b601081905550731de46317cf8067db5f69ed8726840101aee89a7860065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073df0409535a1166623c2ee856a8307f867abe020560075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200049d6200048f6200077860201b60201c565b6001620007a060201b60201c565b620004b0306001620007a060201b60201c565b620004c561dead6001620007a060201b60201c565b620004e7620004d96200077860201b60201c565b6001620005f360201b60201c565b620004fa306001620005f360201b60201c565b6200050f61dead6001620005f360201b60201c565b620005213382620008d760201b60201c565b5050620010ce565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006036200052960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006296200077860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006799062000fdd565b60405180910390fd5b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007b06200052960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007d66200077860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200082f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008269062000fdd565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008cb919062001019565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000948576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093f9062001082565b60405180910390fd5b6200095b5f838362000a4760201b60201c565b8060025f8282546200096e919062000f45565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620009c2919062000f45565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a289190620010b3565b60405180910390a362000a435f838362000a4c60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000acd57607f821691505b60208210810362000ae35762000ae262000a88565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000b477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b0a565b62000b53868362000b0a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000b9d62000b9762000b918462000b6b565b62000b74565b62000b6b565b9050919050565b5f819050919050565b62000bb88362000b7d565b62000bd062000bc78262000ba4565b84845462000b16565b825550505050565b5f90565b62000be662000bd8565b62000bf381848462000bad565b505050565b5b8181101562000c1a5762000c0e5f8262000bdc565b60018101905062000bf9565b5050565b601f82111562000c695762000c338162000ae9565b62000c3e8462000afb565b8101602085101562000c4e578190505b62000c6662000c5d8562000afb565b83018262000bf8565b50505b505050565b5f82821c905092915050565b5f62000c8b5f198460080262000c6e565b1980831691505092915050565b5f62000ca5838362000c7a565b9150826002028217905092915050565b62000cc08262000a51565b67ffffffffffffffff81111562000cdc5762000cdb62000a5b565b5b62000ce8825462000ab5565b62000cf582828562000c1e565b5f60209050601f83116001811462000d2b575f841562000d16578287015190505b62000d22858262000c98565b86555062000d91565b601f19841662000d3b8662000ae9565b5f5b8281101562000d645784890151825560018201915060208501945060208101905062000d3d565b8683101562000d84578489015162000d80601f89168262000c7a565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000dc88262000d9d565b9050919050565b62000dda8162000dbc565b811462000de5575f80fd5b50565b5f8151905062000df88162000dcf565b92915050565b5f6020828403121562000e165762000e1562000d99565b5b5f62000e258482850162000de8565b91505092915050565b62000e398162000dbc565b82525050565b5f60408201905062000e545f83018562000e2e565b62000e63602083018462000e2e565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000ea38262000b6b565b915062000eb08362000b6b565b925082820262000ec08162000b6b565b9150828204841483151762000eda5762000ed962000e6a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000f1a8262000b6b565b915062000f278362000b6b565b92508262000f3a5762000f3962000ee1565b5b828204905092915050565b5f62000f518262000b6b565b915062000f5e8362000b6b565b925082820190508082111562000f795762000f7862000e6a565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000fc560208362000f7f565b915062000fd28262000f8f565b602082019050919050565b5f6020820190508181035f83015262000ff68162000fb7565b9050919050565b5f8115159050919050565b620010138162000ffd565b82525050565b5f6020820190506200102e5f83018462001008565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200106a601f8362000f7f565b9150620010778262001034565b602082019050919050565b5f6020820190508181035f8301526200109b816200105c565b9050919050565b620010ad8162000b6b565b82525050565b5f602082019050620010c85f830184620010a2565b92915050565b60805160a0516150c4620011135f395f81816110b901528181611b2001526125ac01525f8181610dd001528181613b1001528181613bef0152613c1601526150c45ff3fe60806040526004361061031d575f3560e01c80637a3841a3116101aa578063bc205ad3116100f6578063dd62ed3e11610094578063f8b45b051161006e578063f8b45b0514610ba2578063f9f92be414610bcc578063fde83a3414610bf4578063fe575a8714610c1e57610324565b8063dd62ed3e14610b14578063e2f4560514610b50578063f2fde38b14610b7a57610324565b8063c8c8ebe4116100d0578063c8c8ebe414610a5a578063d257b34f14610a84578063d729715f14610ac0578063d85ba06314610aea57610324565b8063bc205ad3146109e2578063c024666814610a0a578063c18bc19514610a3257610324565b80639a7a23d611610163578063a9059cbb1161013d578063a9059cbb14610918578063adee28ff14610954578063b62496f51461097c578063bbc0c742146109b857610324565b80639a7a23d61461088a5780639c2e4ac6146108b2578063a457c2d7146108dc57610324565b80637a3841a3146107ba5780637ca8448a146107d05780637cb332bb146107f85780638a8c523c146108205780638da5cb5b1461083657806395d89b411461086057610324565b806349bd5a5e116102695780636ddd171311610222578063751039fc116101fc578063751039fc146107165780637571336a1461074057806375e3661e14610768578063782c4e991461079057610324565b80636ddd17131461069a57806370a08231146106c4578063715018a61461070057610324565b806349bd5a5e1461058e5780634a62bb65146105b85780634fbee193146105e2578063599270441461061e57806366ca9b83146106485780636a486a8e1461067057610324565b806318160ddd116102d657806323b872dd116102b057806323b872dd146104c257806324b9f3c1146104fe578063313ce56714610528578063395093511461055257610324565b806318160ddd1461044657806319eab04214610470578063203e727e1461049a57610324565b806302dbd8f81461032857806306fdde0314610350578063095ea7b31461037a57806310d5de53146103b6578063156c2f35146103f25780631694505e1461041c57610324565b3661032457005b5f80fd5b348015610333575f80fd5b5061034e60048036038101906103499190613cf2565b610c5a565b005b34801561035b575f80fd5b50610364610cfe565b6040516103719190613dba565b60405180910390f35b348015610385575f80fd5b506103a0600480360381019061039b9190613e34565b610d8e565b6040516103ad9190613e8c565b60405180910390f35b3480156103c1575f80fd5b506103dc60048036038101906103d79190613ea5565b610dab565b6040516103e99190613e8c565b60405180910390f35b3480156103fd575f80fd5b50610406610dc8565b6040516104139190613edf565b60405180910390f35b348015610427575f80fd5b50610430610dce565b60405161043d9190613f53565b60405180910390f35b348015610451575f80fd5b5061045a610df2565b6040516104679190613edf565b60405180910390f35b34801561047b575f80fd5b50610484610dfb565b6040516104919190613edf565b60405180910390f35b3480156104a5575f80fd5b506104c060048036038101906104bb9190613f6c565b610e01565b005b3480156104cd575f80fd5b506104e860048036038101906104e39190613f97565b610f10565b6040516104f59190613e8c565b60405180910390f35b348015610509575f80fd5b50610512611002565b60405161051f9190613edf565b60405180910390f35b348015610533575f80fd5b5061053c611008565b6040516105499190614002565b60405180910390f35b34801561055d575f80fd5b5061057860048036038101906105739190613e34565b611010565b6040516105859190613e8c565b60405180910390f35b348015610599575f80fd5b506105a26110b7565b6040516105af919061402a565b60405180910390f35b3480156105c3575f80fd5b506105cc6110db565b6040516105d99190613e8c565b60405180910390f35b3480156105ed575f80fd5b5061060860048036038101906106039190613ea5565b6110ed565b6040516106159190613e8c565b60405180910390f35b348015610629575f80fd5b5061063261113f565b60405161063f919061402a565b60405180910390f35b348015610653575f80fd5b5061066e60048036038101906106699190613cf2565b611164565b005b34801561067b575f80fd5b50610684611208565b6040516106919190613edf565b60405180910390f35b3480156106a5575f80fd5b506106ae61120e565b6040516106bb9190613e8c565b60405180910390f35b3480156106cf575f80fd5b506106ea60048036038101906106e59190613ea5565b611221565b6040516106f79190613edf565b60405180910390f35b34801561070b575f80fd5b50610714611266565b005b348015610721575f80fd5b5061072a6112ed565b6040516107379190613e8c565b60405180910390f35b34801561074b575f80fd5b506107666004803603810190610761919061406d565b61138a565b005b348015610773575f80fd5b5061078e60048036038101906107899190613ea5565b61145e565b005b34801561079b575f80fd5b506107a4611531565b6040516107b1919061402a565b60405180910390f35b3480156107c5575f80fd5b506107ce611556565b005b3480156107db575f80fd5b506107f660048036038101906107f19190613ea5565b61170b565b005b348015610803575f80fd5b5061081e60048036038101906108199190613ea5565b6117fc565b005b34801561082b575f80fd5b50610834611936565b005b348015610841575f80fd5b5061084a6119ea565b604051610857919061402a565b60405180910390f35b34801561086b575f80fd5b50610874611a12565b6040516108819190613dba565b60405180910390f35b348015610895575f80fd5b506108b060048036038101906108ab919061406d565b611aa2565b005b3480156108bd575f80fd5b506108c6611bba565b6040516108d39190613edf565b60405180910390f35b3480156108e7575f80fd5b5061090260048036038101906108fd9190613e34565b611bc0565b60405161090f9190613e8c565b60405180910390f35b348015610923575f80fd5b5061093e60048036038101906109399190613e34565b611ca6565b60405161094b9190613e8c565b60405180910390f35b34801561095f575f80fd5b5061097a60048036038101906109759190613ea5565b611cc3565b005b348015610987575f80fd5b506109a2600480360381019061099d9190613ea5565b611dfd565b6040516109af9190613e8c565b60405180910390f35b3480156109c3575f80fd5b506109cc611e1a565b6040516109d99190613e8c565b60405180910390f35b3480156109ed575f80fd5b50610a086004803603810190610a0391906140ab565b611e2d565b005b348015610a15575f80fd5b50610a306004803603810190610a2b919061406d565b612013565b005b348015610a3d575f80fd5b50610a586004803603810190610a539190613f6c565b612135565b005b348015610a65575f80fd5b50610a6e612244565b604051610a7b9190613edf565b60405180910390f35b348015610a8f575f80fd5b50610aaa6004803603810190610aa59190613f6c565b61224a565b604051610ab79190613e8c565b60405180910390f35b348015610acb575f80fd5b50610ad461239e565b604051610ae19190613edf565b60405180910390f35b348015610af5575f80fd5b50610afe6123a4565b604051610b0b9190613edf565b60405180910390f35b348015610b1f575f80fd5b50610b3a6004803603810190610b3591906140ab565b6123aa565b604051610b479190613edf565b60405180910390f35b348015610b5b575f80fd5b50610b6461242c565b604051610b719190613edf565b60405180910390f35b348015610b85575f80fd5b50610ba06004803603810190610b9b9190613ea5565b612432565b005b348015610bad575f80fd5b50610bb6612528565b604051610bc39190613edf565b60405180910390f35b348015610bd7575f80fd5b50610bf26004803603810190610bed9190613ea5565b61252e565b005b348015610bff575f80fd5b50610c086126dd565b604051610c159190613edf565b60405180910390f35b348015610c29575f80fd5b50610c446004803603810190610c3f9190613ea5565b6126e3565b604051610c519190613e8c565b60405180910390f35b610c62612735565b73ffffffffffffffffffffffffffffffffffffffff16610c806119ea565b73ffffffffffffffffffffffffffffffffffffffff1614610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90614133565b60405180910390fd5b8160118190555080601281905550601254601154610cf4919061417e565b6010819055505050565b606060038054610d0d906141de565b80601f0160208091040260200160405190810160405280929190818152602001828054610d39906141de565b8015610d845780601f10610d5b57610100808354040283529160200191610d84565b820191905f5260205f20905b815481529060010190602001808311610d6757829003601f168201915b5050505050905090565b5f610da1610d9a612735565b848461273c565b6001905092915050565b6016602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60115481565b610e09612735565b73ffffffffffffffffffffffffffffffffffffffff16610e276119ea565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490614133565b60405180910390fd5b670de0b6b3a76400006103e86005610e93610df2565b610e9d919061420e565b610ea7919061427c565b610eb1919061427c565b811015610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea9061431c565b60405180910390fd5b670de0b6b3a764000081610f07919061420e565b60088190555050565b5f610f1c8484846128ff565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610f63612735565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd9906143aa565b60405180910390fd5b610ff685610fee612735565b85840361273c565b60019150509392505050565b60135481565b5f6012905090565b5f6110ad61101c612735565b848460015f611029612735565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a8919061417e565b61273c565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5f9054906101000a900460ff1681565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61116c612735565b73ffffffffffffffffffffffffffffffffffffffff1661118a6119ea565b73ffffffffffffffffffffffffffffffffffffffff16146111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790614133565b60405180910390fd5b81600e8190555080600f81905550600f54600e546111fe919061417e565b600d819055505050565b60105481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61126e612735565b73ffffffffffffffffffffffffffffffffffffffff1661128c6119ea565b73ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990614133565b60405180910390fd5b6112eb5f61348f565b565b5f6112f6612735565b73ffffffffffffffffffffffffffffffffffffffff166113146119ea565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190614133565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b611392612735565b73ffffffffffffffffffffffffffffffffffffffff166113b06119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90614133565b60405180910390fd5b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611466612735565b73ffffffffffffffffffffffffffffffffffffffff166114846119ea565b73ffffffffffffffffffffffffffffffffffffffff16146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190614133565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61155e612735565b73ffffffffffffffffffffffffffffffffffffffff1661157c6119ea565b73ffffffffffffffffffffffffffffffffffffffff16146115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990614133565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb333073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611628919061402a565b602060405180830381865afa158015611643573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061166791906143dc565b6040518363ffffffff1660e01b8152600401611684929190614407565b6020604051808303815f875af11580156116a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116c49190614442565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611708573d5f803e3d5ffd5b50565b611713612735565b73ffffffffffffffffffffffffffffffffffffffff166117316119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90614133565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff16476040516117ac9061449a565b5f6040518083038185875af1925050503d805f81146117e6576040519150601f19603f3d011682016040523d82523d5f602084013e6117eb565b606091505b50509050806117f8575f80fd5b5050565b611804612735565b73ffffffffffffffffffffffffffffffffffffffff166118226119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90614133565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce811309560405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61193e612735565b73ffffffffffffffffffffffffffffffffffffffff1661195c6119ea565b73ffffffffffffffffffffffffffffffffffffffff16146119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990614133565b60405180910390fd5b6001600b60026101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611a21906141de565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4d906141de565b8015611a985780601f10611a6f57610100808354040283529160200191611a98565b820191905f5260205f20905b815481529060010190602001808311611a7b57829003601f168201915b5050505050905090565b611aaa612735565b73ffffffffffffffffffffffffffffffffffffffff16611ac86119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1590614133565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba39061451e565b60405180910390fd5b611bb68282613552565b5050565b600f5481565b5f8060015f611bcd612735565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e906145ac565b60405180910390fd5b611c9b611c92612735565b8585840361273c565b600191505092915050565b5f611cb9611cb2612735565b84846128ff565b6001905092915050565b611ccb612735565b73ffffffffffffffffffffffffffffffffffffffff16611ce96119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690614133565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fcb24b9cc1975a8c5afd1fcc8deca22156b8f357af3485db1f9382b3c584d671f60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6017602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611e35612735565b73ffffffffffffffffffffffffffffffffffffffff16611e536119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090614133565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90614614565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f51919061402a565b602060405180830381865afa158015611f6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f9091906143dc565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611fcd929190614407565b6020604051808303815f875af1158015611fe9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061200d9190614442565b50505050565b61201b612735565b73ffffffffffffffffffffffffffffffffffffffff166120396119ea565b73ffffffffffffffffffffffffffffffffffffffff161461208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614133565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121299190613e8c565b60405180910390a25050565b61213d612735565b73ffffffffffffffffffffffffffffffffffffffff1661215b6119ea565b73ffffffffffffffffffffffffffffffffffffffff16146121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a890614133565b60405180910390fd5b670de0b6b3a76400006103e8600a6121c7610df2565b6121d1919061420e565b6121db919061427c565b6121e5919061427c565b811015612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e906146a2565b60405180910390fd5b670de0b6b3a76400008161223b919061420e565b600a8190555050565b60085481565b5f612253612735565b73ffffffffffffffffffffffffffffffffffffffff166122716119ea565b73ffffffffffffffffffffffffffffffffffffffff16146122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be90614133565b60405180910390fd5b620186a060016122d5610df2565b6122df919061420e565b6122e9919061427c565b82101561232b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232290614730565b60405180910390fd5b6103e86005612338610df2565b612342919061420e565b61234c919061427c565b82111561238e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612385906147be565b60405180910390fd5b8160098190555060019050919050565b60125481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b61243a612735565b73ffffffffffffffffffffffffffffffffffffffff166124586119ea565b73ffffffffffffffffffffffffffffffffffffffff16146124ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a590614133565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361251c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125139061484c565b60405180910390fd5b6125258161348f565b50565b600a5481565b612536612735565b73ffffffffffffffffffffffffffffffffffffffff166125546119ea565b73ffffffffffffffffffffffffffffffffffffffff16146125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a190614133565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156126465750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267c906148da565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60145481565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a190614968565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f906149f6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128f29190613edf565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361296d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296490614a84565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d290614b12565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5c90614b7a565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae690614be2565b60405180910390fd5b5f8103612b0657612b0183835f6135f0565b61348a565b600b5f9054906101000a900460ff1615612fea57612b226119ea565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b905750612b606119ea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bc857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c02575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c1b5750600560149054906101000a900460ff16155b15612fe957600b60019054906101000a900460ff16612d0f5760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612ccf575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0590614c4a565b60405180910390fd5b5b60175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612dac575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612e5357600854811115612df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ded90614cd8565b60405180910390fd5b600a54612e0283611221565b82612e0d919061417e565b1115612e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4590614d40565b60405180910390fd5b612fe8565b60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ef0575060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612f3f57600854811115612f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3190614dce565b60405180910390fd5b612fe7565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612fe657600a54612f9983611221565b82612fa4919061417e565b1115612fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdc90614d40565b60405180910390fd5b5b5b5b5b5b5f612ff430611221565b90505f60095482101590508080156130185750600b60029054906101000a900460ff165b80156130315750600560149054906101000a900460ff16155b8015613084575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156130d7575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561312a575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561316d576001600560146101000a81548160ff021916908315150217905550613152613865565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061321c575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15613225575f90505b5f811561347a5760175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561328357505f601054115b1561331c576132b16127106132a360105488613a3f90919063ffffffff16565b613a5490919063ffffffff16565b9050601054601254826132c4919061420e565b6132ce919061427c565b60145f8282546132de919061417e565b92505081905550601054601154826132f6919061420e565b613300919061427c565b60135f828254613310919061417e565b92505081905550613409565b60175f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561337357505f600d54115b15613408576133a1612710613393600d5488613a3f90919063ffffffff16565b613a5490919063ffffffff16565b9050600d54600f54826133b4919061420e565b6133be919061427c565b60145f8282546133ce919061417e565b92505081905550600d54600e54826133e6919061420e565b6133f0919061427c565b60135f828254613400919061417e565b925050819055505b5b5f81111561346b5761341c8730836135f0565b8673ffffffffffffffffffffffffffffffffffffffff167f9dc46f23cfb5ddcad0ae7ea2be38d47fec07bb9382ec7e564efc69e036dd66ce826040516134629190613edf565b60405180910390a25b80856134779190614dec565b94505b6134858787876135f0565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361365e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365590614a84565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036136cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c390614b12565b60405180910390fd5b6136d7838383613a69565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561375a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375190614e8f565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546137e8919061417e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161384c9190613edf565b60405180910390a361385f848484613a6e565b50505050565b5f61386f30611221565b90505f601454601354613882919061417e565b90505f8083148061389257505f82145b1561389f57505050613a3d565b60146009546138ae919061420e565b8311156138c75760146009546138c4919061420e565b92505b5f4790506138d484613a73565b5f6138e88247613ca690919063ffffffff16565b90505f6139128561390460145485613a3f90919063ffffffff16565b613a5490919063ffffffff16565b90505f6013819055505f60148190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516139679061449a565b5f6040518083038185875af1925050503d805f81146139a1576040519150601f19603f3d011682016040523d82523d5f602084013e6139a6565b606091505b50508094505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516139f19061449a565b5f6040518083038185875af1925050503d805f8114613a2b576040519150601f19603f3d011682016040523d82523d5f602084013e613a30565b606091505b5050809450505050505050505b565b5f8183613a4c919061420e565b905092915050565b5f8183613a61919061427c565b905092915050565b505050565b505050565b5f600267ffffffffffffffff811115613a8f57613a8e614ead565b5b604051908082528060200260200182016040528015613abd5781602001602082028036833780820191505090505b50905030815f81518110613ad457613ad3614eda565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b9b9190614f1b565b81600181518110613baf57613bae614eda565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c14307f00000000000000000000000000000000000000000000000000000000000000008461273c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613c75959493929190615036565b5f604051808303815f87803b158015613c8c575f80fd5b505af1158015613c9e573d5f803e3d5ffd5b505050505050565b5f8183613cb39190614dec565b905092915050565b5f80fd5b5f819050919050565b613cd181613cbf565b8114613cdb575f80fd5b50565b5f81359050613cec81613cc8565b92915050565b5f8060408385031215613d0857613d07613cbb565b5b5f613d1585828601613cde565b9250506020613d2685828601613cde565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613d67578082015181840152602081019050613d4c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613d8c82613d30565b613d968185613d3a565b9350613da6818560208601613d4a565b613daf81613d72565b840191505092915050565b5f6020820190508181035f830152613dd28184613d82565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613e0382613dda565b9050919050565b613e1381613df9565b8114613e1d575f80fd5b50565b5f81359050613e2e81613e0a565b92915050565b5f8060408385031215613e4a57613e49613cbb565b5b5f613e5785828601613e20565b9250506020613e6885828601613cde565b9150509250929050565b5f8115159050919050565b613e8681613e72565b82525050565b5f602082019050613e9f5f830184613e7d565b92915050565b5f60208284031215613eba57613eb9613cbb565b5b5f613ec784828501613e20565b91505092915050565b613ed981613cbf565b82525050565b5f602082019050613ef25f830184613ed0565b92915050565b5f819050919050565b5f613f1b613f16613f1184613dda565b613ef8565b613dda565b9050919050565b5f613f2c82613f01565b9050919050565b5f613f3d82613f22565b9050919050565b613f4d81613f33565b82525050565b5f602082019050613f665f830184613f44565b92915050565b5f60208284031215613f8157613f80613cbb565b5b5f613f8e84828501613cde565b91505092915050565b5f805f60608486031215613fae57613fad613cbb565b5b5f613fbb86828701613e20565b9350506020613fcc86828701613e20565b9250506040613fdd86828701613cde565b9150509250925092565b5f60ff82169050919050565b613ffc81613fe7565b82525050565b5f6020820190506140155f830184613ff3565b92915050565b61402481613df9565b82525050565b5f60208201905061403d5f83018461401b565b92915050565b61404c81613e72565b8114614056575f80fd5b50565b5f8135905061406781614043565b92915050565b5f806040838503121561408357614082613cbb565b5b5f61409085828601613e20565b92505060206140a185828601614059565b9150509250929050565b5f80604083850312156140c1576140c0613cbb565b5b5f6140ce85828601613e20565b92505060206140df85828601613e20565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61411d602083613d3a565b9150614128826140e9565b602082019050919050565b5f6020820190508181035f83015261414a81614111565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61418882613cbf565b915061419383613cbf565b92508282019050808211156141ab576141aa614151565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806141f557607f821691505b602082108103614208576142076141b1565b5b50919050565b5f61421882613cbf565b915061422383613cbf565b925082820261423181613cbf565b9150828204841483151761424857614247614151565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61428682613cbf565b915061429183613cbf565b9250826142a1576142a061424f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f614306602f83613d3a565b9150614311826142ac565b604082019050919050565b5f6020820190508181035f830152614333816142fa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614394602883613d3a565b915061439f8261433a565b604082019050919050565b5f6020820190508181035f8301526143c181614388565b9050919050565b5f815190506143d681613cc8565b92915050565b5f602082840312156143f1576143f0613cbb565b5b5f6143fe848285016143c8565b91505092915050565b5f60408201905061441a5f83018561401b565b6144276020830184613ed0565b9392505050565b5f8151905061443c81614043565b92915050565b5f6020828403121561445757614456613cbb565b5b5f6144648482850161442e565b91505092915050565b5f81905092915050565b50565b5f6144855f8361446d565b915061449082614477565b5f82019050919050565b5f6144a48261447a565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614508603983613d3a565b9150614513826144ae565b604082019050919050565b5f6020820190508181035f830152614535816144fc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614596602583613d3a565b91506145a18261453c565b604082019050919050565b5f6020820190508181035f8301526145c38161458a565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6145fe601a83613d3a565b9150614609826145ca565b602082019050919050565b5f6020820190508181035f83015261462b816145f2565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f61468c602483613d3a565b915061469782614632565b604082019050919050565b5f6020820190508181035f8301526146b981614680565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f61471a603583613d3a565b9150614725826146c0565b604082019050919050565b5f6020820190508181035f8301526147478161470e565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f6147a8603483613d3a565b91506147b38261474e565b604082019050919050565b5f6020820190508181035f8301526147d58161479c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614836602683613d3a565b9150614841826147dc565b604082019050919050565b5f6020820190508181035f8301526148638161482a565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f6148c4602e83613d3a565b91506148cf8261486a565b604082019050919050565b5f6020820190508181035f8301526148f1816148b8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614952602483613d3a565b915061495d826148f8565b604082019050919050565b5f6020820190508181035f83015261497f81614946565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6149e0602283613d3a565b91506149eb82614986565b604082019050919050565b5f6020820190508181035f830152614a0d816149d4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614a6e602583613d3a565b9150614a7982614a14565b604082019050919050565b5f6020820190508181035f830152614a9b81614a62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614afc602383613d3a565b9150614b0782614aa2565b604082019050919050565b5f6020820190508181035f830152614b2981614af0565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614b64601283613d3a565b9150614b6f82614b30565b602082019050919050565b5f6020820190508181035f830152614b9181614b58565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614bcc601483613d3a565b9150614bd782614b98565b602082019050919050565b5f6020820190508181035f830152614bf981614bc0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614c34601683613d3a565b9150614c3f82614c00565b602082019050919050565b5f6020820190508181035f830152614c6181614c28565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f614cc2603583613d3a565b9150614ccd82614c68565b604082019050919050565b5f6020820190508181035f830152614cef81614cb6565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614d2a601383613d3a565b9150614d3582614cf6565b602082019050919050565b5f6020820190508181035f830152614d5781614d1e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f614db8603683613d3a565b9150614dc382614d5e565b604082019050919050565b5f6020820190508181035f830152614de581614dac565b9050919050565b5f614df682613cbf565b9150614e0183613cbf565b9250828203905081811115614e1957614e18614151565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614e79602683613d3a565b9150614e8482614e1f565b604082019050919050565b5f6020820190508181035f830152614ea681614e6d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050614f1581613e0a565b92915050565b5f60208284031215614f3057614f2f613cbb565b5b5f614f3d84828501614f07565b91505092915050565b5f819050919050565b5f614f69614f64614f5f84614f46565b613ef8565b613cbf565b9050919050565b614f7981614f4f565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b614fb181613df9565b82525050565b5f614fc28383614fa8565b60208301905092915050565b5f602082019050919050565b5f614fe482614f7f565b614fee8185614f89565b9350614ff983614f99565b805f5b838110156150295781516150108882614fb7565b975061501b83614fce565b925050600181019050614ffc565b5085935050505092915050565b5f60a0820190506150495f830188613ed0565b6150566020830187614f70565b81810360408301526150688186614fda565b9050615077606083018561401b565b6150846080830184613ed0565b969550505050505056fea2646970667358221220f5d517aa070f71781edb907225e102a679a12c196ef40fe16bcb01dc8a634f5764736f6c63430008140033

Deployed Bytecode

0x60806040526004361061031d575f3560e01c80637a3841a3116101aa578063bc205ad3116100f6578063dd62ed3e11610094578063f8b45b051161006e578063f8b45b0514610ba2578063f9f92be414610bcc578063fde83a3414610bf4578063fe575a8714610c1e57610324565b8063dd62ed3e14610b14578063e2f4560514610b50578063f2fde38b14610b7a57610324565b8063c8c8ebe4116100d0578063c8c8ebe414610a5a578063d257b34f14610a84578063d729715f14610ac0578063d85ba06314610aea57610324565b8063bc205ad3146109e2578063c024666814610a0a578063c18bc19514610a3257610324565b80639a7a23d611610163578063a9059cbb1161013d578063a9059cbb14610918578063adee28ff14610954578063b62496f51461097c578063bbc0c742146109b857610324565b80639a7a23d61461088a5780639c2e4ac6146108b2578063a457c2d7146108dc57610324565b80637a3841a3146107ba5780637ca8448a146107d05780637cb332bb146107f85780638a8c523c146108205780638da5cb5b1461083657806395d89b411461086057610324565b806349bd5a5e116102695780636ddd171311610222578063751039fc116101fc578063751039fc146107165780637571336a1461074057806375e3661e14610768578063782c4e991461079057610324565b80636ddd17131461069a57806370a08231146106c4578063715018a61461070057610324565b806349bd5a5e1461058e5780634a62bb65146105b85780634fbee193146105e2578063599270441461061e57806366ca9b83146106485780636a486a8e1461067057610324565b806318160ddd116102d657806323b872dd116102b057806323b872dd146104c257806324b9f3c1146104fe578063313ce56714610528578063395093511461055257610324565b806318160ddd1461044657806319eab04214610470578063203e727e1461049a57610324565b806302dbd8f81461032857806306fdde0314610350578063095ea7b31461037a57806310d5de53146103b6578063156c2f35146103f25780631694505e1461041c57610324565b3661032457005b5f80fd5b348015610333575f80fd5b5061034e60048036038101906103499190613cf2565b610c5a565b005b34801561035b575f80fd5b50610364610cfe565b6040516103719190613dba565b60405180910390f35b348015610385575f80fd5b506103a0600480360381019061039b9190613e34565b610d8e565b6040516103ad9190613e8c565b60405180910390f35b3480156103c1575f80fd5b506103dc60048036038101906103d79190613ea5565b610dab565b6040516103e99190613e8c565b60405180910390f35b3480156103fd575f80fd5b50610406610dc8565b6040516104139190613edf565b60405180910390f35b348015610427575f80fd5b50610430610dce565b60405161043d9190613f53565b60405180910390f35b348015610451575f80fd5b5061045a610df2565b6040516104679190613edf565b60405180910390f35b34801561047b575f80fd5b50610484610dfb565b6040516104919190613edf565b60405180910390f35b3480156104a5575f80fd5b506104c060048036038101906104bb9190613f6c565b610e01565b005b3480156104cd575f80fd5b506104e860048036038101906104e39190613f97565b610f10565b6040516104f59190613e8c565b60405180910390f35b348015610509575f80fd5b50610512611002565b60405161051f9190613edf565b60405180910390f35b348015610533575f80fd5b5061053c611008565b6040516105499190614002565b60405180910390f35b34801561055d575f80fd5b5061057860048036038101906105739190613e34565b611010565b6040516105859190613e8c565b60405180910390f35b348015610599575f80fd5b506105a26110b7565b6040516105af919061402a565b60405180910390f35b3480156105c3575f80fd5b506105cc6110db565b6040516105d99190613e8c565b60405180910390f35b3480156105ed575f80fd5b5061060860048036038101906106039190613ea5565b6110ed565b6040516106159190613e8c565b60405180910390f35b348015610629575f80fd5b5061063261113f565b60405161063f919061402a565b60405180910390f35b348015610653575f80fd5b5061066e60048036038101906106699190613cf2565b611164565b005b34801561067b575f80fd5b50610684611208565b6040516106919190613edf565b60405180910390f35b3480156106a5575f80fd5b506106ae61120e565b6040516106bb9190613e8c565b60405180910390f35b3480156106cf575f80fd5b506106ea60048036038101906106e59190613ea5565b611221565b6040516106f79190613edf565b60405180910390f35b34801561070b575f80fd5b50610714611266565b005b348015610721575f80fd5b5061072a6112ed565b6040516107379190613e8c565b60405180910390f35b34801561074b575f80fd5b506107666004803603810190610761919061406d565b61138a565b005b348015610773575f80fd5b5061078e60048036038101906107899190613ea5565b61145e565b005b34801561079b575f80fd5b506107a4611531565b6040516107b1919061402a565b60405180910390f35b3480156107c5575f80fd5b506107ce611556565b005b3480156107db575f80fd5b506107f660048036038101906107f19190613ea5565b61170b565b005b348015610803575f80fd5b5061081e60048036038101906108199190613ea5565b6117fc565b005b34801561082b575f80fd5b50610834611936565b005b348015610841575f80fd5b5061084a6119ea565b604051610857919061402a565b60405180910390f35b34801561086b575f80fd5b50610874611a12565b6040516108819190613dba565b60405180910390f35b348015610895575f80fd5b506108b060048036038101906108ab919061406d565b611aa2565b005b3480156108bd575f80fd5b506108c6611bba565b6040516108d39190613edf565b60405180910390f35b3480156108e7575f80fd5b5061090260048036038101906108fd9190613e34565b611bc0565b60405161090f9190613e8c565b60405180910390f35b348015610923575f80fd5b5061093e60048036038101906109399190613e34565b611ca6565b60405161094b9190613e8c565b60405180910390f35b34801561095f575f80fd5b5061097a60048036038101906109759190613ea5565b611cc3565b005b348015610987575f80fd5b506109a2600480360381019061099d9190613ea5565b611dfd565b6040516109af9190613e8c565b60405180910390f35b3480156109c3575f80fd5b506109cc611e1a565b6040516109d99190613e8c565b60405180910390f35b3480156109ed575f80fd5b50610a086004803603810190610a0391906140ab565b611e2d565b005b348015610a15575f80fd5b50610a306004803603810190610a2b919061406d565b612013565b005b348015610a3d575f80fd5b50610a586004803603810190610a539190613f6c565b612135565b005b348015610a65575f80fd5b50610a6e612244565b604051610a7b9190613edf565b60405180910390f35b348015610a8f575f80fd5b50610aaa6004803603810190610aa59190613f6c565b61224a565b604051610ab79190613e8c565b60405180910390f35b348015610acb575f80fd5b50610ad461239e565b604051610ae19190613edf565b60405180910390f35b348015610af5575f80fd5b50610afe6123a4565b604051610b0b9190613edf565b60405180910390f35b348015610b1f575f80fd5b50610b3a6004803603810190610b3591906140ab565b6123aa565b604051610b479190613edf565b60405180910390f35b348015610b5b575f80fd5b50610b6461242c565b604051610b719190613edf565b60405180910390f35b348015610b85575f80fd5b50610ba06004803603810190610b9b9190613ea5565b612432565b005b348015610bad575f80fd5b50610bb6612528565b604051610bc39190613edf565b60405180910390f35b348015610bd7575f80fd5b50610bf26004803603810190610bed9190613ea5565b61252e565b005b348015610bff575f80fd5b50610c086126dd565b604051610c159190613edf565b60405180910390f35b348015610c29575f80fd5b50610c446004803603810190610c3f9190613ea5565b6126e3565b604051610c519190613e8c565b60405180910390f35b610c62612735565b73ffffffffffffffffffffffffffffffffffffffff16610c806119ea565b73ffffffffffffffffffffffffffffffffffffffff1614610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90614133565b60405180910390fd5b8160118190555080601281905550601254601154610cf4919061417e565b6010819055505050565b606060038054610d0d906141de565b80601f0160208091040260200160405190810160405280929190818152602001828054610d39906141de565b8015610d845780601f10610d5b57610100808354040283529160200191610d84565b820191905f5260205f20905b815481529060010190602001808311610d6757829003601f168201915b5050505050905090565b5f610da1610d9a612735565b848461273c565b6001905092915050565b6016602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60115481565b610e09612735565b73ffffffffffffffffffffffffffffffffffffffff16610e276119ea565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490614133565b60405180910390fd5b670de0b6b3a76400006103e86005610e93610df2565b610e9d919061420e565b610ea7919061427c565b610eb1919061427c565b811015610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea9061431c565b60405180910390fd5b670de0b6b3a764000081610f07919061420e565b60088190555050565b5f610f1c8484846128ff565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610f63612735565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd9906143aa565b60405180910390fd5b610ff685610fee612735565b85840361273c565b60019150509392505050565b60135481565b5f6012905090565b5f6110ad61101c612735565b848460015f611029612735565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a8919061417e565b61273c565b6001905092915050565b7f000000000000000000000000c3eedc4c69c6936a4a71fe67a23b8ea023c3b0e681565b600b5f9054906101000a900460ff1681565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61116c612735565b73ffffffffffffffffffffffffffffffffffffffff1661118a6119ea565b73ffffffffffffffffffffffffffffffffffffffff16146111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790614133565b60405180910390fd5b81600e8190555080600f81905550600f54600e546111fe919061417e565b600d819055505050565b60105481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61126e612735565b73ffffffffffffffffffffffffffffffffffffffff1661128c6119ea565b73ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990614133565b60405180910390fd5b6112eb5f61348f565b565b5f6112f6612735565b73ffffffffffffffffffffffffffffffffffffffff166113146119ea565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190614133565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b611392612735565b73ffffffffffffffffffffffffffffffffffffffff166113b06119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90614133565b60405180910390fd5b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611466612735565b73ffffffffffffffffffffffffffffffffffffffff166114846119ea565b73ffffffffffffffffffffffffffffffffffffffff16146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190614133565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61155e612735565b73ffffffffffffffffffffffffffffffffffffffff1661157c6119ea565b73ffffffffffffffffffffffffffffffffffffffff16146115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990614133565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb333073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611628919061402a565b602060405180830381865afa158015611643573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061166791906143dc565b6040518363ffffffff1660e01b8152600401611684929190614407565b6020604051808303815f875af11580156116a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116c49190614442565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611708573d5f803e3d5ffd5b50565b611713612735565b73ffffffffffffffffffffffffffffffffffffffff166117316119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90614133565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff16476040516117ac9061449a565b5f6040518083038185875af1925050503d805f81146117e6576040519150601f19603f3d011682016040523d82523d5f602084013e6117eb565b606091505b50509050806117f8575f80fd5b5050565b611804612735565b73ffffffffffffffffffffffffffffffffffffffff166118226119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90614133565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce811309560405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61193e612735565b73ffffffffffffffffffffffffffffffffffffffff1661195c6119ea565b73ffffffffffffffffffffffffffffffffffffffff16146119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990614133565b60405180910390fd5b6001600b60026101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611a21906141de565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4d906141de565b8015611a985780601f10611a6f57610100808354040283529160200191611a98565b820191905f5260205f20905b815481529060010190602001808311611a7b57829003601f168201915b5050505050905090565b611aaa612735565b73ffffffffffffffffffffffffffffffffffffffff16611ac86119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1590614133565b60405180910390fd5b7f000000000000000000000000c3eedc4c69c6936a4a71fe67a23b8ea023c3b0e673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba39061451e565b60405180910390fd5b611bb68282613552565b5050565b600f5481565b5f8060015f611bcd612735565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e906145ac565b60405180910390fd5b611c9b611c92612735565b8585840361273c565b600191505092915050565b5f611cb9611cb2612735565b84846128ff565b6001905092915050565b611ccb612735565b73ffffffffffffffffffffffffffffffffffffffff16611ce96119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690614133565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fcb24b9cc1975a8c5afd1fcc8deca22156b8f357af3485db1f9382b3c584d671f60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6017602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611e35612735565b73ffffffffffffffffffffffffffffffffffffffff16611e536119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090614133565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90614614565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f51919061402a565b602060405180830381865afa158015611f6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f9091906143dc565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611fcd929190614407565b6020604051808303815f875af1158015611fe9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061200d9190614442565b50505050565b61201b612735565b73ffffffffffffffffffffffffffffffffffffffff166120396119ea565b73ffffffffffffffffffffffffffffffffffffffff161461208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614133565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121299190613e8c565b60405180910390a25050565b61213d612735565b73ffffffffffffffffffffffffffffffffffffffff1661215b6119ea565b73ffffffffffffffffffffffffffffffffffffffff16146121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a890614133565b60405180910390fd5b670de0b6b3a76400006103e8600a6121c7610df2565b6121d1919061420e565b6121db919061427c565b6121e5919061427c565b811015612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e906146a2565b60405180910390fd5b670de0b6b3a76400008161223b919061420e565b600a8190555050565b60085481565b5f612253612735565b73ffffffffffffffffffffffffffffffffffffffff166122716119ea565b73ffffffffffffffffffffffffffffffffffffffff16146122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be90614133565b60405180910390fd5b620186a060016122d5610df2565b6122df919061420e565b6122e9919061427c565b82101561232b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232290614730565b60405180910390fd5b6103e86005612338610df2565b612342919061420e565b61234c919061427c565b82111561238e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612385906147be565b60405180910390fd5b8160098190555060019050919050565b60125481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b61243a612735565b73ffffffffffffffffffffffffffffffffffffffff166124586119ea565b73ffffffffffffffffffffffffffffffffffffffff16146124ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a590614133565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361251c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125139061484c565b60405180910390fd5b6125258161348f565b50565b600a5481565b612536612735565b73ffffffffffffffffffffffffffffffffffffffff166125546119ea565b73ffffffffffffffffffffffffffffffffffffffff16146125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a190614133565b60405180910390fd5b7f000000000000000000000000c3eedc4c69c6936a4a71fe67a23b8ea023c3b0e673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156126465750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267c906148da565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60145481565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a190614968565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f906149f6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128f29190613edf565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361296d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296490614a84565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d290614b12565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5c90614b7a565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae690614be2565b60405180910390fd5b5f8103612b0657612b0183835f6135f0565b61348a565b600b5f9054906101000a900460ff1615612fea57612b226119ea565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b905750612b606119ea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bc857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c02575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c1b5750600560149054906101000a900460ff16155b15612fe957600b60019054906101000a900460ff16612d0f5760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612ccf575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0590614c4a565b60405180910390fd5b5b60175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612dac575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612e5357600854811115612df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ded90614cd8565b60405180910390fd5b600a54612e0283611221565b82612e0d919061417e565b1115612e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4590614d40565b60405180910390fd5b612fe8565b60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ef0575060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612f3f57600854811115612f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3190614dce565b60405180910390fd5b612fe7565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612fe657600a54612f9983611221565b82612fa4919061417e565b1115612fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdc90614d40565b60405180910390fd5b5b5b5b5b5b5f612ff430611221565b90505f60095482101590508080156130185750600b60029054906101000a900460ff165b80156130315750600560149054906101000a900460ff16155b8015613084575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156130d7575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561312a575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561316d576001600560146101000a81548160ff021916908315150217905550613152613865565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061321c575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15613225575f90505b5f811561347a5760175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561328357505f601054115b1561331c576132b16127106132a360105488613a3f90919063ffffffff16565b613a5490919063ffffffff16565b9050601054601254826132c4919061420e565b6132ce919061427c565b60145f8282546132de919061417e565b92505081905550601054601154826132f6919061420e565b613300919061427c565b60135f828254613310919061417e565b92505081905550613409565b60175f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561337357505f600d54115b15613408576133a1612710613393600d5488613a3f90919063ffffffff16565b613a5490919063ffffffff16565b9050600d54600f54826133b4919061420e565b6133be919061427c565b60145f8282546133ce919061417e565b92505081905550600d54600e54826133e6919061420e565b6133f0919061427c565b60135f828254613400919061417e565b925050819055505b5b5f81111561346b5761341c8730836135f0565b8673ffffffffffffffffffffffffffffffffffffffff167f9dc46f23cfb5ddcad0ae7ea2be38d47fec07bb9382ec7e564efc69e036dd66ce826040516134629190613edf565b60405180910390a25b80856134779190614dec565b94505b6134858787876135f0565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361365e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365590614a84565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036136cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c390614b12565b60405180910390fd5b6136d7838383613a69565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561375a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375190614e8f565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546137e8919061417e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161384c9190613edf565b60405180910390a361385f848484613a6e565b50505050565b5f61386f30611221565b90505f601454601354613882919061417e565b90505f8083148061389257505f82145b1561389f57505050613a3d565b60146009546138ae919061420e565b8311156138c75760146009546138c4919061420e565b92505b5f4790506138d484613a73565b5f6138e88247613ca690919063ffffffff16565b90505f6139128561390460145485613a3f90919063ffffffff16565b613a5490919063ffffffff16565b90505f6013819055505f60148190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516139679061449a565b5f6040518083038185875af1925050503d805f81146139a1576040519150601f19603f3d011682016040523d82523d5f602084013e6139a6565b606091505b50508094505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516139f19061449a565b5f6040518083038185875af1925050503d805f8114613a2b576040519150601f19603f3d011682016040523d82523d5f602084013e613a30565b606091505b5050809450505050505050505b565b5f8183613a4c919061420e565b905092915050565b5f8183613a61919061427c565b905092915050565b505050565b505050565b5f600267ffffffffffffffff811115613a8f57613a8e614ead565b5b604051908082528060200260200182016040528015613abd5781602001602082028036833780820191505090505b50905030815f81518110613ad457613ad3614eda565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b9b9190614f1b565b81600181518110613baf57613bae614eda565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c14307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461273c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613c75959493929190615036565b5f604051808303815f87803b158015613c8c575f80fd5b505af1158015613c9e573d5f803e3d5ffd5b505050505050565b5f8183613cb39190614dec565b905092915050565b5f80fd5b5f819050919050565b613cd181613cbf565b8114613cdb575f80fd5b50565b5f81359050613cec81613cc8565b92915050565b5f8060408385031215613d0857613d07613cbb565b5b5f613d1585828601613cde565b9250506020613d2685828601613cde565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613d67578082015181840152602081019050613d4c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613d8c82613d30565b613d968185613d3a565b9350613da6818560208601613d4a565b613daf81613d72565b840191505092915050565b5f6020820190508181035f830152613dd28184613d82565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613e0382613dda565b9050919050565b613e1381613df9565b8114613e1d575f80fd5b50565b5f81359050613e2e81613e0a565b92915050565b5f8060408385031215613e4a57613e49613cbb565b5b5f613e5785828601613e20565b9250506020613e6885828601613cde565b9150509250929050565b5f8115159050919050565b613e8681613e72565b82525050565b5f602082019050613e9f5f830184613e7d565b92915050565b5f60208284031215613eba57613eb9613cbb565b5b5f613ec784828501613e20565b91505092915050565b613ed981613cbf565b82525050565b5f602082019050613ef25f830184613ed0565b92915050565b5f819050919050565b5f613f1b613f16613f1184613dda565b613ef8565b613dda565b9050919050565b5f613f2c82613f01565b9050919050565b5f613f3d82613f22565b9050919050565b613f4d81613f33565b82525050565b5f602082019050613f665f830184613f44565b92915050565b5f60208284031215613f8157613f80613cbb565b5b5f613f8e84828501613cde565b91505092915050565b5f805f60608486031215613fae57613fad613cbb565b5b5f613fbb86828701613e20565b9350506020613fcc86828701613e20565b9250506040613fdd86828701613cde565b9150509250925092565b5f60ff82169050919050565b613ffc81613fe7565b82525050565b5f6020820190506140155f830184613ff3565b92915050565b61402481613df9565b82525050565b5f60208201905061403d5f83018461401b565b92915050565b61404c81613e72565b8114614056575f80fd5b50565b5f8135905061406781614043565b92915050565b5f806040838503121561408357614082613cbb565b5b5f61409085828601613e20565b92505060206140a185828601614059565b9150509250929050565b5f80604083850312156140c1576140c0613cbb565b5b5f6140ce85828601613e20565b92505060206140df85828601613e20565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61411d602083613d3a565b9150614128826140e9565b602082019050919050565b5f6020820190508181035f83015261414a81614111565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61418882613cbf565b915061419383613cbf565b92508282019050808211156141ab576141aa614151565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806141f557607f821691505b602082108103614208576142076141b1565b5b50919050565b5f61421882613cbf565b915061422383613cbf565b925082820261423181613cbf565b9150828204841483151761424857614247614151565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61428682613cbf565b915061429183613cbf565b9250826142a1576142a061424f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f614306602f83613d3a565b9150614311826142ac565b604082019050919050565b5f6020820190508181035f830152614333816142fa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614394602883613d3a565b915061439f8261433a565b604082019050919050565b5f6020820190508181035f8301526143c181614388565b9050919050565b5f815190506143d681613cc8565b92915050565b5f602082840312156143f1576143f0613cbb565b5b5f6143fe848285016143c8565b91505092915050565b5f60408201905061441a5f83018561401b565b6144276020830184613ed0565b9392505050565b5f8151905061443c81614043565b92915050565b5f6020828403121561445757614456613cbb565b5b5f6144648482850161442e565b91505092915050565b5f81905092915050565b50565b5f6144855f8361446d565b915061449082614477565b5f82019050919050565b5f6144a48261447a565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614508603983613d3a565b9150614513826144ae565b604082019050919050565b5f6020820190508181035f830152614535816144fc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614596602583613d3a565b91506145a18261453c565b604082019050919050565b5f6020820190508181035f8301526145c38161458a565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6145fe601a83613d3a565b9150614609826145ca565b602082019050919050565b5f6020820190508181035f83015261462b816145f2565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f61468c602483613d3a565b915061469782614632565b604082019050919050565b5f6020820190508181035f8301526146b981614680565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f61471a603583613d3a565b9150614725826146c0565b604082019050919050565b5f6020820190508181035f8301526147478161470e565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f6147a8603483613d3a565b91506147b38261474e565b604082019050919050565b5f6020820190508181035f8301526147d58161479c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614836602683613d3a565b9150614841826147dc565b604082019050919050565b5f6020820190508181035f8301526148638161482a565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f6148c4602e83613d3a565b91506148cf8261486a565b604082019050919050565b5f6020820190508181035f8301526148f1816148b8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614952602483613d3a565b915061495d826148f8565b604082019050919050565b5f6020820190508181035f83015261497f81614946565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6149e0602283613d3a565b91506149eb82614986565b604082019050919050565b5f6020820190508181035f830152614a0d816149d4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614a6e602583613d3a565b9150614a7982614a14565b604082019050919050565b5f6020820190508181035f830152614a9b81614a62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614afc602383613d3a565b9150614b0782614aa2565b604082019050919050565b5f6020820190508181035f830152614b2981614af0565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614b64601283613d3a565b9150614b6f82614b30565b602082019050919050565b5f6020820190508181035f830152614b9181614b58565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614bcc601483613d3a565b9150614bd782614b98565b602082019050919050565b5f6020820190508181035f830152614bf981614bc0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614c34601683613d3a565b9150614c3f82614c00565b602082019050919050565b5f6020820190508181035f830152614c6181614c28565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f614cc2603583613d3a565b9150614ccd82614c68565b604082019050919050565b5f6020820190508181035f830152614cef81614cb6565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614d2a601383613d3a565b9150614d3582614cf6565b602082019050919050565b5f6020820190508181035f830152614d5781614d1e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f614db8603683613d3a565b9150614dc382614d5e565b604082019050919050565b5f6020820190508181035f830152614de581614dac565b9050919050565b5f614df682613cbf565b9150614e0183613cbf565b9250828203905081811115614e1957614e18614151565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614e79602683613d3a565b9150614e8482614e1f565b604082019050919050565b5f6020820190508181035f830152614ea681614e6d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050614f1581613e0a565b92915050565b5f60208284031215614f3057614f2f613cbb565b5b5f614f3d84828501614f07565b91505092915050565b5f819050919050565b5f614f69614f64614f5f84614f46565b613ef8565b613cbf565b9050919050565b614f7981614f4f565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b614fb181613df9565b82525050565b5f614fc28383614fa8565b60208301905092915050565b5f602082019050919050565b5f614fe482614f7f565b614fee8185614f89565b9350614ff983614f99565b805f5b838110156150295781516150108882614fb7565b975061501b83614fce565b925050600181019050614ffc565b5085935050505092915050565b5f60a0820190506150495f830188613ed0565b6150566020830187614f70565b81810360408301526150688186614fda565b9050615077606083018561401b565b6150846080830184613ed0565b969550505050505056fea2646970667358221220f5d517aa070f71781edb907225e102a679a12c196ef40fe16bcb01dc8a634f5764736f6c63430008140033

Deployed Bytecode Sourcemap

30901:13269:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35873:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8992:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11159:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31835:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31495:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30976:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10112:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31600:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34906:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11810:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31672:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9954:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12711:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31034:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31296:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37195:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31147:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35625:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31565:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31376:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10283:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2509:103;;;;;;;;;;;;;:::i;:::-;;37450:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35458:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44069:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31111:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43029:220;;;;;;;;;;;;;:::i;:::-;;43553:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37026:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34293:112;;;;;;;;;;;;;:::i;:::-;;1858:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9211:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36317:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31531:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13429:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10623:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36817:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31905:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31336:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43257:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36127:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35191:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31181:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34413:485;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31637:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31461:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10861:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31223:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2767:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31263:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43764:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31711:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37329:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35873:246;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36010:12:::1;35992:15;:30;;;;36047:8;36033:11;:22;;;;36100:11;;36082:15;;:29;;;;:::i;:::-;36066:13;:45;;;;35873:246:::0;;:::o;8992:100::-;9046:13;9079:5;9072:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8992:100;:::o;11159:169::-;11242:4;11259:39;11268:12;:10;:12::i;:::-;11282:7;11291:6;11259:8;:39::i;:::-;11316:4;11309:11;;11159:169;;;;:::o;31835:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;31495:29::-;;;;:::o;30976:51::-;;;:::o;10112:108::-;10173:7;10200:12;;10193:19;;10112:108;:::o;31600:30::-;;;;:::o;34906:277::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35043:4:::1;35035;35030:1;35014:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35013:26;;;;:::i;:::-;35012:35;;;;:::i;:::-;35002:6;:45;;34980:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;35166:8;35156:6;:19;;;;:::i;:::-;35133:20;:42;;;;34906:277:::0;:::o;11810:492::-;11950:4;11967:36;11977:6;11985:9;11996:6;11967:9;:36::i;:::-;12016:24;12043:11;:19;12055:6;12043:19;;;;;;;;;;;;;;;:33;12063:12;:10;:12::i;:::-;12043:33;;;;;;;;;;;;;;;;12016:60;;12115:6;12095:16;:26;;12087:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12202:57;12211:6;12219:12;:10;:12::i;:::-;12252:6;12233:16;:25;12202:8;:57::i;:::-;12290:4;12283:11;;;11810:492;;;;;:::o;31672:32::-;;;;:::o;9954:93::-;10012:5;10037:2;10030:9;;9954:93;:::o;12711:215::-;12799:4;12816:80;12825:12;:10;:12::i;:::-;12839:7;12885:10;12848:11;:25;12860:12;:10;:12::i;:::-;12848:25;;;;;;;;;;;;;;;:34;12874:7;12848:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12816:8;:80::i;:::-;12914:4;12907:11;;12711:215;;;;:::o;31034:38::-;;;:::o;31296:33::-;;;;;;;;;;;;;:::o;37195:126::-;37261:4;37285:19;:28;37305:7;37285:28;;;;;;;;;;;;;;;;;;;;;;;;;37278:35;;37195:126;;;:::o;31147:25::-;;;;;;;;;;;;;:::o;35625:240::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35760:12:::1;35743:14;:29;;;;35796:8;35783:10;:21;;;;35847:10;;35830:14;;:27;;;;:::i;:::-;35815:12;:42;;;;35625:240:::0;;:::o;31565:28::-;;;;:::o;31376:31::-;;;;;;;;;;;;;:::o;10283:127::-;10357:7;10384:9;:18;10394:7;10384:18;;;;;;;;;;;;;;;;10377:25;;10283:127;;;:::o;2509:103::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2574:30:::1;2601:1;2574:18;:30::i;:::-;2509:103::o:0;37450:121::-;37502:4;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37536:5:::1;37519:14;;:22;;;;;;;;;;;;;;;;;;37559:4;37552:11;;37450:121:::0;:::o;35458:159::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35605:4:::1;35563:31;:39;35595:6;35563:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35458:159:::0;;:::o;44069:98::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44154:5:::1;44133:11;:18;44145:5;44133:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;44069:98:::0;:::o;31111:29::-;;;;;;;;;;;;;:::o;43029:220::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43104:4:::1;43089:30;;;43120:10;43147:4;43132:31;;;43172:4;43132:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43089:90;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43198:10;43190:28;;:51;43219:21;43190:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43029:220::o:0;43553:203::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43626:12:::1;43643:6;:11;;43680:21;43643:78;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43625:96;;;43740:7;43732:16;;;::::0;::::1;;43614:142;43553:203:::0;:::o;37026:161::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37135:10:::1;;;;;;;;;;;37106:40;;37124:9;37106:40;;;;;;;;;;;;37170:9;37157:10;;:22;;;;;;;;;;;;;;;;;;37026:161:::0;:::o;34293:112::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34362:4:::1;34348:11;;:18;;;;;;;;;;;;;;;;;;34393:4;34377:13;;:20;;;;;;;;;;;;;;;;;;34293:112::o:0;1858:87::-;1904:7;1931:6;;;;;;;;;;;1924:13;;1858:87;:::o;9211:104::-;9267:13;9300:7;9293:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9211:104;:::o;36317:296::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36453:13:::1;36445:21;;:4;:21;;::::0;36423:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36564:41;36593:4;36599:5;36564:28;:41::i;:::-;36317:296:::0;;:::o;31531:25::-;;;;:::o;13429:413::-;13522:4;13539:24;13566:11;:25;13578:12;:10;:12::i;:::-;13566:25;;;;;;;;;;;;;;;:34;13592:7;13566:34;;;;;;;;;;;;;;;;13539:61;;13639:15;13619:16;:35;;13611:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13732:67;13741:12;:10;:12::i;:::-;13755:7;13783:15;13764:16;:34;13732:8;:67::i;:::-;13830:4;13823:11;;;13429:413;;;;:::o;10623:175::-;10709:4;10726:42;10736:12;:10;:12::i;:::-;10750:9;10761:6;10726:9;:42::i;:::-;10786:4;10779:11;;10623:175;;;;:::o;36817:201::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36950:14:::1;;;;;;;;;;;36909:56;;36931:17;36909:56;;;;;;;;;;;;36993:17;36976:14;;:34;;;;;;;;;;;;;;;;;;36817:201:::0;:::o;31905:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;31336:33::-;;;;;;;;;;;;;:::o;43257:288::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43370:1:::1;43352:20;;:6;:20;;::::0;43344:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43414:24;43448:6;43441:24;;;43474:4;43441:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43414:66;;43498:6;43491:23;;;43515:3;43520:16;43491:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43333:212;43257:288:::0;;:::o;36127:182::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36243:8:::1;36212:19;:28;36232:7;36212:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36283:7;36267:34;;;36292:8;36267:34;;;;;;:::i;:::-;;;;;;;;36127:182:::0;;:::o;35191:259::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35332:4:::1;35324;35318:2;35302:13;:11;:13::i;:::-;:18;;;;:::i;:::-;35301:27;;;;:::i;:::-;35300:36;;;;:::i;:::-;35290:6;:46;;35268:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;35433:8;35423:6;:19;;;;:::i;:::-;35411:9;:31;;;;35191:259:::0;:::o;31181:35::-;;;;:::o;34413:485::-;34509:4;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34588:6:::1;34583:1;34567:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34566:28;;;;:::i;:::-;34553:9;:41;;34531:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;34743:4;34738:1;34722:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34721:26;;;;:::i;:::-;34708:9;:39;;34686:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;34859:9;34838:18;:30;;;;34886:4;34879:11;;34413:485:::0;;;:::o;31637:26::-;;;;:::o;31461:27::-;;;;:::o;10861:151::-;10950:7;10977:11;:18;10989:5;10977:18;;;;;;;;;;;;;;;:27;10996:7;10977:27;;;;;;;;;;;;;;;;10970:34;;10861:151;;;;:::o;31223:33::-;;;;:::o;2767:201::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2876:1:::1;2856:22;;:8;:22;;::::0;2848:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2932:28;2951:8;2932:18;:28::i;:::-;2767:201:::0;:::o;31263:24::-;;;;:::o;43764:297::-;2089:12;:10;:12::i;:::-;2078:23;;:7;:5;:7::i;:::-;:23;;;2070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43865:13:::1;43848:31;;:5;:31;;;;:95;;;;;43900:42;43883:60;;:5;:60;;;;43848:95;43826:191;;;;;;;;;;;;:::i;:::-;;;;;;;;;44049:4;44028:11;:18;44040:5;44028:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;43764:297:::0;:::o;31711:28::-;;;;:::o;37329:113::-;37390:4;37414:11;:20;37426:7;37414:20;;;;;;;;;;;;;;;;;;;;;;;;;37407:27;;37329:113;;;:::o;725:98::-;778:7;805:10;798:17;;725:98;:::o;17113:380::-;17266:1;17249:19;;:5;:19;;;17241:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17347:1;17328:21;;:7;:21;;;17320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17431:6;17401:11;:18;17413:5;17401:18;;;;;;;;;;;;;;;:27;17420:7;17401:27;;;;;;;;;;;;;;;:36;;;;17469:7;17453:32;;17462:5;17453:32;;;17478:6;17453:32;;;;;;:::i;:::-;;;;;;;;17113:380;;;:::o;37579:3672::-;37727:1;37711:18;;:4;:18;;;37703:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37804:1;37790:16;;:2;:16;;;37782:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37866:11;:17;37878:4;37866:17;;;;;;;;;;;;;;;;;;;;;;;;;37865:18;37857:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;37926:11;:15;37938:2;37926:15;;;;;;;;;;;;;;;;;;;;;;;;;37925:16;37917:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;37993:1;37983:6;:11;37979:93;;38011:28;38027:4;38033:2;38037:1;38011:15;:28::i;:::-;38054:7;;37979:93;38088:14;;;;;;;;;;;38084:1637;;;38149:7;:5;:7::i;:::-;38141:15;;:4;:15;;;;:49;;;;;38183:7;:5;:7::i;:::-;38177:13;;:2;:13;;;;38141:49;:86;;;;;38225:1;38211:16;;:2;:16;;;;38141:86;:128;;;;;38262:6;38248:21;;:2;:21;;;;38141:128;:158;;;;;38291:8;;;;;;;;;;;38290:9;38141:158;38119:1591;;;38339:13;;;;;;;;;;;38334:223;;38411:19;:25;38431:4;38411:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38440:19;:23;38460:2;38440:23;;;;;;;;;;;;;;;;;;;;;;;;;38411:52;38377:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;38334:223;38603:25;:31;38629:4;38603:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38660:31;:35;38692:2;38660:35;;;;;;;;;;;;;;;;;;;;;;;;;38659:36;38603:92;38577:1118;;;38782:20;;38772:6;:30;;38738:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;38990:9;;38973:13;38983:2;38973:9;:13::i;:::-;38964:6;:22;;;;:::i;:::-;:35;;38930:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38577:1118;;;39139:25;:29;39165:2;39139:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39194:31;:37;39226:4;39194:37;;;;;;;;;;;;;;;;;;;;;;;;;39193:38;39139:92;39113:582;;;39318:20;;39308:6;:30;;39274:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;39113:582;;;39475:31;:35;39507:2;39475:35;;;;;;;;;;;;;;;;;;;;;;;;;39470:225;;39595:9;;39578:13;39588:2;39578:9;:13::i;:::-;39569:6;:22;;;;:::i;:::-;:35;;39535:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39470:225;39113:582;38577:1118;38119:1591;38084:1637;39733:28;39764:24;39782:4;39764:9;:24::i;:::-;39733:55;;39801:12;39840:18;;39816:20;:42;;39801:57;;39889:7;:35;;;;;39913:11;;;;;;;;;;;39889:35;:61;;;;;39942:8;;;;;;;;;;;39941:9;39889:61;:110;;;;;39968:25;:31;39994:4;39968:31;;;;;;;;;;;;;;;;;;;;;;;;;39967:32;39889:110;:153;;;;;40017:19;:25;40037:4;40017:25;;;;;;;;;;;;;;;;;;;;;;;;;40016:26;39889:153;:194;;;;;40060:19;:23;40080:2;40060:23;;;;;;;;;;;;;;;;;;;;;;;;;40059:24;39889:194;39871:326;;;40121:4;40110:8;;:15;;;;;;;;;;;;;;;;;;40142:10;:8;:10::i;:::-;40180:5;40169:8;;:16;;;;;;;;;;;;;;;;;;39871:326;40209:12;40225:8;;;;;;;;;;;40224:9;40209:24;;40250:19;:25;40270:4;40250:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40279:19;:23;40299:2;40279:23;;;;;;;;;;;;;;;;;;;;;;;;;40250:52;40246:100;;;40329:5;40319:15;;40246:100;40358:12;40389:7;40385:813;;;40417:25;:29;40443:2;40417:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40466:1;40450:13;;:17;40417:50;40413:587;;;40495:36;40525:5;40495:25;40506:13;;40495:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;40488:43;;40590:13;;40575:11;;40568:4;:18;;;;:::i;:::-;40567:36;;;;:::i;:::-;40550:13;;:53;;;;;;;:::i;:::-;;;;;;;;40670:13;;40651:15;;40644:4;:22;;;;:::i;:::-;40643:40;;;;:::i;:::-;40622:17;;:61;;;;;;;:::i;:::-;;;;;;;;40413:587;;;40722:25;:31;40748:4;40722:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40772:1;40757:12;;:16;40722:51;40718:282;;;40801:35;40830:5;40801:24;40812:12;;40801:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;40794:42;;40894:12;;40880:10;;40873:4;:17;;;;:::i;:::-;40872:34;;;;:::i;:::-;40855:13;;:51;;;;;;;:::i;:::-;;;;;;;;40972:12;;40954:14;;40947:4;:21;;;;:::i;:::-;40946:38;;;;:::i;:::-;40925:17;;:59;;;;;;;:::i;:::-;;;;;;;;40718:282;40413:587;41027:1;41020:4;:8;41016:140;;;41049:42;41065:4;41079;41086;41049:15;:42::i;:::-;41129:4;41115:25;;;41135:4;41115:25;;;;;;:::i;:::-;;;;;;;;41016:140;41182:4;41172:14;;;;;:::i;:::-;;;40385:813;41210:33;41226:4;41232:2;41236:6;41210:15;:33::i;:::-;37692:3559;;;;37579:3672;;;;:::o;3128:191::-;3202:16;3221:6;;;;;;;;;;;3202:25;;3247:8;3238:6;;:17;;;;;;;;;;;;;;;;;;3302:8;3271:40;;3292:8;3271:40;;;;;;;;;;;;3191:128;3128:191;:::o;36621:188::-;36738:5;36704:25;:31;36730:4;36704:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36795:5;36761:40;;36789:4;36761:40;;;;;;;;;;;;36621:188;;:::o;14332:733::-;14490:1;14472:20;;:6;:20;;;14464:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14574:1;14553:23;;:9;:23;;;14545:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14629:47;14650:6;14658:9;14669:6;14629:20;:47::i;:::-;14689:21;14713:9;:17;14723:6;14713:17;;;;;;;;;;;;;;;;14689:41;;14766:6;14749:13;:23;;14741:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14887:6;14871:13;:22;14851:9;:17;14861:6;14851:17;;;;;;;;;;;;;;;:42;;;;14939:6;14915:9;:20;14925:9;14915:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14980:9;14963:35;;14972:6;14963:35;;;14991:6;14963:35;;;;;;:::i;:::-;;;;;;;;15011:46;15031:6;15039:9;15050:6;15011:19;:46::i;:::-;14453:612;14332:733;;;:::o;42112:909::-;42151:23;42177:24;42195:4;42177:9;:24::i;:::-;42151:50;;42212:25;42260:13;;42240:17;;:33;;;;:::i;:::-;42212:61;;42284:12;42332:1;42313:15;:20;:46;;;;42358:1;42337:17;:22;42313:46;42309:85;;;42376:7;;;;;42309:85;42449:2;42428:18;;:23;;;;:::i;:::-;42410:15;:41;42406:115;;;42507:2;42486:18;;:23;;;;:::i;:::-;42468:41;;42406:115;42533:25;42561:21;42533:49;;42595:33;42612:15;42595:16;:33::i;:::-;42641:18;42662:44;42688:17;42662:21;:25;;:44;;;;:::i;:::-;42641:65;;42719:18;42740:52;42774:17;42740:29;42755:13;;42740:10;:14;;:29;;;;:::i;:::-;:33;;:52;;;;:::i;:::-;42719:73;;42823:1;42803:17;:21;;;;42851:1;42835:13;:17;;;;42886:10;;;;;;;;;;;42878:24;;42910:10;42878:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42865:60;;;;;42959:14;;;;;;;;;;;42951:28;;42987:21;42951:62;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42938:75;;;;;42140:881;;;;;;42112:909;:::o;22233:98::-;22291:7;22322:1;22318;:5;;;;:::i;:::-;22311:12;;22233:98;;;;:::o;22632:::-;22690:7;22721:1;22717;:5;;;;:::i;:::-;22710:12;;22632:98;;;;:::o;18093:125::-;;;;:::o;18822:124::-;;;;:::o;41259:475::-;41325:21;41363:1;41349:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41325:40;;41394:4;41376;41381:1;41376:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41420:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41410:4;41415:1;41410:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41455:62;41472:4;41487:15;41505:11;41455:8;:62::i;:::-;41530:15;:66;;;41611:11;41637:1;41653:4;41680;41700:15;41530:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41314:420;41259:475;:::o;21876:98::-;21934:7;21965:1;21961;:5;;;;:::i;:::-;21954:12;;21876:98;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:246::-;1531:1;1541:113;1555:6;1552:1;1549:13;1541:113;;;1640:1;1635:3;1631:11;1625:18;1621:1;1616:3;1612:11;1605:39;1577:2;1574:1;1570:10;1565:15;;1541:113;;;1688:1;1679:6;1674:3;1670:16;1663:27;1512:184;1450:246;;;:::o;1702:102::-;1743:6;1794:2;1790:7;1785:2;1778:5;1774:14;1770:28;1760:38;;1702:102;;;:::o;1810:377::-;1898:3;1926:39;1959:5;1926:39;:::i;:::-;1981:71;2045:6;2040:3;1981:71;:::i;:::-;1974:78;;2061:65;2119:6;2114:3;2107:4;2100:5;2096:16;2061:65;:::i;:::-;2151:29;2173:6;2151:29;:::i;:::-;2146:3;2142:39;2135:46;;1902:285;1810:377;;;;:::o;2193:313::-;2306:4;2344:2;2333:9;2329:18;2321:26;;2393:9;2387:4;2383:20;2379:1;2368:9;2364:17;2357:47;2421:78;2494:4;2485:6;2421:78;:::i;:::-;2413:86;;2193:313;;;;:::o;2512:126::-;2549:7;2589:42;2582:5;2578:54;2567:65;;2512:126;;;:::o;2644:96::-;2681:7;2710:24;2728:5;2710:24;:::i;:::-;2699:35;;2644:96;;;:::o;2746:122::-;2819:24;2837:5;2819:24;:::i;:::-;2812:5;2809:35;2799:63;;2858:1;2855;2848:12;2799:63;2746:122;:::o;2874:139::-;2920:5;2958:6;2945:20;2936:29;;2974:33;3001:5;2974:33;:::i;:::-;2874:139;;;;:::o;3019:474::-;3087:6;3095;3144:2;3132:9;3123:7;3119:23;3115:32;3112:119;;;3150:79;;:::i;:::-;3112:119;3270:1;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3241:117;3397:2;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3368:118;3019:474;;;;;:::o;3499:90::-;3533:7;3576:5;3569:13;3562:21;3551:32;;3499:90;;;:::o;3595:109::-;3676:21;3691:5;3676:21;:::i;:::-;3671:3;3664:34;3595:109;;:::o;3710:210::-;3797:4;3835:2;3824:9;3820:18;3812:26;;3848:65;3910:1;3899:9;3895:17;3886:6;3848:65;:::i;:::-;3710:210;;;;:::o;3926:329::-;3985:6;4034:2;4022:9;4013:7;4009:23;4005:32;4002:119;;;4040:79;;:::i;:::-;4002:119;4160:1;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4131:117;3926:329;;;;:::o;4261:118::-;4348:24;4366:5;4348:24;:::i;:::-;4343:3;4336:37;4261:118;;:::o;4385:222::-;4478:4;4516:2;4505:9;4501:18;4493:26;;4529:71;4597:1;4586:9;4582:17;4573:6;4529:71;:::i;:::-;4385:222;;;;:::o;4613:60::-;4641:3;4662:5;4655:12;;4613:60;;;:::o;4679:142::-;4729:9;4762:53;4780:34;4789:24;4807:5;4789:24;:::i;:::-;4780:34;:::i;:::-;4762:53;:::i;:::-;4749:66;;4679:142;;;:::o;4827:126::-;4877:9;4910:37;4941:5;4910:37;:::i;:::-;4897:50;;4827:126;;;:::o;4959:153::-;5036:9;5069:37;5100:5;5069:37;:::i;:::-;5056:50;;4959:153;;;:::o;5118:185::-;5232:64;5290:5;5232:64;:::i;:::-;5227:3;5220:77;5118:185;;:::o;5309:276::-;5429:4;5467:2;5456:9;5452:18;5444:26;;5480:98;5575:1;5564:9;5560:17;5551:6;5480:98;:::i;:::-;5309:276;;;;:::o;5591:329::-;5650:6;5699:2;5687:9;5678:7;5674:23;5670:32;5667:119;;;5705:79;;:::i;:::-;5667:119;5825:1;5850:53;5895:7;5886:6;5875:9;5871:22;5850:53;:::i;:::-;5840:63;;5796:117;5591:329;;;;:::o;5926:619::-;6003:6;6011;6019;6068:2;6056:9;6047:7;6043:23;6039:32;6036:119;;;6074:79;;:::i;:::-;6036:119;6194:1;6219:53;6264:7;6255:6;6244:9;6240:22;6219:53;:::i;:::-;6209:63;;6165:117;6321:2;6347:53;6392:7;6383:6;6372:9;6368:22;6347:53;:::i;:::-;6337:63;;6292:118;6449:2;6475:53;6520:7;6511:6;6500:9;6496:22;6475:53;:::i;:::-;6465:63;;6420:118;5926:619;;;;;:::o;6551:86::-;6586:7;6626:4;6619:5;6615:16;6604:27;;6551:86;;;:::o;6643:112::-;6726:22;6742:5;6726:22;:::i;:::-;6721:3;6714:35;6643:112;;:::o;6761:214::-;6850:4;6888:2;6877:9;6873:18;6865:26;;6901:67;6965:1;6954:9;6950:17;6941:6;6901:67;:::i;:::-;6761:214;;;;:::o;6981:118::-;7068:24;7086:5;7068:24;:::i;:::-;7063:3;7056:37;6981:118;;:::o;7105:222::-;7198:4;7236:2;7225:9;7221:18;7213:26;;7249:71;7317:1;7306:9;7302:17;7293:6;7249:71;:::i;:::-;7105:222;;;;:::o;7333:116::-;7403:21;7418:5;7403:21;:::i;:::-;7396:5;7393:32;7383:60;;7439:1;7436;7429:12;7383:60;7333:116;:::o;7455:133::-;7498:5;7536:6;7523:20;7514:29;;7552:30;7576:5;7552:30;:::i;:::-;7455:133;;;;:::o;7594:468::-;7659:6;7667;7716:2;7704:9;7695:7;7691:23;7687:32;7684:119;;;7722:79;;:::i;:::-;7684:119;7842:1;7867:53;7912:7;7903:6;7892:9;7888:22;7867:53;:::i;:::-;7857:63;;7813:117;7969:2;7995:50;8037:7;8028:6;8017:9;8013:22;7995:50;:::i;:::-;7985:60;;7940:115;7594:468;;;;;:::o;8068:474::-;8136:6;8144;8193:2;8181:9;8172:7;8168:23;8164:32;8161:119;;;8199:79;;:::i;:::-;8161:119;8319:1;8344:53;8389:7;8380:6;8369:9;8365:22;8344:53;:::i;:::-;8334:63;;8290:117;8446:2;8472:53;8517:7;8508:6;8497:9;8493:22;8472:53;:::i;:::-;8462:63;;8417:118;8068:474;;;;;:::o;8548:182::-;8688:34;8684:1;8676:6;8672:14;8665:58;8548:182;:::o;8736:366::-;8878:3;8899:67;8963:2;8958:3;8899:67;:::i;:::-;8892:74;;8975:93;9064:3;8975:93;:::i;:::-;9093:2;9088:3;9084:12;9077:19;;8736:366;;;:::o;9108:419::-;9274:4;9312:2;9301:9;9297:18;9289:26;;9361:9;9355:4;9351:20;9347:1;9336:9;9332:17;9325:47;9389:131;9515:4;9389:131;:::i;:::-;9381:139;;9108:419;;;:::o;9533:180::-;9581:77;9578:1;9571:88;9678:4;9675:1;9668:15;9702:4;9699:1;9692:15;9719:191;9759:3;9778:20;9796:1;9778:20;:::i;:::-;9773:25;;9812:20;9830:1;9812:20;:::i;:::-;9807:25;;9855:1;9852;9848:9;9841:16;;9876:3;9873:1;9870:10;9867:36;;;9883:18;;:::i;:::-;9867:36;9719:191;;;;:::o;9916:180::-;9964:77;9961:1;9954:88;10061:4;10058:1;10051:15;10085:4;10082:1;10075:15;10102:320;10146:6;10183:1;10177:4;10173:12;10163:22;;10230:1;10224:4;10220:12;10251:18;10241:81;;10307:4;10299:6;10295:17;10285:27;;10241:81;10369:2;10361:6;10358:14;10338:18;10335:38;10332:84;;10388:18;;:::i;:::-;10332:84;10153:269;10102:320;;;:::o;10428:410::-;10468:7;10491:20;10509:1;10491:20;:::i;:::-;10486:25;;10525:20;10543:1;10525:20;:::i;:::-;10520:25;;10580:1;10577;10573:9;10602:30;10620:11;10602:30;:::i;:::-;10591:41;;10781:1;10772:7;10768:15;10765:1;10762:22;10742:1;10735:9;10715:83;10692:139;;10811:18;;:::i;:::-;10692:139;10476:362;10428:410;;;;:::o;10844:180::-;10892:77;10889:1;10882:88;10989:4;10986:1;10979:15;11013:4;11010:1;11003:15;11030:185;11070:1;11087:20;11105:1;11087:20;:::i;:::-;11082:25;;11121:20;11139:1;11121:20;:::i;:::-;11116:25;;11160:1;11150:35;;11165:18;;:::i;:::-;11150:35;11207:1;11204;11200:9;11195:14;;11030:185;;;;:::o;11221:234::-;11361:34;11357:1;11349:6;11345:14;11338:58;11430:17;11425:2;11417:6;11413:15;11406:42;11221:234;:::o;11461:366::-;11603:3;11624:67;11688:2;11683:3;11624:67;:::i;:::-;11617:74;;11700:93;11789:3;11700:93;:::i;:::-;11818:2;11813:3;11809:12;11802:19;;11461:366;;;:::o;11833:419::-;11999:4;12037:2;12026:9;12022:18;12014:26;;12086:9;12080:4;12076:20;12072:1;12061:9;12057:17;12050:47;12114:131;12240:4;12114:131;:::i;:::-;12106:139;;11833:419;;;:::o;12258:227::-;12398:34;12394:1;12386:6;12382:14;12375:58;12467:10;12462:2;12454:6;12450:15;12443:35;12258:227;:::o;12491:366::-;12633:3;12654:67;12718:2;12713:3;12654:67;:::i;:::-;12647:74;;12730:93;12819:3;12730:93;:::i;:::-;12848:2;12843:3;12839:12;12832:19;;12491:366;;;:::o;12863:419::-;13029:4;13067:2;13056:9;13052:18;13044:26;;13116:9;13110:4;13106:20;13102:1;13091:9;13087:17;13080:47;13144:131;13270:4;13144:131;:::i;:::-;13136:139;;12863:419;;;:::o;13288:143::-;13345:5;13376:6;13370:13;13361:22;;13392:33;13419:5;13392:33;:::i;:::-;13288:143;;;;:::o;13437:351::-;13507:6;13556:2;13544:9;13535:7;13531:23;13527:32;13524:119;;;13562:79;;:::i;:::-;13524:119;13682:1;13707:64;13763:7;13754:6;13743:9;13739:22;13707:64;:::i;:::-;13697:74;;13653:128;13437:351;;;;:::o;13794:332::-;13915:4;13953:2;13942:9;13938:18;13930:26;;13966:71;14034:1;14023:9;14019:17;14010:6;13966:71;:::i;:::-;14047:72;14115:2;14104:9;14100:18;14091:6;14047:72;:::i;:::-;13794:332;;;;;:::o;14132:137::-;14186:5;14217:6;14211:13;14202:22;;14233:30;14257:5;14233:30;:::i;:::-;14132:137;;;;:::o;14275:345::-;14342:6;14391:2;14379:9;14370:7;14366:23;14362:32;14359:119;;;14397:79;;:::i;:::-;14359:119;14517:1;14542:61;14595:7;14586:6;14575:9;14571:22;14542:61;:::i;:::-;14532:71;;14488:125;14275:345;;;;:::o;14626:147::-;14727:11;14764:3;14749:18;;14626:147;;;;:::o;14779:114::-;;:::o;14899:398::-;15058:3;15079:83;15160:1;15155:3;15079:83;:::i;:::-;15072:90;;15171:93;15260:3;15171:93;:::i;:::-;15289:1;15284:3;15280:11;15273:18;;14899:398;;;:::o;15303:379::-;15487:3;15509:147;15652:3;15509:147;:::i;:::-;15502:154;;15673:3;15666:10;;15303:379;;;:::o;15688:244::-;15828:34;15824:1;15816:6;15812:14;15805:58;15897:27;15892:2;15884:6;15880:15;15873:52;15688:244;:::o;15938:366::-;16080:3;16101:67;16165:2;16160:3;16101:67;:::i;:::-;16094:74;;16177:93;16266:3;16177:93;:::i;:::-;16295:2;16290:3;16286:12;16279:19;;15938:366;;;:::o;16310:419::-;16476:4;16514:2;16503:9;16499:18;16491:26;;16563:9;16557:4;16553:20;16549:1;16538:9;16534:17;16527:47;16591:131;16717:4;16591:131;:::i;:::-;16583:139;;16310:419;;;:::o;16735:224::-;16875:34;16871:1;16863:6;16859:14;16852:58;16944:7;16939:2;16931:6;16927:15;16920:32;16735:224;:::o;16965:366::-;17107:3;17128:67;17192:2;17187:3;17128:67;:::i;:::-;17121:74;;17204:93;17293:3;17204:93;:::i;:::-;17322:2;17317:3;17313:12;17306:19;;16965:366;;;:::o;17337:419::-;17503:4;17541:2;17530:9;17526:18;17518:26;;17590:9;17584:4;17580:20;17576:1;17565:9;17561:17;17554:47;17618:131;17744:4;17618:131;:::i;:::-;17610:139;;17337:419;;;:::o;17762:176::-;17902:28;17898:1;17890:6;17886:14;17879:52;17762:176;:::o;17944:366::-;18086:3;18107:67;18171:2;18166:3;18107:67;:::i;:::-;18100:74;;18183:93;18272:3;18183:93;:::i;:::-;18301:2;18296:3;18292:12;18285:19;;17944:366;;;:::o;18316:419::-;18482:4;18520:2;18509:9;18505:18;18497:26;;18569:9;18563:4;18559:20;18555:1;18544:9;18540:17;18533:47;18597:131;18723:4;18597:131;:::i;:::-;18589:139;;18316:419;;;:::o;18741:223::-;18881:34;18877:1;18869:6;18865:14;18858:58;18950:6;18945:2;18937:6;18933:15;18926:31;18741:223;:::o;18970:366::-;19112:3;19133:67;19197:2;19192:3;19133:67;:::i;:::-;19126:74;;19209:93;19298:3;19209:93;:::i;:::-;19327:2;19322:3;19318:12;19311:19;;18970:366;;;:::o;19342:419::-;19508:4;19546:2;19535:9;19531:18;19523:26;;19595:9;19589:4;19585:20;19581:1;19570:9;19566:17;19559:47;19623:131;19749:4;19623:131;:::i;:::-;19615:139;;19342:419;;;:::o;19767:240::-;19907:34;19903:1;19895:6;19891:14;19884:58;19976:23;19971:2;19963:6;19959:15;19952:48;19767:240;:::o;20013:366::-;20155:3;20176:67;20240:2;20235:3;20176:67;:::i;:::-;20169:74;;20252:93;20341:3;20252:93;:::i;:::-;20370:2;20365:3;20361:12;20354:19;;20013:366;;;:::o;20385:419::-;20551:4;20589:2;20578:9;20574:18;20566:26;;20638:9;20632:4;20628:20;20624:1;20613:9;20609:17;20602:47;20666:131;20792:4;20666:131;:::i;:::-;20658:139;;20385:419;;;:::o;20810:239::-;20950:34;20946:1;20938:6;20934:14;20927:58;21019:22;21014:2;21006:6;21002:15;20995:47;20810:239;:::o;21055:366::-;21197:3;21218:67;21282:2;21277:3;21218:67;:::i;:::-;21211:74;;21294:93;21383:3;21294:93;:::i;:::-;21412:2;21407:3;21403:12;21396:19;;21055:366;;;:::o;21427:419::-;21593:4;21631:2;21620:9;21616:18;21608:26;;21680:9;21674:4;21670:20;21666:1;21655:9;21651:17;21644:47;21708:131;21834:4;21708:131;:::i;:::-;21700:139;;21427:419;;;:::o;21852:225::-;21992:34;21988:1;21980:6;21976:14;21969:58;22061:8;22056:2;22048:6;22044:15;22037:33;21852:225;:::o;22083:366::-;22225:3;22246:67;22310:2;22305:3;22246:67;:::i;:::-;22239:74;;22322:93;22411:3;22322:93;:::i;:::-;22440:2;22435:3;22431:12;22424:19;;22083:366;;;:::o;22455:419::-;22621:4;22659:2;22648:9;22644:18;22636:26;;22708:9;22702:4;22698:20;22694:1;22683:9;22679:17;22672:47;22736:131;22862:4;22736:131;:::i;:::-;22728:139;;22455:419;;;:::o;22880:233::-;23020:34;23016:1;23008:6;23004:14;22997:58;23089:16;23084:2;23076:6;23072:15;23065:41;22880:233;:::o;23119:366::-;23261:3;23282:67;23346:2;23341:3;23282:67;:::i;:::-;23275:74;;23358:93;23447:3;23358:93;:::i;:::-;23476:2;23471:3;23467:12;23460:19;;23119:366;;;:::o;23491:419::-;23657:4;23695:2;23684:9;23680:18;23672:26;;23744:9;23738:4;23734:20;23730:1;23719:9;23715:17;23708:47;23772:131;23898:4;23772:131;:::i;:::-;23764:139;;23491:419;;;:::o;23916:223::-;24056:34;24052:1;24044:6;24040:14;24033:58;24125:6;24120:2;24112:6;24108:15;24101:31;23916:223;:::o;24145:366::-;24287:3;24308:67;24372:2;24367:3;24308:67;:::i;:::-;24301:74;;24384:93;24473:3;24384:93;:::i;:::-;24502:2;24497:3;24493:12;24486:19;;24145:366;;;:::o;24517:419::-;24683:4;24721:2;24710:9;24706:18;24698:26;;24770:9;24764:4;24760:20;24756:1;24745:9;24741:17;24734:47;24798:131;24924:4;24798:131;:::i;:::-;24790:139;;24517:419;;;:::o;24942:221::-;25082:34;25078:1;25070:6;25066:14;25059:58;25151:4;25146:2;25138:6;25134:15;25127:29;24942:221;:::o;25169:366::-;25311:3;25332:67;25396:2;25391:3;25332:67;:::i;:::-;25325:74;;25408:93;25497:3;25408:93;:::i;:::-;25526:2;25521:3;25517:12;25510:19;;25169:366;;;:::o;25541:419::-;25707:4;25745:2;25734:9;25730:18;25722:26;;25794:9;25788:4;25784:20;25780:1;25769:9;25765:17;25758:47;25822:131;25948:4;25822:131;:::i;:::-;25814:139;;25541:419;;;:::o;25966:224::-;26106:34;26102:1;26094:6;26090:14;26083:58;26175:7;26170:2;26162:6;26158:15;26151:32;25966:224;:::o;26196:366::-;26338:3;26359:67;26423:2;26418:3;26359:67;:::i;:::-;26352:74;;26435:93;26524:3;26435:93;:::i;:::-;26553:2;26548:3;26544:12;26537:19;;26196:366;;;:::o;26568:419::-;26734:4;26772:2;26761:9;26757:18;26749:26;;26821:9;26815:4;26811:20;26807:1;26796:9;26792:17;26785:47;26849:131;26975:4;26849:131;:::i;:::-;26841:139;;26568:419;;;:::o;26993:222::-;27133:34;27129:1;27121:6;27117:14;27110:58;27202:5;27197:2;27189:6;27185:15;27178:30;26993:222;:::o;27221:366::-;27363:3;27384:67;27448:2;27443:3;27384:67;:::i;:::-;27377:74;;27460:93;27549:3;27460:93;:::i;:::-;27578:2;27573:3;27569:12;27562:19;;27221:366;;;:::o;27593:419::-;27759:4;27797:2;27786:9;27782:18;27774:26;;27846:9;27840:4;27836:20;27832:1;27821:9;27817:17;27810:47;27874:131;28000:4;27874:131;:::i;:::-;27866:139;;27593:419;;;:::o;28018:168::-;28158:20;28154:1;28146:6;28142:14;28135:44;28018:168;:::o;28192:366::-;28334:3;28355:67;28419:2;28414:3;28355:67;:::i;:::-;28348:74;;28431:93;28520:3;28431:93;:::i;:::-;28549:2;28544:3;28540:12;28533:19;;28192:366;;;:::o;28564:419::-;28730:4;28768:2;28757:9;28753:18;28745:26;;28817:9;28811:4;28807:20;28803:1;28792:9;28788:17;28781:47;28845:131;28971:4;28845:131;:::i;:::-;28837:139;;28564:419;;;:::o;28989:170::-;29129:22;29125:1;29117:6;29113:14;29106:46;28989:170;:::o;29165:366::-;29307:3;29328:67;29392:2;29387:3;29328:67;:::i;:::-;29321:74;;29404:93;29493:3;29404:93;:::i;:::-;29522:2;29517:3;29513:12;29506:19;;29165:366;;;:::o;29537:419::-;29703:4;29741:2;29730:9;29726:18;29718:26;;29790:9;29784:4;29780:20;29776:1;29765:9;29761:17;29754:47;29818:131;29944:4;29818:131;:::i;:::-;29810:139;;29537:419;;;:::o;29962:172::-;30102:24;30098:1;30090:6;30086:14;30079:48;29962:172;:::o;30140:366::-;30282:3;30303:67;30367:2;30362:3;30303:67;:::i;:::-;30296:74;;30379:93;30468:3;30379:93;:::i;:::-;30497:2;30492:3;30488:12;30481:19;;30140:366;;;:::o;30512:419::-;30678:4;30716:2;30705:9;30701:18;30693:26;;30765:9;30759:4;30755:20;30751:1;30740:9;30736:17;30729:47;30793:131;30919:4;30793:131;:::i;:::-;30785:139;;30512:419;;;:::o;30937:240::-;31077:34;31073:1;31065:6;31061:14;31054:58;31146:23;31141:2;31133:6;31129:15;31122:48;30937:240;:::o;31183:366::-;31325:3;31346:67;31410:2;31405:3;31346:67;:::i;:::-;31339:74;;31422:93;31511:3;31422:93;:::i;:::-;31540:2;31535:3;31531:12;31524:19;;31183:366;;;:::o;31555:419::-;31721:4;31759:2;31748:9;31744:18;31736:26;;31808:9;31802:4;31798:20;31794:1;31783:9;31779:17;31772:47;31836:131;31962:4;31836:131;:::i;:::-;31828:139;;31555:419;;;:::o;31980:169::-;32120:21;32116:1;32108:6;32104:14;32097:45;31980:169;:::o;32155:366::-;32297:3;32318:67;32382:2;32377:3;32318:67;:::i;:::-;32311:74;;32394:93;32483:3;32394:93;:::i;:::-;32512:2;32507:3;32503:12;32496:19;;32155:366;;;:::o;32527:419::-;32693:4;32731:2;32720:9;32716:18;32708:26;;32780:9;32774:4;32770:20;32766:1;32755:9;32751:17;32744:47;32808:131;32934:4;32808:131;:::i;:::-;32800:139;;32527:419;;;:::o;32952:241::-;33092:34;33088:1;33080:6;33076:14;33069:58;33161:24;33156:2;33148:6;33144:15;33137:49;32952:241;:::o;33199:366::-;33341:3;33362:67;33426:2;33421:3;33362:67;:::i;:::-;33355:74;;33438:93;33527:3;33438:93;:::i;:::-;33556:2;33551:3;33547:12;33540:19;;33199:366;;;:::o;33571:419::-;33737:4;33775:2;33764:9;33760:18;33752:26;;33824:9;33818:4;33814:20;33810:1;33799:9;33795:17;33788:47;33852:131;33978:4;33852:131;:::i;:::-;33844:139;;33571:419;;;:::o;33996:194::-;34036:4;34056:20;34074:1;34056:20;:::i;:::-;34051:25;;34090:20;34108:1;34090:20;:::i;:::-;34085:25;;34134:1;34131;34127:9;34119:17;;34158:1;34152:4;34149:11;34146:37;;;34163:18;;:::i;:::-;34146:37;33996:194;;;;:::o;34196:225::-;34336:34;34332:1;34324:6;34320:14;34313:58;34405:8;34400:2;34392:6;34388:15;34381:33;34196:225;:::o;34427:366::-;34569:3;34590:67;34654:2;34649:3;34590:67;:::i;:::-;34583:74;;34666:93;34755:3;34666:93;:::i;:::-;34784:2;34779:3;34775:12;34768:19;;34427:366;;;:::o;34799:419::-;34965:4;35003:2;34992:9;34988:18;34980:26;;35052:9;35046:4;35042:20;35038:1;35027:9;35023:17;35016:47;35080:131;35206:4;35080:131;:::i;:::-;35072:139;;34799:419;;;:::o;35224:180::-;35272:77;35269:1;35262:88;35369:4;35366:1;35359:15;35393:4;35390:1;35383:15;35410:180;35458:77;35455:1;35448:88;35555:4;35552:1;35545:15;35579:4;35576:1;35569:15;35596:143;35653:5;35684:6;35678:13;35669:22;;35700:33;35727:5;35700:33;:::i;:::-;35596:143;;;;:::o;35745:351::-;35815:6;35864:2;35852:9;35843:7;35839:23;35835:32;35832:119;;;35870:79;;:::i;:::-;35832:119;35990:1;36015:64;36071:7;36062:6;36051:9;36047:22;36015:64;:::i;:::-;36005:74;;35961:128;35745:351;;;;:::o;36102:85::-;36147:7;36176:5;36165:16;;36102:85;;;:::o;36193:158::-;36251:9;36284:61;36302:42;36311:32;36337:5;36311:32;:::i;:::-;36302:42;:::i;:::-;36284:61;:::i;:::-;36271:74;;36193:158;;;:::o;36357:147::-;36452:45;36491:5;36452:45;:::i;:::-;36447:3;36440:58;36357:147;;:::o;36510:114::-;36577:6;36611:5;36605:12;36595:22;;36510:114;;;:::o;36630:184::-;36729:11;36763:6;36758:3;36751:19;36803:4;36798:3;36794:14;36779:29;;36630:184;;;;:::o;36820:132::-;36887:4;36910:3;36902:11;;36940:4;36935:3;36931:14;36923:22;;36820:132;;;:::o;36958:108::-;37035:24;37053:5;37035:24;:::i;:::-;37030:3;37023:37;36958:108;;:::o;37072:179::-;37141:10;37162:46;37204:3;37196:6;37162:46;:::i;:::-;37240:4;37235:3;37231:14;37217:28;;37072:179;;;;:::o;37257:113::-;37327:4;37359;37354:3;37350:14;37342:22;;37257:113;;;:::o;37406:732::-;37525:3;37554:54;37602:5;37554:54;:::i;:::-;37624:86;37703:6;37698:3;37624:86;:::i;:::-;37617:93;;37734:56;37784:5;37734:56;:::i;:::-;37813:7;37844:1;37829:284;37854:6;37851:1;37848:13;37829:284;;;37930:6;37924:13;37957:63;38016:3;38001:13;37957:63;:::i;:::-;37950:70;;38043:60;38096:6;38043:60;:::i;:::-;38033:70;;37889:224;37876:1;37873;37869:9;37864:14;;37829:284;;;37833:14;38129:3;38122:10;;37530:608;;;37406:732;;;;:::o;38144:831::-;38407:4;38445:3;38434:9;38430:19;38422:27;;38459:71;38527:1;38516:9;38512:17;38503:6;38459:71;:::i;:::-;38540:80;38616:2;38605:9;38601:18;38592:6;38540:80;:::i;:::-;38667:9;38661:4;38657:20;38652:2;38641:9;38637:18;38630:48;38695:108;38798:4;38789:6;38695:108;:::i;:::-;38687:116;;38813:72;38881:2;38870:9;38866:18;38857:6;38813:72;:::i;:::-;38895:73;38963:3;38952:9;38948:19;38939:6;38895:73;:::i;:::-;38144:831;;;;;;;;:::o

Swarm Source

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