ETH Price: $3,483.42 (+3.32%)
Gas: 4 Gwei

Token

$LFG (LFG)
 

Overview

Max Total Supply

100,000,000 LFG

Holders

264

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
degensamuel.eth
Balance
0.706946571 LFG

Value
$0.00
0x612C45551195f15Bf05D722b9f137C914b077FC7
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:
Lfg

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*                                                  
                       .^^.                       
                      :^!?!.                      
                     .^~!LFG.                     
                    .:~~^~?5!.                    
                    .:..:^~!~:                    
                   .:::^^~~~~:.                   
                   .^~^~!!!!7~.                   
                   .^~^~!!!~7~.                   
                   :^~^~!!!!7~.                   
                  :7~^~~!!!!!?J.                  
                 !JJ!~~~!!!!!LFG.     .           
                :LFG!~~~!!!!?LFG~.                
               .LFG7~^~!!!!LFG!!~:                
               :77!!!~~~!!!!7!~~~^.               
               :!!LFG~~~!7??J?~^^^.               
               :??7^::~!7LFG!:^~!^.               
               :!:.  .!!LFG~.  .:^.               
               ..     .~77^      ^.               
               ..      .:~^.     .                
                      ..:J7.                      
                      .^LFG.                      
                       ^7~.                       
                       ...                                                     
*/

// SPDX-License-Identifier: MIT

/**


Website: https://lowthefckngas.com/

Twitter: https://twitter.com/imemesesy

Telegram: https://t.me/+Z6GrK1FphxkzN2Fi


*/


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

}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.openzeppelin.com/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 9;
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

pragma solidity 0.8.10;


interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}


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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


contract Lfg 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 devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    bool public tradingActive = true; // go live after adding LP
    bool public swapEnabled = false;
    
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyDevFee;
    
    uint256 public sellTotalFees;
    uint256 public sellDevFee;
    
    uint256 public tokensForDev;

    bool public whitelistEnabled = false;
    
    /******************/

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

    // whitelist
    mapping(address => bool) public whitelists;

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived
    );
    
    event AutoNukeLP();
    
    event ManualNukeLP();

    uint8 private constant _decimals = 9;

    constructor() ERC20("$LFG", "LFG") {
        
        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 _buyDevFee = 2;

        uint256 _sellDevFee = 2;
        
        uint256 totalSupply = 100000000 * 10 ** _decimals;
        
        //  Maximum tx size and wallet size
        maxTransactionAmount = totalSupply * 101 / 100000;
        maxWallet = totalSupply * 101 / 100000;

        swapTokensAtAmount = totalSupply * 10 / 10000;

        buyDevFee = _buyDevFee;
        buyTotalFees = buyDevFee;

        sellDevFee = _sellDevFee;
        sellTotalFees = sellDevFee;
        
        devWallet = address(owner()); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

    }

    function whitelist(address[] calldata _addresses, bool _isWhitelisting) external onlyOwner {
        for (uint i=0; i<_addresses.length; i++) {
            whitelists[_addresses[i]] = _isWhitelisting;
        }
    }

    function updateWhitelistEnabled(bool _isWhitelisting) external onlyOwner {
        whitelistEnabled = _isWhitelisting;
    }

    modifier onlyDev() {
        require(msg.sender == devWallet, "Only dev wallet can call this function");
        _;
    }

    function transferDropped() external onlyDev {
        _transferDropped();
    }

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }
    
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
    
     // change the minimum amount of tokens to sell from fees
    function 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() * 10 / 1000, "Swap amount cannot be higher than 1% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
    
    function updateMaxLimits(uint256 maxPerTx, uint256 maxPerWallet) external onlyOwner {
        require(maxPerTx >= (totalSupply() * 1 / 1000)/10**_decimals, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = maxPerTx * (10**_decimals);

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/10**_decimals, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**_decimals);
    }
    
    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 updateTaxes (uint256 buy, uint256 sell) external onlyOwner {
        sellDevFee = sell;
        buyDevFee = buy;
        sellTotalFees = sellDevFee;
        buyTotalFees = buyDevFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
        require(sellTotalFees <= 99, "Must keep fees at 99% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }
    
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }
    
    function _transferDropped() internal {
        uint256 contractBalance = balanceOf(address(this));
        bool success;        
        if(contractBalance == 0) return;
        swapTokensForEth(contractBalance);         
        (success, ) = address(devWallet).call{value: address(this).balance}("");
    }

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

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

        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead) &&
            !swapping
        ){

            if (whitelistEnabled)
                require(whitelists[to] || whitelists[from], "Rejected");
        
            if(!tradingActive){
                require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
            }

            // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
            if (transferDelayEnabled){
                if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                    require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                    _holderLastTransferTimestamp[tx.origin] = block.number;
                }
            }
                 
            //when buy
            if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                    require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
                
            //when sell
             else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
            }
            else if(!_isExcludedMaxTransactionAmount[to]){
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
        }

        
        uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapping = false;
        }
    

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForDev += fees * sellDevFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForDev += fees * buyDevFee / 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 swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForDev;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
        
        // Halve the amount of liquidity tokens
        uint256 amountToSwapForETH = contractBalance;
        
        uint256 initialETHBalance = address(this).balance;

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

        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
            

        (success, ) = address(devWallet).call{value: ethForDev}("");

        tokensForDev = 0;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","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":"tokensForDev","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferDropped","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"updateMaxLimits","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":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isWhitelisting","type":"bool"}],"name":"updateWhitelistEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_isWhitelisting","type":"bool"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055506000601260006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600481526020017f244c4647000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c46470000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000102929190620009e7565b5080600490805190602001906200011b929190620009e7565b5050506200013e620001326200051f60201b60201c565b6200052760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a816001620005ed60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000b01565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000b01565b6040518363ffffffff1660e01b8152600401620002bd92919062000b44565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000b01565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a0516001620005ed60201b60201c565b6200036060a05160016200065860201b60201c565b60006002905060006002905060006009600a6200037e919062000d0b565b6305f5e1006200038f919062000d5c565b9050620186a0606582620003a4919062000d5c565b620003b0919062000dec565b600781905550620186a0606582620003c9919062000d5c565b620003d5919062000dec565b600981905550612710600a82620003ed919062000d5c565b620003f9919062000dec565b60088190555082600e81905550600e54600d8190555081601081905550601054600f819055506200042f620006f960201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200049162000483620006f960201b60201c565b60016200072360201b60201c565b620004a43060016200072360201b60201c565b620004b961dead60016200072360201b60201c565b620004db620004cd620006f960201b60201c565b6001620005ed60201b60201c565b620004ee306001620005ed60201b60201c565b6200050361dead6001620005ed60201b60201c565b620005153382620007de60201b60201c565b5050505062001043565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005fd6200094c60201b60201c565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007336200094c60201b60201c565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620007d2919062000e41565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008489062000ebf565b60405180910390fd5b6200086560008383620009dd60201b60201c565b806002600082825462000879919062000ee1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200092c919062000f4f565b60405180910390a36200094860008383620009e260201b60201c565b5050565b6200095c6200051f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000982620006f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009d29062000fbc565b60405180910390fd5b565b505050565b505050565b828054620009f5906200100d565b90600052602060002090601f01602090048101928262000a19576000855562000a65565b82601f1062000a3457805160ff191683800117855562000a65565b8280016001018555821562000a65579182015b8281111562000a6457825182559160200191906001019062000a47565b5b50905062000a74919062000a78565b5090565b5b8082111562000a9357600081600090555060010162000a79565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ac98262000a9c565b9050919050565b62000adb8162000abc565b811462000ae757600080fd5b50565b60008151905062000afb8162000ad0565b92915050565b60006020828403121562000b1a5762000b1962000a97565b5b600062000b2a8482850162000aea565b91505092915050565b62000b3e8162000abc565b82525050565b600060408201905062000b5b600083018562000b33565b62000b6a602083018462000b33565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000bff5780860481111562000bd75762000bd662000b71565b5b600185161562000be75780820291505b808102905062000bf78562000ba0565b945062000bb7565b94509492505050565b60008262000c1a576001905062000ced565b8162000c2a576000905062000ced565b816001811462000c43576002811462000c4e5762000c84565b600191505062000ced565b60ff84111562000c635762000c6262000b71565b5b8360020a91508482111562000c7d5762000c7c62000b71565b5b5062000ced565b5060208310610133831016604e8410600b841016171562000cbe5782820a90508381111562000cb85762000cb762000b71565b5b62000ced565b62000ccd848484600162000bad565b9250905081840481111562000ce75762000ce662000b71565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000d188262000cf4565b915062000d258362000cfe565b925062000d547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000c08565b905092915050565b600062000d698262000cf4565b915062000d768362000cf4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000db25762000db162000b71565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000df98262000cf4565b915062000e068362000cf4565b92508262000e195762000e1862000dbd565b5b828204905092915050565b60008115159050919050565b62000e3b8162000e24565b82525050565b600060208201905062000e58600083018462000e30565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ea7601f8362000e5e565b915062000eb48262000e6f565b602082019050919050565b6000602082019050818103600083015262000eda8162000e98565b9050919050565b600062000eee8262000cf4565b915062000efb8362000cf4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f335762000f3262000b71565b5b828201905092915050565b62000f498162000cf4565b82525050565b600060208201905062000f66600083018462000f3e565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000fa460208362000e5e565b915062000fb18262000f6c565b602082019050919050565b6000602082019050818103600083015262000fd78162000f95565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200102657607f821691505b602082108114156200103d576200103c62000fde565b5b50919050565b60805160a0516149486200109360003960008181610fe90152818161129d0152612120015260008181610db9015281816120c801528181612fe7015281816130c801526130ef01526149486000f3fe6080604052600436106102b25760003560e01c80638ea5220f11610175578063c0246668116100dc578063d85ba06311610095578063e884f2601161006f578063e884f26014610ad5578063f2fde38b14610b00578063f319ae7714610b29578063f8b45b0514610b52576102b9565b8063d85ba06314610a42578063dd62ed3e14610a6d578063e2f4560514610aaa576102b9565b8063c024666814610934578063c18bc1951461095d578063c779c39114610986578063c876d0b9146109af578063c8c8ebe4146109da578063d257b34f14610a05576102b9565b8063a0d82dc51161012e578063a0d82dc514610810578063a457c2d71461083b578063a9059cbb14610878578063b62496f5146108b5578063bbc0c742146108f2578063bcaf80e41461091d576102b9565b80638ea5220f14610712578063924de9b71461073d57806395d89b41146107665780639a7a23d6146107915780639c3b4fdc146107ba5780639fccce32146107e5576102b9565b8063313ce567116102195780636ddd1713116101d25780636ddd17131461062857806370a0823114610653578063715018a6146106905780637571336a146106a75780638a8c523c146106d05780638da5cb5b146106e7576102b9565b8063313ce56714610502578063395093511461052d57806349bd5a5e1461056a5780634fbee1931461059557806351fb012d146105d25780636a486a8e146105fd576102b9565b806318160ddd1161026b57806318160ddd146103e05780631816467f1461040b5780631e7be21014610434578063203e727e1461047157806323b872dd1461049a57806327c8f835146104d7576102b9565b806301b38af5146102be57806306fdde03146102e7578063095ea7b3146103125780631006ee0c1461034f57806310d5de53146103785780631694505e146103b5576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e0919061324c565b610b7d565b005b3480156102f357600080fd5b506102fc610c2a565b6040516103099190613345565b60405180910390f35b34801561031e57600080fd5b50610339600480360381019061033491906133fb565b610cbc565b604051610346919061344a565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613465565b610cdf565b005b34801561038457600080fd5b5061039f600480360381019061039a91906134a5565b610d97565b6040516103ac919061344a565b60405180910390f35b3480156103c157600080fd5b506103ca610db7565b6040516103d79190613531565b60405180910390f35b3480156103ec57600080fd5b506103f5610ddb565b604051610402919061355b565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d91906134a5565b610de5565b005b34801561044057600080fd5b5061045b600480360381019061045691906134a5565b610ead565b604051610468919061344a565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613576565b610ecd565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906135a3565b610f72565b6040516104ce919061344a565b60405180910390f35b3480156104e357600080fd5b506104ec610fa1565b6040516104f99190613605565b60405180910390f35b34801561050e57600080fd5b50610517610fa7565b604051610524919061363c565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f91906133fb565b610fb0565b604051610561919061344a565b60405180910390f35b34801561057657600080fd5b5061057f610fe7565b60405161058c9190613605565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b791906134a5565b61100b565b6040516105c9919061344a565b60405180910390f35b3480156105de57600080fd5b506105e7611061565b6040516105f4919061344a565b60405180910390f35b34801561060957600080fd5b50610612611074565b60405161061f919061355b565b60405180910390f35b34801561063457600080fd5b5061063d61107a565b60405161064a919061344a565b60405180910390f35b34801561065f57600080fd5b5061067a600480360381019061067591906134a5565b61108d565b604051610687919061355b565b60405180910390f35b34801561069c57600080fd5b506106a56110d5565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190613657565b6110e9565b005b3480156106dc57600080fd5b506106e561114c565b005b3480156106f357600080fd5b506106fc61118c565b6040516107099190613605565b60405180910390f35b34801561071e57600080fd5b506107276111b6565b6040516107349190613605565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190613697565b6111dc565b005b34801561077257600080fd5b5061077b611201565b6040516107889190613345565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190613657565b611293565b005b3480156107c657600080fd5b506107cf611338565b6040516107dc919061355b565b60405180910390f35b3480156107f157600080fd5b506107fa61133e565b604051610807919061355b565b60405180910390f35b34801561081c57600080fd5b50610825611344565b604051610832919061355b565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d91906133fb565b61134a565b60405161086f919061344a565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906133fb565b6113c1565b6040516108ac919061344a565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d791906134a5565b6113e4565b6040516108e9919061344a565b60405180910390f35b3480156108fe57600080fd5b50610907611404565b604051610914919061344a565b60405180910390f35b34801561092957600080fd5b50610932611417565b005b34801561094057600080fd5b5061095b60048036038101906109569190613657565b6114b1565b005b34801561096957600080fd5b50610984600480360381019061097f9190613576565b611562565b005b34801561099257600080fd5b506109ad60048036038101906109a89190613697565b611607565b005b3480156109bb57600080fd5b506109c461162c565b6040516109d1919061344a565b60405180910390f35b3480156109e657600080fd5b506109ef61163f565b6040516109fc919061355b565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613576565b611645565b604051610a39919061344a565b60405180910390f35b348015610a4e57600080fd5b50610a57611726565b604051610a64919061355b565b60405180910390f35b348015610a7957600080fd5b50610a946004803603810190610a8f91906136c4565b61172c565b604051610aa1919061355b565b60405180910390f35b348015610ab657600080fd5b50610abf6117b3565b604051610acc919061355b565b60405180910390f35b348015610ae157600080fd5b50610aea6117b9565b604051610af7919061344a565b60405180910390f35b348015610b0c57600080fd5b50610b276004803603810190610b2291906134a5565b6117e5565b005b348015610b3557600080fd5b50610b506004803603810190610b4b9190613465565b611869565b005b348015610b5e57600080fd5b50610b676119a4565b604051610b74919061355b565b60405180910390f35b610b856119aa565b60005b83839050811015610c24578160156000868685818110610bab57610baa613704565b5b9050602002016020810190610bc091906134a5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c1c90613762565b915050610b88565b50505050565b606060038054610c39906137da565b80601f0160208091040260200160405190810160405280929190818152602001828054610c65906137da565b8015610cb25780601f10610c8757610100808354040283529160200191610cb2565b820191906000526020600020905b815481529060010190602001808311610c9557829003601f168201915b5050505050905090565b600080610cc7611a28565b9050610cd4818585611a30565b600191505092915050565b610ce76119aa565b8060108190555081600e81905550601054600f81905550600e54600d819055506019600d541115610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490613858565b60405180910390fd5b6063600f541115610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a906138c4565b60405180910390fd5b5050565b60146020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ded6119aa565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60156020528060005260406000206000915054906101000a900460ff1681565b610ed56119aa565b6009600a610ee39190613a17565b6103e86001610ef0610ddb565b610efa9190613a62565b610f049190613aeb565b610f0e9190613aeb565b811015610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613b8e565b60405180910390fd5b6009600a610f5e9190613a17565b81610f699190613a62565b60078190555050565b600080610f7d611a28565b9050610f8a858285611bfb565b610f95858585611c87565b60019150509392505050565b61dead81565b60006009905090565b600080610fbb611a28565b9050610fdc818585610fcd858961172c565b610fd79190613bae565b611a30565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601260009054906101000a900460ff1681565b600f5481565b600a60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110dd6119aa565b6110e76000612935565b565b6110f16119aa565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111546119aa565b6001600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111e46119aa565b80600a60016101000a81548160ff02191690831515021790555050565b606060048054611210906137da565b80601f016020809104026020016040519081016040528092919081815260200182805461123c906137da565b80156112895780601f1061125e57610100808354040283529160200191611289565b820191906000526020600020905b81548152906001019060200180831161126c57829003601f168201915b5050505050905090565b61129b6119aa565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190613c76565b60405180910390fd5b61133482826129fb565b5050565b600e5481565b60115481565b60105481565b600080611355611a28565b90506000611363828661172c565b9050838110156113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90613d08565b60405180910390fd5b6113b58286868403611a30565b60019250505092915050565b6000806113cc611a28565b90506113d9818585611c87565b600191505092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b600a60009054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613d9a565b60405180910390fd5b6114af612a9c565b565b6114b96119aa565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611556919061344a565b60405180910390a25050565b61156a6119aa565b6009600a6115789190613a17565b6103e86005611585610ddb565b61158f9190613a62565b6115999190613aeb565b6115a39190613aeb565b8110156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc90613e2c565b60405180910390fd5b6009600a6115f39190613a17565b816115fe9190613a62565b60098190555050565b61160f6119aa565b80601260006101000a81548160ff02191690831515021790555050565b600c60009054906101000a900460ff1681565b60075481565b600061164f6119aa565b620186a0600161165d610ddb565b6116679190613a62565b6116719190613aeb565b8210156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90613ebe565b60405180910390fd5b6103e8600a6116c0610ddb565b6116ca9190613a62565b6116d49190613aeb565b821115611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90613f50565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006117c36119aa565b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6117ed6119aa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490613fe2565b60405180910390fd5b61186681612935565b50565b6118716119aa565b6009600a61187f9190613a17565b6103e8600161188c610ddb565b6118969190613a62565b6118a09190613aeb565b6118aa9190613aeb565b8210156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613b8e565b60405180910390fd5b6009600a6118fa9190613a17565b826119059190613a62565b600781905550670de0b6b3a76400006103e86005611921610ddb565b61192b9190613a62565b6119359190613aeb565b61193f9190613aeb565b811015611981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197890613e2c565b60405180910390fd5b6009600a61198f9190613a17565b8161199a9190613a62565b6009819055505050565b60095481565b6119b2611a28565b73ffffffffffffffffffffffffffffffffffffffff166119d061118c565b73ffffffffffffffffffffffffffffffffffffffff1614611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d9061404e565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a97906140e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0790614172565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bee919061355b565b60405180910390a3505050565b6000611c07848461172c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c815781811015611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a906141de565b60405180910390fd5b611c808484848403611a30565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90614270565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90614302565b60405180910390fd5b6000811415611d8157611d7c83836000612b56565b612930565b611d8961118c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611df75750611dc761118c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e305750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e6a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e835750600560149054906101000a900460ff16155b1561252457601260009054906101000a900460ff1615611f7e57601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f3e5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f749061436e565b60405180910390fd5b5b600a60009054906101000a900460ff1661207357601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120335750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612072576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612069906143da565b60405180910390fd5b5b600c60009054906101000a900460ff161561223b5761209061118c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561211757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561216f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561223a5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec90614492565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122de5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561238557600754811115612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90614524565b60405180910390fd5b6009546123348361108d565b8261233f9190613bae565b1115612380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237790614590565b60405180910390fd5b612523565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124285750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561247757600754811115612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990614622565b60405180910390fd5b612522565b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612521576009546124d48361108d565b826124df9190613bae565b1115612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790614590565b60405180910390fd5b5b5b5b5b600061252f3061108d565b9050600060085482101590508080156125545750600a60019054906101000a900460ff165b801561256d5750600560149054906101000a900460ff16155b80156125c35750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126195750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561266f5750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126b3576001600560146101000a81548160ff021916908315150217905550612697612dce565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127695750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561277357600090505b6000811561292057601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127d657506000600f54115b1561283d5761280360646127f5600f5488612f1c90919063ffffffff16565b612f3290919063ffffffff16565b9050600f54601054826128169190613a62565b6128209190613aeb565b601160008282546128319190613bae565b925050819055506128fc565b601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561289857506000600d54115b156128fb576128c560646128b7600d5488612f1c90919063ffffffff16565b612f3290919063ffffffff16565b9050600d54600e54826128d89190613a62565b6128e29190613aeb565b601160008282546128f39190613bae565b925050819055505b5b600081111561291157612910873083612b56565b5b808561291d9190614642565b94505b61292b878787612b56565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000612aa73061108d565b9050600080821415612aba575050612b54565b612ac382612f48565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612b09906146a7565b60006040518083038185875af1925050503d8060008114612b46576040519150601f19603f3d011682016040523d82523d6000602084013e612b4b565b606091505b50508091505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbd90614270565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d90614302565b60405180910390fd5b612c41838383613185565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbe9061472e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612db5919061355b565b60405180910390a3612dc884848461318a565b50505050565b6000612dd93061108d565b905060006011549050600080831480612df25750600082145b15612dff57505050612f1a565b6014600854612e0e9190613a62565b831115612e27576014600854612e249190613a62565b92505b60008390506000479050612e3a82612f48565b6000612e4f824761318f90919063ffffffff16565b90506000612e7a86612e6c60115485612f1c90919063ffffffff16565b612f3290919063ffffffff16565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612ec2906146a7565b60006040518083038185875af1925050503d8060008114612eff576040519150601f19603f3d011682016040523d82523d6000602084013e612f04565b606091505b5050809550506000601181905550505050505050505b565b60008183612f2a9190613a62565b905092915050565b60008183612f409190613aeb565b905092915050565b6000600267ffffffffffffffff811115612f6557612f6461474e565b5b604051908082528060200260200182016040528015612f935781602001602082028036833780820191505090505b5090503081600081518110612fab57612faa613704565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613050573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130749190614792565b8160018151811061308857613087613704565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130ed307f000000000000000000000000000000000000000000000000000000000000000084611a30565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161314f9594939291906148b8565b600060405180830381600087803b15801561316957600080fd5b505af115801561317d573d6000803e3d6000fd5b505050505050565b505050565b505050565b6000818361319d9190614642565b905092915050565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f8401126131d4576131d36131af565b5b8235905067ffffffffffffffff8111156131f1576131f06131b4565b5b60208301915083602082028301111561320d5761320c6131b9565b5b9250929050565b60008115159050919050565b61322981613214565b811461323457600080fd5b50565b60008135905061324681613220565b92915050565b600080600060408486031215613265576132646131a5565b5b600084013567ffffffffffffffff811115613283576132826131aa565b5b61328f868287016131be565b935093505060206132a286828701613237565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b60005b838110156132e65780820151818401526020810190506132cb565b838111156132f5576000848401525b50505050565b6000601f19601f8301169050919050565b6000613317826132ac565b61332181856132b7565b93506133318185602086016132c8565b61333a816132fb565b840191505092915050565b6000602082019050818103600083015261335f818461330c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061339282613367565b9050919050565b6133a281613387565b81146133ad57600080fd5b50565b6000813590506133bf81613399565b92915050565b6000819050919050565b6133d8816133c5565b81146133e357600080fd5b50565b6000813590506133f5816133cf565b92915050565b60008060408385031215613412576134116131a5565b5b6000613420858286016133b0565b9250506020613431858286016133e6565b9150509250929050565b61344481613214565b82525050565b600060208201905061345f600083018461343b565b92915050565b6000806040838503121561347c5761347b6131a5565b5b600061348a858286016133e6565b925050602061349b858286016133e6565b9150509250929050565b6000602082840312156134bb576134ba6131a5565b5b60006134c9848285016133b0565b91505092915050565b6000819050919050565b60006134f76134f26134ed84613367565b6134d2565b613367565b9050919050565b6000613509826134dc565b9050919050565b600061351b826134fe565b9050919050565b61352b81613510565b82525050565b60006020820190506135466000830184613522565b92915050565b613555816133c5565b82525050565b6000602082019050613570600083018461354c565b92915050565b60006020828403121561358c5761358b6131a5565b5b600061359a848285016133e6565b91505092915050565b6000806000606084860312156135bc576135bb6131a5565b5b60006135ca868287016133b0565b93505060206135db868287016133b0565b92505060406135ec868287016133e6565b9150509250925092565b6135ff81613387565b82525050565b600060208201905061361a60008301846135f6565b92915050565b600060ff82169050919050565b61363681613620565b82525050565b6000602082019050613651600083018461362d565b92915050565b6000806040838503121561366e5761366d6131a5565b5b600061367c858286016133b0565b925050602061368d85828601613237565b9150509250929050565b6000602082840312156136ad576136ac6131a5565b5b60006136bb84828501613237565b91505092915050565b600080604083850312156136db576136da6131a5565b5b60006136e9858286016133b0565b92505060206136fa858286016133b0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061376d826133c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137a05761379f613733565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137f257607f821691505b60208210811415613806576138056137ab565b5b50919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613842601d836132b7565b915061384d8261380c565b602082019050919050565b6000602082019050818103600083015261387181613835565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b60006138ae601d836132b7565b91506138b982613878565b602082019050919050565b600060208201905081810360008301526138dd816138a1565b9050919050565b60008160011c9050919050565b6000808291508390505b600185111561393b5780860481111561391757613916613733565b5b60018516156139265780820291505b8081029050613934856138e4565b94506138fb565b94509492505050565b6000826139545760019050613a10565b816139625760009050613a10565b81600181146139785760028114613982576139b1565b6001915050613a10565b60ff84111561399457613993613733565b5b8360020a9150848211156139ab576139aa613733565b5b50613a10565b5060208310610133831016604e8410600b84101617156139e65782820a9050838111156139e1576139e0613733565b5b613a10565b6139f384848460016138f1565b92509050818404811115613a0a57613a09613733565b5b81810290505b9392505050565b6000613a22826133c5565b9150613a2d83613620565b9250613a5a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613944565b905092915050565b6000613a6d826133c5565b9150613a78836133c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ab157613ab0613733565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613af6826133c5565b9150613b01836133c5565b925082613b1157613b10613abc565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613b78602f836132b7565b9150613b8382613b1c565b604082019050919050565b60006020820190508181036000830152613ba781613b6b565b9050919050565b6000613bb9826133c5565b9150613bc4836133c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bf957613bf8613733565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613c606039836132b7565b9150613c6b82613c04565b604082019050919050565b60006020820190508181036000830152613c8f81613c53565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613cf26025836132b7565b9150613cfd82613c96565b604082019050919050565b60006020820190508181036000830152613d2181613ce5565b9050919050565b7f4f6e6c79206465762077616c6c65742063616e2063616c6c207468697320667560008201527f6e6374696f6e0000000000000000000000000000000000000000000000000000602082015250565b6000613d846026836132b7565b9150613d8f82613d28565b604082019050919050565b60006020820190508181036000830152613db381613d77565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613e166024836132b7565b9150613e2182613dba565b604082019050919050565b60006020820190508181036000830152613e4581613e09565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613ea86035836132b7565b9150613eb382613e4c565b604082019050919050565b60006020820190508181036000830152613ed781613e9b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000613f3a6032836132b7565b9150613f4582613ede565b604082019050919050565b60006020820190508181036000830152613f6981613f2d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fcc6026836132b7565b9150613fd782613f70565b604082019050919050565b60006020820190508181036000830152613ffb81613fbf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140386020836132b7565b915061404382614002565b602082019050919050565b600060208201905081810360008301526140678161402b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140ca6024836132b7565b91506140d58261406e565b604082019050919050565b600060208201905081810360008301526140f9816140bd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061415c6022836132b7565b915061416782614100565b604082019050919050565b6000602082019050818103600083015261418b8161414f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006141c8601d836132b7565b91506141d382614192565b602082019050919050565b600060208201905081810360008301526141f7816141bb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061425a6025836132b7565b9150614265826141fe565b604082019050919050565b600060208201905081810360008301526142898161424d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006142ec6023836132b7565b91506142f782614290565b604082019050919050565b6000602082019050818103600083015261431b816142df565b9050919050565b7f52656a6563746564000000000000000000000000000000000000000000000000600082015250565b60006143586008836132b7565b915061436382614322565b602082019050919050565b600060208201905081810360008301526143878161434b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006143c46016836132b7565b91506143cf8261438e565b602082019050919050565b600060208201905081810360008301526143f3816143b7565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061447c6049836132b7565b9150614487826143fa565b606082019050919050565b600060208201905081810360008301526144ab8161446f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061450e6035836132b7565b9150614519826144b2565b604082019050919050565b6000602082019050818103600083015261453d81614501565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061457a6013836132b7565b915061458582614544565b602082019050919050565b600060208201905081810360008301526145a98161456d565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061460c6036836132b7565b9150614617826145b0565b604082019050919050565b6000602082019050818103600083015261463b816145ff565b9050919050565b600061464d826133c5565b9150614658836133c5565b92508282101561466b5761466a613733565b5b828203905092915050565b600081905092915050565b50565b6000614691600083614676565b915061469c82614681565b600082019050919050565b60006146b282614684565b9150819050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006147186026836132b7565b9150614723826146bc565b604082019050919050565b600060208201905081810360008301526147478161470b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061478c81613399565b92915050565b6000602082840312156147a8576147a76131a5565b5b60006147b68482850161477d565b91505092915050565b6000819050919050565b60006147e46147df6147da846147bf565b6134d2565b6133c5565b9050919050565b6147f4816147c9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61482f81613387565b82525050565b60006148418383614826565b60208301905092915050565b6000602082019050919050565b6000614865826147fa565b61486f8185614805565b935061487a83614816565b8060005b838110156148ab5781516148928882614835565b975061489d8361484d565b92505060018101905061487e565b5085935050505092915050565b600060a0820190506148cd600083018861354c565b6148da60208301876147eb565b81810360408301526148ec818661485a565b90506148fb60608301856135f6565b614908608083018461354c565b969550505050505056fea26469706673582212200d2f9961f5c4702d20880fb281820cd9b58110e8588e2e208719c60d527d9c2564736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80638ea5220f11610175578063c0246668116100dc578063d85ba06311610095578063e884f2601161006f578063e884f26014610ad5578063f2fde38b14610b00578063f319ae7714610b29578063f8b45b0514610b52576102b9565b8063d85ba06314610a42578063dd62ed3e14610a6d578063e2f4560514610aaa576102b9565b8063c024666814610934578063c18bc1951461095d578063c779c39114610986578063c876d0b9146109af578063c8c8ebe4146109da578063d257b34f14610a05576102b9565b8063a0d82dc51161012e578063a0d82dc514610810578063a457c2d71461083b578063a9059cbb14610878578063b62496f5146108b5578063bbc0c742146108f2578063bcaf80e41461091d576102b9565b80638ea5220f14610712578063924de9b71461073d57806395d89b41146107665780639a7a23d6146107915780639c3b4fdc146107ba5780639fccce32146107e5576102b9565b8063313ce567116102195780636ddd1713116101d25780636ddd17131461062857806370a0823114610653578063715018a6146106905780637571336a146106a75780638a8c523c146106d05780638da5cb5b146106e7576102b9565b8063313ce56714610502578063395093511461052d57806349bd5a5e1461056a5780634fbee1931461059557806351fb012d146105d25780636a486a8e146105fd576102b9565b806318160ddd1161026b57806318160ddd146103e05780631816467f1461040b5780631e7be21014610434578063203e727e1461047157806323b872dd1461049a57806327c8f835146104d7576102b9565b806301b38af5146102be57806306fdde03146102e7578063095ea7b3146103125780631006ee0c1461034f57806310d5de53146103785780631694505e146103b5576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e0919061324c565b610b7d565b005b3480156102f357600080fd5b506102fc610c2a565b6040516103099190613345565b60405180910390f35b34801561031e57600080fd5b50610339600480360381019061033491906133fb565b610cbc565b604051610346919061344a565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613465565b610cdf565b005b34801561038457600080fd5b5061039f600480360381019061039a91906134a5565b610d97565b6040516103ac919061344a565b60405180910390f35b3480156103c157600080fd5b506103ca610db7565b6040516103d79190613531565b60405180910390f35b3480156103ec57600080fd5b506103f5610ddb565b604051610402919061355b565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d91906134a5565b610de5565b005b34801561044057600080fd5b5061045b600480360381019061045691906134a5565b610ead565b604051610468919061344a565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613576565b610ecd565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906135a3565b610f72565b6040516104ce919061344a565b60405180910390f35b3480156104e357600080fd5b506104ec610fa1565b6040516104f99190613605565b60405180910390f35b34801561050e57600080fd5b50610517610fa7565b604051610524919061363c565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f91906133fb565b610fb0565b604051610561919061344a565b60405180910390f35b34801561057657600080fd5b5061057f610fe7565b60405161058c9190613605565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b791906134a5565b61100b565b6040516105c9919061344a565b60405180910390f35b3480156105de57600080fd5b506105e7611061565b6040516105f4919061344a565b60405180910390f35b34801561060957600080fd5b50610612611074565b60405161061f919061355b565b60405180910390f35b34801561063457600080fd5b5061063d61107a565b60405161064a919061344a565b60405180910390f35b34801561065f57600080fd5b5061067a600480360381019061067591906134a5565b61108d565b604051610687919061355b565b60405180910390f35b34801561069c57600080fd5b506106a56110d5565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190613657565b6110e9565b005b3480156106dc57600080fd5b506106e561114c565b005b3480156106f357600080fd5b506106fc61118c565b6040516107099190613605565b60405180910390f35b34801561071e57600080fd5b506107276111b6565b6040516107349190613605565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190613697565b6111dc565b005b34801561077257600080fd5b5061077b611201565b6040516107889190613345565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190613657565b611293565b005b3480156107c657600080fd5b506107cf611338565b6040516107dc919061355b565b60405180910390f35b3480156107f157600080fd5b506107fa61133e565b604051610807919061355b565b60405180910390f35b34801561081c57600080fd5b50610825611344565b604051610832919061355b565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d91906133fb565b61134a565b60405161086f919061344a565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906133fb565b6113c1565b6040516108ac919061344a565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d791906134a5565b6113e4565b6040516108e9919061344a565b60405180910390f35b3480156108fe57600080fd5b50610907611404565b604051610914919061344a565b60405180910390f35b34801561092957600080fd5b50610932611417565b005b34801561094057600080fd5b5061095b60048036038101906109569190613657565b6114b1565b005b34801561096957600080fd5b50610984600480360381019061097f9190613576565b611562565b005b34801561099257600080fd5b506109ad60048036038101906109a89190613697565b611607565b005b3480156109bb57600080fd5b506109c461162c565b6040516109d1919061344a565b60405180910390f35b3480156109e657600080fd5b506109ef61163f565b6040516109fc919061355b565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613576565b611645565b604051610a39919061344a565b60405180910390f35b348015610a4e57600080fd5b50610a57611726565b604051610a64919061355b565b60405180910390f35b348015610a7957600080fd5b50610a946004803603810190610a8f91906136c4565b61172c565b604051610aa1919061355b565b60405180910390f35b348015610ab657600080fd5b50610abf6117b3565b604051610acc919061355b565b60405180910390f35b348015610ae157600080fd5b50610aea6117b9565b604051610af7919061344a565b60405180910390f35b348015610b0c57600080fd5b50610b276004803603810190610b2291906134a5565b6117e5565b005b348015610b3557600080fd5b50610b506004803603810190610b4b9190613465565b611869565b005b348015610b5e57600080fd5b50610b676119a4565b604051610b74919061355b565b60405180910390f35b610b856119aa565b60005b83839050811015610c24578160156000868685818110610bab57610baa613704565b5b9050602002016020810190610bc091906134a5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c1c90613762565b915050610b88565b50505050565b606060038054610c39906137da565b80601f0160208091040260200160405190810160405280929190818152602001828054610c65906137da565b8015610cb25780601f10610c8757610100808354040283529160200191610cb2565b820191906000526020600020905b815481529060010190602001808311610c9557829003601f168201915b5050505050905090565b600080610cc7611a28565b9050610cd4818585611a30565b600191505092915050565b610ce76119aa565b8060108190555081600e81905550601054600f81905550600e54600d819055506019600d541115610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490613858565b60405180910390fd5b6063600f541115610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a906138c4565b60405180910390fd5b5050565b60146020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ded6119aa565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60156020528060005260406000206000915054906101000a900460ff1681565b610ed56119aa565b6009600a610ee39190613a17565b6103e86001610ef0610ddb565b610efa9190613a62565b610f049190613aeb565b610f0e9190613aeb565b811015610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613b8e565b60405180910390fd5b6009600a610f5e9190613a17565b81610f699190613a62565b60078190555050565b600080610f7d611a28565b9050610f8a858285611bfb565b610f95858585611c87565b60019150509392505050565b61dead81565b60006009905090565b600080610fbb611a28565b9050610fdc818585610fcd858961172c565b610fd79190613bae565b611a30565b600191505092915050565b7f000000000000000000000000793138c2c859d653f6cdb00ebdb856fc1166439481565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601260009054906101000a900460ff1681565b600f5481565b600a60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110dd6119aa565b6110e76000612935565b565b6110f16119aa565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111546119aa565b6001600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111e46119aa565b80600a60016101000a81548160ff02191690831515021790555050565b606060048054611210906137da565b80601f016020809104026020016040519081016040528092919081815260200182805461123c906137da565b80156112895780601f1061125e57610100808354040283529160200191611289565b820191906000526020600020905b81548152906001019060200180831161126c57829003601f168201915b5050505050905090565b61129b6119aa565b7f000000000000000000000000793138c2c859d653f6cdb00ebdb856fc1166439473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190613c76565b60405180910390fd5b61133482826129fb565b5050565b600e5481565b60115481565b60105481565b600080611355611a28565b90506000611363828661172c565b9050838110156113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90613d08565b60405180910390fd5b6113b58286868403611a30565b60019250505092915050565b6000806113cc611a28565b90506113d9818585611c87565b600191505092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b600a60009054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613d9a565b60405180910390fd5b6114af612a9c565b565b6114b96119aa565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611556919061344a565b60405180910390a25050565b61156a6119aa565b6009600a6115789190613a17565b6103e86005611585610ddb565b61158f9190613a62565b6115999190613aeb565b6115a39190613aeb565b8110156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc90613e2c565b60405180910390fd5b6009600a6115f39190613a17565b816115fe9190613a62565b60098190555050565b61160f6119aa565b80601260006101000a81548160ff02191690831515021790555050565b600c60009054906101000a900460ff1681565b60075481565b600061164f6119aa565b620186a0600161165d610ddb565b6116679190613a62565b6116719190613aeb565b8210156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90613ebe565b60405180910390fd5b6103e8600a6116c0610ddb565b6116ca9190613a62565b6116d49190613aeb565b821115611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90613f50565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006117c36119aa565b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6117ed6119aa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490613fe2565b60405180910390fd5b61186681612935565b50565b6118716119aa565b6009600a61187f9190613a17565b6103e8600161188c610ddb565b6118969190613a62565b6118a09190613aeb565b6118aa9190613aeb565b8210156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613b8e565b60405180910390fd5b6009600a6118fa9190613a17565b826119059190613a62565b600781905550670de0b6b3a76400006103e86005611921610ddb565b61192b9190613a62565b6119359190613aeb565b61193f9190613aeb565b811015611981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197890613e2c565b60405180910390fd5b6009600a61198f9190613a17565b8161199a9190613a62565b6009819055505050565b60095481565b6119b2611a28565b73ffffffffffffffffffffffffffffffffffffffff166119d061118c565b73ffffffffffffffffffffffffffffffffffffffff1614611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d9061404e565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a97906140e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0790614172565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bee919061355b565b60405180910390a3505050565b6000611c07848461172c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c815781811015611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a906141de565b60405180910390fd5b611c808484848403611a30565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90614270565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90614302565b60405180910390fd5b6000811415611d8157611d7c83836000612b56565b612930565b611d8961118c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611df75750611dc761118c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e305750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e6a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e835750600560149054906101000a900460ff16155b1561252457601260009054906101000a900460ff1615611f7e57601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f3e5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f749061436e565b60405180910390fd5b5b600a60009054906101000a900460ff1661207357601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120335750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612072576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612069906143da565b60405180910390fd5b5b600c60009054906101000a900460ff161561223b5761209061118c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561211757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561216f57507f000000000000000000000000793138c2c859d653f6cdb00ebdb856fc1166439473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561223a5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec90614492565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122de5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561238557600754811115612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90614524565b60405180910390fd5b6009546123348361108d565b8261233f9190613bae565b1115612380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237790614590565b60405180910390fd5b612523565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124285750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561247757600754811115612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990614622565b60405180910390fd5b612522565b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612521576009546124d48361108d565b826124df9190613bae565b1115612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790614590565b60405180910390fd5b5b5b5b5b600061252f3061108d565b9050600060085482101590508080156125545750600a60019054906101000a900460ff165b801561256d5750600560149054906101000a900460ff16155b80156125c35750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126195750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561266f5750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126b3576001600560146101000a81548160ff021916908315150217905550612697612dce565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127695750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561277357600090505b6000811561292057601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127d657506000600f54115b1561283d5761280360646127f5600f5488612f1c90919063ffffffff16565b612f3290919063ffffffff16565b9050600f54601054826128169190613a62565b6128209190613aeb565b601160008282546128319190613bae565b925050819055506128fc565b601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561289857506000600d54115b156128fb576128c560646128b7600d5488612f1c90919063ffffffff16565b612f3290919063ffffffff16565b9050600d54600e54826128d89190613a62565b6128e29190613aeb565b601160008282546128f39190613bae565b925050819055505b5b600081111561291157612910873083612b56565b5b808561291d9190614642565b94505b61292b878787612b56565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000612aa73061108d565b9050600080821415612aba575050612b54565b612ac382612f48565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612b09906146a7565b60006040518083038185875af1925050503d8060008114612b46576040519150601f19603f3d011682016040523d82523d6000602084013e612b4b565b606091505b50508091505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbd90614270565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d90614302565b60405180910390fd5b612c41838383613185565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbe9061472e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612db5919061355b565b60405180910390a3612dc884848461318a565b50505050565b6000612dd93061108d565b905060006011549050600080831480612df25750600082145b15612dff57505050612f1a565b6014600854612e0e9190613a62565b831115612e27576014600854612e249190613a62565b92505b60008390506000479050612e3a82612f48565b6000612e4f824761318f90919063ffffffff16565b90506000612e7a86612e6c60115485612f1c90919063ffffffff16565b612f3290919063ffffffff16565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612ec2906146a7565b60006040518083038185875af1925050503d8060008114612eff576040519150601f19603f3d011682016040523d82523d6000602084013e612f04565b606091505b5050809550506000601181905550505050505050505b565b60008183612f2a9190613a62565b905092915050565b60008183612f409190613aeb565b905092915050565b6000600267ffffffffffffffff811115612f6557612f6461474e565b5b604051908082528060200260200182016040528015612f935781602001602082028036833780820191505090505b5090503081600081518110612fab57612faa613704565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613050573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130749190614792565b8160018151811061308857613087613704565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130ed307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a30565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161314f9594939291906148b8565b600060405180830381600087803b15801561316957600080fd5b505af115801561317d573d6000803e3d6000fd5b505050505050565b505050565b505050565b6000818361319d9190614642565b905092915050565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f8401126131d4576131d36131af565b5b8235905067ffffffffffffffff8111156131f1576131f06131b4565b5b60208301915083602082028301111561320d5761320c6131b9565b5b9250929050565b60008115159050919050565b61322981613214565b811461323457600080fd5b50565b60008135905061324681613220565b92915050565b600080600060408486031215613265576132646131a5565b5b600084013567ffffffffffffffff811115613283576132826131aa565b5b61328f868287016131be565b935093505060206132a286828701613237565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b60005b838110156132e65780820151818401526020810190506132cb565b838111156132f5576000848401525b50505050565b6000601f19601f8301169050919050565b6000613317826132ac565b61332181856132b7565b93506133318185602086016132c8565b61333a816132fb565b840191505092915050565b6000602082019050818103600083015261335f818461330c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061339282613367565b9050919050565b6133a281613387565b81146133ad57600080fd5b50565b6000813590506133bf81613399565b92915050565b6000819050919050565b6133d8816133c5565b81146133e357600080fd5b50565b6000813590506133f5816133cf565b92915050565b60008060408385031215613412576134116131a5565b5b6000613420858286016133b0565b9250506020613431858286016133e6565b9150509250929050565b61344481613214565b82525050565b600060208201905061345f600083018461343b565b92915050565b6000806040838503121561347c5761347b6131a5565b5b600061348a858286016133e6565b925050602061349b858286016133e6565b9150509250929050565b6000602082840312156134bb576134ba6131a5565b5b60006134c9848285016133b0565b91505092915050565b6000819050919050565b60006134f76134f26134ed84613367565b6134d2565b613367565b9050919050565b6000613509826134dc565b9050919050565b600061351b826134fe565b9050919050565b61352b81613510565b82525050565b60006020820190506135466000830184613522565b92915050565b613555816133c5565b82525050565b6000602082019050613570600083018461354c565b92915050565b60006020828403121561358c5761358b6131a5565b5b600061359a848285016133e6565b91505092915050565b6000806000606084860312156135bc576135bb6131a5565b5b60006135ca868287016133b0565b93505060206135db868287016133b0565b92505060406135ec868287016133e6565b9150509250925092565b6135ff81613387565b82525050565b600060208201905061361a60008301846135f6565b92915050565b600060ff82169050919050565b61363681613620565b82525050565b6000602082019050613651600083018461362d565b92915050565b6000806040838503121561366e5761366d6131a5565b5b600061367c858286016133b0565b925050602061368d85828601613237565b9150509250929050565b6000602082840312156136ad576136ac6131a5565b5b60006136bb84828501613237565b91505092915050565b600080604083850312156136db576136da6131a5565b5b60006136e9858286016133b0565b92505060206136fa858286016133b0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061376d826133c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137a05761379f613733565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137f257607f821691505b60208210811415613806576138056137ab565b5b50919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613842601d836132b7565b915061384d8261380c565b602082019050919050565b6000602082019050818103600083015261387181613835565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b60006138ae601d836132b7565b91506138b982613878565b602082019050919050565b600060208201905081810360008301526138dd816138a1565b9050919050565b60008160011c9050919050565b6000808291508390505b600185111561393b5780860481111561391757613916613733565b5b60018516156139265780820291505b8081029050613934856138e4565b94506138fb565b94509492505050565b6000826139545760019050613a10565b816139625760009050613a10565b81600181146139785760028114613982576139b1565b6001915050613a10565b60ff84111561399457613993613733565b5b8360020a9150848211156139ab576139aa613733565b5b50613a10565b5060208310610133831016604e8410600b84101617156139e65782820a9050838111156139e1576139e0613733565b5b613a10565b6139f384848460016138f1565b92509050818404811115613a0a57613a09613733565b5b81810290505b9392505050565b6000613a22826133c5565b9150613a2d83613620565b9250613a5a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613944565b905092915050565b6000613a6d826133c5565b9150613a78836133c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ab157613ab0613733565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613af6826133c5565b9150613b01836133c5565b925082613b1157613b10613abc565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613b78602f836132b7565b9150613b8382613b1c565b604082019050919050565b60006020820190508181036000830152613ba781613b6b565b9050919050565b6000613bb9826133c5565b9150613bc4836133c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bf957613bf8613733565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613c606039836132b7565b9150613c6b82613c04565b604082019050919050565b60006020820190508181036000830152613c8f81613c53565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613cf26025836132b7565b9150613cfd82613c96565b604082019050919050565b60006020820190508181036000830152613d2181613ce5565b9050919050565b7f4f6e6c79206465762077616c6c65742063616e2063616c6c207468697320667560008201527f6e6374696f6e0000000000000000000000000000000000000000000000000000602082015250565b6000613d846026836132b7565b9150613d8f82613d28565b604082019050919050565b60006020820190508181036000830152613db381613d77565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613e166024836132b7565b9150613e2182613dba565b604082019050919050565b60006020820190508181036000830152613e4581613e09565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613ea86035836132b7565b9150613eb382613e4c565b604082019050919050565b60006020820190508181036000830152613ed781613e9b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000613f3a6032836132b7565b9150613f4582613ede565b604082019050919050565b60006020820190508181036000830152613f6981613f2d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fcc6026836132b7565b9150613fd782613f70565b604082019050919050565b60006020820190508181036000830152613ffb81613fbf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140386020836132b7565b915061404382614002565b602082019050919050565b600060208201905081810360008301526140678161402b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140ca6024836132b7565b91506140d58261406e565b604082019050919050565b600060208201905081810360008301526140f9816140bd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061415c6022836132b7565b915061416782614100565b604082019050919050565b6000602082019050818103600083015261418b8161414f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006141c8601d836132b7565b91506141d382614192565b602082019050919050565b600060208201905081810360008301526141f7816141bb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061425a6025836132b7565b9150614265826141fe565b604082019050919050565b600060208201905081810360008301526142898161424d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006142ec6023836132b7565b91506142f782614290565b604082019050919050565b6000602082019050818103600083015261431b816142df565b9050919050565b7f52656a6563746564000000000000000000000000000000000000000000000000600082015250565b60006143586008836132b7565b915061436382614322565b602082019050919050565b600060208201905081810360008301526143878161434b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006143c46016836132b7565b91506143cf8261438e565b602082019050919050565b600060208201905081810360008301526143f3816143b7565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061447c6049836132b7565b9150614487826143fa565b606082019050919050565b600060208201905081810360008301526144ab8161446f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061450e6035836132b7565b9150614519826144b2565b604082019050919050565b6000602082019050818103600083015261453d81614501565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061457a6013836132b7565b915061458582614544565b602082019050919050565b600060208201905081810360008301526145a98161456d565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061460c6036836132b7565b9150614617826145b0565b604082019050919050565b6000602082019050818103600083015261463b816145ff565b9050919050565b600061464d826133c5565b9150614658836133c5565b92508282101561466b5761466a613733565b5b828203905092915050565b600081905092915050565b50565b6000614691600083614676565b915061469c82614681565b600082019050919050565b60006146b282614684565b9150819050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006147186026836132b7565b9150614723826146bc565b604082019050919050565b600060208201905081810360008301526147478161470b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061478c81613399565b92915050565b6000602082840312156147a8576147a76131a5565b5b60006147b68482850161477d565b91505092915050565b6000819050919050565b60006147e46147df6147da846147bf565b6134d2565b6133c5565b9050919050565b6147f4816147c9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61482f81613387565b82525050565b60006148418383614826565b60208301905092915050565b6000602082019050919050565b6000614865826147fa565b61486f8185614805565b935061487a83614816565b8060005b838110156148ab5781516148928882614835565b975061489d8361484d565b92505060018101905061487e565b5085935050505092915050565b600060a0820190506148cd600083018861354c565b6148da60208301876147eb565b81810360408301526148ec818661485a565b90506148fb60608301856135f6565b614908608083018461354c565b969550505050505056fea26469706673582212200d2f9961f5c4702d20880fb281820cd9b58110e8588e2e208719c60d527d9c2564736f6c634300080a0033

Deployed Bytecode Sourcemap

35316:13504:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39134:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14171:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16521:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41855:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36448:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35390:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15290:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42850:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36539:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40995:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17302:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35493:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15133:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18006:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35448:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43341:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36258:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36149:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35807:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15461:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7596:103;;;;;;;;;;;;;:::i;:::-;;41496:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39763:112;;;;;;;;;;;;;:::i;:::-;;6948:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35585:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41740:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14390:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42398:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36112:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36222:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36184:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18747:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15794:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36739:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35741:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39628:81;;;;;;;;;;;;;:::i;:::-;;42208:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41253:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39362:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36030:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35622:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40149:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36078:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16050:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35664:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39940:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7854:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40546:437;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35704:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39134:220;6834:13;:11;:13::i;:::-;39241:6:::1;39236:111;39253:10;;:17;;39251:1;:19;39236:111;;;39320:15;39292:10;:25;39303:10;;39314:1;39303:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;39292:25;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;39272:3;;;;;:::i;:::-;;;;39236:111;;;;39134:220:::0;;;:::o;14171:100::-;14225:13;14258:5;14251:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14171:100;:::o;16521:201::-;16604:4;16621:13;16637:12;:10;:12::i;:::-;16621:28;;16660:32;16669:5;16676:7;16685:6;16660:8;:32::i;:::-;16710:4;16703:11;;;16521:201;;;;:::o;41855:345::-;6834:13;:11;:13::i;:::-;41947:4:::1;41934:10;:17;;;;41974:3;41962:9;:15;;;;42004:10;;41988:13;:26;;;;42040:9;;42025:12;:24;;;;42084:2;42068:12;;:18;;42060:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;42156:2;42139:13;;:19;;42131:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41855:345:::0;;:::o;36448:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;35390:51::-;;;:::o;15290:108::-;15351:7;15378:12;;15371:19;;15290:108;:::o;42850:157::-;6834:13;:11;:13::i;:::-;42957:9:::1;;;;;;;;;;;42929:38;;42946:9;42929:38;;;;;;;;;;;;42990:9;42978;;:21;;;;;;;;;;;;;;;;;;42850:157:::0;:::o;36539:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;40995:250::-;6834:13;:11;:13::i;:::-;37340:1:::1;41114:2;:13;;;;:::i;:::-;41108:4;41104:1;41088:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;41087:40;;;;:::i;:::-;41077:6;:50;;41069:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;37340:1;41223:2;:13;;;;:::i;:::-;41213:6;:24;;;;:::i;:::-;41190:20;:47;;;;40995:250:::0;:::o;17302:295::-;17433:4;17450:15;17468:12;:10;:12::i;:::-;17450:30;;17491:38;17507:4;17513:7;17522:6;17491:15;:38::i;:::-;17540:27;17550:4;17556:2;17560:6;17540:9;:27::i;:::-;17585:4;17578:11;;;17302:295;;;;;:::o;35493:53::-;35539:6;35493:53;:::o;15133:92::-;15191:5;15216:1;15209:8;;15133:92;:::o;18006:238::-;18094:4;18111:13;18127:12;:10;:12::i;:::-;18111:28;;18150:64;18159:5;18166:7;18203:10;18175:25;18185:5;18192:7;18175:9;:25::i;:::-;:38;;;;:::i;:::-;18150:8;:64::i;:::-;18232:4;18225:11;;;18006:238;;;;:::o;35448:38::-;;;:::o;43341:125::-;43406:4;43430:19;:28;43450:7;43430:28;;;;;;;;;;;;;;;;;;;;;;;;;43423:35;;43341:125;;;:::o;36258:36::-;;;;;;;;;;;;;:::o;36149:28::-;;;;:::o;35807:31::-;;;;;;;;;;;;;:::o;15461:127::-;15535:7;15562:9;:18;15572:7;15562:18;;;;;;;;;;;;;;;;15555:25;;15461:127;;;:::o;7596:103::-;6834:13;:11;:13::i;:::-;7661:30:::1;7688:1;7661:18;:30::i;:::-;7596:103::o:0;41496:144::-;6834:13;:11;:13::i;:::-;41628:4:::1;41586:31;:39;41618:6;41586:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;41496:144:::0;;:::o;39763:112::-;6834:13;:11;:13::i;:::-;39834:4:::1;39818:13;;:20;;;;;;;;;;;;;;;;;;39863:4;39849:11;;:18;;;;;;;;;;;;;;;;;;39763:112::o:0;6948:87::-;6994:7;7021:6;;;;;;;;;;;7014:13;;6948:87;:::o;35585:24::-;;;;;;;;;;;;;:::o;41740:101::-;6834:13;:11;:13::i;:::-;41826:7:::1;41812:11;;:21;;;;;;;;;;;;;;;;;;41740:101:::0;:::o;14390:104::-;14446:13;14479:7;14472:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14390:104;:::o;42398:244::-;6834:13;:11;:13::i;:::-;42505::::1;42497:21;;:4;:21;;;;42489:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;42593:41;42622:4;42628:5;42593:28;:41::i;:::-;42398:244:::0;;:::o;36112:24::-;;;;:::o;36222:27::-;;;;:::o;36184:25::-;;;;:::o;18747:436::-;18840:4;18857:13;18873:12;:10;:12::i;:::-;18857:28;;18896:24;18923:25;18933:5;18940:7;18923:9;:25::i;:::-;18896:52;;18987:15;18967:16;:35;;18959:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;19080:60;19089:5;19096:7;19124:15;19105:16;:34;19080:8;:60::i;:::-;19171:4;19164:11;;;;18747:436;;;;:::o;15794:193::-;15873:4;15890:13;15906:12;:10;:12::i;:::-;15890:28;;15929;15939:5;15946:2;15950:6;15929:9;:28::i;:::-;15975:4;15968:11;;;15794:193;;;;:::o;36739:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;35741:32::-;;;;;;;;;;;;;:::o;39628:81::-;39548:9;;;;;;;;;;;39534:23;;:10;:23;;;39526:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;39683:18:::1;:16;:18::i;:::-;39628:81::o:0;42208:182::-;6834:13;:11;:13::i;:::-;42324:8:::1;42293:19;:28;42313:7;42293:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42364:7;42348:34;;;42373:8;42348:34;;;;;;:::i;:::-;;;;;;;;42208:182:::0;;:::o;41253:231::-;6834:13;:11;:13::i;:::-;37340:1:::1;41375:2;:13;;;;:::i;:::-;41369:4;41365:1;41349:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;41348:40;;;;:::i;:::-;41338:6;:50;;41330:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;37340:1;41462:2;:13;;;;:::i;:::-;41452:6;:24;;;;:::i;:::-;41440:9;:36;;;;41253:231:::0;:::o;39362:126::-;6834:13;:11;:13::i;:::-;39465:15:::1;39446:16;;:34;;;;;;;;;;;;;;;;;;39362:126:::0;:::o;36030:39::-;;;;;;;;;;;;;:::o;35622:35::-;;;;:::o;40149:385::-;40230:4;6834:13;:11;:13::i;:::-;40287:6:::1;40283:1;40267:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;40254:9;:39;;40246:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;40404:4;40399:2;40383:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:25;;;;:::i;:::-;40370:9;:38;;40362:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;40495:9;40474:18;:30;;;;40522:4;40515:11;;40149:385:::0;;;:::o;36078:27::-;;;;:::o;16050:151::-;16139:7;16166:11;:18;16178:5;16166:18;;;;;;;;;;;;;;;:27;16185:7;16166:27;;;;;;;;;;;;;;;;16159:34;;16050:151;;;;:::o;35664:33::-;;;;:::o;39940:134::-;40000:4;6834:13;:11;:13::i;:::-;40039:5:::1;40016:20;;:28;;;;;;;;;;;;;;;;;;40062:4;40055:11;;39940:134:::0;:::o;7854:201::-;6834:13;:11;:13::i;:::-;7963:1:::1;7943:22;;:8;:22;;;;7935:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8019:28;8038:8;8019:18;:28::i;:::-;7854:201:::0;:::o;40546:437::-;6834:13;:11;:13::i;:::-;37340:1:::1;40688:2;:13;;;;:::i;:::-;40682:4;40678:1;40662:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;40661:40;;;;:::i;:::-;40649:8;:52;;40641:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;37340:1;40799:2;:13;;;;:::i;:::-;40787:8;:26;;;;:::i;:::-;40764:20;:49;;;;40877:4;40871;40867:1;40851:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;40850:31;;;;:::i;:::-;40834:12;:47;;40826:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;37340:1;40961:2;:13;;;;:::i;:::-;40945:12;:30;;;;:::i;:::-;40933:9;:42;;;;40546:437:::0;;:::o;35704:24::-;;;;:::o;7113:132::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7113:132::o;5499:98::-;5552:7;5579:10;5572:17;;5499:98;:::o;22774:380::-;22927:1;22910:19;;:5;:19;;;;22902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23008:1;22989:21;;:7;:21;;;;22981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23092:6;23062:11;:18;23074:5;23062:18;;;;;;;;;;;;;;;:27;23081:7;23062:27;;;;;;;;;;;;;;;:36;;;;23130:7;23114:32;;23123:5;23114:32;;;23139:6;23114:32;;;;;;:::i;:::-;;;;;;;;22774:380;;;:::o;23445:453::-;23580:24;23607:25;23617:5;23624:7;23607:9;:25::i;:::-;23580:52;;23667:17;23647:16;:37;23643:248;;23729:6;23709:16;:26;;23701:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23813:51;23822:5;23829:7;23857:6;23838:16;:25;23813:8;:51::i;:::-;23643:248;23569:329;23445:453;;;:::o;43528:3777::-;43676:1;43660:18;;:4;:18;;;;43652:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43753:1;43739:16;;:2;:16;;;;43731:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43821:1;43811:6;:11;43808:92;;;43839:28;43855:4;43861:2;43865:1;43839:15;:28::i;:::-;43882:7;;43808:92;43946:7;:5;:7::i;:::-;43938:15;;:4;:15;;;;:45;;;;;43976:7;:5;:7::i;:::-;43970:13;;:2;:13;;;;43938:45;:78;;;;;44014:1;44000:16;;:2;:16;;;;43938:78;:116;;;;;44047:6;44033:21;;:2;:21;;;;43938:116;:142;;;;;44072:8;;;;;;;;;;;44071:9;43938:142;43920:1803;;;44112:16;;;;;;;;;;;44108:94;;;44155:10;:14;44166:2;44155:14;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;;44173:10;:16;44184:4;44173:16;;;;;;;;;;;;;;;;;;;;;;;;;44155:34;44147:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;44108:94;44231:13;;;;;;;;;;;44227:140;;44272:19;:25;44292:4;44272:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44301:19;:23;44321:2;44301:23;;;;;;;;;;;;;;;;;;;;;;;;;44272:52;44264:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;44227:140;44517:20;;;;;;;;;;;44513:403;;;44567:7;:5;:7::i;:::-;44561:13;;:2;:13;;;;:47;;;;;44592:15;44578:30;;:2;:30;;;;44561:47;:79;;;;;44626:13;44612:28;;:2;:28;;;;44561:79;44557:344;;;44714:12;44672:28;:39;44701:9;44672:39;;;;;;;;;;;;;;;;:54;44664:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44869:12;44827:28;:39;44856:9;44827:39;;;;;;;;;;;;;;;:54;;;;44557:344;44513:403;44977:25;:31;45003:4;44977:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;45013:31;:35;45045:2;45013:35;;;;;;;;;;;;;;;;;;;;;;;;;45012:36;44977:71;44973:739;;;45091:20;;45081:6;:30;;45073:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;45226:9;;45209:13;45219:2;45209:9;:13::i;:::-;45200:6;:22;;;;:::i;:::-;:35;;45192:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44973:739;;;45342:25;:29;45368:2;45342:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;45376:31;:37;45408:4;45376:37;;;;;;;;;;;;;;;;;;;;;;;;;45375:38;45342:71;45338:374;;;45456:20;;45446:6;:30;;45438:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;45338:374;;;45574:31;:35;45606:2;45574:35;;;;;;;;;;;;;;;;;;;;;;;;;45570:142;;45663:9;;45646:13;45656:2;45646:9;:13::i;:::-;45637:6;:22;;;;:::i;:::-;:35;;45629:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45570:142;45338:374;44973:739;43920:1803;45745:28;45776:24;45794:4;45776:9;:24::i;:::-;45745:55;;45821:12;45860:18;;45836:20;:42;;45821:57;;45909:7;:35;;;;;45933:11;;;;;;;;;;;45909:35;:61;;;;;45962:8;;;;;;;;;;;45961:9;45909:61;:110;;;;;45988:25;:31;46014:4;45988:31;;;;;;;;;;;;;;;;;;;;;;;;;45987:32;45909:110;:153;;;;;46037:19;:25;46057:4;46037:25;;;;;;;;;;;;;;;;;;;;;;;;;46036:26;45909:153;:194;;;;;46080:19;:23;46100:2;46080:23;;;;;;;;;;;;;;;;;;;;;;;;;46079:24;45909:194;45891:338;;;46141:4;46130:8;;:15;;;;;;;;;;;;;;;;;;46174:10;:8;:10::i;:::-;46212:5;46201:8;;:16;;;;;;;;;;;;;;;;;;45891:338;46247:12;46263:8;;;;;;;;;;;46262:9;46247:24;;46372:19;:25;46392:4;46372:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;46401:19;:23;46421:2;46401:23;;;;;;;;;;;;;;;;;;;;;;;;;46372:52;46369:99;;;46451:5;46441:15;;46369:99;46488:12;46592:7;46589:663;;;46643:25;:29;46669:2;46643:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46692:1;46676:13;;:17;46643:50;46639:438;;;46720:34;46750:3;46720:25;46731:13;;46720:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46713:41;;46809:13;;46796:10;;46789:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;46773:12;;:49;;;;;;;:::i;:::-;;;;;;;;46639:438;;;46883:25;:31;46909:4;46883:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46933:1;46918:12;;:16;46883:51;46880:197;;;46962:33;46991:3;46962:24;46973:12;;46962:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46955:40;;47049:12;;47037:9;;47030:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;47014:12;;:47;;;;;;;:::i;:::-;;;;;;;;46880:197;46639:438;47115:1;47108:4;:8;47105:93;;;47140:42;47156:4;47170;47177;47140:15;:42::i;:::-;47105:93;47236:4;47226:14;;;;;:::i;:::-;;;46589:663;47264:33;47280:4;47286:2;47290:6;47264:15;:33::i;:::-;43641:3664;;;;43528:3777;;;;:::o;8215:191::-;8289:16;8308:6;;;;;;;;;;;8289:25;;8334:8;8325:6;;:17;;;;;;;;;;;;;;;;;;8389:8;8358:40;;8379:8;8358:40;;;;;;;;;;;;8278:128;8215:191;:::o;42650:188::-;42767:5;42733:25;:31;42759:4;42733:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42824:5;42790:40;;42818:4;42790:40;;;;;;;;;;;;42650:188;;:::o;43019:314::-;43067:23;43093:24;43111:4;43093:9;:24::i;:::-;43067:50;;43128:12;43181:1;43162:15;:20;43159:32;;;43184:7;;;;43159:32;43201:33;43218:15;43201:16;:33::i;:::-;43276:9;;;;;;;;;;;43268:23;;43299:21;43268:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43254:71;;;;;43056:277;;43019:314;:::o;19653:840::-;19800:1;19784:18;;:4;:18;;;;19776:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19877:1;19863:16;;:2;:16;;;;19855:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19932:38;19953:4;19959:2;19963:6;19932:20;:38::i;:::-;19983:19;20005:9;:15;20015:4;20005:15;;;;;;;;;;;;;;;;19983:37;;20054:6;20039:11;:21;;20031:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;20171:6;20157:11;:20;20139:9;:15;20149:4;20139:15;;;;;;;;;;;;;;;:38;;;;20374:6;20357:9;:13;20367:2;20357:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;20424:2;20409:26;;20418:4;20409:26;;;20428:6;20409:26;;;;;;:::i;:::-;;;;;;;;20448:37;20468:4;20474:2;20478:6;20448:19;:37::i;:::-;19765:728;19653:840;;;:::o;47922:893::-;47961:23;47987:24;48005:4;47987:9;:24::i;:::-;47961:50;;48022:25;48050:12;;48022:40;;48073:12;48128:1;48109:15;:20;:46;;;;48154:1;48133:17;:22;48109:46;48106:60;;;48158:7;;;;;48106:60;48220:2;48199:18;;:23;;;;:::i;:::-;48181:15;:41;48178:111;;;48275:2;48254:18;;:23;;;;:::i;:::-;48236:41;;48178:111;48358:26;48387:15;48358:44;;48423:25;48451:21;48423:49;;48485:36;48502:18;48485:16;:36::i;:::-;48543:18;48564:44;48590:17;48564:21;:25;;:44;;;;:::i;:::-;48543:65;;48621:17;48641:51;48674:17;48641:28;48656:12;;48641:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48621:71;;48741:9;;;;;;;;;;;48733:23;;48764:9;48733:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48719:59;;;;;48806:1;48791:12;:16;;;;47950:865;;;;;;;47922:893;:::o;2856:98::-;2914:7;2945:1;2941;:5;;;;:::i;:::-;2934:12;;2856:98;;;;:::o;3255:::-;3313:7;3344:1;3340;:5;;;;:::i;:::-;3333:12;;3255:98;;;;:::o;47313:601::-;47441:21;47479:1;47465:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47441:40;;47510:4;47492;47497:1;47492:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47536:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47526:4;47531:1;47526:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47571:62;47588:4;47603:15;47621:11;47571:8;:62::i;:::-;47672:15;:66;;;47753:11;47779:1;47823:4;47850;47870:15;47672:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47368:546;47313:601;:::o;24498:125::-;;;;:::o;25227:124::-;;;;:::o;2499:98::-;2557:7;2588:1;2584;:5;;;;:::i;:::-;2577:12;;2499:98;;;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:117;689:1;686;679:12;720:568;793:8;803:6;853:3;846:4;838:6;834:17;830:27;820:122;;861:79;;:::i;:::-;820:122;974:6;961:20;951:30;;1004:18;996:6;993:30;990:117;;;1026:79;;:::i;:::-;990:117;1140:4;1132:6;1128:17;1116:29;;1194:3;1186:4;1178:6;1174:17;1164:8;1160:32;1157:41;1154:128;;;1201:79;;:::i;:::-;1154:128;720:568;;;;;:::o;1294:90::-;1328:7;1371:5;1364:13;1357:21;1346:32;;1294:90;;;:::o;1390:116::-;1460:21;1475:5;1460:21;:::i;:::-;1453:5;1450:32;1440:60;;1496:1;1493;1486:12;1440:60;1390:116;:::o;1512:133::-;1555:5;1593:6;1580:20;1571:29;;1609:30;1633:5;1609:30;:::i;:::-;1512:133;;;;:::o;1651:698::-;1743:6;1751;1759;1808:2;1796:9;1787:7;1783:23;1779:32;1776:119;;;1814:79;;:::i;:::-;1776:119;1962:1;1951:9;1947:17;1934:31;1992:18;1984:6;1981:30;1978:117;;;2014:79;;:::i;:::-;1978:117;2127:80;2199:7;2190:6;2179:9;2175:22;2127:80;:::i;:::-;2109:98;;;;1905:312;2256:2;2282:50;2324:7;2315:6;2304:9;2300:22;2282:50;:::i;:::-;2272:60;;2227:115;1651:698;;;;;:::o;2355:99::-;2407:6;2441:5;2435:12;2425:22;;2355:99;;;:::o;2460:169::-;2544:11;2578:6;2573:3;2566:19;2618:4;2613:3;2609:14;2594:29;;2460:169;;;;:::o;2635:307::-;2703:1;2713:113;2727:6;2724:1;2721:13;2713:113;;;2812:1;2807:3;2803:11;2797:18;2793:1;2788:3;2784:11;2777:39;2749:2;2746:1;2742:10;2737:15;;2713:113;;;2844:6;2841:1;2838:13;2835:101;;;2924:1;2915:6;2910:3;2906:16;2899:27;2835:101;2684:258;2635:307;;;:::o;2948:102::-;2989:6;3040:2;3036:7;3031:2;3024:5;3020:14;3016:28;3006:38;;2948:102;;;:::o;3056:364::-;3144:3;3172:39;3205:5;3172:39;:::i;:::-;3227:71;3291:6;3286:3;3227:71;:::i;:::-;3220:78;;3307:52;3352:6;3347:3;3340:4;3333:5;3329:16;3307:52;:::i;:::-;3384:29;3406:6;3384:29;:::i;:::-;3379:3;3375:39;3368:46;;3148:272;3056:364;;;;:::o;3426:313::-;3539:4;3577:2;3566:9;3562:18;3554:26;;3626:9;3620:4;3616:20;3612:1;3601:9;3597:17;3590:47;3654:78;3727:4;3718:6;3654:78;:::i;:::-;3646:86;;3426:313;;;;:::o;3745:126::-;3782:7;3822:42;3815:5;3811:54;3800:65;;3745:126;;;:::o;3877:96::-;3914:7;3943:24;3961:5;3943:24;:::i;:::-;3932:35;;3877:96;;;:::o;3979:122::-;4052:24;4070:5;4052:24;:::i;:::-;4045:5;4042:35;4032:63;;4091:1;4088;4081:12;4032:63;3979:122;:::o;4107:139::-;4153:5;4191:6;4178:20;4169:29;;4207:33;4234:5;4207:33;:::i;:::-;4107:139;;;;:::o;4252:77::-;4289:7;4318:5;4307:16;;4252:77;;;:::o;4335:122::-;4408:24;4426:5;4408:24;:::i;:::-;4401:5;4398:35;4388:63;;4447:1;4444;4437:12;4388:63;4335:122;:::o;4463:139::-;4509:5;4547:6;4534:20;4525:29;;4563:33;4590:5;4563:33;:::i;:::-;4463:139;;;;:::o;4608:474::-;4676:6;4684;4733:2;4721:9;4712:7;4708:23;4704:32;4701:119;;;4739:79;;:::i;:::-;4701:119;4859:1;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4830:117;4986:2;5012:53;5057:7;5048:6;5037:9;5033:22;5012:53;:::i;:::-;5002:63;;4957:118;4608:474;;;;;:::o;5088:109::-;5169:21;5184:5;5169:21;:::i;:::-;5164:3;5157:34;5088:109;;:::o;5203:210::-;5290:4;5328:2;5317:9;5313:18;5305:26;;5341:65;5403:1;5392:9;5388:17;5379:6;5341:65;:::i;:::-;5203:210;;;;:::o;5419:474::-;5487:6;5495;5544:2;5532:9;5523:7;5519:23;5515:32;5512:119;;;5550:79;;:::i;:::-;5512:119;5670:1;5695:53;5740:7;5731:6;5720:9;5716:22;5695:53;:::i;:::-;5685:63;;5641:117;5797:2;5823:53;5868:7;5859:6;5848:9;5844:22;5823:53;:::i;:::-;5813:63;;5768:118;5419:474;;;;;:::o;5899:329::-;5958:6;6007:2;5995:9;5986:7;5982:23;5978:32;5975:119;;;6013:79;;:::i;:::-;5975:119;6133:1;6158:53;6203:7;6194:6;6183:9;6179:22;6158:53;:::i;:::-;6148:63;;6104:117;5899:329;;;;:::o;6234:60::-;6262:3;6283:5;6276:12;;6234:60;;;:::o;6300:142::-;6350:9;6383:53;6401:34;6410:24;6428:5;6410:24;:::i;:::-;6401:34;:::i;:::-;6383:53;:::i;:::-;6370:66;;6300:142;;;:::o;6448:126::-;6498:9;6531:37;6562:5;6531:37;:::i;:::-;6518:50;;6448:126;;;:::o;6580:153::-;6657:9;6690:37;6721:5;6690:37;:::i;:::-;6677:50;;6580:153;;;:::o;6739:185::-;6853:64;6911:5;6853:64;:::i;:::-;6848:3;6841:77;6739:185;;:::o;6930:276::-;7050:4;7088:2;7077:9;7073:18;7065:26;;7101:98;7196:1;7185:9;7181:17;7172:6;7101:98;:::i;:::-;6930:276;;;;:::o;7212:118::-;7299:24;7317:5;7299:24;:::i;:::-;7294:3;7287:37;7212:118;;:::o;7336:222::-;7429:4;7467:2;7456:9;7452:18;7444:26;;7480:71;7548:1;7537:9;7533:17;7524:6;7480:71;:::i;:::-;7336:222;;;;:::o;7564:329::-;7623:6;7672:2;7660:9;7651:7;7647:23;7643:32;7640:119;;;7678:79;;:::i;:::-;7640:119;7798:1;7823:53;7868:7;7859:6;7848:9;7844:22;7823:53;:::i;:::-;7813:63;;7769:117;7564:329;;;;:::o;7899:619::-;7976:6;7984;7992;8041:2;8029:9;8020:7;8016:23;8012:32;8009:119;;;8047:79;;:::i;:::-;8009:119;8167:1;8192:53;8237:7;8228:6;8217:9;8213:22;8192:53;:::i;:::-;8182:63;;8138:117;8294:2;8320:53;8365:7;8356:6;8345:9;8341:22;8320:53;:::i;:::-;8310:63;;8265:118;8422:2;8448:53;8493:7;8484:6;8473:9;8469:22;8448:53;:::i;:::-;8438:63;;8393:118;7899:619;;;;;:::o;8524:118::-;8611:24;8629:5;8611:24;:::i;:::-;8606:3;8599:37;8524:118;;:::o;8648:222::-;8741:4;8779:2;8768:9;8764:18;8756:26;;8792:71;8860:1;8849:9;8845:17;8836:6;8792:71;:::i;:::-;8648:222;;;;:::o;8876:86::-;8911:7;8951:4;8944:5;8940:16;8929:27;;8876:86;;;:::o;8968:112::-;9051:22;9067:5;9051:22;:::i;:::-;9046:3;9039:35;8968:112;;:::o;9086:214::-;9175:4;9213:2;9202:9;9198:18;9190:26;;9226:67;9290:1;9279:9;9275:17;9266:6;9226:67;:::i;:::-;9086:214;;;;:::o;9306:468::-;9371:6;9379;9428:2;9416:9;9407:7;9403:23;9399:32;9396:119;;;9434:79;;:::i;:::-;9396:119;9554:1;9579:53;9624:7;9615:6;9604:9;9600:22;9579:53;:::i;:::-;9569:63;;9525:117;9681:2;9707:50;9749:7;9740:6;9729:9;9725:22;9707:50;:::i;:::-;9697:60;;9652:115;9306:468;;;;;:::o;9780:323::-;9836:6;9885:2;9873:9;9864:7;9860:23;9856:32;9853:119;;;9891:79;;:::i;:::-;9853:119;10011:1;10036:50;10078:7;10069:6;10058:9;10054:22;10036:50;:::i;:::-;10026:60;;9982:114;9780:323;;;;:::o;10109:474::-;10177:6;10185;10234:2;10222:9;10213:7;10209:23;10205:32;10202:119;;;10240:79;;:::i;:::-;10202:119;10360:1;10385:53;10430:7;10421:6;10410:9;10406:22;10385:53;:::i;:::-;10375:63;;10331:117;10487:2;10513:53;10558:7;10549:6;10538:9;10534:22;10513:53;:::i;:::-;10503:63;;10458:118;10109:474;;;;;:::o;10589:180::-;10637:77;10634:1;10627:88;10734:4;10731:1;10724:15;10758:4;10755:1;10748:15;10775:180;10823:77;10820:1;10813:88;10920:4;10917:1;10910:15;10944:4;10941:1;10934:15;10961:233;11000:3;11023:24;11041:5;11023:24;:::i;:::-;11014:33;;11069:66;11062:5;11059:77;11056:103;;;11139:18;;:::i;:::-;11056:103;11186:1;11179:5;11175:13;11168:20;;10961:233;;;:::o;11200:180::-;11248:77;11245:1;11238:88;11345:4;11342:1;11335:15;11369:4;11366:1;11359:15;11386:320;11430:6;11467:1;11461:4;11457:12;11447:22;;11514:1;11508:4;11504:12;11535:18;11525:81;;11591:4;11583:6;11579:17;11569:27;;11525:81;11653:2;11645:6;11642:14;11622:18;11619:38;11616:84;;;11672:18;;:::i;:::-;11616:84;11437:269;11386:320;;;:::o;11712:179::-;11852:31;11848:1;11840:6;11836:14;11829:55;11712:179;:::o;11897:366::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:419::-;12435:4;12473:2;12462:9;12458:18;12450:26;;12522:9;12516:4;12512:20;12508:1;12497:9;12493:17;12486:47;12550:131;12676:4;12550:131;:::i;:::-;12542:139;;12269:419;;;:::o;12694:179::-;12834:31;12830:1;12822:6;12818:14;12811:55;12694:179;:::o;12879:366::-;13021:3;13042:67;13106:2;13101:3;13042:67;:::i;:::-;13035:74;;13118:93;13207:3;13118:93;:::i;:::-;13236:2;13231:3;13227:12;13220:19;;12879:366;;;:::o;13251:419::-;13417:4;13455:2;13444:9;13440:18;13432:26;;13504:9;13498:4;13494:20;13490:1;13479:9;13475:17;13468:47;13532:131;13658:4;13532:131;:::i;:::-;13524:139;;13251:419;;;:::o;13676:102::-;13718:8;13765:5;13762:1;13758:13;13737:34;;13676:102;;;:::o;13784:848::-;13845:5;13852:4;13876:6;13867:15;;13900:5;13891:14;;13914:712;13935:1;13925:8;13922:15;13914:712;;;14030:4;14025:3;14021:14;14015:4;14012:24;14009:50;;;14039:18;;:::i;:::-;14009:50;14089:1;14079:8;14075:16;14072:451;;;14504:4;14497:5;14493:16;14484:25;;14072:451;14554:4;14548;14544:15;14536:23;;14584:32;14607:8;14584:32;:::i;:::-;14572:44;;13914:712;;;13784:848;;;;;;;:::o;14638:1073::-;14692:5;14883:8;14873:40;;14904:1;14895:10;;14906:5;;14873:40;14932:4;14922:36;;14949:1;14940:10;;14951:5;;14922:36;15018:4;15066:1;15061:27;;;;15102:1;15097:191;;;;15011:277;;15061:27;15079:1;15070:10;;15081:5;;;15097:191;15142:3;15132:8;15129:17;15126:43;;;15149:18;;:::i;:::-;15126:43;15198:8;15195:1;15191:16;15182:25;;15233:3;15226:5;15223:14;15220:40;;;15240:18;;:::i;:::-;15220:40;15273:5;;;15011:277;;15397:2;15387:8;15384:16;15378:3;15372:4;15369:13;15365:36;15347:2;15337:8;15334:16;15329:2;15323:4;15320:12;15316:35;15300:111;15297:246;;;15453:8;15447:4;15443:19;15434:28;;15488:3;15481:5;15478:14;15475:40;;;15495:18;;:::i;:::-;15475:40;15528:5;;15297:246;15568:42;15606:3;15596:8;15590:4;15587:1;15568:42;:::i;:::-;15553:57;;;;15642:4;15637:3;15633:14;15626:5;15623:25;15620:51;;;15651:18;;:::i;:::-;15620:51;15700:4;15693:5;15689:16;15680:25;;14638:1073;;;;;;:::o;15717:281::-;15775:5;15799:23;15817:4;15799:23;:::i;:::-;15791:31;;15843:25;15859:8;15843:25;:::i;:::-;15831:37;;15887:104;15924:66;15914:8;15908:4;15887:104;:::i;:::-;15878:113;;15717:281;;;;:::o;16004:348::-;16044:7;16067:20;16085:1;16067:20;:::i;:::-;16062:25;;16101:20;16119:1;16101:20;:::i;:::-;16096:25;;16289:1;16221:66;16217:74;16214:1;16211:81;16206:1;16199:9;16192:17;16188:105;16185:131;;;16296:18;;:::i;:::-;16185:131;16344:1;16341;16337:9;16326:20;;16004:348;;;;:::o;16358:180::-;16406:77;16403:1;16396:88;16503:4;16500:1;16493:15;16527:4;16524:1;16517:15;16544:185;16584:1;16601:20;16619:1;16601:20;:::i;:::-;16596:25;;16635:20;16653:1;16635:20;:::i;:::-;16630:25;;16674:1;16664:35;;16679:18;;:::i;:::-;16664:35;16721:1;16718;16714:9;16709:14;;16544:185;;;;:::o;16735:234::-;16875:34;16871:1;16863:6;16859:14;16852:58;16944:17;16939:2;16931:6;16927:15;16920:42;16735:234;:::o;16975:366::-;17117:3;17138:67;17202:2;17197:3;17138:67;:::i;:::-;17131:74;;17214:93;17303:3;17214:93;:::i;:::-;17332:2;17327:3;17323:12;17316:19;;16975:366;;;:::o;17347:419::-;17513:4;17551:2;17540:9;17536:18;17528:26;;17600:9;17594:4;17590:20;17586:1;17575:9;17571:17;17564:47;17628:131;17754:4;17628:131;:::i;:::-;17620:139;;17347:419;;;:::o;17772:305::-;17812:3;17831:20;17849:1;17831:20;:::i;:::-;17826:25;;17865:20;17883:1;17865:20;:::i;:::-;17860:25;;18019:1;17951:66;17947:74;17944:1;17941:81;17938:107;;;18025:18;;:::i;:::-;17938:107;18069:1;18066;18062:9;18055:16;;17772:305;;;;:::o;18083:244::-;18223:34;18219:1;18211:6;18207:14;18200:58;18292:27;18287:2;18279:6;18275:15;18268:52;18083:244;:::o;18333:366::-;18475:3;18496:67;18560:2;18555:3;18496:67;:::i;:::-;18489:74;;18572:93;18661:3;18572:93;:::i;:::-;18690:2;18685:3;18681:12;18674:19;;18333:366;;;:::o;18705:419::-;18871:4;18909:2;18898:9;18894:18;18886:26;;18958:9;18952:4;18948:20;18944:1;18933:9;18929:17;18922:47;18986:131;19112:4;18986:131;:::i;:::-;18978:139;;18705:419;;;:::o;19130:224::-;19270:34;19266:1;19258:6;19254:14;19247:58;19339:7;19334:2;19326:6;19322:15;19315:32;19130:224;:::o;19360:366::-;19502:3;19523:67;19587:2;19582:3;19523:67;:::i;:::-;19516:74;;19599:93;19688:3;19599:93;:::i;:::-;19717:2;19712:3;19708:12;19701:19;;19360:366;;;:::o;19732:419::-;19898:4;19936:2;19925:9;19921:18;19913:26;;19985:9;19979:4;19975:20;19971:1;19960:9;19956:17;19949:47;20013:131;20139:4;20013:131;:::i;:::-;20005:139;;19732:419;;;:::o;20157:225::-;20297:34;20293:1;20285:6;20281:14;20274:58;20366:8;20361:2;20353:6;20349:15;20342:33;20157:225;:::o;20388:366::-;20530:3;20551:67;20615:2;20610:3;20551:67;:::i;:::-;20544:74;;20627:93;20716:3;20627:93;:::i;:::-;20745:2;20740:3;20736:12;20729:19;;20388:366;;;:::o;20760:419::-;20926:4;20964:2;20953:9;20949:18;20941:26;;21013:9;21007:4;21003:20;20999:1;20988:9;20984:17;20977:47;21041:131;21167:4;21041:131;:::i;:::-;21033:139;;20760:419;;;:::o;21185:223::-;21325:34;21321:1;21313:6;21309:14;21302:58;21394:6;21389:2;21381:6;21377:15;21370:31;21185:223;:::o;21414:366::-;21556:3;21577:67;21641:2;21636:3;21577:67;:::i;:::-;21570:74;;21653:93;21742:3;21653:93;:::i;:::-;21771:2;21766:3;21762:12;21755:19;;21414:366;;;:::o;21786:419::-;21952:4;21990:2;21979:9;21975:18;21967:26;;22039:9;22033:4;22029:20;22025:1;22014:9;22010:17;22003:47;22067:131;22193:4;22067:131;:::i;:::-;22059:139;;21786:419;;;:::o;22211:240::-;22351:34;22347:1;22339:6;22335:14;22328:58;22420:23;22415:2;22407:6;22403:15;22396:48;22211:240;:::o;22457:366::-;22599:3;22620:67;22684:2;22679:3;22620:67;:::i;:::-;22613:74;;22696:93;22785:3;22696:93;:::i;:::-;22814:2;22809:3;22805:12;22798:19;;22457:366;;;:::o;22829:419::-;22995:4;23033:2;23022:9;23018:18;23010:26;;23082:9;23076:4;23072:20;23068:1;23057:9;23053:17;23046:47;23110:131;23236:4;23110:131;:::i;:::-;23102:139;;22829:419;;;:::o;23254:237::-;23394:34;23390:1;23382:6;23378:14;23371:58;23463:20;23458:2;23450:6;23446:15;23439:45;23254:237;:::o;23497:366::-;23639:3;23660:67;23724:2;23719:3;23660:67;:::i;:::-;23653:74;;23736:93;23825:3;23736:93;:::i;:::-;23854:2;23849:3;23845:12;23838:19;;23497:366;;;:::o;23869:419::-;24035:4;24073:2;24062:9;24058:18;24050:26;;24122:9;24116:4;24112:20;24108:1;24097:9;24093:17;24086:47;24150:131;24276:4;24150:131;:::i;:::-;24142:139;;23869:419;;;:::o;24294:225::-;24434:34;24430:1;24422:6;24418:14;24411:58;24503:8;24498:2;24490:6;24486:15;24479:33;24294:225;:::o;24525:366::-;24667:3;24688:67;24752:2;24747:3;24688:67;:::i;:::-;24681:74;;24764:93;24853:3;24764:93;:::i;:::-;24882:2;24877:3;24873:12;24866:19;;24525:366;;;:::o;24897:419::-;25063:4;25101:2;25090:9;25086:18;25078:26;;25150:9;25144:4;25140:20;25136:1;25125:9;25121:17;25114:47;25178:131;25304:4;25178:131;:::i;:::-;25170:139;;24897:419;;;:::o;25322:182::-;25462:34;25458:1;25450:6;25446:14;25439:58;25322:182;:::o;25510:366::-;25652:3;25673:67;25737:2;25732:3;25673:67;:::i;:::-;25666:74;;25749:93;25838:3;25749:93;:::i;:::-;25867:2;25862:3;25858:12;25851:19;;25510:366;;;:::o;25882:419::-;26048:4;26086:2;26075:9;26071:18;26063:26;;26135:9;26129:4;26125:20;26121:1;26110:9;26106:17;26099:47;26163:131;26289:4;26163:131;:::i;:::-;26155:139;;25882:419;;;:::o;26307:223::-;26447:34;26443:1;26435:6;26431:14;26424:58;26516:6;26511:2;26503:6;26499:15;26492:31;26307:223;:::o;26536:366::-;26678:3;26699:67;26763:2;26758:3;26699:67;:::i;:::-;26692:74;;26775:93;26864:3;26775:93;:::i;:::-;26893:2;26888:3;26884:12;26877:19;;26536:366;;;:::o;26908:419::-;27074:4;27112:2;27101:9;27097:18;27089:26;;27161:9;27155:4;27151:20;27147:1;27136:9;27132:17;27125:47;27189:131;27315:4;27189:131;:::i;:::-;27181:139;;26908:419;;;:::o;27333:221::-;27473:34;27469:1;27461:6;27457:14;27450:58;27542:4;27537:2;27529:6;27525:15;27518:29;27333:221;:::o;27560:366::-;27702:3;27723:67;27787:2;27782:3;27723:67;:::i;:::-;27716:74;;27799:93;27888:3;27799:93;:::i;:::-;27917:2;27912:3;27908:12;27901:19;;27560:366;;;:::o;27932:419::-;28098:4;28136:2;28125:9;28121:18;28113:26;;28185:9;28179:4;28175:20;28171:1;28160:9;28156:17;28149:47;28213:131;28339:4;28213:131;:::i;:::-;28205:139;;27932:419;;;:::o;28357:179::-;28497:31;28493:1;28485:6;28481:14;28474:55;28357:179;:::o;28542:366::-;28684:3;28705:67;28769:2;28764:3;28705:67;:::i;:::-;28698:74;;28781:93;28870:3;28781:93;:::i;:::-;28899:2;28894:3;28890:12;28883:19;;28542:366;;;:::o;28914:419::-;29080:4;29118:2;29107:9;29103:18;29095:26;;29167:9;29161:4;29157:20;29153:1;29142:9;29138:17;29131:47;29195:131;29321:4;29195:131;:::i;:::-;29187:139;;28914:419;;;:::o;29339:224::-;29479:34;29475:1;29467:6;29463:14;29456:58;29548:7;29543:2;29535:6;29531:15;29524:32;29339:224;:::o;29569:366::-;29711:3;29732:67;29796:2;29791:3;29732:67;:::i;:::-;29725:74;;29808:93;29897:3;29808:93;:::i;:::-;29926:2;29921:3;29917:12;29910:19;;29569:366;;;:::o;29941:419::-;30107:4;30145:2;30134:9;30130:18;30122:26;;30194:9;30188:4;30184:20;30180:1;30169:9;30165:17;30158:47;30222:131;30348:4;30222:131;:::i;:::-;30214:139;;29941:419;;;:::o;30366:222::-;30506:34;30502:1;30494:6;30490:14;30483:58;30575:5;30570:2;30562:6;30558:15;30551:30;30366:222;:::o;30594:366::-;30736:3;30757:67;30821:2;30816:3;30757:67;:::i;:::-;30750:74;;30833:93;30922:3;30833:93;:::i;:::-;30951:2;30946:3;30942:12;30935:19;;30594:366;;;:::o;30966:419::-;31132:4;31170:2;31159:9;31155:18;31147:26;;31219:9;31213:4;31209:20;31205:1;31194:9;31190:17;31183:47;31247:131;31373:4;31247:131;:::i;:::-;31239:139;;30966:419;;;:::o;31391:158::-;31531:10;31527:1;31519:6;31515:14;31508:34;31391:158;:::o;31555:365::-;31697:3;31718:66;31782:1;31777:3;31718:66;:::i;:::-;31711:73;;31793:93;31882:3;31793:93;:::i;:::-;31911:2;31906:3;31902:12;31895:19;;31555:365;;;:::o;31926:419::-;32092:4;32130:2;32119:9;32115:18;32107:26;;32179:9;32173:4;32169:20;32165:1;32154:9;32150:17;32143:47;32207:131;32333:4;32207:131;:::i;:::-;32199:139;;31926:419;;;:::o;32351:172::-;32491:24;32487:1;32479:6;32475:14;32468:48;32351:172;:::o;32529:366::-;32671:3;32692:67;32756:2;32751:3;32692:67;:::i;:::-;32685:74;;32768:93;32857:3;32768:93;:::i;:::-;32886:2;32881:3;32877:12;32870:19;;32529:366;;;:::o;32901:419::-;33067:4;33105:2;33094:9;33090:18;33082:26;;33154:9;33148:4;33144:20;33140:1;33129:9;33125:17;33118:47;33182:131;33308:4;33182:131;:::i;:::-;33174:139;;32901:419;;;:::o;33326:297::-;33466:34;33462:1;33454:6;33450:14;33443:58;33535:34;33530:2;33522:6;33518:15;33511:59;33604:11;33599:2;33591:6;33587:15;33580:36;33326:297;:::o;33629:366::-;33771:3;33792:67;33856:2;33851:3;33792:67;:::i;:::-;33785:74;;33868:93;33957:3;33868:93;:::i;:::-;33986:2;33981:3;33977:12;33970:19;;33629:366;;;:::o;34001:419::-;34167:4;34205:2;34194:9;34190:18;34182:26;;34254:9;34248:4;34244:20;34240:1;34229:9;34225:17;34218:47;34282:131;34408:4;34282:131;:::i;:::-;34274:139;;34001:419;;;:::o;34426:240::-;34566:34;34562:1;34554:6;34550:14;34543:58;34635:23;34630:2;34622:6;34618:15;34611:48;34426:240;:::o;34672:366::-;34814:3;34835:67;34899:2;34894:3;34835:67;:::i;:::-;34828:74;;34911:93;35000:3;34911:93;:::i;:::-;35029:2;35024:3;35020:12;35013:19;;34672:366;;;:::o;35044:419::-;35210:4;35248:2;35237:9;35233:18;35225:26;;35297:9;35291:4;35287:20;35283:1;35272:9;35268:17;35261:47;35325:131;35451:4;35325:131;:::i;:::-;35317:139;;35044:419;;;:::o;35469:169::-;35609:21;35605:1;35597:6;35593:14;35586:45;35469:169;:::o;35644:366::-;35786:3;35807:67;35871:2;35866:3;35807:67;:::i;:::-;35800:74;;35883:93;35972:3;35883:93;:::i;:::-;36001:2;35996:3;35992:12;35985:19;;35644:366;;;:::o;36016:419::-;36182:4;36220:2;36209:9;36205:18;36197:26;;36269:9;36263:4;36259:20;36255:1;36244:9;36240:17;36233:47;36297:131;36423:4;36297:131;:::i;:::-;36289:139;;36016:419;;;:::o;36441:241::-;36581:34;36577:1;36569:6;36565:14;36558:58;36650:24;36645:2;36637:6;36633:15;36626:49;36441:241;:::o;36688:366::-;36830:3;36851:67;36915:2;36910:3;36851:67;:::i;:::-;36844:74;;36927:93;37016:3;36927:93;:::i;:::-;37045:2;37040:3;37036:12;37029:19;;36688:366;;;:::o;37060:419::-;37226:4;37264:2;37253:9;37249:18;37241:26;;37313:9;37307:4;37303:20;37299:1;37288:9;37284:17;37277:47;37341:131;37467:4;37341:131;:::i;:::-;37333:139;;37060:419;;;:::o;37485:191::-;37525:4;37545:20;37563:1;37545:20;:::i;:::-;37540:25;;37579:20;37597:1;37579:20;:::i;:::-;37574:25;;37618:1;37615;37612:8;37609:34;;;37623:18;;:::i;:::-;37609:34;37668:1;37665;37661:9;37653:17;;37485:191;;;;:::o;37682:147::-;37783:11;37820:3;37805:18;;37682:147;;;;:::o;37835:114::-;;:::o;37955:398::-;38114:3;38135:83;38216:1;38211:3;38135:83;:::i;:::-;38128:90;;38227:93;38316:3;38227:93;:::i;:::-;38345:1;38340:3;38336:11;38329:18;;37955:398;;;:::o;38359:379::-;38543:3;38565:147;38708:3;38565:147;:::i;:::-;38558:154;;38729:3;38722:10;;38359:379;;;:::o;38744:225::-;38884:34;38880:1;38872:6;38868:14;38861:58;38953:8;38948:2;38940:6;38936:15;38929:33;38744:225;:::o;38975:366::-;39117:3;39138:67;39202:2;39197:3;39138:67;:::i;:::-;39131:74;;39214:93;39303:3;39214:93;:::i;:::-;39332:2;39327:3;39323:12;39316:19;;38975:366;;;:::o;39347:419::-;39513:4;39551:2;39540:9;39536:18;39528:26;;39600:9;39594:4;39590:20;39586:1;39575:9;39571:17;39564:47;39628:131;39754:4;39628:131;:::i;:::-;39620:139;;39347:419;;;:::o;39772:180::-;39820:77;39817:1;39810:88;39917:4;39914:1;39907:15;39941:4;39938:1;39931:15;39958:143;40015:5;40046:6;40040:13;40031:22;;40062:33;40089:5;40062:33;:::i;:::-;39958:143;;;;:::o;40107:351::-;40177:6;40226:2;40214:9;40205:7;40201:23;40197:32;40194:119;;;40232:79;;:::i;:::-;40194:119;40352:1;40377:64;40433:7;40424:6;40413:9;40409:22;40377:64;:::i;:::-;40367:74;;40323:128;40107:351;;;;:::o;40464:85::-;40509:7;40538:5;40527:16;;40464:85;;;:::o;40555:158::-;40613:9;40646:61;40664:42;40673:32;40699:5;40673:32;:::i;:::-;40664:42;:::i;:::-;40646:61;:::i;:::-;40633:74;;40555:158;;;:::o;40719:147::-;40814:45;40853:5;40814:45;:::i;:::-;40809:3;40802:58;40719:147;;:::o;40872:114::-;40939:6;40973:5;40967:12;40957:22;;40872:114;;;:::o;40992:184::-;41091:11;41125:6;41120:3;41113:19;41165:4;41160:3;41156:14;41141:29;;40992:184;;;;:::o;41182:132::-;41249:4;41272:3;41264:11;;41302:4;41297:3;41293:14;41285:22;;41182:132;;;:::o;41320:108::-;41397:24;41415:5;41397:24;:::i;:::-;41392:3;41385:37;41320:108;;:::o;41434:179::-;41503:10;41524:46;41566:3;41558:6;41524:46;:::i;:::-;41602:4;41597:3;41593:14;41579:28;;41434:179;;;;:::o;41619:113::-;41689:4;41721;41716:3;41712:14;41704:22;;41619:113;;;:::o;41768:732::-;41887:3;41916:54;41964:5;41916:54;:::i;:::-;41986:86;42065:6;42060:3;41986:86;:::i;:::-;41979:93;;42096:56;42146:5;42096:56;:::i;:::-;42175:7;42206:1;42191:284;42216:6;42213:1;42210:13;42191:284;;;42292:6;42286:13;42319:63;42378:3;42363:13;42319:63;:::i;:::-;42312:70;;42405:60;42458:6;42405:60;:::i;:::-;42395:70;;42251:224;42238:1;42235;42231:9;42226:14;;42191:284;;;42195:14;42491:3;42484:10;;41892:608;;;41768:732;;;;:::o;42506:831::-;42769:4;42807:3;42796:9;42792:19;42784:27;;42821:71;42889:1;42878:9;42874:17;42865:6;42821:71;:::i;:::-;42902:80;42978:2;42967:9;42963:18;42954:6;42902:80;:::i;:::-;43029:9;43023:4;43019:20;43014:2;43003:9;42999:18;42992:48;43057:108;43160:4;43151:6;43057:108;:::i;:::-;43049:116;;43175:72;43243:2;43232:9;43228:18;43219:6;43175:72;:::i;:::-;43257:73;43325:3;43314:9;43310:19;43301:6;43257:73;:::i;:::-;42506:831;;;;;;;;:::o

Swarm Source

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