ETH Price: $2,916.95 (-3.74%)
Gas: 1 Gwei

Token

Yelon Inu (YELON)
 

Overview

Max Total Supply

1,000,000,000,000 YELON

Holders

101

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,451,568,451.589775267581029481 YELON

Value
$0.00
0x5194badbdc99cb1c96efd906b68f634387fd8ae3
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:
YelonInu

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-17
*/

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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

////// src/MarshallRoganInu.sol
/* pragma solidity >=0.8.10; */

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

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

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

    bool private swapping;

    address public marketingWallet;
    address private devWallet;

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

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

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

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 public buyLiquidityFee;

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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



    constructor(address wallet1) ERC20("Yelon Inu", "YELON") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 50;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellMarketingFee = 50;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 1_000_000_000_000 * 1e18;

        maxTransactionAmount = 1_000_000_000_000 * 1e18;
        maxWallet = 1_000_000_000_000 * 1e18;
        swapTokensAtAmount = 200_000_000 * 1e18;

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

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

        marketingWallet = wallet1; // set as marketing wallet
        devWallet = owner();

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

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {

        buyMarketingFee = 890;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        sellMarketingFee = 400;
        sellLiquidityFee = 0;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        tradingActive = true;
        swapEnabled = true;
    }

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


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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees <= 200, "Must keep fees at 20% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        require(sellTotalFees <= 300, "Must keep fees at 30% or less");
    }

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

    function manualswap(uint256 amount) external {
        require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount");
        swapTokensForEth(amount);
    }

    function waitForIt() external onlyOwner {
      maxTransactionAmount = 20000000000 * 1e18;
      maxWallet = 20000000000 * 1e18;

      buyMarketingFee = 70;
      buyLiquidityFee = 0;
      buyTotalFees = buyMarketingFee + buyLiquidityFee;

      sellMarketingFee = 980;
      sellLiquidityFee = 0;
      sellTotalFees = sellMarketingFee + sellLiquidityFee;

    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"wallet1","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"waitForIt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b5060405162005b4f38038062005b4f833981810160405281019062000088919062000bae565b6040518060400160405280600981526020017f59656c6f6e20496e7500000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f59454c4f4e00000000000000000000000000000000000000000000000000000081525081600390805190602001906200010c92919062000a94565b5080600490805190602001906200012592919062000a94565b505050620001486200013c6200055460201b60201c565b6200055c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001748160016200062260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a919062000bae565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000282573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a8919062000bae565b6040518363ffffffff1660e01b8152600401620002c792919062000bf1565b6020604051808303816000875af1158015620002e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030d919062000bae565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035560a05160016200062260201b60201c565b6200036a60a05160016200070c60201b60201c565b600060329050600080603290506000806c0c9f2c9cd04674edea4000000090506c0c9f2c9cd04674edea400000006008819055506c0c9f2c9cd04674edea40000000600a819055506aa56fa5b99019a5c800000060098190555084600e8190555083600f81905550600f54600e54620003e4919062000c57565b600d8190555082601181905550816012819055506012546011546200040a919062000c57565b60108190555086600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000461620007ad60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c3620004b5620007ad60201b60201c565b6001620007d760201b60201c565b620004d6306001620007d760201b60201c565b620004eb61dead6001620007d760201b60201c565b6200050d620004ff620007ad60201b60201c565b60016200062260201b60201c565b620005203060016200062260201b60201c565b6200053561dead60016200062260201b60201c565b6200054733826200091160201b60201c565b5050505050505062000e76565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006326200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000658620007ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a89062000d15565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007e76200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200080d620007ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000866576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085d9062000d15565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000905919062000d54565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000984576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097b9062000dc1565b60405180910390fd5b620009986000838362000a8a60201b60201c565b8060026000828254620009ac919062000c57565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a03919062000c57565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a6a919062000df4565b60405180910390a362000a866000838362000a8f60201b60201c565b5050565b505050565b505050565b82805462000aa29062000e40565b90600052602060002090601f01602090048101928262000ac6576000855562000b12565b82601f1062000ae157805160ff191683800117855562000b12565b8280016001018555821562000b12579182015b8281111562000b1157825182559160200191906001019062000af4565b5b50905062000b21919062000b25565b5090565b5b8082111562000b4057600081600090555060010162000b26565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b768262000b49565b9050919050565b62000b888162000b69565b811462000b9457600080fd5b50565b60008151905062000ba88162000b7d565b92915050565b60006020828403121562000bc75762000bc662000b44565b5b600062000bd78482850162000b97565b91505092915050565b62000beb8162000b69565b82525050565b600060408201905062000c08600083018562000be0565b62000c17602083018462000be0565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c648262000c1e565b915062000c718362000c1e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ca95762000ca862000c28565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000cfd60208362000cb4565b915062000d0a8262000cc5565b602082019050919050565b6000602082019050818103600083015262000d308162000cee565b9050919050565b60008115159050919050565b62000d4e8162000d37565b82525050565b600060208201905062000d6b600083018462000d43565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000da9601f8362000cb4565b915062000db68262000d71565b602082019050919050565b6000602082019050818103600083015262000ddc8162000d9a565b9050919050565b62000dee8162000c1e565b82525050565b600060208201905062000e0b600083018462000de3565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e5957607f821691505b6020821081141562000e705762000e6f62000e11565b5b50919050565b60805160a051614c8962000ec66000396000818161122b01526119a1015260008181610df301528181612f86015281816130670152818161308e015281816136a501526136cc0152614c896000f3fe6080604052600436106102b25760003560e01c80637571336a11610175578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610a9b578063f2fde38b14610ac6578063f637434214610aef578063f8b45b0514610b1a576102b9565b8063d85ba06314610a08578063dd62ed3e14610a33578063e2f4560514610a70576102b9565b8063b62496f5146108e6578063bbc0c74214610923578063c02466681461094e578063c18bc19514610977578063c8c8ebe4146109a0578063d257b34f146109cb576102b9565b8063924de9b71161012e578063924de9b7146107c657806395d89b41146107ef5780639a7a23d61461081a578063a457c2d714610843578063a9059cbb14610880578063aacebbe3146108bd576102b9565b80637571336a146106dc57806375f0a87414610705578063881dce60146107305780638a8c523c146107595780638da5cb5b14610770578063921369131461079b576102b9565b806327c8f835116102195780636a486a8e116101d25780636a486a8e146105f05780636ddd17131461061b5780636fc3eaec1461064657806370a082311461065d578063715018a61461069a578063751039fc146106b1576102b9565b806327c8f835146104de578063313ce56714610509578063395093511461053457806349bd5a5e146105715780634a62bb651461059c57806366ca9b83146105c7576102b9565b806318160ddd1161026b57806318160ddd146103ce5780631816467f146103f95780631a8145bb146104225780631f3fed8f1461044d578063203e727e1461047857806323b872dd146104a1576102b9565b806302dbd8f8146102be57806306fdde03146102e7578063095ea7b31461031257806310d5de531461034f57806312efbfb11461038c5780631694505e146103a3576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e091906137d6565b610b45565b005b3480156102f357600080fd5b506102fc610c30565b60405161030991906138af565b60405180910390f35b34801561031e57600080fd5b506103396004803603810190610334919061392f565b610cc2565b604051610346919061398a565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906139a5565b610ce0565b604051610383919061398a565b60405180910390f35b34801561039857600080fd5b506103a1610d00565b005b3480156103af57600080fd5b506103b8610df1565b6040516103c59190613a31565b60405180910390f35b3480156103da57600080fd5b506103e3610e15565b6040516103f09190613a5b565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b91906139a5565b610e1f565b005b34801561042e57600080fd5b50610437610f5b565b6040516104449190613a5b565b60405180910390f35b34801561045957600080fd5b50610462610f61565b60405161046f9190613a5b565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190613a76565b610f67565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613aa3565b611076565b6040516104d5919061398a565b60405180910390f35b3480156104ea57600080fd5b506104f361116e565b6040516105009190613b05565b60405180910390f35b34801561051557600080fd5b5061051e611174565b60405161052b9190613b3c565b60405180910390f35b34801561054057600080fd5b5061055b6004803603810190610556919061392f565b61117d565b604051610568919061398a565b60405180910390f35b34801561057d57600080fd5b50610586611229565b6040516105939190613b05565b60405180910390f35b3480156105a857600080fd5b506105b161124d565b6040516105be919061398a565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906137d6565b611260565b005b3480156105fc57600080fd5b5061060561134a565b6040516106129190613a5b565b60405180910390f35b34801561062757600080fd5b50610630611350565b60405161063d919061398a565b60405180910390f35b34801561065257600080fd5b5061065b611363565b005b34801561066957600080fd5b50610684600480360381019061067f91906139a5565b6113f6565b6040516106919190613a5b565b60405180910390f35b3480156106a657600080fd5b506106af61143e565b005b3480156106bd57600080fd5b506106c66114c6565b6040516106d3919061398a565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613b83565b611566565b005b34801561071157600080fd5b5061071a61163d565b6040516107279190613b05565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190613a76565b611663565b005b34801561076557600080fd5b5061076e6116c6565b005b34801561077c57600080fd5b506107856117c8565b6040516107929190613b05565b60405180910390f35b3480156107a757600080fd5b506107b06117f2565b6040516107bd9190613a5b565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190613bc3565b6117f8565b005b3480156107fb57600080fd5b50610804611891565b60405161081191906138af565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190613b83565b611923565b005b34801561084f57600080fd5b5061086a6004803603810190610865919061392f565b611a3c565b604051610877919061398a565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a2919061392f565b611b27565b6040516108b4919061398a565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df91906139a5565b611b45565b005b3480156108f257600080fd5b5061090d600480360381019061090891906139a5565b611c81565b60405161091a919061398a565b60405180910390f35b34801561092f57600080fd5b50610938611ca1565b604051610945919061398a565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190613b83565b611cb4565b005b34801561098357600080fd5b5061099e60048036038101906109999190613a76565b611dd9565b005b3480156109ac57600080fd5b506109b5611ee8565b6040516109c29190613a5b565b60405180910390f35b3480156109d757600080fd5b506109f260048036038101906109ed9190613a76565b611eee565b6040516109ff919061398a565b60405180910390f35b348015610a1457600080fd5b50610a1d612043565b604051610a2a9190613a5b565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a559190613bf0565b612049565b604051610a679190613a5b565b60405180910390f35b348015610a7c57600080fd5b50610a856120d0565b604051610a929190613a5b565b60405180910390f35b348015610aa757600080fd5b50610ab06120d6565b604051610abd9190613a5b565b60405180910390f35b348015610ad257600080fd5b50610aed6004803603810190610ae891906139a5565b6120dc565b005b348015610afb57600080fd5b50610b046121d4565b604051610b119190613a5b565b60405180910390f35b348015610b2657600080fd5b50610b2f6121da565b604051610b3c9190613a5b565b60405180910390f35b610b4d6121e0565b73ffffffffffffffffffffffffffffffffffffffff16610b6b6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890613c7c565b60405180910390fd5b8160118190555080601281905550601254601154610bdf9190613ccb565b60108190555061012c6010541115610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390613d6d565b60405180910390fd5b5050565b606060038054610c3f90613dbc565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6b90613dbc565b8015610cb85780601f10610c8d57610100808354040283529160200191610cb8565b820191906000526020600020905b815481529060010190602001808311610c9b57829003601f168201915b5050505050905090565b6000610cd6610ccf6121e0565b84846121e8565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b610d086121e0565b73ffffffffffffffffffffffffffffffffffffffff16610d266117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390613c7c565b60405180910390fd5b6b409f9cbc7c4a04c2200000006008819055506b409f9cbc7c4a04c220000000600a819055506046600e819055506000600f81905550600f54600e54610dc29190613ccb565b600d819055506103d46011819055506000601281905550601254601154610de99190613ccb565b601081905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e276121e0565b73ffffffffffffffffffffffffffffffffffffffff16610e456117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290613c7c565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b60135481565b610f6f6121e0565b73ffffffffffffffffffffffffffffffffffffffff16610f8d6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90613c7c565b60405180910390fd5b670de0b6b3a76400006103e86001610ff9610e15565b6110039190613dee565b61100d9190613e77565b6110179190613e77565b811015611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090613f1a565b60405180910390fd5b670de0b6b3a76400008161106d9190613dee565b60088190555050565b60006110838484846123b3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110ce6121e0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561114e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114590613fac565b60405180910390fd5b6111628561115a6121e0565b8584036121e8565b60019150509392505050565b61dead81565b60006012905090565b600061121f61118a6121e0565b8484600160006111986121e0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461121a9190613ccb565b6121e8565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6112686121e0565b73ffffffffffffffffffffffffffffffffffffffff166112866117c8565b73ffffffffffffffffffffffffffffffffffffffff16146112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390613c7c565b60405180910390fd5b81600e8190555080600f81905550600f54600e546112fa9190613ccb565b600d8190555060c8600d541115611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90614018565b60405180910390fd5b5050565b60105481565b600b60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113ab90614069565b60006040518083038185875af1925050503d80600081146113e8576040519150601f19603f3d011682016040523d82523d6000602084013e6113ed565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114466121e0565b73ffffffffffffffffffffffffffffffffffffffff166114646117c8565b73ffffffffffffffffffffffffffffffffffffffff16146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190613c7c565b60405180910390fd5b6114c46000612e21565b565b60006114d06121e0565b73ffffffffffffffffffffffffffffffffffffffff166114ee6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613c7c565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61156e6121e0565b73ffffffffffffffffffffffffffffffffffffffff1661158c6117c8565b73ffffffffffffffffffffffffffffffffffffffff16146115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990613c7c565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61166c306113f6565b811115801561167b5750600081115b6116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b1906140ca565b60405180910390fd5b6116c381612ee7565b50565b6116ce6121e0565b73ffffffffffffffffffffffffffffffffffffffff166116ec6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990613c7c565b60405180910390fd5b61037a600e819055506000600f81905550600f54600e546117639190613ccb565b600d81905550610190601181905550600060128190555060125460115461178a9190613ccb565b6010819055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6118006121e0565b73ffffffffffffffffffffffffffffffffffffffff1661181e6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90613c7c565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546118a090613dbc565b80601f01602080910402602001604051908101604052809291908181526020018280546118cc90613dbc565b80156119195780601f106118ee57610100808354040283529160200191611919565b820191906000526020600020905b8154815290600101906020018083116118fc57829003601f168201915b5050505050905090565b61192b6121e0565b73ffffffffffffffffffffffffffffffffffffffff166119496117c8565b73ffffffffffffffffffffffffffffffffffffffff161461199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690613c7c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a259061415c565b60405180910390fd5b611a388282613124565b5050565b60008060016000611a4b6121e0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff906141ee565b60405180910390fd5b611b1c611b136121e0565b858584036121e8565b600191505092915050565b6000611b3b611b346121e0565b84846123b3565b6001905092915050565b611b4d6121e0565b73ffffffffffffffffffffffffffffffffffffffff16611b6b6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890613c7c565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611cbc6121e0565b73ffffffffffffffffffffffffffffffffffffffff16611cda6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790613c7c565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611dcd919061398a565b60405180910390a25050565b611de16121e0565b73ffffffffffffffffffffffffffffffffffffffff16611dff6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4c90613c7c565b60405180910390fd5b670de0b6b3a76400006103e86005611e6b610e15565b611e759190613dee565b611e7f9190613e77565b611e899190613e77565b811015611ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec290614280565b60405180910390fd5b670de0b6b3a764000081611edf9190613dee565b600a8190555050565b60085481565b6000611ef86121e0565b73ffffffffffffffffffffffffffffffffffffffff16611f166117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6390613c7c565b60405180910390fd5b620186a06001611f7a610e15565b611f849190613dee565b611f8e9190613e77565b821015611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790614312565b60405180910390fd5b6103e86005611fdd610e15565b611fe79190613dee565b611ff19190613e77565b821115612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a906143a4565b60405180910390fd5b8160098190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600f5481565b6120e46121e0565b73ffffffffffffffffffffffffffffffffffffffff166121026117c8565b73ffffffffffffffffffffffffffffffffffffffff1614612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90613c7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf90614436565b60405180910390fd5b6121d181612e21565b50565b60125481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f906144c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf9061455a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123a69190613a5b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a906145ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a9061467e565b60405180910390fd5b60008114156124ad576124a8838360006131c5565b612e1c565b600b60009054906101000a900460ff16156129a8576124ca6117c8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561253857506125086117c8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125715750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125ab575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125c45750600560149054906101000a900460ff16155b156129a757600b60019054906101000a900460ff166126be57601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061267e5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6126bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b4906146ea565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127615750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612808576008548111156127ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a29061477c565b60405180910390fd5b600a546127b7836113f6565b826127c29190613ccb565b1115612803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fa906147e8565b60405180910390fd5b6129a6565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128ab5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128fa576008548111156128f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ec9061487a565b60405180910390fd5b6129a5565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129a457600a54612957836113f6565b826129629190613ccb565b11156129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a906147e8565b60405180910390fd5b5b5b5b5b5b60006129b3306113f6565b9050600060095482101590508080156129d85750600b60029054906101000a900460ff165b80156129f15750600560149054906101000a900460ff16155b8015612a475750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a9d5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612af35750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b37576001600560146101000a81548160ff021916908315150217905550612b1b613446565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bed5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612bf757600090505b60008115612e0c57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c5a57506000601054115b15612cf557612c886103e8612c7a6010548861365390919063ffffffff16565b61366990919063ffffffff16565b905060105460125482612c9b9190613dee565b612ca59190613e77565b60146000828254612cb69190613ccb565b9250508190555060105460115482612cce9190613dee565b612cd89190613e77565b60136000828254612ce99190613ccb565b92505081905550612de8565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d5057506000600d54115b15612de757612d7e6103e8612d70600d548861365390919063ffffffff16565b61366990919063ffffffff16565b9050600d54600f5482612d919190613dee565b612d9b9190613e77565b60146000828254612dac9190613ccb565b92505081905550600d54600e5482612dc49190613dee565b612dce9190613e77565b60136000828254612ddf9190613ccb565b925050819055505b5b6000811115612dfd57612dfc8730836131c5565b5b8085612e09919061489a565b94505b612e178787876131c5565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612f0457612f036148ce565b5b604051908082528060200260200182016040528015612f325781602001602082028036833780820191505090505b5090503081600081518110612f4a57612f496148fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130139190614941565b81600181518110613027576130266148fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061308c307f0000000000000000000000000000000000000000000000000000000000000000846121e8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016130ee959493929190614a67565b600060405180830381600087803b15801561310857600080fd5b505af115801561311c573d6000803e3d6000fd5b505050505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322c906145ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329c9061467e565b60405180910390fd5b6132b083838361367f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332d90614b33565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133c99190613ccb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161342d9190613a5b565b60405180910390a3613440848484613684565b50505050565b6000613451306113f6565b905060006013546014546134659190613ccb565b90506000808314806134775750600082145b1561348457505050613651565b60146009546134939190613dee565b8311156134ac5760146009546134a99190613dee565b92505b6000600283601454866134bf9190613dee565b6134c99190613e77565b6134d39190613e77565b905060006134ea828661368990919063ffffffff16565b905060004790506134fa82612ee7565b600061350f824761368990919063ffffffff16565b9050600061353a8761352c6013548561365390919063ffffffff16565b61366990919063ffffffff16565b90506000818361354a919061489a565b90506000601481905550600060138190555060008611801561356c5750600081115b156135b95761357b868261369f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826014546040516135b093929190614b53565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135ff90614069565b60006040518083038185875af1925050503d806000811461363c576040519150601f19603f3d011682016040523d82523d6000602084013e613641565b606091505b5050809750505050505050505050505b565b600081836136619190613dee565b905092915050565b600081836136779190613e77565b905092915050565b505050565b505050565b60008183613697919061489a565b905092915050565b6136ca307f0000000000000000000000000000000000000000000000000000000000000000846121e8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161375196959493929190614b8a565b60606040518083038185885af115801561376f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137949190614c00565b5050505050565b600080fd5b6000819050919050565b6137b3816137a0565b81146137be57600080fd5b50565b6000813590506137d0816137aa565b92915050565b600080604083850312156137ed576137ec61379b565b5b60006137fb858286016137c1565b925050602061380c858286016137c1565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613850578082015181840152602081019050613835565b8381111561385f576000848401525b50505050565b6000601f19601f8301169050919050565b600061388182613816565b61388b8185613821565b935061389b818560208601613832565b6138a481613865565b840191505092915050565b600060208201905081810360008301526138c98184613876565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138fc826138d1565b9050919050565b61390c816138f1565b811461391757600080fd5b50565b60008135905061392981613903565b92915050565b600080604083850312156139465761394561379b565b5b60006139548582860161391a565b9250506020613965858286016137c1565b9150509250929050565b60008115159050919050565b6139848161396f565b82525050565b600060208201905061399f600083018461397b565b92915050565b6000602082840312156139bb576139ba61379b565b5b60006139c98482850161391a565b91505092915050565b6000819050919050565b60006139f76139f26139ed846138d1565b6139d2565b6138d1565b9050919050565b6000613a09826139dc565b9050919050565b6000613a1b826139fe565b9050919050565b613a2b81613a10565b82525050565b6000602082019050613a466000830184613a22565b92915050565b613a55816137a0565b82525050565b6000602082019050613a706000830184613a4c565b92915050565b600060208284031215613a8c57613a8b61379b565b5b6000613a9a848285016137c1565b91505092915050565b600080600060608486031215613abc57613abb61379b565b5b6000613aca8682870161391a565b9350506020613adb8682870161391a565b9250506040613aec868287016137c1565b9150509250925092565b613aff816138f1565b82525050565b6000602082019050613b1a6000830184613af6565b92915050565b600060ff82169050919050565b613b3681613b20565b82525050565b6000602082019050613b516000830184613b2d565b92915050565b613b608161396f565b8114613b6b57600080fd5b50565b600081359050613b7d81613b57565b92915050565b60008060408385031215613b9a57613b9961379b565b5b6000613ba88582860161391a565b9250506020613bb985828601613b6e565b9150509250929050565b600060208284031215613bd957613bd861379b565b5b6000613be784828501613b6e565b91505092915050565b60008060408385031215613c0757613c0661379b565b5b6000613c158582860161391a565b9250506020613c268582860161391a565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c66602083613821565b9150613c7182613c30565b602082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cd6826137a0565b9150613ce1836137a0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1657613d15613c9c565b5b828201905092915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613d57601d83613821565b9150613d6282613d21565b602082019050919050565b60006020820190508181036000830152613d8681613d4a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613dd457607f821691505b60208210811415613de857613de7613d8d565b5b50919050565b6000613df9826137a0565b9150613e04836137a0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e3d57613e3c613c9c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e82826137a0565b9150613e8d836137a0565b925082613e9d57613e9c613e48565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613f04602f83613821565b9150613f0f82613ea8565b604082019050919050565b60006020820190508181036000830152613f3381613ef7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613f96602883613821565b9150613fa182613f3a565b604082019050919050565b60006020820190508181036000830152613fc581613f89565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614002601d83613821565b915061400d82613fcc565b602082019050919050565b6000602082019050818103600083015261403181613ff5565b9050919050565b600081905092915050565b50565b6000614053600083614038565b915061405e82614043565b600082019050919050565b600061407482614046565b9150819050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b60006140b4600c83613821565b91506140bf8261407e565b602082019050919050565b600060208201905081810360008301526140e3816140a7565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614146603983613821565b9150614151826140ea565b604082019050919050565b6000602082019050818103600083015261417581614139565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141d8602583613821565b91506141e38261417c565b604082019050919050565b60006020820190508181036000830152614207816141cb565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061426a602483613821565b91506142758261420e565b604082019050919050565b600060208201905081810360008301526142998161425d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006142fc603583613821565b9150614307826142a0565b604082019050919050565b6000602082019050818103600083015261432b816142ef565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061438e603483613821565b915061439982614332565b604082019050919050565b600060208201905081810360008301526143bd81614381565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614420602683613821565b915061442b826143c4565b604082019050919050565b6000602082019050818103600083015261444f81614413565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144b2602483613821565b91506144bd82614456565b604082019050919050565b600060208201905081810360008301526144e1816144a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614544602283613821565b915061454f826144e8565b604082019050919050565b6000602082019050818103600083015261457381614537565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145d6602583613821565b91506145e18261457a565b604082019050919050565b60006020820190508181036000830152614605816145c9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614668602383613821565b91506146738261460c565b604082019050919050565b600060208201905081810360008301526146978161465b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146d4601683613821565b91506146df8261469e565b602082019050919050565b60006020820190508181036000830152614703816146c7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614766603583613821565b91506147718261470a565b604082019050919050565b6000602082019050818103600083015261479581614759565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147d2601383613821565b91506147dd8261479c565b602082019050919050565b60006020820190508181036000830152614801816147c5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614864603683613821565b915061486f82614808565b604082019050919050565b6000602082019050818103600083015261489381614857565b9050919050565b60006148a5826137a0565b91506148b0836137a0565b9250828210156148c3576148c2613c9c565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061493b81613903565b92915050565b6000602082840312156149575761495661379b565b5b60006149658482850161492c565b91505092915050565b6000819050919050565b600061499361498e6149898461496e565b6139d2565b6137a0565b9050919050565b6149a381614978565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149de816138f1565b82525050565b60006149f083836149d5565b60208301905092915050565b6000602082019050919050565b6000614a14826149a9565b614a1e81856149b4565b9350614a29836149c5565b8060005b83811015614a5a578151614a4188826149e4565b9750614a4c836149fc565b925050600181019050614a2d565b5085935050505092915050565b600060a082019050614a7c6000830188613a4c565b614a89602083018761499a565b8181036040830152614a9b8186614a09565b9050614aaa6060830185613af6565b614ab76080830184613a4c565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b1d602683613821565b9150614b2882614ac1565b604082019050919050565b60006020820190508181036000830152614b4c81614b10565b9050919050565b6000606082019050614b686000830186613a4c565b614b756020830185613a4c565b614b826040830184613a4c565b949350505050565b600060c082019050614b9f6000830189613af6565b614bac6020830188613a4c565b614bb9604083018761499a565b614bc6606083018661499a565b614bd36080830185613af6565b614be060a0830184613a4c565b979650505050505050565b600081519050614bfa816137aa565b92915050565b600080600060608486031215614c1957614c1861379b565b5b6000614c2786828701614beb565b9350506020614c3886828701614beb565b9250506040614c4986828701614beb565b915050925092509256fea2646970667358221220ad3a2300538623485b42ea57aaf0f00752d66743396be5c791347a31d47f40c064736f6c634300080a0033000000000000000000000000cbd77b732e9426eb1b3eafd2055c9179722fcd9e

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80637571336a11610175578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610a9b578063f2fde38b14610ac6578063f637434214610aef578063f8b45b0514610b1a576102b9565b8063d85ba06314610a08578063dd62ed3e14610a33578063e2f4560514610a70576102b9565b8063b62496f5146108e6578063bbc0c74214610923578063c02466681461094e578063c18bc19514610977578063c8c8ebe4146109a0578063d257b34f146109cb576102b9565b8063924de9b71161012e578063924de9b7146107c657806395d89b41146107ef5780639a7a23d61461081a578063a457c2d714610843578063a9059cbb14610880578063aacebbe3146108bd576102b9565b80637571336a146106dc57806375f0a87414610705578063881dce60146107305780638a8c523c146107595780638da5cb5b14610770578063921369131461079b576102b9565b806327c8f835116102195780636a486a8e116101d25780636a486a8e146105f05780636ddd17131461061b5780636fc3eaec1461064657806370a082311461065d578063715018a61461069a578063751039fc146106b1576102b9565b806327c8f835146104de578063313ce56714610509578063395093511461053457806349bd5a5e146105715780634a62bb651461059c57806366ca9b83146105c7576102b9565b806318160ddd1161026b57806318160ddd146103ce5780631816467f146103f95780631a8145bb146104225780631f3fed8f1461044d578063203e727e1461047857806323b872dd146104a1576102b9565b806302dbd8f8146102be57806306fdde03146102e7578063095ea7b31461031257806310d5de531461034f57806312efbfb11461038c5780631694505e146103a3576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e091906137d6565b610b45565b005b3480156102f357600080fd5b506102fc610c30565b60405161030991906138af565b60405180910390f35b34801561031e57600080fd5b506103396004803603810190610334919061392f565b610cc2565b604051610346919061398a565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906139a5565b610ce0565b604051610383919061398a565b60405180910390f35b34801561039857600080fd5b506103a1610d00565b005b3480156103af57600080fd5b506103b8610df1565b6040516103c59190613a31565b60405180910390f35b3480156103da57600080fd5b506103e3610e15565b6040516103f09190613a5b565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b91906139a5565b610e1f565b005b34801561042e57600080fd5b50610437610f5b565b6040516104449190613a5b565b60405180910390f35b34801561045957600080fd5b50610462610f61565b60405161046f9190613a5b565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190613a76565b610f67565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613aa3565b611076565b6040516104d5919061398a565b60405180910390f35b3480156104ea57600080fd5b506104f361116e565b6040516105009190613b05565b60405180910390f35b34801561051557600080fd5b5061051e611174565b60405161052b9190613b3c565b60405180910390f35b34801561054057600080fd5b5061055b6004803603810190610556919061392f565b61117d565b604051610568919061398a565b60405180910390f35b34801561057d57600080fd5b50610586611229565b6040516105939190613b05565b60405180910390f35b3480156105a857600080fd5b506105b161124d565b6040516105be919061398a565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906137d6565b611260565b005b3480156105fc57600080fd5b5061060561134a565b6040516106129190613a5b565b60405180910390f35b34801561062757600080fd5b50610630611350565b60405161063d919061398a565b60405180910390f35b34801561065257600080fd5b5061065b611363565b005b34801561066957600080fd5b50610684600480360381019061067f91906139a5565b6113f6565b6040516106919190613a5b565b60405180910390f35b3480156106a657600080fd5b506106af61143e565b005b3480156106bd57600080fd5b506106c66114c6565b6040516106d3919061398a565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613b83565b611566565b005b34801561071157600080fd5b5061071a61163d565b6040516107279190613b05565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190613a76565b611663565b005b34801561076557600080fd5b5061076e6116c6565b005b34801561077c57600080fd5b506107856117c8565b6040516107929190613b05565b60405180910390f35b3480156107a757600080fd5b506107b06117f2565b6040516107bd9190613a5b565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190613bc3565b6117f8565b005b3480156107fb57600080fd5b50610804611891565b60405161081191906138af565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190613b83565b611923565b005b34801561084f57600080fd5b5061086a6004803603810190610865919061392f565b611a3c565b604051610877919061398a565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a2919061392f565b611b27565b6040516108b4919061398a565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df91906139a5565b611b45565b005b3480156108f257600080fd5b5061090d600480360381019061090891906139a5565b611c81565b60405161091a919061398a565b60405180910390f35b34801561092f57600080fd5b50610938611ca1565b604051610945919061398a565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190613b83565b611cb4565b005b34801561098357600080fd5b5061099e60048036038101906109999190613a76565b611dd9565b005b3480156109ac57600080fd5b506109b5611ee8565b6040516109c29190613a5b565b60405180910390f35b3480156109d757600080fd5b506109f260048036038101906109ed9190613a76565b611eee565b6040516109ff919061398a565b60405180910390f35b348015610a1457600080fd5b50610a1d612043565b604051610a2a9190613a5b565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a559190613bf0565b612049565b604051610a679190613a5b565b60405180910390f35b348015610a7c57600080fd5b50610a856120d0565b604051610a929190613a5b565b60405180910390f35b348015610aa757600080fd5b50610ab06120d6565b604051610abd9190613a5b565b60405180910390f35b348015610ad257600080fd5b50610aed6004803603810190610ae891906139a5565b6120dc565b005b348015610afb57600080fd5b50610b046121d4565b604051610b119190613a5b565b60405180910390f35b348015610b2657600080fd5b50610b2f6121da565b604051610b3c9190613a5b565b60405180910390f35b610b4d6121e0565b73ffffffffffffffffffffffffffffffffffffffff16610b6b6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890613c7c565b60405180910390fd5b8160118190555080601281905550601254601154610bdf9190613ccb565b60108190555061012c6010541115610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390613d6d565b60405180910390fd5b5050565b606060038054610c3f90613dbc565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6b90613dbc565b8015610cb85780601f10610c8d57610100808354040283529160200191610cb8565b820191906000526020600020905b815481529060010190602001808311610c9b57829003601f168201915b5050505050905090565b6000610cd6610ccf6121e0565b84846121e8565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b610d086121e0565b73ffffffffffffffffffffffffffffffffffffffff16610d266117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390613c7c565b60405180910390fd5b6b409f9cbc7c4a04c2200000006008819055506b409f9cbc7c4a04c220000000600a819055506046600e819055506000600f81905550600f54600e54610dc29190613ccb565b600d819055506103d46011819055506000601281905550601254601154610de99190613ccb565b601081905550565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e276121e0565b73ffffffffffffffffffffffffffffffffffffffff16610e456117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290613c7c565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b60135481565b610f6f6121e0565b73ffffffffffffffffffffffffffffffffffffffff16610f8d6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90613c7c565b60405180910390fd5b670de0b6b3a76400006103e86001610ff9610e15565b6110039190613dee565b61100d9190613e77565b6110179190613e77565b811015611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090613f1a565b60405180910390fd5b670de0b6b3a76400008161106d9190613dee565b60088190555050565b60006110838484846123b3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110ce6121e0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561114e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114590613fac565b60405180910390fd5b6111628561115a6121e0565b8584036121e8565b60019150509392505050565b61dead81565b60006012905090565b600061121f61118a6121e0565b8484600160006111986121e0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461121a9190613ccb565b6121e8565b6001905092915050565b7f000000000000000000000000b1037b76f4d9ffd08058dea51d593a096c01f6f981565b600b60009054906101000a900460ff1681565b6112686121e0565b73ffffffffffffffffffffffffffffffffffffffff166112866117c8565b73ffffffffffffffffffffffffffffffffffffffff16146112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390613c7c565b60405180910390fd5b81600e8190555080600f81905550600f54600e546112fa9190613ccb565b600d8190555060c8600d541115611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90614018565b60405180910390fd5b5050565b60105481565b600b60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113ab90614069565b60006040518083038185875af1925050503d80600081146113e8576040519150601f19603f3d011682016040523d82523d6000602084013e6113ed565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114466121e0565b73ffffffffffffffffffffffffffffffffffffffff166114646117c8565b73ffffffffffffffffffffffffffffffffffffffff16146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190613c7c565b60405180910390fd5b6114c46000612e21565b565b60006114d06121e0565b73ffffffffffffffffffffffffffffffffffffffff166114ee6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613c7c565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61156e6121e0565b73ffffffffffffffffffffffffffffffffffffffff1661158c6117c8565b73ffffffffffffffffffffffffffffffffffffffff16146115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990613c7c565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61166c306113f6565b811115801561167b5750600081115b6116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b1906140ca565b60405180910390fd5b6116c381612ee7565b50565b6116ce6121e0565b73ffffffffffffffffffffffffffffffffffffffff166116ec6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990613c7c565b60405180910390fd5b61037a600e819055506000600f81905550600f54600e546117639190613ccb565b600d81905550610190601181905550600060128190555060125460115461178a9190613ccb565b6010819055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6118006121e0565b73ffffffffffffffffffffffffffffffffffffffff1661181e6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90613c7c565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546118a090613dbc565b80601f01602080910402602001604051908101604052809291908181526020018280546118cc90613dbc565b80156119195780601f106118ee57610100808354040283529160200191611919565b820191906000526020600020905b8154815290600101906020018083116118fc57829003601f168201915b5050505050905090565b61192b6121e0565b73ffffffffffffffffffffffffffffffffffffffff166119496117c8565b73ffffffffffffffffffffffffffffffffffffffff161461199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690613c7c565b60405180910390fd5b7f000000000000000000000000b1037b76f4d9ffd08058dea51d593a096c01f6f973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a259061415c565b60405180910390fd5b611a388282613124565b5050565b60008060016000611a4b6121e0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff906141ee565b60405180910390fd5b611b1c611b136121e0565b858584036121e8565b600191505092915050565b6000611b3b611b346121e0565b84846123b3565b6001905092915050565b611b4d6121e0565b73ffffffffffffffffffffffffffffffffffffffff16611b6b6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890613c7c565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611cbc6121e0565b73ffffffffffffffffffffffffffffffffffffffff16611cda6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790613c7c565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611dcd919061398a565b60405180910390a25050565b611de16121e0565b73ffffffffffffffffffffffffffffffffffffffff16611dff6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4c90613c7c565b60405180910390fd5b670de0b6b3a76400006103e86005611e6b610e15565b611e759190613dee565b611e7f9190613e77565b611e899190613e77565b811015611ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec290614280565b60405180910390fd5b670de0b6b3a764000081611edf9190613dee565b600a8190555050565b60085481565b6000611ef86121e0565b73ffffffffffffffffffffffffffffffffffffffff16611f166117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6390613c7c565b60405180910390fd5b620186a06001611f7a610e15565b611f849190613dee565b611f8e9190613e77565b821015611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790614312565b60405180910390fd5b6103e86005611fdd610e15565b611fe79190613dee565b611ff19190613e77565b821115612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a906143a4565b60405180910390fd5b8160098190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600f5481565b6120e46121e0565b73ffffffffffffffffffffffffffffffffffffffff166121026117c8565b73ffffffffffffffffffffffffffffffffffffffff1614612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90613c7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf90614436565b60405180910390fd5b6121d181612e21565b50565b60125481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f906144c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf9061455a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123a69190613a5b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a906145ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a9061467e565b60405180910390fd5b60008114156124ad576124a8838360006131c5565b612e1c565b600b60009054906101000a900460ff16156129a8576124ca6117c8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561253857506125086117c8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125715750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125ab575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125c45750600560149054906101000a900460ff16155b156129a757600b60019054906101000a900460ff166126be57601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061267e5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6126bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b4906146ea565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127615750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612808576008548111156127ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a29061477c565b60405180910390fd5b600a546127b7836113f6565b826127c29190613ccb565b1115612803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fa906147e8565b60405180910390fd5b6129a6565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128ab5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128fa576008548111156128f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ec9061487a565b60405180910390fd5b6129a5565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129a457600a54612957836113f6565b826129629190613ccb565b11156129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a906147e8565b60405180910390fd5b5b5b5b5b5b60006129b3306113f6565b9050600060095482101590508080156129d85750600b60029054906101000a900460ff165b80156129f15750600560149054906101000a900460ff16155b8015612a475750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a9d5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612af35750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b37576001600560146101000a81548160ff021916908315150217905550612b1b613446565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bed5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612bf757600090505b60008115612e0c57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c5a57506000601054115b15612cf557612c886103e8612c7a6010548861365390919063ffffffff16565b61366990919063ffffffff16565b905060105460125482612c9b9190613dee565b612ca59190613e77565b60146000828254612cb69190613ccb565b9250508190555060105460115482612cce9190613dee565b612cd89190613e77565b60136000828254612ce99190613ccb565b92505081905550612de8565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d5057506000600d54115b15612de757612d7e6103e8612d70600d548861365390919063ffffffff16565b61366990919063ffffffff16565b9050600d54600f5482612d919190613dee565b612d9b9190613e77565b60146000828254612dac9190613ccb565b92505081905550600d54600e5482612dc49190613dee565b612dce9190613e77565b60136000828254612ddf9190613ccb565b925050819055505b5b6000811115612dfd57612dfc8730836131c5565b5b8085612e09919061489a565b94505b612e178787876131c5565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612f0457612f036148ce565b5b604051908082528060200260200182016040528015612f325781602001602082028036833780820191505090505b5090503081600081518110612f4a57612f496148fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130139190614941565b81600181518110613027576130266148fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061308c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121e8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016130ee959493929190614a67565b600060405180830381600087803b15801561310857600080fd5b505af115801561311c573d6000803e3d6000fd5b505050505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322c906145ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329c9061467e565b60405180910390fd5b6132b083838361367f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332d90614b33565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133c99190613ccb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161342d9190613a5b565b60405180910390a3613440848484613684565b50505050565b6000613451306113f6565b905060006013546014546134659190613ccb565b90506000808314806134775750600082145b1561348457505050613651565b60146009546134939190613dee565b8311156134ac5760146009546134a99190613dee565b92505b6000600283601454866134bf9190613dee565b6134c99190613e77565b6134d39190613e77565b905060006134ea828661368990919063ffffffff16565b905060004790506134fa82612ee7565b600061350f824761368990919063ffffffff16565b9050600061353a8761352c6013548561365390919063ffffffff16565b61366990919063ffffffff16565b90506000818361354a919061489a565b90506000601481905550600060138190555060008611801561356c5750600081115b156135b95761357b868261369f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826014546040516135b093929190614b53565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135ff90614069565b60006040518083038185875af1925050503d806000811461363c576040519150601f19603f3d011682016040523d82523d6000602084013e613641565b606091505b5050809750505050505050505050505b565b600081836136619190613dee565b905092915050565b600081836136779190613e77565b905092915050565b505050565b505050565b60008183613697919061489a565b905092915050565b6136ca307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121e8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161375196959493929190614b8a565b60606040518083038185885af115801561376f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137949190614c00565b5050505050565b600080fd5b6000819050919050565b6137b3816137a0565b81146137be57600080fd5b50565b6000813590506137d0816137aa565b92915050565b600080604083850312156137ed576137ec61379b565b5b60006137fb858286016137c1565b925050602061380c858286016137c1565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613850578082015181840152602081019050613835565b8381111561385f576000848401525b50505050565b6000601f19601f8301169050919050565b600061388182613816565b61388b8185613821565b935061389b818560208601613832565b6138a481613865565b840191505092915050565b600060208201905081810360008301526138c98184613876565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138fc826138d1565b9050919050565b61390c816138f1565b811461391757600080fd5b50565b60008135905061392981613903565b92915050565b600080604083850312156139465761394561379b565b5b60006139548582860161391a565b9250506020613965858286016137c1565b9150509250929050565b60008115159050919050565b6139848161396f565b82525050565b600060208201905061399f600083018461397b565b92915050565b6000602082840312156139bb576139ba61379b565b5b60006139c98482850161391a565b91505092915050565b6000819050919050565b60006139f76139f26139ed846138d1565b6139d2565b6138d1565b9050919050565b6000613a09826139dc565b9050919050565b6000613a1b826139fe565b9050919050565b613a2b81613a10565b82525050565b6000602082019050613a466000830184613a22565b92915050565b613a55816137a0565b82525050565b6000602082019050613a706000830184613a4c565b92915050565b600060208284031215613a8c57613a8b61379b565b5b6000613a9a848285016137c1565b91505092915050565b600080600060608486031215613abc57613abb61379b565b5b6000613aca8682870161391a565b9350506020613adb8682870161391a565b9250506040613aec868287016137c1565b9150509250925092565b613aff816138f1565b82525050565b6000602082019050613b1a6000830184613af6565b92915050565b600060ff82169050919050565b613b3681613b20565b82525050565b6000602082019050613b516000830184613b2d565b92915050565b613b608161396f565b8114613b6b57600080fd5b50565b600081359050613b7d81613b57565b92915050565b60008060408385031215613b9a57613b9961379b565b5b6000613ba88582860161391a565b9250506020613bb985828601613b6e565b9150509250929050565b600060208284031215613bd957613bd861379b565b5b6000613be784828501613b6e565b91505092915050565b60008060408385031215613c0757613c0661379b565b5b6000613c158582860161391a565b9250506020613c268582860161391a565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c66602083613821565b9150613c7182613c30565b602082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cd6826137a0565b9150613ce1836137a0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1657613d15613c9c565b5b828201905092915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613d57601d83613821565b9150613d6282613d21565b602082019050919050565b60006020820190508181036000830152613d8681613d4a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613dd457607f821691505b60208210811415613de857613de7613d8d565b5b50919050565b6000613df9826137a0565b9150613e04836137a0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e3d57613e3c613c9c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e82826137a0565b9150613e8d836137a0565b925082613e9d57613e9c613e48565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613f04602f83613821565b9150613f0f82613ea8565b604082019050919050565b60006020820190508181036000830152613f3381613ef7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613f96602883613821565b9150613fa182613f3a565b604082019050919050565b60006020820190508181036000830152613fc581613f89565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614002601d83613821565b915061400d82613fcc565b602082019050919050565b6000602082019050818103600083015261403181613ff5565b9050919050565b600081905092915050565b50565b6000614053600083614038565b915061405e82614043565b600082019050919050565b600061407482614046565b9150819050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b60006140b4600c83613821565b91506140bf8261407e565b602082019050919050565b600060208201905081810360008301526140e3816140a7565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614146603983613821565b9150614151826140ea565b604082019050919050565b6000602082019050818103600083015261417581614139565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141d8602583613821565b91506141e38261417c565b604082019050919050565b60006020820190508181036000830152614207816141cb565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061426a602483613821565b91506142758261420e565b604082019050919050565b600060208201905081810360008301526142998161425d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006142fc603583613821565b9150614307826142a0565b604082019050919050565b6000602082019050818103600083015261432b816142ef565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061438e603483613821565b915061439982614332565b604082019050919050565b600060208201905081810360008301526143bd81614381565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614420602683613821565b915061442b826143c4565b604082019050919050565b6000602082019050818103600083015261444f81614413565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144b2602483613821565b91506144bd82614456565b604082019050919050565b600060208201905081810360008301526144e1816144a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614544602283613821565b915061454f826144e8565b604082019050919050565b6000602082019050818103600083015261457381614537565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145d6602583613821565b91506145e18261457a565b604082019050919050565b60006020820190508181036000830152614605816145c9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614668602383613821565b91506146738261460c565b604082019050919050565b600060208201905081810360008301526146978161465b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146d4601683613821565b91506146df8261469e565b602082019050919050565b60006020820190508181036000830152614703816146c7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614766603583613821565b91506147718261470a565b604082019050919050565b6000602082019050818103600083015261479581614759565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147d2601383613821565b91506147dd8261479c565b602082019050919050565b60006020820190508181036000830152614801816147c5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614864603683613821565b915061486f82614808565b604082019050919050565b6000602082019050818103600083015261489381614857565b9050919050565b60006148a5826137a0565b91506148b0836137a0565b9250828210156148c3576148c2613c9c565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061493b81613903565b92915050565b6000602082840312156149575761495661379b565b5b60006149658482850161492c565b91505092915050565b6000819050919050565b600061499361498e6149898461496e565b6139d2565b6137a0565b9050919050565b6149a381614978565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149de816138f1565b82525050565b60006149f083836149d5565b60208301905092915050565b6000602082019050919050565b6000614a14826149a9565b614a1e81856149b4565b9350614a29836149c5565b8060005b83811015614a5a578151614a4188826149e4565b9750614a4c836149fc565b925050600181019050614a2d565b5085935050505092915050565b600060a082019050614a7c6000830188613a4c565b614a89602083018761499a565b8181036040830152614a9b8186614a09565b9050614aaa6060830185613af6565b614ab76080830184613a4c565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b1d602683613821565b9150614b2882614ac1565b604082019050919050565b60006020820190508181036000830152614b4c81614b10565b9050919050565b6000606082019050614b686000830186613a4c565b614b756020830185613a4c565b614b826040830184613a4c565b949350505050565b600060c082019050614b9f6000830189613af6565b614bac6020830188613a4c565b614bb9604083018761499a565b614bc6606083018661499a565b614bd36080830185613af6565b614be060a0830184613a4c565b979650505050505050565b600081519050614bfa816137aa565b92915050565b600080600060608486031215614c1957614c1861379b565b5b6000614c2786828701614beb565b9350506020614c3886828701614beb565b9250506040614c4986828701614beb565b915050925092509256fea2646970667358221220ad3a2300538623485b42ea57aaf0f00752d66743396be5c791347a31d47f40c064736f6c634300080a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000cbd77b732e9426eb1b3eafd2055c9179722fcd9e

-----Decoded View---------------
Arg [0] : wallet1 (address): 0xcBD77B732e9426eb1B3EAFd2055c9179722FCD9E

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000cbd77b732e9426eb1b3eafd2055c9179722fcd9e


Deployed Bytecode Sourcemap

32767:15233:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39306:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9562:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11729:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33972:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40027:377;;;;;;;;;;;;;:::i;:::-;;32845:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10682:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41341:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33790:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33750;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38044:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12380:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32948:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10524:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13281:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32903:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33226:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38962:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33637:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33306:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40412:174;;;;;;;;;;;;;:::i;:::-;;10853:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2797:103;;;;;;;;;;;;;:::i;:::-;;37346:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38591:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33040:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39847:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36933:361;;;;;;;;;;;;;:::i;:::-;;2146:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33672:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38854:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9781:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40594:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13999:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11193:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41102:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34193:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33266:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39657:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38327:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33111:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37539:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33526:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11431:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33153:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33598:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3055:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33710:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33193:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39306:343;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39450:13:::1;39431:16;:32;;;;39493:13;39474:16;:32;;;;39552:16;;39533;;:35;;;;:::i;:::-;39517:13;:51;;;;39604:3;39587:13;;:20;;39579:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;39306:343:::0;;:::o;9562:100::-;9616:13;9649:5;9642:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9562:100;:::o;11729:169::-;11812:4;11829:39;11838:12;:10;:12::i;:::-;11852:7;11861:6;11829:8;:39::i;:::-;11886:4;11879:11;;11729:169;;;;:::o;33972:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;40027:377::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40099:18:::1;40076:20;:41;;;;40138:18;40126:9;:30;;;;40185:2;40167:15;:20;;;;40214:1;40196:15;:19;;;;40257:15;;40239;;:33;;;;:::i;:::-;40224:12;:48;;;;40302:3;40283:16;:22;;;;40333:1;40314:16;:20;;;;40378:16;;40359;;:35;;;;:::i;:::-;40343:13;:51;;;;40027:377::o:0;32845:51::-;;;:::o;10682:108::-;10743:7;10770:12;;10763:19;;10682:108;:::o;41341:195::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41483:9:::1;;;;;;;;;;;41446:47;;41469:12;41446:47;;;;;;;;;;;;41516:12;41504:9;;:24;;;;;;;;;;;;;;;;;;41341:195:::0;:::o;33790:33::-;;;;:::o;33750:::-;;;;:::o;38044:275::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38181:4:::1;38173;38168:1;38152:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38151:26;;;;:::i;:::-;38150:35;;;;:::i;:::-;38140:6;:45;;38118:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38304:6;38294;:17;;;;:::i;:::-;38271:20;:40;;;;38044:275:::0;:::o;12380:492::-;12520:4;12537:36;12547:6;12555:9;12566:6;12537:9;:36::i;:::-;12586:24;12613:11;:19;12625:6;12613:19;;;;;;;;;;;;;;;:33;12633:12;:10;:12::i;:::-;12613:33;;;;;;;;;;;;;;;;12586:60;;12685:6;12665:16;:26;;12657:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12772:57;12781:6;12789:12;:10;:12::i;:::-;12822:6;12803:16;:25;12772:8;:57::i;:::-;12860:4;12853:11;;;12380:492;;;;;:::o;32948:53::-;32994:6;32948:53;:::o;10524:93::-;10582:5;10607:2;10600:9;;10524:93;:::o;13281:215::-;13369:4;13386:80;13395:12;:10;:12::i;:::-;13409:7;13455:10;13418:11;:25;13430:12;:10;:12::i;:::-;13418:25;;;;;;;;;;;;;;;:34;13444:7;13418:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13386:8;:80::i;:::-;13484:4;13477:11;;13281:215;;;;:::o;32903:38::-;;;:::o;33226:33::-;;;;;;;;;;;;;:::o;38962:336::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39104:13:::1;39086:15;:31;;;;39146:13;39128:15;:31;;;;39203:15;;39185;;:33;;;;:::i;:::-;39170:12;:48;;;;39253:3;39237:12;;:19;;39229:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38962:336:::0;;:::o;33637:28::-;;;;:::o;33306:31::-;;;;;;;;;;;;;:::o;40412:174::-;40454:12;40499:15;;;;;;;;;;;40491:29;;40542:21;40491:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40477:101;;;;;40443:143;40412:174::o;10853:127::-;10927:7;10954:9;:18;10964:7;10954:18;;;;;;;;;;;;;;;;10947:25;;10853:127;;;:::o;2797:103::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2862:30:::1;2889:1;2862:18;:30::i;:::-;2797:103::o:0;37346:121::-;37398:4;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37432:5:::1;37415:14;;:22;;;;;;;;;;;;;;;;;;37455:4;37448:11;;37346:121:::0;:::o;38591:167::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38746:4:::1;38704:31;:39;38736:6;38704:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38591:167:::0;;:::o;33040:30::-;;;;;;;;;;;;;:::o;39847:172::-;39921:24;39939:4;39921:9;:24::i;:::-;39911:6;:34;;:48;;;;;39958:1;39949:6;:10;39911:48;39903:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39987:24;40004:6;39987:16;:24::i;:::-;39847:172;:::o;36933:361::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37008:3:::1;36990:15;:21;;;;37040:1;37022:15;:19;;;;37085:15;;37067;;:33;;;;:::i;:::-;37052:12;:48;;;;37130:3;37111:16;:22;;;;37163:1;37144:16;:20;;;;37210:16;;37191;;:35;;;;:::i;:::-;37175:13;:51;;;;37253:4;37237:13;;:20;;;;;;;;;;;;;;;;;;37282:4;37268:11;;:18;;;;;;;;;;;;;;;;;;36933:361::o:0;2146:87::-;2192:7;2219:6;;;;;;;;;;;2212:13;;2146:87;:::o;33672:31::-;;;;:::o;38854:100::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38939:7:::1;38925:11;;:21;;;;;;;;;;;;;;;;;;38854:100:::0;:::o;9781:104::-;9837:13;9870:7;9863:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9781:104;:::o;40594:304::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40738:13:::1;40730:21;;:4;:21;;;;40708:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40849:41;40878:4;40884:5;40849:28;:41::i;:::-;40594:304:::0;;:::o;13999:413::-;14092:4;14109:24;14136:11;:25;14148:12;:10;:12::i;:::-;14136:25;;;;;;;;;;;;;;;:34;14162:7;14136:34;;;;;;;;;;;;;;;;14109:61;;14209:15;14189:16;:35;;14181:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14302:67;14311:12;:10;:12::i;:::-;14325:7;14353:15;14334:16;:34;14302:8;:67::i;:::-;14400:4;14393:11;;;13999:413;;;;:::o;11193:175::-;11279:4;11296:42;11306:12;:10;:12::i;:::-;11320:9;11331:6;11296:9;:42::i;:::-;11356:4;11349:11;;11193:175;;;;:::o;41102:231::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41262:15:::1;;;;;;;;;;;41219:59;;41242:18;41219:59;;;;;;;;;;;;41307:18;41289:15;;:36;;;;;;;;;;;;;;;;;;41102:231:::0;:::o;34193:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33266:33::-;;;;;;;;;;;;;:::o;39657:182::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39773:8:::1;39742:19;:28;39762:7;39742:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39813:7;39797:34;;;39822:8;39797:34;;;;;;:::i;:::-;;;;;;;;39657:182:::0;;:::o;38327:256::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38467:4:::1;38459;38454:1;38438:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38437:26;;;;:::i;:::-;38436:35;;;;:::i;:::-;38426:6;:45;;38404:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38568:6;38558;:17;;;;:::i;:::-;38546:9;:29;;;;38327:256:::0;:::o;33111:35::-;;;;:::o;37539:497::-;37647:4;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37726:6:::1;37721:1;37705:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37704:28;;;;:::i;:::-;37691:9;:41;;37669:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37881:4;37876:1;37860:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37859:26;;;;:::i;:::-;37846:9;:39;;37824:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37997:9;37976:18;:30;;;;38024:4;38017:11;;37539:497:::0;;;:::o;33526:27::-;;;;:::o;11431:151::-;11520:7;11547:11;:18;11559:5;11547:18;;;;;;;;;;;;;;;:27;11566:7;11547:27;;;;;;;;;;;;;;;;11540:34;;11431:151;;;;:::o;33153:33::-;;;;:::o;33598:30::-;;;;:::o;3055:201::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3164:1:::1;3144:22;;:8;:22;;;;3136:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3220:28;3239:8;3220:18;:28::i;:::-;3055:201:::0;:::o;33710:31::-;;;;:::o;33193:24::-;;;;:::o;819:98::-;872:7;899:10;892:17;;819:98;:::o;17683:380::-;17836:1;17819:19;;:5;:19;;;;17811:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17917:1;17898:21;;:7;:21;;;;17890:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18001:6;17971:11;:18;17983:5;17971:18;;;;;;;;;;;;;;;:27;17990:7;17971:27;;;;;;;;;;;;;;;:36;;;;18039:7;18023:32;;18032:5;18023:32;;;18048:6;18023:32;;;;;;:::i;:::-;;;;;;;;17683:380;;;:::o;41544:3788::-;41692:1;41676:18;;:4;:18;;;;41668:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41769:1;41755:16;;:2;:16;;;;41747:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41838:1;41828:6;:11;41824:93;;;41856:28;41872:4;41878:2;41882:1;41856:15;:28::i;:::-;41899:7;;41824:93;41933:14;;;;;;;;;;;41929:1694;;;41994:7;:5;:7::i;:::-;41986:15;;:4;:15;;;;:49;;;;;42028:7;:5;:7::i;:::-;42022:13;;:2;:13;;;;41986:49;:86;;;;;42070:1;42056:16;;:2;:16;;;;41986:86;:128;;;;;42107:6;42093:21;;:2;:21;;;;41986:128;:158;;;;;42136:8;;;;;;;;;;;42135:9;41986:158;41964:1648;;;42184:13;;;;;;;;;;;42179:223;;42256:19;:25;42276:4;42256:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42285:19;:23;42305:2;42285:23;;;;;;;;;;;;;;;;;;;;;;;;;42256:52;42222:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42179:223;42476:25;:31;42502:4;42476:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42533:31;:35;42565:2;42533:35;;;;;;;;;;;;;;;;;;;;;;;;;42532:36;42476:92;42450:1147;;;42655:20;;42645:6;:30;;42611:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;42863:9;;42846:13;42856:2;42846:9;:13::i;:::-;42837:6;:22;;;;:::i;:::-;:35;;42803:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42450:1147;;;43041:25;:29;43067:2;43041:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43096:31;:37;43128:4;43096:37;;;;;;;;;;;;;;;;;;;;;;;;;43095:38;43041:92;43015:582;;;43220:20;;43210:6;:30;;43176:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43015:582;;;43377:31;:35;43409:2;43377:35;;;;;;;;;;;;;;;;;;;;;;;;;43372:225;;43497:9;;43480:13;43490:2;43480:9;:13::i;:::-;43471:6;:22;;;;:::i;:::-;:35;;43437:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43372:225;43015:582;42450:1147;41964:1648;41929:1694;43635:28;43666:24;43684:4;43666:9;:24::i;:::-;43635:55;;43703:12;43742:18;;43718:20;:42;;43703:57;;43791:7;:35;;;;;43815:11;;;;;;;;;;;43791:35;:61;;;;;43844:8;;;;;;;;;;;43843:9;43791:61;:110;;;;;43870:25;:31;43896:4;43870:31;;;;;;;;;;;;;;;;;;;;;;;;;43869:32;43791:110;:153;;;;;43919:19;:25;43939:4;43919:25;;;;;;;;;;;;;;;;;;;;;;;;;43918:26;43791:153;:194;;;;;43962:19;:23;43982:2;43962:23;;;;;;;;;;;;;;;;;;;;;;;;;43961:24;43791:194;43773:326;;;44023:4;44012:8;;:15;;;;;;;;;;;;;;;;;;44044:10;:8;:10::i;:::-;44082:5;44071:8;;:16;;;;;;;;;;;;;;;;;;43773:326;44111:12;44127:8;;;;;;;;;;;44126:9;44111:24;;44237:19;:25;44257:4;44237:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44266:19;:23;44286:2;44266:23;;;;;;;;;;;;;;;;;;;;;;;;;44237:52;44233:100;;;44316:5;44306:15;;44233:100;44345:12;44450:7;44446:833;;;44502:25;:29;44528:2;44502:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44551:1;44535:13;;:17;44502:50;44498:632;;;44580:35;44610:4;44580:25;44591:13;;44580:6;:10;;:25;;;;:::i;:::-;:29;;:35;;;;:::i;:::-;44573:42;;44684:13;;44664:16;;44657:4;:23;;;;:::i;:::-;44656:41;;;;:::i;:::-;44634:18;;:63;;;;;;;:::i;:::-;;;;;;;;44766:13;;44746:16;;44739:4;:23;;;;:::i;:::-;44738:41;;;;:::i;:::-;44716:18;;:63;;;;;;;:::i;:::-;;;;;;;;44498:632;;;44841:25;:31;44867:4;44841:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;44891:1;44876:12;;:16;44841:51;44837:293;;;44920:34;44949:4;44920:24;44931:12;;44920:6;:10;;:24;;;;:::i;:::-;:28;;:34;;;;:::i;:::-;44913:41;;45022:12;;45003:15;;44996:4;:22;;;;:::i;:::-;44995:39;;;;:::i;:::-;44973:18;;:61;;;;;;;:::i;:::-;;;;;;;;45102:12;;45083:15;;45076:4;:22;;;;:::i;:::-;45075:39;;;;:::i;:::-;45053:18;;:61;;;;;;;:::i;:::-;;;;;;;;44837:293;44498:632;45157:1;45150:4;:8;45146:91;;;45179:42;45195:4;45209;45216;45179:15;:42::i;:::-;45146:91;45263:4;45253:14;;;;;:::i;:::-;;;44446:833;45291:33;45307:4;45313:2;45317:6;45291:15;:33::i;:::-;41657:3675;;;;41544:3788;;;;:::o;3416:191::-;3490:16;3509:6;;;;;;;;;;;3490:25;;3535:8;3526:6;;:17;;;;;;;;;;;;;;;;;;3590:8;3559:40;;3580:8;3559:40;;;;;;;;;;;;3479:128;3416:191;:::o;45340:589::-;45466:21;45504:1;45490:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45466:40;;45535:4;45517;45522:1;45517:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45561:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45551:4;45556:1;45551:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;45596:62;45613:4;45628:15;45646:11;45596:8;:62::i;:::-;45697:15;:66;;;45778:11;45804:1;45848:4;45875;45895:15;45697:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45395:534;45340:589;:::o;40906:188::-;41023:5;40989:25;:31;41015:4;40989:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41080:5;41046:40;;41074:4;41046:40;;;;;;;;;;;;40906:188;;:::o;14902:733::-;15060:1;15042:20;;:6;:20;;;;15034:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15144:1;15123:23;;:9;:23;;;;15115:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15199:47;15220:6;15228:9;15239:6;15199:20;:47::i;:::-;15259:21;15283:9;:17;15293:6;15283:17;;;;;;;;;;;;;;;;15259:41;;15336:6;15319:13;:23;;15311:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15457:6;15441:13;:22;15421:9;:17;15431:6;15421:17;;;;;;;;;;;;;;;:42;;;;15509:6;15485:9;:20;15495:9;15485:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15550:9;15533:35;;15542:6;15533:35;;;15561:6;15533:35;;;;;;:::i;:::-;;;;;;;;15581:46;15601:6;15609:9;15620:6;15581:19;:46::i;:::-;15023:612;14902:733;;;:::o;46460:1535::-;46499:23;46525:24;46543:4;46525:9;:24::i;:::-;46499:50;;46560:25;46622:18;;46588;;:52;;;;:::i;:::-;46560:80;;46651:12;46699:1;46680:15;:20;:46;;;;46725:1;46704:17;:22;46680:46;46676:85;;;46743:7;;;;;46676:85;46816:2;46795:18;;:23;;;;:::i;:::-;46777:15;:41;46773:115;;;46874:2;46853:18;;:23;;;;:::i;:::-;46835:41;;46773:115;46949:23;47062:1;47029:17;46994:18;;46976:15;:36;;;;:::i;:::-;46975:71;;;;:::i;:::-;:88;;;;:::i;:::-;46949:114;;47074:26;47103:36;47123:15;47103;:19;;:36;;;;:::i;:::-;47074:65;;47152:25;47180:21;47152:49;;47214:36;47231:18;47214:16;:36::i;:::-;47263:18;47284:44;47310:17;47284:21;:25;;:44;;;;:::i;:::-;47263:65;;47341:23;47367:81;47420:17;47367:34;47382:18;;47367:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;47341:107;;47461:23;47500:15;47487:10;:28;;;;:::i;:::-;47461:54;;47549:1;47528:18;:22;;;;47582:1;47561:18;:22;;;;47618:1;47600:15;:19;:42;;;;;47641:1;47623:15;:19;47600:42;47596:278;;;47659:46;47672:15;47689;47659:12;:46::i;:::-;47725:137;47758:18;47795:15;47829:18;;47725:137;;;;;;;;:::i;:::-;;;;;;;;47596:278;47908:15;;;;;;;;;;;47900:29;;47951:21;47900:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47886:101;;;;;46488:1507;;;;;;;;;46460:1535;:::o;23136:98::-;23194:7;23225:1;23221;:5;;;;:::i;:::-;23214:12;;23136:98;;;;:::o;23535:::-;23593:7;23624:1;23620;:5;;;;:::i;:::-;23613:12;;23535:98;;;;:::o;18663:125::-;;;;:::o;19392:124::-;;;;:::o;22779:98::-;22837:7;22868:1;22864;:5;;;;:::i;:::-;22857:12;;22779:98;;;;:::o;45937:515::-;46085:62;46102:4;46117:15;46135:11;46085:8;:62::i;:::-;46190:15;:31;;;46229:9;46262:4;46282:11;46308:1;46351;46394:9;;;;;;;;;;;46418:15;46190:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45937:515;;:::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:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:323::-;8172:6;8221:2;8209:9;8200:7;8196:23;8192:32;8189:119;;;8227:79;;:::i;:::-;8189:119;8347:1;8372:50;8414:7;8405:6;8394:9;8390:22;8372:50;:::i;:::-;8362:60;;8318:114;8116:323;;;;:::o;8445:474::-;8513:6;8521;8570:2;8558:9;8549:7;8545:23;8541:32;8538:119;;;8576:79;;:::i;:::-;8538:119;8696:1;8721:53;8766:7;8757:6;8746:9;8742:22;8721:53;:::i;:::-;8711:63;;8667:117;8823:2;8849:53;8894:7;8885:6;8874:9;8870:22;8849:53;:::i;:::-;8839:63;;8794:118;8445:474;;;;;:::o;8925:182::-;9065:34;9061:1;9053:6;9049:14;9042:58;8925:182;:::o;9113:366::-;9255:3;9276:67;9340:2;9335:3;9276:67;:::i;:::-;9269:74;;9352:93;9441:3;9352:93;:::i;:::-;9470:2;9465:3;9461:12;9454:19;;9113:366;;;:::o;9485:419::-;9651:4;9689:2;9678:9;9674:18;9666:26;;9738:9;9732:4;9728:20;9724:1;9713:9;9709:17;9702:47;9766:131;9892:4;9766:131;:::i;:::-;9758:139;;9485:419;;;:::o;9910:180::-;9958:77;9955:1;9948:88;10055:4;10052:1;10045:15;10079:4;10076:1;10069:15;10096:305;10136:3;10155:20;10173:1;10155:20;:::i;:::-;10150:25;;10189:20;10207:1;10189:20;:::i;:::-;10184:25;;10343:1;10275:66;10271:74;10268:1;10265:81;10262:107;;;10349:18;;:::i;:::-;10262:107;10393:1;10390;10386:9;10379:16;;10096:305;;;;:::o;10407:179::-;10547:31;10543:1;10535:6;10531:14;10524:55;10407:179;:::o;10592:366::-;10734:3;10755:67;10819:2;10814:3;10755:67;:::i;:::-;10748:74;;10831:93;10920:3;10831:93;:::i;:::-;10949:2;10944:3;10940:12;10933:19;;10592:366;;;:::o;10964:419::-;11130:4;11168:2;11157:9;11153:18;11145:26;;11217:9;11211:4;11207:20;11203:1;11192:9;11188:17;11181:47;11245:131;11371:4;11245:131;:::i;:::-;11237:139;;10964:419;;;:::o;11389:180::-;11437:77;11434:1;11427:88;11534:4;11531:1;11524:15;11558:4;11555:1;11548:15;11575:320;11619:6;11656:1;11650:4;11646:12;11636:22;;11703:1;11697:4;11693:12;11724:18;11714:81;;11780:4;11772:6;11768:17;11758:27;;11714:81;11842:2;11834:6;11831:14;11811:18;11808:38;11805:84;;;11861:18;;:::i;:::-;11805:84;11626:269;11575:320;;;:::o;11901:348::-;11941:7;11964:20;11982:1;11964:20;:::i;:::-;11959:25;;11998:20;12016:1;11998:20;:::i;:::-;11993:25;;12186:1;12118:66;12114:74;12111:1;12108:81;12103:1;12096:9;12089:17;12085:105;12082:131;;;12193:18;;:::i;:::-;12082:131;12241:1;12238;12234:9;12223:20;;11901:348;;;;:::o;12255:180::-;12303:77;12300:1;12293:88;12400:4;12397:1;12390:15;12424:4;12421:1;12414:15;12441:185;12481:1;12498:20;12516:1;12498:20;:::i;:::-;12493:25;;12532:20;12550:1;12532:20;:::i;:::-;12527:25;;12571:1;12561:35;;12576:18;;:::i;:::-;12561:35;12618:1;12615;12611:9;12606:14;;12441:185;;;;:::o;12632:234::-;12772:34;12768:1;12760:6;12756:14;12749:58;12841:17;12836:2;12828:6;12824:15;12817:42;12632:234;:::o;12872:366::-;13014:3;13035:67;13099:2;13094:3;13035:67;:::i;:::-;13028:74;;13111:93;13200:3;13111:93;:::i;:::-;13229:2;13224:3;13220:12;13213:19;;12872:366;;;:::o;13244:419::-;13410:4;13448:2;13437:9;13433:18;13425:26;;13497:9;13491:4;13487:20;13483:1;13472:9;13468:17;13461:47;13525:131;13651:4;13525:131;:::i;:::-;13517:139;;13244:419;;;:::o;13669:227::-;13809:34;13805:1;13797:6;13793:14;13786:58;13878:10;13873:2;13865:6;13861:15;13854:35;13669:227;:::o;13902:366::-;14044:3;14065:67;14129:2;14124:3;14065:67;:::i;:::-;14058:74;;14141:93;14230:3;14141:93;:::i;:::-;14259:2;14254:3;14250:12;14243:19;;13902:366;;;:::o;14274:419::-;14440:4;14478:2;14467:9;14463:18;14455:26;;14527:9;14521:4;14517:20;14513:1;14502:9;14498:17;14491:47;14555:131;14681:4;14555:131;:::i;:::-;14547:139;;14274:419;;;:::o;14699:179::-;14839:31;14835:1;14827:6;14823:14;14816:55;14699:179;:::o;14884:366::-;15026:3;15047:67;15111:2;15106:3;15047:67;:::i;:::-;15040:74;;15123:93;15212:3;15123:93;:::i;:::-;15241:2;15236:3;15232:12;15225:19;;14884:366;;;:::o;15256:419::-;15422:4;15460:2;15449:9;15445:18;15437:26;;15509:9;15503:4;15499:20;15495:1;15484:9;15480:17;15473:47;15537:131;15663:4;15537:131;:::i;:::-;15529:139;;15256:419;;;:::o;15681:147::-;15782:11;15819:3;15804:18;;15681:147;;;;:::o;15834:114::-;;:::o;15954:398::-;16113:3;16134:83;16215:1;16210:3;16134:83;:::i;:::-;16127:90;;16226:93;16315:3;16226:93;:::i;:::-;16344:1;16339:3;16335:11;16328:18;;15954:398;;;:::o;16358:379::-;16542:3;16564:147;16707:3;16564:147;:::i;:::-;16557:154;;16728:3;16721:10;;16358:379;;;:::o;16743:162::-;16883:14;16879:1;16871:6;16867:14;16860:38;16743:162;:::o;16911:366::-;17053:3;17074:67;17138:2;17133:3;17074:67;:::i;:::-;17067:74;;17150:93;17239:3;17150:93;:::i;:::-;17268:2;17263:3;17259:12;17252:19;;16911:366;;;:::o;17283:419::-;17449:4;17487:2;17476:9;17472:18;17464:26;;17536:9;17530:4;17526:20;17522:1;17511:9;17507:17;17500:47;17564:131;17690:4;17564:131;:::i;:::-;17556:139;;17283:419;;;:::o;17708:244::-;17848:34;17844:1;17836:6;17832:14;17825:58;17917:27;17912:2;17904:6;17900:15;17893:52;17708:244;:::o;17958:366::-;18100:3;18121:67;18185:2;18180:3;18121:67;:::i;:::-;18114:74;;18197:93;18286:3;18197:93;:::i;:::-;18315:2;18310:3;18306:12;18299:19;;17958:366;;;:::o;18330:419::-;18496:4;18534:2;18523:9;18519:18;18511:26;;18583:9;18577:4;18573:20;18569:1;18558:9;18554:17;18547:47;18611:131;18737:4;18611:131;:::i;:::-;18603:139;;18330:419;;;:::o;18755:224::-;18895:34;18891:1;18883:6;18879:14;18872:58;18964:7;18959:2;18951:6;18947:15;18940:32;18755:224;:::o;18985:366::-;19127:3;19148:67;19212:2;19207:3;19148:67;:::i;:::-;19141:74;;19224:93;19313:3;19224:93;:::i;:::-;19342:2;19337:3;19333:12;19326:19;;18985:366;;;:::o;19357:419::-;19523:4;19561:2;19550:9;19546:18;19538:26;;19610:9;19604:4;19600:20;19596:1;19585:9;19581:17;19574:47;19638:131;19764:4;19638:131;:::i;:::-;19630:139;;19357:419;;;:::o;19782:223::-;19922:34;19918:1;19910:6;19906:14;19899:58;19991:6;19986:2;19978:6;19974:15;19967:31;19782:223;:::o;20011:366::-;20153:3;20174:67;20238:2;20233:3;20174:67;:::i;:::-;20167:74;;20250:93;20339:3;20250:93;:::i;:::-;20368:2;20363:3;20359:12;20352:19;;20011:366;;;:::o;20383:419::-;20549:4;20587:2;20576:9;20572:18;20564:26;;20636:9;20630:4;20626:20;20622:1;20611:9;20607:17;20600:47;20664:131;20790:4;20664:131;:::i;:::-;20656:139;;20383:419;;;:::o;20808:240::-;20948:34;20944:1;20936:6;20932:14;20925:58;21017:23;21012:2;21004:6;21000:15;20993:48;20808:240;:::o;21054:366::-;21196:3;21217:67;21281:2;21276:3;21217:67;:::i;:::-;21210:74;;21293:93;21382:3;21293:93;:::i;:::-;21411:2;21406:3;21402:12;21395:19;;21054:366;;;:::o;21426:419::-;21592:4;21630:2;21619:9;21615:18;21607:26;;21679:9;21673:4;21669:20;21665:1;21654:9;21650:17;21643:47;21707:131;21833:4;21707:131;:::i;:::-;21699:139;;21426:419;;;:::o;21851:239::-;21991:34;21987:1;21979:6;21975:14;21968:58;22060:22;22055:2;22047:6;22043:15;22036:47;21851:239;:::o;22096:366::-;22238:3;22259:67;22323:2;22318:3;22259:67;:::i;:::-;22252:74;;22335:93;22424:3;22335:93;:::i;:::-;22453:2;22448:3;22444:12;22437:19;;22096:366;;;:::o;22468:419::-;22634:4;22672:2;22661:9;22657:18;22649:26;;22721:9;22715:4;22711:20;22707:1;22696:9;22692:17;22685:47;22749:131;22875:4;22749:131;:::i;:::-;22741:139;;22468:419;;;:::o;22893:225::-;23033:34;23029:1;23021:6;23017:14;23010:58;23102:8;23097:2;23089:6;23085:15;23078:33;22893:225;:::o;23124:366::-;23266:3;23287:67;23351:2;23346:3;23287:67;:::i;:::-;23280:74;;23363:93;23452:3;23363:93;:::i;:::-;23481:2;23476:3;23472:12;23465:19;;23124:366;;;:::o;23496:419::-;23662:4;23700:2;23689:9;23685:18;23677:26;;23749:9;23743:4;23739:20;23735:1;23724:9;23720:17;23713:47;23777:131;23903:4;23777:131;:::i;:::-;23769:139;;23496:419;;;:::o;23921:223::-;24061:34;24057:1;24049:6;24045:14;24038:58;24130:6;24125:2;24117:6;24113:15;24106:31;23921:223;:::o;24150:366::-;24292:3;24313:67;24377:2;24372:3;24313:67;:::i;:::-;24306:74;;24389:93;24478:3;24389:93;:::i;:::-;24507:2;24502:3;24498:12;24491:19;;24150:366;;;:::o;24522:419::-;24688:4;24726:2;24715:9;24711:18;24703:26;;24775:9;24769:4;24765:20;24761:1;24750:9;24746:17;24739:47;24803:131;24929:4;24803:131;:::i;:::-;24795:139;;24522:419;;;:::o;24947:221::-;25087:34;25083:1;25075:6;25071:14;25064:58;25156:4;25151:2;25143:6;25139:15;25132:29;24947:221;:::o;25174:366::-;25316:3;25337:67;25401:2;25396:3;25337:67;:::i;:::-;25330:74;;25413:93;25502:3;25413:93;:::i;:::-;25531:2;25526:3;25522:12;25515:19;;25174:366;;;:::o;25546:419::-;25712:4;25750:2;25739:9;25735:18;25727:26;;25799:9;25793:4;25789:20;25785:1;25774:9;25770:17;25763:47;25827:131;25953:4;25827:131;:::i;:::-;25819:139;;25546:419;;;:::o;25971:224::-;26111:34;26107:1;26099:6;26095:14;26088:58;26180:7;26175:2;26167:6;26163:15;26156:32;25971:224;:::o;26201:366::-;26343:3;26364:67;26428:2;26423:3;26364:67;:::i;:::-;26357:74;;26440:93;26529:3;26440:93;:::i;:::-;26558:2;26553:3;26549:12;26542:19;;26201:366;;;:::o;26573:419::-;26739:4;26777:2;26766:9;26762:18;26754:26;;26826:9;26820:4;26816:20;26812:1;26801:9;26797:17;26790:47;26854:131;26980:4;26854:131;:::i;:::-;26846:139;;26573:419;;;:::o;26998:222::-;27138:34;27134:1;27126:6;27122:14;27115:58;27207:5;27202:2;27194:6;27190:15;27183:30;26998:222;:::o;27226:366::-;27368:3;27389:67;27453:2;27448:3;27389:67;:::i;:::-;27382:74;;27465:93;27554:3;27465:93;:::i;:::-;27583:2;27578:3;27574:12;27567:19;;27226:366;;;:::o;27598:419::-;27764:4;27802:2;27791:9;27787:18;27779:26;;27851:9;27845:4;27841:20;27837:1;27826:9;27822:17;27815:47;27879:131;28005:4;27879:131;:::i;:::-;27871:139;;27598:419;;;:::o;28023:172::-;28163:24;28159:1;28151:6;28147:14;28140:48;28023:172;:::o;28201:366::-;28343:3;28364:67;28428:2;28423:3;28364:67;:::i;:::-;28357:74;;28440:93;28529:3;28440:93;:::i;:::-;28558:2;28553:3;28549:12;28542:19;;28201:366;;;:::o;28573:419::-;28739:4;28777:2;28766:9;28762:18;28754:26;;28826:9;28820:4;28816:20;28812:1;28801:9;28797:17;28790:47;28854:131;28980:4;28854:131;:::i;:::-;28846:139;;28573:419;;;:::o;28998:240::-;29138:34;29134:1;29126:6;29122:14;29115:58;29207:23;29202:2;29194:6;29190:15;29183:48;28998:240;:::o;29244:366::-;29386:3;29407:67;29471:2;29466:3;29407:67;:::i;:::-;29400:74;;29483:93;29572:3;29483:93;:::i;:::-;29601:2;29596:3;29592:12;29585:19;;29244:366;;;:::o;29616:419::-;29782:4;29820:2;29809:9;29805:18;29797:26;;29869:9;29863:4;29859:20;29855:1;29844:9;29840:17;29833:47;29897:131;30023:4;29897:131;:::i;:::-;29889:139;;29616:419;;;:::o;30041:169::-;30181:21;30177:1;30169:6;30165:14;30158:45;30041:169;:::o;30216:366::-;30358:3;30379:67;30443:2;30438:3;30379:67;:::i;:::-;30372:74;;30455:93;30544:3;30455:93;:::i;:::-;30573:2;30568:3;30564:12;30557:19;;30216:366;;;:::o;30588:419::-;30754:4;30792:2;30781:9;30777:18;30769:26;;30841:9;30835:4;30831:20;30827:1;30816:9;30812:17;30805:47;30869:131;30995:4;30869:131;:::i;:::-;30861:139;;30588:419;;;:::o;31013:241::-;31153:34;31149:1;31141:6;31137:14;31130:58;31222:24;31217:2;31209:6;31205:15;31198:49;31013:241;:::o;31260:366::-;31402:3;31423:67;31487:2;31482:3;31423:67;:::i;:::-;31416:74;;31499:93;31588:3;31499:93;:::i;:::-;31617:2;31612:3;31608:12;31601:19;;31260:366;;;:::o;31632:419::-;31798:4;31836:2;31825:9;31821:18;31813:26;;31885:9;31879:4;31875:20;31871:1;31860:9;31856:17;31849:47;31913:131;32039:4;31913:131;:::i;:::-;31905:139;;31632:419;;;:::o;32057:191::-;32097:4;32117:20;32135:1;32117:20;:::i;:::-;32112:25;;32151:20;32169:1;32151:20;:::i;:::-;32146:25;;32190:1;32187;32184:8;32181:34;;;32195:18;;:::i;:::-;32181:34;32240:1;32237;32233:9;32225:17;;32057:191;;;;:::o;32254:180::-;32302:77;32299:1;32292:88;32399:4;32396:1;32389:15;32423:4;32420:1;32413:15;32440:180;32488:77;32485:1;32478:88;32585:4;32582:1;32575:15;32609:4;32606:1;32599:15;32626:143;32683:5;32714:6;32708:13;32699:22;;32730:33;32757:5;32730:33;:::i;:::-;32626:143;;;;:::o;32775:351::-;32845:6;32894:2;32882:9;32873:7;32869:23;32865:32;32862:119;;;32900:79;;:::i;:::-;32862:119;33020:1;33045:64;33101:7;33092:6;33081:9;33077:22;33045:64;:::i;:::-;33035:74;;32991:128;32775:351;;;;:::o;33132:85::-;33177:7;33206:5;33195:16;;33132:85;;;:::o;33223:158::-;33281:9;33314:61;33332:42;33341:32;33367:5;33341:32;:::i;:::-;33332:42;:::i;:::-;33314:61;:::i;:::-;33301:74;;33223:158;;;:::o;33387:147::-;33482:45;33521:5;33482:45;:::i;:::-;33477:3;33470:58;33387:147;;:::o;33540:114::-;33607:6;33641:5;33635:12;33625:22;;33540:114;;;:::o;33660:184::-;33759:11;33793:6;33788:3;33781:19;33833:4;33828:3;33824:14;33809:29;;33660:184;;;;:::o;33850:132::-;33917:4;33940:3;33932:11;;33970:4;33965:3;33961:14;33953:22;;33850:132;;;:::o;33988:108::-;34065:24;34083:5;34065:24;:::i;:::-;34060:3;34053:37;33988:108;;:::o;34102:179::-;34171:10;34192:46;34234:3;34226:6;34192:46;:::i;:::-;34270:4;34265:3;34261:14;34247:28;;34102:179;;;;:::o;34287:113::-;34357:4;34389;34384:3;34380:14;34372:22;;34287:113;;;:::o;34436:732::-;34555:3;34584:54;34632:5;34584:54;:::i;:::-;34654:86;34733:6;34728:3;34654:86;:::i;:::-;34647:93;;34764:56;34814:5;34764:56;:::i;:::-;34843:7;34874:1;34859:284;34884:6;34881:1;34878:13;34859:284;;;34960:6;34954:13;34987:63;35046:3;35031:13;34987:63;:::i;:::-;34980:70;;35073:60;35126:6;35073:60;:::i;:::-;35063:70;;34919:224;34906:1;34903;34899:9;34894:14;;34859:284;;;34863:14;35159:3;35152:10;;34560:608;;;34436:732;;;;:::o;35174:831::-;35437:4;35475:3;35464:9;35460:19;35452:27;;35489:71;35557:1;35546:9;35542:17;35533:6;35489:71;:::i;:::-;35570:80;35646:2;35635:9;35631:18;35622:6;35570:80;:::i;:::-;35697:9;35691:4;35687:20;35682:2;35671:9;35667:18;35660:48;35725:108;35828:4;35819:6;35725:108;:::i;:::-;35717:116;;35843:72;35911:2;35900:9;35896:18;35887:6;35843:72;:::i;:::-;35925:73;35993:3;35982:9;35978:19;35969:6;35925:73;:::i;:::-;35174:831;;;;;;;;:::o;36011:225::-;36151:34;36147:1;36139:6;36135:14;36128:58;36220:8;36215:2;36207:6;36203:15;36196:33;36011:225;:::o;36242:366::-;36384:3;36405:67;36469:2;36464:3;36405:67;:::i;:::-;36398:74;;36481:93;36570:3;36481:93;:::i;:::-;36599:2;36594:3;36590:12;36583:19;;36242:366;;;:::o;36614:419::-;36780:4;36818:2;36807:9;36803:18;36795:26;;36867:9;36861:4;36857:20;36853:1;36842:9;36838:17;36831:47;36895:131;37021:4;36895:131;:::i;:::-;36887:139;;36614:419;;;:::o;37039:442::-;37188:4;37226:2;37215:9;37211:18;37203:26;;37239:71;37307:1;37296:9;37292:17;37283:6;37239:71;:::i;:::-;37320:72;37388:2;37377:9;37373:18;37364:6;37320:72;:::i;:::-;37402;37470:2;37459:9;37455:18;37446:6;37402:72;:::i;:::-;37039:442;;;;;;:::o;37487:807::-;37736:4;37774:3;37763:9;37759:19;37751:27;;37788:71;37856:1;37845:9;37841:17;37832:6;37788:71;:::i;:::-;37869:72;37937:2;37926:9;37922:18;37913:6;37869:72;:::i;:::-;37951:80;38027:2;38016:9;38012:18;38003:6;37951:80;:::i;:::-;38041;38117:2;38106:9;38102:18;38093:6;38041:80;:::i;:::-;38131:73;38199:3;38188:9;38184:19;38175:6;38131:73;:::i;:::-;38214;38282:3;38271:9;38267:19;38258:6;38214:73;:::i;:::-;37487:807;;;;;;;;;:::o;38300:143::-;38357:5;38388:6;38382:13;38373:22;;38404:33;38431:5;38404:33;:::i;:::-;38300:143;;;;:::o;38449:663::-;38537:6;38545;38553;38602:2;38590:9;38581:7;38577:23;38573:32;38570:119;;;38608:79;;:::i;:::-;38570:119;38728:1;38753:64;38809:7;38800:6;38789:9;38785:22;38753:64;:::i;:::-;38743:74;;38699:128;38866:2;38892:64;38948:7;38939:6;38928:9;38924:22;38892:64;:::i;:::-;38882:74;;38837:129;39005:2;39031:64;39087:7;39078:6;39067:9;39063:22;39031:64;:::i;:::-;39021:74;;38976:129;38449:663;;;;;:::o

Swarm Source

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