ETH Price: $2,419.89 (+0.15%)

Token

Pepe 18+ (PEPE18)
 

Overview

Max Total Supply

18,000,000,000 PEPE18

Holders

106

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
199,773,854.506245678818806135 PEPE18

Value
$0.00
0xa21f9d5fc28889e693c7edb507eb1270f4b50964
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:
Pepe18

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-01
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

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

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

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

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

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

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

contract Pepe18 is ERC20, Ownable {
    address public immutable uniswapV2Pair;
    IUniswapV2Router02 public immutable uniswapV2Router;

    bool inSwapAndLiquify;
    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;

    // TOKENOMICS START
    string private _name = "Pepe 18+";
    string private _symbol = "PEPE18";
    uint8 private _decimals = 18;
    uint256 private _supply = 18_000_000_000;
    uint256 public taxBuyForLiquidity = 0;
    uint256 public taxBuyForMarketing = 18;
    uint256 public taxSellForLiquidity = 0;
    uint256 public taxSellForMarketing = 18;
    uint256 public maxTxAmount = 360_000_000 * 10**_decimals;
    uint256 public maxWalletAmount = 360_000_000 * 10**_decimals;
    uint256 private _numTokensSellToAddToLiquidity = 36_000_000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 36_000_000 * 10**_decimals;
    address public marketingWallet = 0xCe82eb3A5d8D6eC8ddC5029D411842aAD8898246;
    // TOKENOMICS END

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

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    /**
     * @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() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10**_decimals));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    _marketingReserves -= _numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }
                uint256 marketingShare;
                uint256 liquidityShare;
                
                if (to == uniswapV2Pair) {
                    marketingShare = (amount * taxSellForMarketing) / 100;
                    liquidityShare = (amount * taxSellForLiquidity) / 100;
                } else {
                    marketingShare = (amount * taxBuyForMarketing) / 100;
                    liquidityShare = (amount * taxBuyForLiquidity) / 100;
                }
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;
                if (marketingShare + liquidityShare > 0) {
                    super._transfer(from, address(this), (marketingShare + liquidityShare));
                }
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function clearStuckETH() external {
        payable(marketingWallet).transfer(address(this).balance);
    }
    
    function clearStuckToken() external {
        require(balanceOf(address(this)) > 0, "Insufficient Balance");
        super._transfer(address(this), marketingWallet, balanceOf(address(this)));
        _marketingReserves = 0;
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

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

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMarketing(uint256 _taxBuyForLiquidity, uint256 _taxBuyForMarketing, uint256 _taxSellForLiquidity, uint256 _taxSellForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxBuyForLiquidity+_taxBuyForMarketing) <= 20, "ERC20: total tax must not be greater than 20");
        require((_taxSellForLiquidity+_taxSellForMarketing) <= 20, "ERC20: total tax must not be greater than 20");
        taxBuyForLiquidity = _taxBuyForLiquidity;
        taxBuyForMarketing = _taxBuyForMarketing;
        taxSellForLiquidity = _taxSellForLiquidity;
        taxSellForMarketing = _taxSellForMarketing;

        return true;
    }

    function changeMaxTxAmount(uint256 _maxTxAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _maxTxAmount * 10**_decimals;

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount * 10**_decimals;

        return true;
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","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"},{"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxBuyForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxBuyForMarketing","type":"uint256"},{"internalType":"uint256","name":"_taxSellForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxSellForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckToken","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBuyForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBuyForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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"},{"stateMutability":"payable","type":"receive"}]

60c060405260006006556040518060400160405280600881526020017f506570652031382b000000000000000000000000000000000000000000000000815250600890816200004f919062000b4a565b506040518060400160405280600681526020017f50455045313800000000000000000000000000000000000000000000000000008152506009908162000096919062000b4a565b506012600a60006101000a81548160ff021916908360ff160217905550640430e23400600b556000600c556012600d556000600e556012600f55600a60009054906101000a900460ff16600a620000ee919062000dc1565b6315752a00620000ff919062000e12565b601055600a60009054906101000a900460ff16600a62000120919062000dc1565b6315752a0062000131919062000e12565b601155600a60009054906101000a900460ff16600a62000152919062000dc1565b630225510062000163919062000e12565b601255600a60009054906101000a900460ff16600a62000184919062000dc1565b630225510062000195919062000e12565b60135573ce82eb3a5d8d6ec8ddc5029d411842aad8898246601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001fa57600080fd5b50600880546200020a9062000939565b80601f0160208091040260200160405190810160405280929190818152602001828054620002389062000939565b8015620002895780601f106200025d5761010080835404028352916020019162000289565b820191906000526020600020905b8154815290600101906020018083116200026b57829003601f168201915b5050505050600980546200029d9062000939565b80601f0160208091040260200160405190810160405280929190818152602001828054620002cb9062000939565b80156200031c5780601f10620002f0576101008083540402835291602001916200031c565b820191906000526020600020905b815481529060010190602001808311620002fe57829003601f168201915b5050505050816003908162000332919062000b4a565b50806004908162000344919062000b4a565b505050620003676200035b620006bd60201b60201c565b620006c560201b60201c565b620003a533600a60009054906101000a900460ff16600a6200038a919062000dc1565b600b5462000399919062000e12565b6200078b60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200040a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000430919062000edd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000498573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004be919062000edd565b6040518363ffffffff1660e01b8152600401620004dd92919062000f20565b6020604051808303816000875af1158015620004fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000523919062000edd565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016007600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001039565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f49062000fae565b60405180910390fd5b806002600082825462000811919062000fd0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008c491906200101c565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200095257607f821691505b6020821081036200096857620009676200090a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009d27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000993565b620009de868362000993565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a2b62000a2562000a1f84620009f6565b62000a00565b620009f6565b9050919050565b6000819050919050565b62000a478362000a0a565b62000a5f62000a568262000a32565b848454620009a0565b825550505050565b600090565b62000a7662000a67565b62000a8381848462000a3c565b505050565b5b8181101562000aab5762000a9f60008262000a6c565b60018101905062000a89565b5050565b601f82111562000afa5762000ac4816200096e565b62000acf8462000983565b8101602085101562000adf578190505b62000af762000aee8562000983565b83018262000a88565b50505b505050565b600082821c905092915050565b600062000b1f6000198460080262000aff565b1980831691505092915050565b600062000b3a838362000b0c565b9150826002028217905092915050565b62000b5582620008d0565b67ffffffffffffffff81111562000b715762000b70620008db565b5b62000b7d825462000939565b62000b8a82828562000aaf565b600060209050601f83116001811462000bc2576000841562000bad578287015190505b62000bb9858262000b2c565b86555062000c29565b601f19841662000bd2866200096e565b60005b8281101562000bfc5784890151825560018201915060208501945060208101905062000bd5565b8683101562000c1c578489015162000c18601f89168262000b0c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cbf5780860481111562000c975762000c9662000c31565b5b600185161562000ca75780820291505b808102905062000cb78562000c60565b945062000c77565b94509492505050565b60008262000cda576001905062000dad565b8162000cea576000905062000dad565b816001811462000d03576002811462000d0e5762000d44565b600191505062000dad565b60ff84111562000d235762000d2262000c31565b5b8360020a91508482111562000d3d5762000d3c62000c31565b5b5062000dad565b5060208310610133831016604e8410600b841016171562000d7e5782820a90508381111562000d785762000d7762000c31565b5b62000dad565b62000d8d848484600162000c6d565b9250905081840481111562000da75762000da662000c31565b5b81810290505b9392505050565b600060ff82169050919050565b600062000dce82620009f6565b915062000ddb8362000db4565b925062000e0a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cc8565b905092915050565b600062000e1f82620009f6565b915062000e2c83620009f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e685762000e6762000c31565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ea58262000e78565b9050919050565b62000eb78162000e98565b811462000ec357600080fd5b50565b60008151905062000ed78162000eac565b92915050565b60006020828403121562000ef65762000ef562000e73565b5b600062000f068482850162000ec6565b91505092915050565b62000f1a8162000e98565b82525050565b600060408201905062000f37600083018562000f0f565b62000f46602083018462000f0f565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f96601f8362000f4d565b915062000fa38262000f5e565b602082019050919050565b6000602082019050818103600083015262000fc98162000f87565b9050919050565b600062000fdd82620009f6565b915062000fea83620009f6565b925082820190508082111562001005576200100462000c31565b5b92915050565b6200101681620009f6565b82525050565b60006020820190506200103360008301846200100b565b92915050565b60805160a051613291620010a5600039600081816108a001528181611dc301528181611ea401528181611ecb01528181611faa0152611fd1015260008181610a70015281816113a2015281816113f701528181611465015281816116ac015261175b01526132916000f3fe6080604052600436106101e75760003560e01c80638c0b5e2211610102578063d0e1d26211610095578063e66c19c111610064578063e66c19c114610755578063ea2f0b3714610780578063f2fde38b146107a9578063f88de0c3146107d2576101ee565b8063d0e1d262146106ab578063d85a2828146106d6578063dd62ed3e146106ed578063e5c83f2c1461072a576101ee565b8063a9059cbb116100d1578063a9059cbb146105db578063aa4bde2814610618578063b60c30f914610643578063bb85c6d11461066e576101ee565b80638c0b5e221461051d5780638da5cb5b1461054857806395d89b4114610573578063a457c2d71461059e576101ee565b8063437823ec1161017a57806370a082311161014957806370a0823114610461578063715018a61461049e57806375f0a874146104b557806381bfdcca146104e0576101ee565b8063437823ec1461039357806349bd5a5e146103bc5780635342acb4146103e7578063677daa5714610424576101ee565b806323b872dd116101b657806323b872dd146102b1578063313ce567146102ee5780633902fa05146103195780633950935114610356576101ee565b806306fdde03146101f3578063095ea7b31461021e5780631694505e1461025b57806318160ddd14610286576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086107e9565b604051610215919061214b565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190612206565b61087b565b6040516102529190612261565b60405180910390f35b34801561026757600080fd5b5061027061089e565b60405161027d91906122db565b60405180910390f35b34801561029257600080fd5b5061029b6108c2565b6040516102a89190612305565b60405180910390f35b3480156102bd57600080fd5b506102d860048036038101906102d39190612320565b6108cc565b6040516102e59190612261565b60405180910390f35b3480156102fa57600080fd5b506103036108fb565b604051610310919061238f565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b91906123aa565b610904565b60405161034d9190612261565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190612206565b6109d4565b60405161038a9190612261565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190612411565b610a0b565b005b3480156103c857600080fd5b506103d1610a6e565b6040516103de919061244d565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190612411565b610a92565b60405161041b9190612261565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190612468565b610ae8565b6040516104589190612261565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190612411565b610b28565b6040516104959190612305565b60405180910390f35b3480156104aa57600080fd5b506104b3610b70565b005b3480156104c157600080fd5b506104ca610b84565b6040516104d7919061244d565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612468565b610baa565b6040516105149190612261565b60405180910390f35b34801561052957600080fd5b50610532610bea565b60405161053f9190612305565b60405180910390f35b34801561055457600080fd5b5061055d610bf0565b60405161056a919061244d565b60405180910390f35b34801561057f57600080fd5b50610588610c1a565b604051610595919061214b565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612206565b610cac565b6040516105d29190612261565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612206565b610d23565b60405161060f9190612261565b60405180910390f35b34801561062457600080fd5b5061062d610d46565b60405161063a9190612305565b60405180910390f35b34801561064f57600080fd5b50610658610d4c565b6040516106659190612305565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190612411565b610d52565b6040516106a29190612261565b60405180910390f35b3480156106b757600080fd5b506106c0610da6565b6040516106cd9190612305565b60405180910390f35b3480156106e257600080fd5b506106eb610dac565b005b3480156106f957600080fd5b50610714600480360381019061070f9190612495565b610e36565b6040516107219190612305565b60405180910390f35b34801561073657600080fd5b5061073f610ebd565b60405161074c9190612305565b60405180910390f35b34801561076157600080fd5b5061076a610ec3565b6040516107779190612305565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190612411565b610ec9565b005b3480156107b557600080fd5b506107d060048036038101906107cb9190612411565b610f2c565b005b3480156107de57600080fd5b506107e7610faf565b005b6060600380546107f890612504565b80601f016020809104026020016040519081016040528092919081815260200182805461082490612504565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b5050505050905090565b60008061088661101a565b9050610893818585611022565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806108d761101a565b90506108e48582856111eb565b6108ef858585611277565b60019150509392505050565b60006012905090565b600061090e6118a4565b6014848661091c9190612564565b111561095d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109549061260a565b60405180910390fd5b6014828461096b9190612564565b11156109ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a39061260a565b60405180910390fd5b84600c8190555083600d8190555082600e8190555081600f8190555060019050949350505050565b6000806109df61101a565b9050610a008185856109f18589610e36565b6109fb9190612564565b611022565b600191505092915050565b610a136118a4565b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610af26118a4565b600a60009054906101000a900460ff16600a610b0e919061275d565b82610b1991906127a8565b60108190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b786118a4565b610b826000611922565b565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610bb46118a4565b600a60009054906101000a900460ff16600a610bd0919061275d565b82610bdb91906127a8565b60118190555060019050919050565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c2990612504565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590612504565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b600080610cb761101a565b90506000610cc58286610e36565b905083811015610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190612874565b60405180910390fd5b610d178286868403611022565b60019250505092915050565b600080610d2e61101a565b9050610d3b818585611277565b600191505092915050565b60115481565b600d5481565b6000610d5c6118a4565b81601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b600f5481565b6000610db730610b28565b11610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee906128e0565b60405180910390fd5b610e2c30601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e2730610b28565b6119e8565b6000600681905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e5481565b600c5481565b610ed16118a4565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f346118a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90612972565b60405180910390fd5b610fac81611922565b50565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611017573d6000803e3d6000fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890612a04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612a96565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111de9190612305565b60405180910390a3505050565b60006111f78484610e36565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112715781811015611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90612b02565b60405180910390fd5b6112708484848403611022565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd90612b94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90612c26565b60405180910390fd5b8061135f84610b28565b10156113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790612cb8565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061144557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561145e5750600560149054906101000a900460ff16155b15611893577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146115b55760006006546114c430610b28565b6114ce9190612cd8565b905060125481106114e5576114e4601254611c48565b5b601354600654106115b3576114fb601354611d09565b6013546006600082825461150f9190612cd8565b925050819055506000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890612d58565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116585750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561166557819050611882565b6010548211156116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190612dea565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117565760115461170984610b28565b836117149190612564565b1115611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90612e7c565b60405180910390fd5b5b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036117e9576064600f54856117bc91906127a8565b6117c69190612ecb565b91506064600e54856117d891906127a8565b6117e29190612ecb565b9050611822565b6064600d54856117f991906127a8565b6118039190612ecb565b91506064600c548561181591906127a8565b61181f9190612ecb565b90505b808261182e9190612564565b846118399190612cd8565b9250816006600082825461184d9190612564565b92505081905550600081836118629190612564565b111561187f5761187e863083856118799190612564565b6119e8565b5b50505b61188d8484836119e8565b5061189f565b61189e8383836119e8565b5b505050565b6118ac61101a565b73ffffffffffffffffffffffffffffffffffffffff166118ca610bf0565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790612f48565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90612b94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90612c26565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4390612cb8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c3a9190612305565b60405180910390a350505050565b6001600560146101000a81548160ff0219169083151502179055506000600282611c729190612ecb565b905060008183611c829190612cd8565b90506000479050611c9283611d09565b60008147611ca09190612cd8565b9050611cac8382611f89565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611cdf93929190612f68565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611d4157611d40612f9f565b5b604051908082528060200260200182016040528015611d6f5781602001602082028036833780820191505090505b5090503081600081518110611d8757611d86612fce565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e509190613012565b81600181518110611e6457611e63612fce565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ec9307f000000000000000000000000000000000000000000000000000000000000000084611022565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611f189190612564565b6040518663ffffffff1660e01b8152600401611f38959493929190613138565b600060405180830381600087803b158015611f5257600080fd5b505af1158015611f66573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611fcf307f000000000000000000000000000000000000000000000000000000000000000084611022565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161205696959493929190613192565b60606040518083038185885af1158015612074573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120999190613208565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120f55780820151818401526020810190506120da565b60008484015250505050565b6000601f19601f8301169050919050565b600061211d826120bb565b61212781856120c6565b93506121378185602086016120d7565b61214081612101565b840191505092915050565b600060208201905081810360008301526121658184612112565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061219d82612172565b9050919050565b6121ad81612192565b81146121b857600080fd5b50565b6000813590506121ca816121a4565b92915050565b6000819050919050565b6121e3816121d0565b81146121ee57600080fd5b50565b600081359050612200816121da565b92915050565b6000806040838503121561221d5761221c61216d565b5b600061222b858286016121bb565b925050602061223c858286016121f1565b9150509250929050565b60008115159050919050565b61225b81612246565b82525050565b60006020820190506122766000830184612252565b92915050565b6000819050919050565b60006122a161229c61229784612172565b61227c565b612172565b9050919050565b60006122b382612286565b9050919050565b60006122c5826122a8565b9050919050565b6122d5816122ba565b82525050565b60006020820190506122f060008301846122cc565b92915050565b6122ff816121d0565b82525050565b600060208201905061231a60008301846122f6565b92915050565b6000806000606084860312156123395761233861216d565b5b6000612347868287016121bb565b9350506020612358868287016121bb565b9250506040612369868287016121f1565b9150509250925092565b600060ff82169050919050565b61238981612373565b82525050565b60006020820190506123a46000830184612380565b92915050565b600080600080608085870312156123c4576123c361216d565b5b60006123d2878288016121f1565b94505060206123e3878288016121f1565b93505060406123f4878288016121f1565b9250506060612405878288016121f1565b91505092959194509250565b6000602082840312156124275761242661216d565b5b6000612435848285016121bb565b91505092915050565b61244781612192565b82525050565b6000602082019050612462600083018461243e565b92915050565b60006020828403121561247e5761247d61216d565b5b600061248c848285016121f1565b91505092915050565b600080604083850312156124ac576124ab61216d565b5b60006124ba858286016121bb565b92505060206124cb858286016121bb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061251c57607f821691505b60208210810361252f5761252e6124d5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061256f826121d0565b915061257a836121d0565b925082820190508082111561259257612591612535565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2032300000000000000000000000000000000000000000602082015250565b60006125f4602c836120c6565b91506125ff82612598565b604082019050919050565b60006020820190508181036000830152612623816125e7565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156126815780860481111561265d5761265c612535565b5b600185161561266c5780820291505b808102905061267a8561262a565b9450612641565b94509492505050565b60008261269a5760019050612756565b816126a85760009050612756565b81600181146126be57600281146126c8576126f7565b6001915050612756565b60ff8411156126da576126d9612535565b5b8360020a9150848211156126f1576126f0612535565b5b50612756565b5060208310610133831016604e8410600b841016171561272c5782820a90508381111561272757612726612535565b5b612756565b6127398484846001612637565b925090508184048111156127505761274f612535565b5b81810290505b9392505050565b6000612768826121d0565b915061277383612373565b92506127a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461268a565b905092915050565b60006127b3826121d0565b91506127be836121d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127f7576127f6612535565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061285e6025836120c6565b915061286982612802565b604082019050919050565b6000602082019050818103600083015261288d81612851565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b60006128ca6014836120c6565b91506128d582612894565b602082019050919050565b600060208201905081810360008301526128f9816128bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061295c6026836120c6565b915061296782612900565b604082019050919050565b6000602082019050818103600083015261298b8161294f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129ee6024836120c6565b91506129f982612992565b604082019050919050565b60006020820190508181036000830152612a1d816129e1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a806022836120c6565b9150612a8b82612a24565b604082019050919050565b60006020820190508181036000830152612aaf81612a73565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612aec601d836120c6565b9150612af782612ab6565b602082019050919050565b60006020820190508181036000830152612b1b81612adf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b7e6025836120c6565b9150612b8982612b22565b604082019050919050565b60006020820190508181036000830152612bad81612b71565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c106023836120c6565b9150612c1b82612bb4565b604082019050919050565b60006020820190508181036000830152612c3f81612c03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ca26026836120c6565b9150612cad82612c46565b604082019050919050565b60006020820190508181036000830152612cd181612c95565b9050919050565b6000612ce3826121d0565b9150612cee836121d0565b9250828203905081811115612d0657612d05612535565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612d426012836120c6565b9150612d4d82612d0c565b602082019050919050565b60006020820190508181036000830152612d7181612d35565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612dd46039836120c6565b9150612ddf82612d78565b604082019050919050565b60006020820190508181036000830152612e0381612dc7565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612e666036836120c6565b9150612e7182612e0a565b604082019050919050565b60006020820190508181036000830152612e9581612e59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ed6826121d0565b9150612ee1836121d0565b925082612ef157612ef0612e9c565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f326020836120c6565b9150612f3d82612efc565b602082019050919050565b60006020820190508181036000830152612f6181612f25565b9050919050565b6000606082019050612f7d60008301866122f6565b612f8a60208301856122f6565b612f9760408301846122f6565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061300c816121a4565b92915050565b6000602082840312156130285761302761216d565b5b600061303684828501612ffd565b91505092915050565b6000819050919050565b600061306461305f61305a8461303f565b61227c565b6121d0565b9050919050565b61307481613049565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130af81612192565b82525050565b60006130c183836130a6565b60208301905092915050565b6000602082019050919050565b60006130e58261307a565b6130ef8185613085565b93506130fa83613096565b8060005b8381101561312b57815161311288826130b5565b975061311d836130cd565b9250506001810190506130fe565b5085935050505092915050565b600060a08201905061314d60008301886122f6565b61315a602083018761306b565b818103604083015261316c81866130da565b905061317b606083018561243e565b61318860808301846122f6565b9695505050505050565b600060c0820190506131a7600083018961243e565b6131b460208301886122f6565b6131c1604083018761306b565b6131ce606083018661306b565b6131db608083018561243e565b6131e860a08301846122f6565b979650505050505050565b600081519050613202816121da565b92915050565b6000806000606084860312156132215761322061216d565b5b600061322f868287016131f3565b9350506020613240868287016131f3565b9250506040613251868287016131f3565b915050925092509256fea2646970667358221220d230c40dc8a65e919f507051db6410bca1de7cd58135c1607b50b8c980a7ca0964736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80638c0b5e2211610102578063d0e1d26211610095578063e66c19c111610064578063e66c19c114610755578063ea2f0b3714610780578063f2fde38b146107a9578063f88de0c3146107d2576101ee565b8063d0e1d262146106ab578063d85a2828146106d6578063dd62ed3e146106ed578063e5c83f2c1461072a576101ee565b8063a9059cbb116100d1578063a9059cbb146105db578063aa4bde2814610618578063b60c30f914610643578063bb85c6d11461066e576101ee565b80638c0b5e221461051d5780638da5cb5b1461054857806395d89b4114610573578063a457c2d71461059e576101ee565b8063437823ec1161017a57806370a082311161014957806370a0823114610461578063715018a61461049e57806375f0a874146104b557806381bfdcca146104e0576101ee565b8063437823ec1461039357806349bd5a5e146103bc5780635342acb4146103e7578063677daa5714610424576101ee565b806323b872dd116101b657806323b872dd146102b1578063313ce567146102ee5780633902fa05146103195780633950935114610356576101ee565b806306fdde03146101f3578063095ea7b31461021e5780631694505e1461025b57806318160ddd14610286576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086107e9565b604051610215919061214b565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190612206565b61087b565b6040516102529190612261565b60405180910390f35b34801561026757600080fd5b5061027061089e565b60405161027d91906122db565b60405180910390f35b34801561029257600080fd5b5061029b6108c2565b6040516102a89190612305565b60405180910390f35b3480156102bd57600080fd5b506102d860048036038101906102d39190612320565b6108cc565b6040516102e59190612261565b60405180910390f35b3480156102fa57600080fd5b506103036108fb565b604051610310919061238f565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b91906123aa565b610904565b60405161034d9190612261565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190612206565b6109d4565b60405161038a9190612261565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190612411565b610a0b565b005b3480156103c857600080fd5b506103d1610a6e565b6040516103de919061244d565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190612411565b610a92565b60405161041b9190612261565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190612468565b610ae8565b6040516104589190612261565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190612411565b610b28565b6040516104959190612305565b60405180910390f35b3480156104aa57600080fd5b506104b3610b70565b005b3480156104c157600080fd5b506104ca610b84565b6040516104d7919061244d565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612468565b610baa565b6040516105149190612261565b60405180910390f35b34801561052957600080fd5b50610532610bea565b60405161053f9190612305565b60405180910390f35b34801561055457600080fd5b5061055d610bf0565b60405161056a919061244d565b60405180910390f35b34801561057f57600080fd5b50610588610c1a565b604051610595919061214b565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612206565b610cac565b6040516105d29190612261565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612206565b610d23565b60405161060f9190612261565b60405180910390f35b34801561062457600080fd5b5061062d610d46565b60405161063a9190612305565b60405180910390f35b34801561064f57600080fd5b50610658610d4c565b6040516106659190612305565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190612411565b610d52565b6040516106a29190612261565b60405180910390f35b3480156106b757600080fd5b506106c0610da6565b6040516106cd9190612305565b60405180910390f35b3480156106e257600080fd5b506106eb610dac565b005b3480156106f957600080fd5b50610714600480360381019061070f9190612495565b610e36565b6040516107219190612305565b60405180910390f35b34801561073657600080fd5b5061073f610ebd565b60405161074c9190612305565b60405180910390f35b34801561076157600080fd5b5061076a610ec3565b6040516107779190612305565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190612411565b610ec9565b005b3480156107b557600080fd5b506107d060048036038101906107cb9190612411565b610f2c565b005b3480156107de57600080fd5b506107e7610faf565b005b6060600380546107f890612504565b80601f016020809104026020016040519081016040528092919081815260200182805461082490612504565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b5050505050905090565b60008061088661101a565b9050610893818585611022565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806108d761101a565b90506108e48582856111eb565b6108ef858585611277565b60019150509392505050565b60006012905090565b600061090e6118a4565b6014848661091c9190612564565b111561095d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109549061260a565b60405180910390fd5b6014828461096b9190612564565b11156109ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a39061260a565b60405180910390fd5b84600c8190555083600d8190555082600e8190555081600f8190555060019050949350505050565b6000806109df61101a565b9050610a008185856109f18589610e36565b6109fb9190612564565b611022565b600191505092915050565b610a136118a4565b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7f000000000000000000000000a81278a21b229fab1524414d87ffa3b0ac67fab081565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610af26118a4565b600a60009054906101000a900460ff16600a610b0e919061275d565b82610b1991906127a8565b60108190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b786118a4565b610b826000611922565b565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610bb46118a4565b600a60009054906101000a900460ff16600a610bd0919061275d565b82610bdb91906127a8565b60118190555060019050919050565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c2990612504565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590612504565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b600080610cb761101a565b90506000610cc58286610e36565b905083811015610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190612874565b60405180910390fd5b610d178286868403611022565b60019250505092915050565b600080610d2e61101a565b9050610d3b818585611277565b600191505092915050565b60115481565b600d5481565b6000610d5c6118a4565b81601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b600f5481565b6000610db730610b28565b11610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee906128e0565b60405180910390fd5b610e2c30601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e2730610b28565b6119e8565b6000600681905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e5481565b600c5481565b610ed16118a4565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f346118a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90612972565b60405180910390fd5b610fac81611922565b50565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611017573d6000803e3d6000fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890612a04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612a96565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111de9190612305565b60405180910390a3505050565b60006111f78484610e36565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112715781811015611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90612b02565b60405180910390fd5b6112708484848403611022565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd90612b94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90612c26565b60405180910390fd5b8061135f84610b28565b10156113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790612cb8565b60405180910390fd5b7f000000000000000000000000a81278a21b229fab1524414d87ffa3b0ac67fab073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061144557507f000000000000000000000000a81278a21b229fab1524414d87ffa3b0ac67fab073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561145e5750600560149054906101000a900460ff16155b15611893577f000000000000000000000000a81278a21b229fab1524414d87ffa3b0ac67fab073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146115b55760006006546114c430610b28565b6114ce9190612cd8565b905060125481106114e5576114e4601254611c48565b5b601354600654106115b3576114fb601354611d09565b6013546006600082825461150f9190612cd8565b925050819055506000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890612d58565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116585750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561166557819050611882565b6010548211156116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190612dea565b60405180910390fd5b7f000000000000000000000000a81278a21b229fab1524414d87ffa3b0ac67fab073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117565760115461170984610b28565b836117149190612564565b1115611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90612e7c565b60405180910390fd5b5b6000807f000000000000000000000000a81278a21b229fab1524414d87ffa3b0ac67fab073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036117e9576064600f54856117bc91906127a8565b6117c69190612ecb565b91506064600e54856117d891906127a8565b6117e29190612ecb565b9050611822565b6064600d54856117f991906127a8565b6118039190612ecb565b91506064600c548561181591906127a8565b61181f9190612ecb565b90505b808261182e9190612564565b846118399190612cd8565b9250816006600082825461184d9190612564565b92505081905550600081836118629190612564565b111561187f5761187e863083856118799190612564565b6119e8565b5b50505b61188d8484836119e8565b5061189f565b61189e8383836119e8565b5b505050565b6118ac61101a565b73ffffffffffffffffffffffffffffffffffffffff166118ca610bf0565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790612f48565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90612b94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90612c26565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4390612cb8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c3a9190612305565b60405180910390a350505050565b6001600560146101000a81548160ff0219169083151502179055506000600282611c729190612ecb565b905060008183611c829190612cd8565b90506000479050611c9283611d09565b60008147611ca09190612cd8565b9050611cac8382611f89565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611cdf93929190612f68565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611d4157611d40612f9f565b5b604051908082528060200260200182016040528015611d6f5781602001602082028036833780820191505090505b5090503081600081518110611d8757611d86612fce565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e509190613012565b81600181518110611e6457611e63612fce565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ec9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611022565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611f189190612564565b6040518663ffffffff1660e01b8152600401611f38959493929190613138565b600060405180830381600087803b158015611f5257600080fd5b505af1158015611f66573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611fcf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611022565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161205696959493929190613192565b60606040518083038185885af1158015612074573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120999190613208565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120f55780820151818401526020810190506120da565b60008484015250505050565b6000601f19601f8301169050919050565b600061211d826120bb565b61212781856120c6565b93506121378185602086016120d7565b61214081612101565b840191505092915050565b600060208201905081810360008301526121658184612112565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061219d82612172565b9050919050565b6121ad81612192565b81146121b857600080fd5b50565b6000813590506121ca816121a4565b92915050565b6000819050919050565b6121e3816121d0565b81146121ee57600080fd5b50565b600081359050612200816121da565b92915050565b6000806040838503121561221d5761221c61216d565b5b600061222b858286016121bb565b925050602061223c858286016121f1565b9150509250929050565b60008115159050919050565b61225b81612246565b82525050565b60006020820190506122766000830184612252565b92915050565b6000819050919050565b60006122a161229c61229784612172565b61227c565b612172565b9050919050565b60006122b382612286565b9050919050565b60006122c5826122a8565b9050919050565b6122d5816122ba565b82525050565b60006020820190506122f060008301846122cc565b92915050565b6122ff816121d0565b82525050565b600060208201905061231a60008301846122f6565b92915050565b6000806000606084860312156123395761233861216d565b5b6000612347868287016121bb565b9350506020612358868287016121bb565b9250506040612369868287016121f1565b9150509250925092565b600060ff82169050919050565b61238981612373565b82525050565b60006020820190506123a46000830184612380565b92915050565b600080600080608085870312156123c4576123c361216d565b5b60006123d2878288016121f1565b94505060206123e3878288016121f1565b93505060406123f4878288016121f1565b9250506060612405878288016121f1565b91505092959194509250565b6000602082840312156124275761242661216d565b5b6000612435848285016121bb565b91505092915050565b61244781612192565b82525050565b6000602082019050612462600083018461243e565b92915050565b60006020828403121561247e5761247d61216d565b5b600061248c848285016121f1565b91505092915050565b600080604083850312156124ac576124ab61216d565b5b60006124ba858286016121bb565b92505060206124cb858286016121bb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061251c57607f821691505b60208210810361252f5761252e6124d5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061256f826121d0565b915061257a836121d0565b925082820190508082111561259257612591612535565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2032300000000000000000000000000000000000000000602082015250565b60006125f4602c836120c6565b91506125ff82612598565b604082019050919050565b60006020820190508181036000830152612623816125e7565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156126815780860481111561265d5761265c612535565b5b600185161561266c5780820291505b808102905061267a8561262a565b9450612641565b94509492505050565b60008261269a5760019050612756565b816126a85760009050612756565b81600181146126be57600281146126c8576126f7565b6001915050612756565b60ff8411156126da576126d9612535565b5b8360020a9150848211156126f1576126f0612535565b5b50612756565b5060208310610133831016604e8410600b841016171561272c5782820a90508381111561272757612726612535565b5b612756565b6127398484846001612637565b925090508184048111156127505761274f612535565b5b81810290505b9392505050565b6000612768826121d0565b915061277383612373565b92506127a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461268a565b905092915050565b60006127b3826121d0565b91506127be836121d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127f7576127f6612535565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061285e6025836120c6565b915061286982612802565b604082019050919050565b6000602082019050818103600083015261288d81612851565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b60006128ca6014836120c6565b91506128d582612894565b602082019050919050565b600060208201905081810360008301526128f9816128bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061295c6026836120c6565b915061296782612900565b604082019050919050565b6000602082019050818103600083015261298b8161294f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129ee6024836120c6565b91506129f982612992565b604082019050919050565b60006020820190508181036000830152612a1d816129e1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a806022836120c6565b9150612a8b82612a24565b604082019050919050565b60006020820190508181036000830152612aaf81612a73565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612aec601d836120c6565b9150612af782612ab6565b602082019050919050565b60006020820190508181036000830152612b1b81612adf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b7e6025836120c6565b9150612b8982612b22565b604082019050919050565b60006020820190508181036000830152612bad81612b71565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c106023836120c6565b9150612c1b82612bb4565b604082019050919050565b60006020820190508181036000830152612c3f81612c03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ca26026836120c6565b9150612cad82612c46565b604082019050919050565b60006020820190508181036000830152612cd181612c95565b9050919050565b6000612ce3826121d0565b9150612cee836121d0565b9250828203905081811115612d0657612d05612535565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612d426012836120c6565b9150612d4d82612d0c565b602082019050919050565b60006020820190508181036000830152612d7181612d35565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612dd46039836120c6565b9150612ddf82612d78565b604082019050919050565b60006020820190508181036000830152612e0381612dc7565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612e666036836120c6565b9150612e7182612e0a565b604082019050919050565b60006020820190508181036000830152612e9581612e59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ed6826121d0565b9150612ee1836121d0565b925082612ef157612ef0612e9c565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f326020836120c6565b9150612f3d82612efc565b602082019050919050565b60006020820190508181036000830152612f6181612f25565b9050919050565b6000606082019050612f7d60008301866122f6565b612f8a60208301856122f6565b612f9760408301846122f6565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061300c816121a4565b92915050565b6000602082840312156130285761302761216d565b5b600061303684828501612ffd565b91505092915050565b6000819050919050565b600061306461305f61305a8461303f565b61227c565b6121d0565b9050919050565b61307481613049565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130af81612192565b82525050565b60006130c183836130a6565b60208301905092915050565b6000602082019050919050565b60006130e58261307a565b6130ef8185613085565b93506130fa83613096565b8060005b8381101561312b57815161311288826130b5565b975061311d836130cd565b9250506001810190506130fe565b5085935050505092915050565b600060a08201905061314d60008301886122f6565b61315a602083018761306b565b818103604083015261316c81866130da565b905061317b606083018561243e565b61318860808301846122f6565b9695505050505050565b600060c0820190506131a7600083018961243e565b6131b460208301886122f6565b6131c1604083018761306b565b6131ce606083018661306b565b6131db608083018561243e565b6131e860a08301846122f6565b979650505050505050565b600081519050613202816121da565b92915050565b6000806000606084860312156132215761322061216d565b5b600061322f868287016131f3565b9350506020613240868287016131f3565b9250506040613251868287016131f3565b915050925092509256fea2646970667358221220d230c40dc8a65e919f507051db6410bca1de7cd58135c1607b50b8c980a7ca0964736f6c63430008100033

Deployed Bytecode Sourcemap

26949:8692:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17863:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20138:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27035:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19002:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20962:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18844:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34107:697;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22678:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35240:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26990:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35477:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34812:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18028:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15122:103;;;;;;;;;;;;;:::i;:::-;;27883:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35018:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27595:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14474:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17687:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21762:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19582:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27658:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27459:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33917:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27549:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32276:233;;;;;;;;;;;;;:::i;:::-;;19175:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27504:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27415:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35359:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15380:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32155:109;;;;;;;;;;;;;:::i;:::-;;17863:102;17919:13;17952:5;17945:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17863:102;:::o;20138:244::-;20259:4;20281:13;20297:12;:10;:12::i;:::-;20281:28;;20320:32;20329:5;20336:7;20345:6;20320:8;:32::i;:::-;20370:4;20363:11;;;20138:244;;;;:::o;27035:51::-;;;:::o;19002:110::-;19065:7;19092:12;;19085:19;;19002:110;:::o;20962:297::-;21095:4;21112:15;21130:12;:10;:12::i;:::-;21112:30;;21153:38;21169:4;21175:7;21184:6;21153:15;:38::i;:::-;21202:27;21212:4;21218:2;21222:6;21202:9;:27::i;:::-;21247:4;21240:11;;;20962:297;;;;;:::o;18844:93::-;18902:5;18927:2;18920:9;;18844:93;:::o;34107:697::-;34321:4;14360:13;:11;:13::i;:::-;34396:2:::1;34372:19;34352;:39;;;;:::i;:::-;34351:47;;34343:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;34513:2;34488:20;34467;:41;;;;:::i;:::-;34466:49;;34458:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;34596:19;34575:18;:40;;;;34647:19;34626:18;:40;;;;34699:20;34677:19;:42;;;;34752:20;34730:19;:42;;;;34792:4;34785:11;;34107:697:::0;;;;;;:::o;22678:272::-;22795:4;22817:13;22833:12;:10;:12::i;:::-;22817:28;;22856:64;22865:5;22872:7;22909:10;22881:25;22891:5;22898:7;22881:9;:25::i;:::-;:38;;;;:::i;:::-;22856:8;:64::i;:::-;22938:4;22931:11;;;22678:272;;;;:::o;35240:111::-;14360:13;:11;:13::i;:::-;35339:4:::1;35309:18;:27;35328:7;35309:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;35240:111:::0;:::o;26990:38::-;;;:::o;35477:124::-;35542:4;35566:18;:27;35585:7;35566:27;;;;;;;;;;;;;;;;;;;;;;;;;35559:34;;35477:124;;;:::o;34812:198::-;34914:4;14360:13;:11;:13::i;:::-;34969:9:::1;;;;;;;;;;;34965:2;:13;;;;:::i;:::-;34950:12;:28;;;;:::i;:::-;34936:11;:42;;;;34998:4;34991:11;;34812:198:::0;;;:::o;18028:177::-;18147:7;18179:9;:18;18189:7;18179:18;;;;;;;;;;;;;;;;18172:25;;18028:177;;;:::o;15122:103::-;14360:13;:11;:13::i;:::-;15187:30:::1;15214:1;15187:18;:30::i;:::-;15122:103::o:0;27883:75::-;;;;;;;;;;;;;:::o;35018:214::-;35128:4;14360:13;:11;:13::i;:::-;35191:9:::1;;;;;;;;;;;35187:2;:13;;;;:::i;:::-;35168:16;:32;;;;:::i;:::-;35150:15;:50;;;;35220:4;35213:11;;35018:214:::0;;;:::o;27595:56::-;;;;:::o;14474:87::-;14520:7;14547:6;;;;;;;;;;;14540:13;;14474:87;:::o;17687:106::-;17745:13;17778:7;17771:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17687:106;:::o;21762:507::-;21884:4;21906:13;21922:12;:10;:12::i;:::-;21906:28;;21945:24;21972:25;21982:5;21989:7;21972:9;:25::i;:::-;21945:52;;22050:15;22030:16;:35;;22008:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;22166:60;22175:5;22182:7;22210:15;22191:16;:34;22166:8;:60::i;:::-;22257:4;22250:11;;;;21762:507;;;;:::o;19582:236::-;19699:4;19721:13;19737:12;:10;:12::i;:::-;19721:28;;19760;19770:5;19777:2;19781:6;19760:9;:28::i;:::-;19806:4;19799:11;;;19582:236;;;;:::o;27658:60::-;;;;:::o;27459:38::-;;;;:::o;33917:182::-;34020:4;14360:13;:11;:13::i;:::-;34060:9:::1;34042:15;;:27;;;;;;;;;;;;;;;;;;34087:4;34080:11;;33917:182:::0;;;:::o;27549:39::-;;;;:::o;32276:233::-;32358:1;32331:24;32349:4;32331:9;:24::i;:::-;:28;32323:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32395:73;32419:4;32426:15;;;;;;;;;;;32443:24;32461:4;32443:9;:24::i;:::-;32395:15;:73::i;:::-;32500:1;32479:18;:22;;;;32276:233::o;19175:201::-;19309:7;19341:11;:18;19353:5;19341:18;;;;;;;;;;;;;;;:27;19360:7;19341:27;;;;;;;;;;;;;;;;19334:34;;19175:201;;;;:::o;27504:38::-;;;;:::o;27415:37::-;;;;:::o;35359:110::-;14360:13;:11;:13::i;:::-;35456:5:::1;35426:18;:27;35445:7;35426:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;35359:110:::0;:::o;15380:238::-;14360:13;:11;:13::i;:::-;15503:1:::1;15483:22;;:8;:22;;::::0;15461:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15582:28;15601:8;15582:18;:28::i;:::-;15380:238:::0;:::o;32155:109::-;32208:15;;;;;;;;;;;32200:33;;:56;32234:21;32200:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32155:109::o;13267:98::-;13320:7;13347:10;13340:17;;13267:98;:::o;24985:380::-;25138:1;25121:19;;:5;:19;;;25113:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25219:1;25200:21;;:7;:21;;;25192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25303:6;25273:11;:18;25285:5;25273:18;;;;;;;;;;;;;;;:27;25292:7;25273:27;;;;;;;;;;;;;;;:36;;;;25341:7;25325:32;;25334:5;25325:32;;;25350:6;25325:32;;;;;;:::i;:::-;;;;;;;;24985:380;;;:::o;25656:502::-;25791:24;25818:25;25828:5;25835:7;25818:9;:25::i;:::-;25791:52;;25878:17;25858:16;:37;25854:297;;25958:6;25938:16;:26;;25912:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26073:51;26082:5;26089:7;26117:6;26098:16;:25;26073:8;:51::i;:::-;25854:297;25780:378;25656:502;;;:::o;29582:2565::-;29696:1;29680:18;;:4;:18;;;29672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29773:1;29759:16;;:2;:16;;;29751:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29855:6;29836:15;29846:4;29836:9;:15::i;:::-;:25;;29828:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;29930:13;29922:21;;:4;:21;;;:44;;;;29953:13;29947:19;;:2;:19;;;29922:44;29921:67;;;;;29972:16;;;;;;;;;;;29971:17;29921:67;29917:2223;;;30017:13;30009:21;;:4;:21;;;30005:686;;30051:32;30113:18;;30086:24;30104:4;30086:9;:24::i;:::-;:45;;;;:::i;:::-;30051:80;;30182:30;;30154:24;:58;30150:154;;30237:47;30253:30;;30237:15;:47::i;:::-;30150:154;30350:24;;30327:18;;30326:48;30322:354;;30399:43;30417:24;;30399:17;:43::i;:::-;30487:24;;30465:18;;:46;;;;;;;:::i;:::-;;;;;;;;30534:9;30554:15;;;;;;;;;;;30546:29;;:52;30576:21;30546:52;;;;;;;;;;;;;;;;;;;;;;;30534:64;;30629:4;30621:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;30376:300;30322:354;30032:659;30005:686;30707:22;30748:18;:24;30767:4;30748:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;30776:18;:22;30795:2;30776:22;;;;;;;;;;;;;;;;;;;;;;;;;30748:50;30744:1253;;;30836:6;30819:23;;30744:1253;;;30915:11;;30905:6;:21;;30897:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;31018:13;31010:21;;:4;:21;;;31007:178;;31091:15;;31073:13;31083:2;31073:9;:13::i;:::-;31064:6;:22;;;;:::i;:::-;31063:43;;31055:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31007:178;31203:22;31244;31313:13;31307:19;;:2;:19;;;31303:373;;31401:3;31378:19;;31369:6;:28;;;;:::i;:::-;31368:36;;;;:::i;:::-;31351:53;;31477:3;31454:19;;31445:6;:28;;;;:::i;:::-;31444:36;;;;:::i;:::-;31427:53;;31303:373;;;31578:3;31556:18;;31547:6;:27;;;;:::i;:::-;31546:35;;;;:::i;:::-;31529:52;;31653:3;31631:18;;31622:6;:27;;;;:::i;:::-;31621:35;;;;:::i;:::-;31604:52;;31303:373;31738:14;31721;:31;;;;:::i;:::-;31711:6;:42;;;;:::i;:::-;31694:59;;31794:14;31772:18;;:36;;;;;;;:::i;:::-;;;;;;;;31865:1;31848:14;31831;:31;;;;:::i;:::-;:35;31827:155;;;31891:71;31907:4;31921;31946:14;31929;:31;;;;:::i;:::-;31891:15;:71::i;:::-;31827:155;30878:1119;;30744:1253;32011:41;32027:4;32033:2;32037:14;32011:15;:41::i;:::-;29990:2074;29917:2223;;;32095:33;32111:4;32117:2;32121:6;32095:15;:33::i;:::-;29917:2223;29582:2565;;;:::o;14639:132::-;14714:12;:10;:12::i;:::-;14703:23;;:7;:5;:7::i;:::-;:23;;;14695:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14639:132::o;15778:191::-;15852:16;15871:6;;;;;;;;;;;15852:25;;15897:8;15888:6;;:17;;;;;;;;;;;;;;;;;;15952:8;15921:40;;15942:8;15921:40;;;;;;;;;;;;15841:128;15778:191;:::o;26166:776::-;26313:1;26297:18;;:4;:18;;;26289:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26390:1;26376:16;;:2;:16;;;26368:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26445:19;26467:9;:15;26477:4;26467:15;;;;;;;;;;;;;;;;26445:37;;26530:6;26515:11;:21;;26493:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26670:6;26656:11;:20;26638:9;:15;26648:4;26638:15;;;;;;;;;;;;;;;:38;;;;26873:6;26856:9;:13;26866:2;26856:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;26923:2;26908:26;;26917:4;26908:26;;;26927:6;26908:26;;;;;;:::i;:::-;;;;;;;;26278:664;26166:776;;;:::o;32517:474::-;28178:4;28159:16;;:23;;;;;;;;;;;;;;;;;;32603:12:::1;32642:1;32619:20;:24;;;;:::i;:::-;32603:41;;32655:17;32699:4;32676:20;:27;;;;:::i;:::-;32655:49;;32717:22;32742:21;32717:46;;32776:23;32794:4;32776:17;:23::i;:::-;32812:18;32858:14;32834:21;:38;;;;:::i;:::-;32812:61;;32886:36;32900:9;32911:10;32886:13;:36::i;:::-;32940:43;32955:4;32961:10;32973:9;32940:43;;;;;;;;:::i;:::-;;;;;;;;32592:399;;;;28224:5:::0;28205:16;;:24;;;;;;;;;;;;;;;;;;32517:474;:::o;32999:496::-;28178:4;28159:16;;:23;;;;;;;;;;;;;;;;;;33078:21:::1;33116:1;33102:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33078:40;;33147:4;33129;33134:1;33129:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;33173:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33163:4;33168:1;33163:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;33208:62;33225:4;33240:15;33258:11;33208:8;:62::i;:::-;33283:15;:66;;;33364:11;33390:1;33406:4;33433;33472:3;33454:15;:21;;;;:::i;:::-;33283:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;33067:428;28224:5:::0;28205:16;;:24;;;;;;;;;;;;;;;;;;32999:496;:::o;33503:406::-;28178:4;28159:16;;:23;;;;;;;;;;;;;;;;;;33620:62:::1;33637:4;33652:15;33670:11;33620:8;:62::i;:::-;33695:15;:31;;;33734:9;33767:4;33787:11;33813:1;33829::::0;33845:15:::1;;;;;;;;;;;33875;33695:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28224:5:::0;28205:16;;:24;;;;;;;;;;;;;;;;;;33503:406;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:765::-;5912:6;5920;5928;5936;5985:3;5973:9;5964:7;5960:23;5956:33;5953:120;;;5992:79;;:::i;:::-;5953:120;6112:1;6137:53;6182:7;6173:6;6162:9;6158:22;6137:53;:::i;:::-;6127:63;;6083:117;6239:2;6265:53;6310:7;6301:6;6290:9;6286:22;6265:53;:::i;:::-;6255:63;;6210:118;6367:2;6393:53;6438:7;6429:6;6418:9;6414:22;6393:53;:::i;:::-;6383:63;;6338:118;6495:2;6521:53;6566:7;6557:6;6546:9;6542:22;6521:53;:::i;:::-;6511:63;;6466:118;5826:765;;;;;;;:::o;6597:329::-;6656:6;6705:2;6693:9;6684:7;6680:23;6676:32;6673:119;;;6711:79;;:::i;:::-;6673:119;6831:1;6856:53;6901:7;6892:6;6881:9;6877:22;6856:53;:::i;:::-;6846:63;;6802:117;6597:329;;;;:::o;6932:118::-;7019:24;7037:5;7019:24;:::i;:::-;7014:3;7007:37;6932:118;;:::o;7056:222::-;7149:4;7187:2;7176:9;7172:18;7164:26;;7200:71;7268:1;7257:9;7253:17;7244:6;7200:71;:::i;:::-;7056:222;;;;:::o;7284:329::-;7343:6;7392:2;7380:9;7371:7;7367:23;7363:32;7360:119;;;7398:79;;:::i;:::-;7360:119;7518:1;7543:53;7588:7;7579:6;7568:9;7564:22;7543:53;:::i;:::-;7533:63;;7489:117;7284:329;;;;:::o;7619:474::-;7687:6;7695;7744:2;7732:9;7723:7;7719:23;7715:32;7712:119;;;7750:79;;:::i;:::-;7712:119;7870:1;7895:53;7940:7;7931:6;7920:9;7916:22;7895:53;:::i;:::-;7885:63;;7841:117;7997:2;8023:53;8068:7;8059:6;8048:9;8044:22;8023:53;:::i;:::-;8013:63;;7968:118;7619:474;;;;;:::o;8099:180::-;8147:77;8144:1;8137:88;8244:4;8241:1;8234:15;8268:4;8265:1;8258:15;8285:320;8329:6;8366:1;8360:4;8356:12;8346:22;;8413:1;8407:4;8403:12;8434:18;8424:81;;8490:4;8482:6;8478:17;8468:27;;8424:81;8552:2;8544:6;8541:14;8521:18;8518:38;8515:84;;8571:18;;:::i;:::-;8515:84;8336:269;8285:320;;;:::o;8611:180::-;8659:77;8656:1;8649:88;8756:4;8753:1;8746:15;8780:4;8777:1;8770:15;8797:191;8837:3;8856:20;8874:1;8856:20;:::i;:::-;8851:25;;8890:20;8908:1;8890:20;:::i;:::-;8885:25;;8933:1;8930;8926:9;8919:16;;8954:3;8951:1;8948:10;8945:36;;;8961:18;;:::i;:::-;8945:36;8797:191;;;;:::o;8994:231::-;9134:34;9130:1;9122:6;9118:14;9111:58;9203:14;9198:2;9190:6;9186:15;9179:39;8994:231;:::o;9231:366::-;9373:3;9394:67;9458:2;9453:3;9394:67;:::i;:::-;9387:74;;9470:93;9559:3;9470:93;:::i;:::-;9588:2;9583:3;9579:12;9572:19;;9231:366;;;:::o;9603:419::-;9769:4;9807:2;9796:9;9792:18;9784:26;;9856:9;9850:4;9846:20;9842:1;9831:9;9827:17;9820:47;9884:131;10010:4;9884:131;:::i;:::-;9876:139;;9603:419;;;:::o;10028:102::-;10070:8;10117:5;10114:1;10110:13;10089:34;;10028:102;;;:::o;10136:848::-;10197:5;10204:4;10228:6;10219:15;;10252:5;10243:14;;10266:712;10287:1;10277:8;10274:15;10266:712;;;10382:4;10377:3;10373:14;10367:4;10364:24;10361:50;;;10391:18;;:::i;:::-;10361:50;10441:1;10431:8;10427:16;10424:451;;;10856:4;10849:5;10845:16;10836:25;;10424:451;10906:4;10900;10896:15;10888:23;;10936:32;10959:8;10936:32;:::i;:::-;10924:44;;10266:712;;;10136:848;;;;;;;:::o;10990:1073::-;11044:5;11235:8;11225:40;;11256:1;11247:10;;11258:5;;11225:40;11284:4;11274:36;;11301:1;11292:10;;11303:5;;11274:36;11370:4;11418:1;11413:27;;;;11454:1;11449:191;;;;11363:277;;11413:27;11431:1;11422:10;;11433:5;;;11449:191;11494:3;11484:8;11481:17;11478:43;;;11501:18;;:::i;:::-;11478:43;11550:8;11547:1;11543:16;11534:25;;11585:3;11578:5;11575:14;11572:40;;;11592:18;;:::i;:::-;11572:40;11625:5;;;11363:277;;11749:2;11739:8;11736:16;11730:3;11724:4;11721:13;11717:36;11699:2;11689:8;11686:16;11681:2;11675:4;11672:12;11668:35;11652:111;11649:246;;;11805:8;11799:4;11795:19;11786:28;;11840:3;11833:5;11830:14;11827:40;;;11847:18;;:::i;:::-;11827:40;11880:5;;11649:246;11920:42;11958:3;11948:8;11942:4;11939:1;11920:42;:::i;:::-;11905:57;;;;11994:4;11989:3;11985:14;11978:5;11975:25;11972:51;;;12003:18;;:::i;:::-;11972:51;12052:4;12045:5;12041:16;12032:25;;10990:1073;;;;;;:::o;12069:281::-;12127:5;12151:23;12169:4;12151:23;:::i;:::-;12143:31;;12195:25;12211:8;12195:25;:::i;:::-;12183:37;;12239:104;12276:66;12266:8;12260:4;12239:104;:::i;:::-;12230:113;;12069:281;;;;:::o;12356:348::-;12396:7;12419:20;12437:1;12419:20;:::i;:::-;12414:25;;12453:20;12471:1;12453:20;:::i;:::-;12448:25;;12641:1;12573:66;12569:74;12566:1;12563:81;12558:1;12551:9;12544:17;12540:105;12537:131;;;12648:18;;:::i;:::-;12537:131;12696:1;12693;12689:9;12678:20;;12356:348;;;;:::o;12710:224::-;12850:34;12846:1;12838:6;12834:14;12827:58;12919:7;12914:2;12906:6;12902:15;12895:32;12710:224;:::o;12940:366::-;13082:3;13103:67;13167:2;13162:3;13103:67;:::i;:::-;13096:74;;13179:93;13268:3;13179:93;:::i;:::-;13297:2;13292:3;13288:12;13281:19;;12940:366;;;:::o;13312:419::-;13478:4;13516:2;13505:9;13501:18;13493:26;;13565:9;13559:4;13555:20;13551:1;13540:9;13536:17;13529:47;13593:131;13719:4;13593:131;:::i;:::-;13585:139;;13312:419;;;:::o;13737:170::-;13877:22;13873:1;13865:6;13861:14;13854:46;13737:170;:::o;13913:366::-;14055:3;14076:67;14140:2;14135:3;14076:67;:::i;:::-;14069:74;;14152:93;14241:3;14152:93;:::i;:::-;14270:2;14265:3;14261:12;14254:19;;13913:366;;;:::o;14285:419::-;14451:4;14489:2;14478:9;14474:18;14466:26;;14538:9;14532:4;14528:20;14524:1;14513:9;14509:17;14502:47;14566:131;14692:4;14566:131;:::i;:::-;14558:139;;14285:419;;;:::o;14710:225::-;14850:34;14846:1;14838:6;14834:14;14827:58;14919:8;14914:2;14906:6;14902:15;14895:33;14710:225;:::o;14941:366::-;15083:3;15104:67;15168:2;15163:3;15104:67;:::i;:::-;15097:74;;15180:93;15269:3;15180:93;:::i;:::-;15298:2;15293:3;15289:12;15282:19;;14941:366;;;:::o;15313:419::-;15479:4;15517:2;15506:9;15502:18;15494:26;;15566:9;15560:4;15556:20;15552:1;15541:9;15537:17;15530:47;15594:131;15720:4;15594:131;:::i;:::-;15586:139;;15313:419;;;:::o;15738:223::-;15878:34;15874:1;15866:6;15862:14;15855:58;15947:6;15942:2;15934:6;15930:15;15923:31;15738:223;:::o;15967:366::-;16109:3;16130:67;16194:2;16189:3;16130:67;:::i;:::-;16123:74;;16206:93;16295:3;16206:93;:::i;:::-;16324:2;16319:3;16315:12;16308:19;;15967:366;;;:::o;16339:419::-;16505:4;16543:2;16532:9;16528:18;16520:26;;16592:9;16586:4;16582:20;16578:1;16567:9;16563:17;16556:47;16620:131;16746:4;16620:131;:::i;:::-;16612:139;;16339:419;;;:::o;16764:221::-;16904:34;16900:1;16892:6;16888:14;16881:58;16973:4;16968:2;16960:6;16956:15;16949:29;16764:221;:::o;16991:366::-;17133:3;17154:67;17218:2;17213:3;17154:67;:::i;:::-;17147:74;;17230:93;17319:3;17230:93;:::i;:::-;17348:2;17343:3;17339:12;17332:19;;16991:366;;;:::o;17363:419::-;17529:4;17567:2;17556:9;17552:18;17544:26;;17616:9;17610:4;17606:20;17602:1;17591:9;17587:17;17580:47;17644:131;17770:4;17644:131;:::i;:::-;17636:139;;17363:419;;;:::o;17788:179::-;17928:31;17924:1;17916:6;17912:14;17905:55;17788:179;:::o;17973:366::-;18115:3;18136:67;18200:2;18195:3;18136:67;:::i;:::-;18129:74;;18212:93;18301:3;18212:93;:::i;:::-;18330:2;18325:3;18321:12;18314:19;;17973:366;;;:::o;18345:419::-;18511:4;18549:2;18538:9;18534:18;18526:26;;18598:9;18592:4;18588:20;18584:1;18573:9;18569:17;18562:47;18626:131;18752:4;18626:131;:::i;:::-;18618:139;;18345:419;;;:::o;18770:224::-;18910:34;18906:1;18898:6;18894:14;18887:58;18979:7;18974:2;18966:6;18962:15;18955:32;18770:224;:::o;19000:366::-;19142:3;19163:67;19227:2;19222:3;19163:67;:::i;:::-;19156:74;;19239:93;19328:3;19239:93;:::i;:::-;19357:2;19352:3;19348:12;19341:19;;19000:366;;;:::o;19372:419::-;19538:4;19576:2;19565:9;19561:18;19553:26;;19625:9;19619:4;19615:20;19611:1;19600:9;19596:17;19589:47;19653:131;19779:4;19653:131;:::i;:::-;19645:139;;19372:419;;;:::o;19797:222::-;19937:34;19933:1;19925:6;19921:14;19914:58;20006:5;20001:2;19993:6;19989:15;19982:30;19797:222;:::o;20025:366::-;20167:3;20188:67;20252:2;20247:3;20188:67;:::i;:::-;20181:74;;20264:93;20353:3;20264:93;:::i;:::-;20382:2;20377:3;20373:12;20366:19;;20025:366;;;:::o;20397:419::-;20563:4;20601:2;20590:9;20586:18;20578:26;;20650:9;20644:4;20640:20;20636:1;20625:9;20621:17;20614:47;20678:131;20804:4;20678:131;:::i;:::-;20670:139;;20397:419;;;:::o;20822:225::-;20962:34;20958:1;20950:6;20946:14;20939:58;21031:8;21026:2;21018:6;21014:15;21007:33;20822:225;:::o;21053:366::-;21195:3;21216:67;21280:2;21275:3;21216:67;:::i;:::-;21209:74;;21292:93;21381:3;21292:93;:::i;:::-;21410:2;21405:3;21401:12;21394:19;;21053:366;;;:::o;21425:419::-;21591:4;21629:2;21618:9;21614:18;21606:26;;21678:9;21672:4;21668:20;21664:1;21653:9;21649:17;21642:47;21706:131;21832:4;21706:131;:::i;:::-;21698:139;;21425:419;;;:::o;21850:194::-;21890:4;21910:20;21928:1;21910:20;:::i;:::-;21905:25;;21944:20;21962:1;21944:20;:::i;:::-;21939:25;;21988:1;21985;21981:9;21973:17;;22012:1;22006:4;22003:11;22000:37;;;22017:18;;:::i;:::-;22000:37;21850:194;;;;:::o;22050:168::-;22190:20;22186:1;22178:6;22174:14;22167:44;22050:168;:::o;22224:366::-;22366:3;22387:67;22451:2;22446:3;22387:67;:::i;:::-;22380:74;;22463:93;22552:3;22463:93;:::i;:::-;22581:2;22576:3;22572:12;22565:19;;22224:366;;;:::o;22596:419::-;22762:4;22800:2;22789:9;22785:18;22777:26;;22849:9;22843:4;22839:20;22835:1;22824:9;22820:17;22813:47;22877:131;23003:4;22877:131;:::i;:::-;22869:139;;22596:419;;;:::o;23021:244::-;23161:34;23157:1;23149:6;23145:14;23138:58;23230:27;23225:2;23217:6;23213:15;23206:52;23021:244;:::o;23271:366::-;23413:3;23434:67;23498:2;23493:3;23434:67;:::i;:::-;23427:74;;23510:93;23599:3;23510:93;:::i;:::-;23628:2;23623:3;23619:12;23612:19;;23271:366;;;:::o;23643:419::-;23809:4;23847:2;23836:9;23832:18;23824:26;;23896:9;23890:4;23886:20;23882:1;23871:9;23867:17;23860:47;23924:131;24050:4;23924:131;:::i;:::-;23916:139;;23643:419;;;:::o;24068:241::-;24208:34;24204:1;24196:6;24192:14;24185:58;24277:24;24272:2;24264:6;24260:15;24253:49;24068:241;:::o;24315:366::-;24457:3;24478:67;24542:2;24537:3;24478:67;:::i;:::-;24471:74;;24554:93;24643:3;24554:93;:::i;:::-;24672:2;24667:3;24663:12;24656:19;;24315:366;;;:::o;24687:419::-;24853:4;24891:2;24880:9;24876:18;24868:26;;24940:9;24934:4;24930:20;24926:1;24915:9;24911:17;24904:47;24968:131;25094:4;24968:131;:::i;:::-;24960:139;;24687:419;;;:::o;25112:180::-;25160:77;25157:1;25150:88;25257:4;25254:1;25247:15;25281:4;25278:1;25271:15;25298:185;25338:1;25355:20;25373:1;25355:20;:::i;:::-;25350:25;;25389:20;25407:1;25389:20;:::i;:::-;25384:25;;25428:1;25418:35;;25433:18;;:::i;:::-;25418:35;25475:1;25472;25468:9;25463:14;;25298:185;;;;:::o;25489:182::-;25629:34;25625:1;25617:6;25613:14;25606:58;25489:182;:::o;25677:366::-;25819:3;25840:67;25904:2;25899:3;25840:67;:::i;:::-;25833:74;;25916:93;26005:3;25916:93;:::i;:::-;26034:2;26029:3;26025:12;26018:19;;25677:366;;;:::o;26049:419::-;26215:4;26253:2;26242:9;26238:18;26230:26;;26302:9;26296:4;26292:20;26288:1;26277:9;26273:17;26266:47;26330:131;26456:4;26330:131;:::i;:::-;26322:139;;26049:419;;;:::o;26474:442::-;26623:4;26661:2;26650:9;26646:18;26638:26;;26674:71;26742:1;26731:9;26727:17;26718:6;26674:71;:::i;:::-;26755:72;26823:2;26812:9;26808:18;26799:6;26755:72;:::i;:::-;26837;26905:2;26894:9;26890:18;26881:6;26837:72;:::i;:::-;26474:442;;;;;;:::o;26922:180::-;26970:77;26967:1;26960:88;27067:4;27064:1;27057:15;27091:4;27088:1;27081:15;27108:180;27156:77;27153:1;27146:88;27253:4;27250:1;27243:15;27277:4;27274:1;27267:15;27294:143;27351:5;27382:6;27376:13;27367:22;;27398:33;27425:5;27398:33;:::i;:::-;27294:143;;;;:::o;27443:351::-;27513:6;27562:2;27550:9;27541:7;27537:23;27533:32;27530:119;;;27568:79;;:::i;:::-;27530:119;27688:1;27713:64;27769:7;27760:6;27749:9;27745:22;27713:64;:::i;:::-;27703:74;;27659:128;27443:351;;;;:::o;27800:85::-;27845:7;27874:5;27863:16;;27800:85;;;:::o;27891:158::-;27949:9;27982:61;28000:42;28009:32;28035:5;28009:32;:::i;:::-;28000:42;:::i;:::-;27982:61;:::i;:::-;27969:74;;27891:158;;;:::o;28055:147::-;28150:45;28189:5;28150:45;:::i;:::-;28145:3;28138:58;28055:147;;:::o;28208:114::-;28275:6;28309:5;28303:12;28293:22;;28208:114;;;:::o;28328:184::-;28427:11;28461:6;28456:3;28449:19;28501:4;28496:3;28492:14;28477:29;;28328:184;;;;:::o;28518:132::-;28585:4;28608:3;28600:11;;28638:4;28633:3;28629:14;28621:22;;28518:132;;;:::o;28656:108::-;28733:24;28751:5;28733:24;:::i;:::-;28728:3;28721:37;28656:108;;:::o;28770:179::-;28839:10;28860:46;28902:3;28894:6;28860:46;:::i;:::-;28938:4;28933:3;28929:14;28915:28;;28770:179;;;;:::o;28955:113::-;29025:4;29057;29052:3;29048:14;29040:22;;28955:113;;;:::o;29104:732::-;29223:3;29252:54;29300:5;29252:54;:::i;:::-;29322:86;29401:6;29396:3;29322:86;:::i;:::-;29315:93;;29432:56;29482:5;29432:56;:::i;:::-;29511:7;29542:1;29527:284;29552:6;29549:1;29546:13;29527:284;;;29628:6;29622:13;29655:63;29714:3;29699:13;29655:63;:::i;:::-;29648:70;;29741:60;29794:6;29741:60;:::i;:::-;29731:70;;29587:224;29574:1;29571;29567:9;29562:14;;29527:284;;;29531:14;29827:3;29820:10;;29228:608;;;29104:732;;;;:::o;29842:831::-;30105:4;30143:3;30132:9;30128:19;30120:27;;30157:71;30225:1;30214:9;30210:17;30201:6;30157:71;:::i;:::-;30238:80;30314:2;30303:9;30299:18;30290:6;30238:80;:::i;:::-;30365:9;30359:4;30355:20;30350:2;30339:9;30335:18;30328:48;30393:108;30496:4;30487:6;30393:108;:::i;:::-;30385:116;;30511:72;30579:2;30568:9;30564:18;30555:6;30511:72;:::i;:::-;30593:73;30661:3;30650:9;30646:19;30637:6;30593:73;:::i;:::-;29842:831;;;;;;;;:::o;30679:807::-;30928:4;30966:3;30955:9;30951:19;30943:27;;30980:71;31048:1;31037:9;31033:17;31024:6;30980:71;:::i;:::-;31061:72;31129:2;31118:9;31114:18;31105:6;31061:72;:::i;:::-;31143:80;31219:2;31208:9;31204:18;31195:6;31143:80;:::i;:::-;31233;31309:2;31298:9;31294:18;31285:6;31233:80;:::i;:::-;31323:73;31391:3;31380:9;31376:19;31367:6;31323:73;:::i;:::-;31406;31474:3;31463:9;31459:19;31450:6;31406:73;:::i;:::-;30679:807;;;;;;;;;:::o;31492:143::-;31549:5;31580:6;31574:13;31565:22;;31596:33;31623:5;31596:33;:::i;:::-;31492:143;;;;:::o;31641:663::-;31729:6;31737;31745;31794:2;31782:9;31773:7;31769:23;31765:32;31762:119;;;31800:79;;:::i;:::-;31762:119;31920:1;31945:64;32001:7;31992:6;31981:9;31977:22;31945:64;:::i;:::-;31935:74;;31891:128;32058:2;32084:64;32140:7;32131:6;32120:9;32116:22;32084:64;:::i;:::-;32074:74;;32029:129;32197:2;32223:64;32279:7;32270:6;32259:9;32255:22;32223:64;:::i;:::-;32213:74;;32168:129;31641:663;;;;;:::o

Swarm Source

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