ETH Price: $3,348.10 (+2.61%)
 

Overview

Max Total Supply

1,000,000,000 TifaInu

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
findpeacewithinyourself.eth
Balance
0.0129637 TifaInu

Value
$0.00
0xc8cb66adeaedc87a0764d23f8313da970da4bc2b
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:
TifaInu

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-10-03
*/

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

/**
*  _______ _  __        _____             
* |__   __(_)/ _|      |_   _|            
*    | |   _| |_ __ _    | |  _ __  _   _ 
*    | |  | |  _/ _` |   | | | '_ \| | | |
*    | |  | | || (_| |  _| |_| | | | |_| |
*    |_|  |_|_| \__,_| |_____|_| |_|\__,_|
*                                         
*                                                          *    
 * 
 * Your crypto waifu ;)
 * 
 * Telegram: https://t.me/TifaInuToken
 * Twitter: https://twitter.com/TifaERC20
 * Homepage: tifa-erc.com
 * 
 * Total Supply: 1 Billion Tokens
 * 
 * 
 * Set slippage to 3-4% : 1% to LP, 2% tax to Marketing 
*/

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

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

/**
 * @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 TifaInu is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "Tifa Inu";
    string private _symbol = "TifaInu";
    uint8 private _decimals = 9;
    uint256 private _supply = 1000000000;
    uint256 public taxForLiquidity = 47; //sniper protection, to be lowered to 1% after launch
    uint256 public taxForMarketing = 47; //sniper protection, to be lowered to 2% after launch
    uint256 public maxTxAmount = 10000001 * 10**_decimals;
    uint256 public maxWalletAmount = 10000001 * 10**_decimals;
    address public marketingWallet = 0x719A85DDC82B6724132ef89C9F72BE47261a83EA;
    address public DEAD = 0x000000000000000000000000000000000000dEaD;
    uint256 public _marketingReserves = 0;
    mapping(address => bool) public _isExcludedFromFee;
    uint256 public numTokensSellToAddToLiquidity = 200000 * 10**_decimals;
    uint256 public numTokensSellToAddToETH = 100000 * 10**_decimals;

    function postLaunch() external onlyOwner {
        taxForLiquidity = 1;
        taxForMarketing = 2;
        maxTxAmount = 10000001 * 10**_decimals;
        maxWalletAmount = 10000001 * 10**_decimals;
    }
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    
    bool inSwapAndLiquify;

    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); //eth mainnet
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = true;
    }

    function updatePair(address _pair) external onlyOwner {
        require(_pair != DEAD, "LP Pair cannot be the Dead wallet, or 0!");
        require(_pair != address(0), "LP Pair cannot be the Dead wallet, or 0!");
        uniswapV2Pair = _pair;
    }

    /**
     * @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 = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function excludeFromFee(address _address, bool _status) external onlyOwner {
        _isExcludedFromFee[_address] = _status;
    }

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

    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)
    {
        require(newWallet != DEAD, "LP Pair cannot be the Dead wallet, or 0!");
        require(newWallet != address(0), "LP Pair cannot be the Dead wallet, or 0!");
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMarketing(uint256 _taxForLiquidity, uint256 _taxForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity+_taxForMarketing) <= 10, "ERC20: total tax must not be greater than 10%");
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }

    function changeSwapThresholds(uint256 _numTokensSellToAddToLiquidity, uint256 _numTokensSellToAddToETH)
        public
        onlyOwner
        returns (bool)
    {
        require(_numTokensSellToAddToLiquidity < _supply / 98, "Cannot liquidate more than 2% of the supply at once!");
        require(_numTokensSellToAddToETH < _supply / 98, "Cannot liquidate more than 2% of the supply at once!");
        numTokensSellToAddToLiquidity = _numTokensSellToAddToLiquidity * 10**_decimals;
        numTokensSellToAddToETH = _numTokensSellToAddToETH * 10**_decimals;

        return true;
    }

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

        return true;
    }

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

        return true;
    }

    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":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"_numTokensSellToAddToLiquidity","type":"uint256"},{"internalType":"uint256","name":"_numTokensSellToAddToETH","type":"uint256"}],"name":"changeSwapThresholds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"numTokensSellToAddToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"postLaunch","outputs":[],"stateMutability":"nonpayable","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":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","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"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526040518060400160405280600881526020017f5469666120496e75000000000000000000000000000000000000000000000000815250600690816200004a919062000b8b565b506040518060400160405280600781526020017f54696661496e75000000000000000000000000000000000000000000000000008152506007908162000091919062000b8b565b506009600860006101000a81548160ff021916908360ff160217905550633b9aca00600955602f600a55602f600b55600860009054906101000a900460ff16600a620000de919062000e02565b62989681620000ee919062000e53565b600c55600860009054906101000a900460ff16600a6200010f919062000e02565b629896816200011f919062000e53565b600d5573719a85ddc82b6724132ef89c9f72be47261a83ea600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601055600860009054906101000a900460ff16600a620001dd919062000e02565b62030d40620001ed919062000e53565b601255600860009054906101000a900460ff16600a6200020e919062000e02565b620186a06200021e919062000e53565b6013553480156200022e57600080fd5b50600680546200023e906200097a565b80601f01602080910402602001604051908101604052809291908181526020018280546200026c906200097a565b8015620002bd5780601f106200029157610100808354040283529160200191620002bd565b820191906000526020600020905b8154815290600101906020018083116200029f57829003601f168201915b505050505060078054620002d1906200097a565b80601f0160208091040260200160405190810160405280929190818152602001828054620002ff906200097a565b8015620003505780601f10620003245761010080835404028352916020019162000350565b820191906000526020600020905b8154815290600101906020018083116200033257829003601f168201915b5050505050816003908162000366919062000b8b565b50806004908162000378919062000b8b565b5050506200039b6200038f620006fe60201b60201c565b6200070660201b60201c565b620003d933600860009054906101000a900460ff16600a620003be919062000e02565b600954620003cd919062000e53565b620007cc60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200043e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000464919062000f1e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004f2919062000f1e565b6040518363ffffffff1660e01b81526004016200051192919062000f61565b6020604051808303816000875af115801562000531573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000557919062000f1e565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060016011600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200107a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200083e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008359062000fef565b60405180910390fd5b806002600082825462000852919062001011565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200090591906200105d565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200099357607f821691505b602082108103620009a957620009a86200094b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009d4565b62000a1f8683620009d4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a6c62000a6662000a608462000a37565b62000a41565b62000a37565b9050919050565b6000819050919050565b62000a888362000a4b565b62000aa062000a978262000a73565b848454620009e1565b825550505050565b600090565b62000ab762000aa8565b62000ac481848462000a7d565b505050565b5b8181101562000aec5762000ae060008262000aad565b60018101905062000aca565b5050565b601f82111562000b3b5762000b0581620009af565b62000b1084620009c4565b8101602085101562000b20578190505b62000b3862000b2f85620009c4565b83018262000ac9565b50505b505050565b600082821c905092915050565b600062000b606000198460080262000b40565b1980831691505092915050565b600062000b7b838362000b4d565b9150826002028217905092915050565b62000b968262000911565b67ffffffffffffffff81111562000bb25762000bb16200091c565b5b62000bbe82546200097a565b62000bcb82828562000af0565b600060209050601f83116001811462000c03576000841562000bee578287015190505b62000bfa858262000b6d565b86555062000c6a565b601f19841662000c1386620009af565b60005b8281101562000c3d5784890151825560018201915060208501945060208101905062000c16565b8683101562000c5d578489015162000c59601f89168262000b4d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d005780860481111562000cd85762000cd762000c72565b5b600185161562000ce85780820291505b808102905062000cf88562000ca1565b945062000cb8565b94509492505050565b60008262000d1b576001905062000dee565b8162000d2b576000905062000dee565b816001811462000d44576002811462000d4f5762000d85565b600191505062000dee565b60ff84111562000d645762000d6362000c72565b5b8360020a91508482111562000d7e5762000d7d62000c72565b5b5062000dee565b5060208310610133831016604e8410600b841016171562000dbf5782820a90508381111562000db95762000db862000c72565b5b62000dee565b62000dce848484600162000cae565b9250905081840481111562000de85762000de762000c72565b5b81810290505b9392505050565b600060ff82169050919050565b600062000e0f8262000a37565b915062000e1c8362000df5565b925062000e4b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d09565b905092915050565b600062000e608262000a37565b915062000e6d8362000a37565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ea95762000ea862000c72565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ee68262000eb9565b9050919050565b62000ef88162000ed9565b811462000f0457600080fd5b50565b60008151905062000f188162000eed565b92915050565b60006020828403121562000f375762000f3662000eb4565b5b600062000f478482850162000f07565b91505092915050565b62000f5b8162000ed9565b82525050565b600060408201905062000f78600083018562000f50565b62000f87602083018462000f50565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fd7601f8362000f8e565b915062000fe48262000f9f565b602082019050919050565b600060208201905081810360008301526200100a8162000fc8565b9050919050565b60006200101e8262000a37565b91506200102b8362000a37565b925082820190508082111562001046576200104562000c72565b5b92915050565b620010578162000a37565b82525050565b60006020820190506200107460008301846200104c565b92915050565b608051613535620010b96000396000818161095801528181611d1a01528181611dfb01528181611e2201528181612152015261217901526135356000f3fe6080604052600436106101fd5760003560e01c806381bfdcca1161010d578063ad16a0cf116100a0578063d12a76881161006f578063d12a768814610796578063dd62ed3e146107c1578063df8408fe146107fe578063f2fde38b14610827578063f345bd851461085057610204565b8063ad16a0cf146106c6578063af8af690146106f1578063bb85c6d11461072e578063c0fdea571461076b57610204565b8063a3996f7b116100dc578063a3996f7b1461060a578063a457c2d714610621578063a9059cbb1461065e578063aa4bde281461069b57610204565b806381bfdcca1461054c5780638c0b5e22146105895780638da5cb5b146105b457806395d89b41146105df57610204565b8063313ce56711610190578063677daa571161015f578063677daa571461045357806370a0823114610490578063715018a6146104cd57806375f0a874146104e4578063768dc7101461050f57610204565b8063313ce5671461039557806339509351146103c057806349bd5a5e146103fd578063527ffabd1461042857610204565b806318160ddd116101cc57806318160ddd146102c75780631b56bbf9146102f257806323b872dd1461031b57806330b63d801461035857610204565b806303fd2a451461020957806306fdde0314610234578063095ea7b31461025f5780631694505e1461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e61087b565b60405161022b91906122a3565b60405180910390f35b34801561024057600080fd5b506102496108a1565b604051610256919061234e565b60405180910390f35b34801561026b57600080fd5b50610286600480360381019061028191906123d7565b610933565b6040516102939190612432565b60405180910390f35b3480156102a857600080fd5b506102b1610956565b6040516102be91906124ac565b60405180910390f35b3480156102d357600080fd5b506102dc61097a565b6040516102e991906124d6565b60405180910390f35b3480156102fe57600080fd5b50610319600480360381019061031491906124f1565b610984565b005b34801561032757600080fd5b50610342600480360381019061033d919061251e565b610acf565b60405161034f9190612432565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612571565b610afe565b60405161038c9190612432565b60405180910390f35b3480156103a157600080fd5b506103aa610c0c565b6040516103b791906125cd565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906123d7565b610c15565b6040516103f49190612432565b60405180910390f35b34801561040957600080fd5b50610412610c4c565b60405161041f91906122a3565b60405180910390f35b34801561043457600080fd5b5061043d610c72565b60405161044a91906124d6565b60405180910390f35b34801561045f57600080fd5b5061047a600480360381019061047591906125e8565b610c78565b6040516104879190612432565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b291906124f1565b610c92565b6040516104c491906124d6565b60405180910390f35b3480156104d957600080fd5b506104e2610cda565b005b3480156104f057600080fd5b506104f9610cee565b60405161050691906122a3565b60405180910390f35b34801561051b57600080fd5b50610536600480360381019061053191906124f1565b610d14565b6040516105439190612432565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906125e8565b610d34565b6040516105809190612432565b60405180910390f35b34801561059557600080fd5b5061059e610d4e565b6040516105ab91906124d6565b60405180910390f35b3480156105c057600080fd5b506105c9610d54565b6040516105d691906122a3565b60405180910390f35b3480156105eb57600080fd5b506105f4610d7e565b604051610601919061234e565b60405180910390f35b34801561061657600080fd5b5061061f610e10565b005b34801561062d57600080fd5b50610648600480360381019061064391906123d7565b610e8a565b6040516106559190612432565b60405180910390f35b34801561066a57600080fd5b50610685600480360381019061068091906123d7565b610f01565b6040516106929190612432565b60405180910390f35b3480156106a757600080fd5b506106b0610f24565b6040516106bd91906124d6565b60405180910390f35b3480156106d257600080fd5b506106db610f2a565b6040516106e891906124d6565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190612571565b610f30565b6040516107259190612432565b60405180910390f35b34801561073a57600080fd5b50610755600480360381019061075091906124f1565b610fa1565b6040516107629190612432565b60405180910390f35b34801561077757600080fd5b506107806110f4565b60405161078d91906124d6565b60405180910390f35b3480156107a257600080fd5b506107ab6110fa565b6040516107b891906124d6565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190612615565b611100565b6040516107f591906124d6565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190612681565b611187565b005b34801561083357600080fd5b5061084e600480360381019061084991906124f1565b6111ea565b005b34801561085c57600080fd5b5061086561126d565b60405161087291906124d6565b60405180910390f35b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546108b0906126f0565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc906126f0565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b60008061093e611273565b905061094b81858561127b565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b61098c611444565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390612793565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290612793565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610ada611273565b9050610ae78582856114c2565b610af285858561154e565b60019150509392505050565b6000610b08611444565b6062600954610b179190612811565b8310610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f906128b4565b60405180910390fd5b6062600954610b679190612811565b8210610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f906128b4565b60405180910390fd5b600860009054906101000a900460ff16600a610bc49190612a07565b83610bcf9190612a52565b601281905550600860009054906101000a900460ff16600a610bf19190612a07565b82610bfc9190612a52565b6013819055506001905092915050565b60006009905090565b600080610c20611273565b9050610c41818585610c328589611100565b610c3c9190612aac565b61127b565b600191505092915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000610c82611444565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce2611444565b610cec6000611adc565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60116020528060005260406000206000915054906101000a900460ff1681565b6000610d3e611444565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d8d906126f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610db9906126f0565b8015610e065780601f10610ddb57610100808354040283529160200191610e06565b820191906000526020600020905b815481529060010190602001808311610de957829003601f168201915b5050505050905090565b610e18611444565b6001600a819055506002600b81905550600860009054906101000a900460ff16600a610e449190612a07565b62989681610e529190612a52565b600c81905550600860009054906101000a900460ff16600a610e749190612a07565b62989681610e829190612a52565b600d81905550565b600080610e95611273565b90506000610ea38286611100565b905083811015610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90612b52565b60405180910390fd5b610ef5828686840361127b565b60019250505092915050565b600080610f0c611273565b9050610f1981858561154e565b600191505092915050565b600d5481565b60135481565b6000610f3a611444565b600a8284610f489190612aac565b1115610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090612be4565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610fab611444565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290612793565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190612793565b60405180910390fd5b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60105481565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61118f611444565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111f2611444565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890612c76565b60405180910390fd5b61126a81611adc565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190612d08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090612d9a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161143791906124d6565b60405180910390a3505050565b61144c611273565b73ffffffffffffffffffffffffffffffffffffffff1661146a610d54565b73ffffffffffffffffffffffffffffffffffffffff16146114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790612e06565b60405180910390fd5b565b60006114ce8484611100565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611548578181101561153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190612e72565b60405180910390fd5b611547848484840361127b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490612f04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390612f96565b60405180910390fd5b8061163684610c92565b1015611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90613028565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117205750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611737575060148054906101000a900460ff16155b15611acb57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461189057600060105461179f30610c92565b6117a99190613048565b905060125481106117c0576117bf601254611ba2565b5b6013546010541061188e576117d6601354611c61565b601354601060008282546117ea9190613048565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505090508061188c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611883906130c8565b60405180910390fd5b505b505b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119335750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561194057819050611aba565b600c54821115611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c9061315a565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a3357600d546119e684610c92565b836119f19190612aac565b1115611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a29906131ec565b60405180910390fd5b5b60006064600b5484611a459190612a52565b611a4f9190612811565b905060006064600a5485611a639190612a52565b611a6d9190612811565b90508082611a7b9190612aac565b84611a869190613048565b92508160106000828254611a9a9190612aac565b92505081905550611ab786308385611ab29190612aac565b611ed2565b50505b611ac5848483611ed2565b50611ad7565b611ad6838383611ed2565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60016014806101000a81548160ff0219169083151502179055506000600282611bcb9190612811565b905060008183611bdb9190613048565b90506000479050611beb83611c61565b60008147611bf99190613048565b9050611c058382612132565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611c389392919061320c565b60405180910390a15050505060006014806101000a81548160ff02191690831515021790555050565b60016014806101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611c9857611c97613243565b5b604051908082528060200260200182016040528015611cc65781602001602082028036833780820191505090505b5090503081600081518110611cde57611cdd613272565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da791906132b6565b81600181518110611dbb57611dba613272565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e20307f00000000000000000000000000000000000000000000000000000000000000008461127b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611e829594939291906133dc565b600060405180830381600087803b158015611e9c57600080fd5b505af1158015611eb0573d6000803e3d6000fd5b505050505060006014806101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890612f04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa790612f96565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90613028565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161212491906124d6565b60405180910390a350505050565b60016014806101000a81548160ff021916908315150217905550612177307f00000000000000000000000000000000000000000000000000000000000000008461127b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121fe96959493929190613436565b60606040518083038185885af115801561221c573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061224191906134ac565b50505060006014806101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061228d82612262565b9050919050565b61229d81612282565b82525050565b60006020820190506122b86000830184612294565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122f85780820151818401526020810190506122dd565b60008484015250505050565b6000601f19601f8301169050919050565b6000612320826122be565b61232a81856122c9565b935061233a8185602086016122da565b61234381612304565b840191505092915050565b600060208201905081810360008301526123688184612315565b905092915050565b600080fd5b61237e81612282565b811461238957600080fd5b50565b60008135905061239b81612375565b92915050565b6000819050919050565b6123b4816123a1565b81146123bf57600080fd5b50565b6000813590506123d1816123ab565b92915050565b600080604083850312156123ee576123ed612370565b5b60006123fc8582860161238c565b925050602061240d858286016123c2565b9150509250929050565b60008115159050919050565b61242c81612417565b82525050565b60006020820190506124476000830184612423565b92915050565b6000819050919050565b600061247261246d61246884612262565b61244d565b612262565b9050919050565b600061248482612457565b9050919050565b600061249682612479565b9050919050565b6124a68161248b565b82525050565b60006020820190506124c1600083018461249d565b92915050565b6124d0816123a1565b82525050565b60006020820190506124eb60008301846124c7565b92915050565b60006020828403121561250757612506612370565b5b60006125158482850161238c565b91505092915050565b60008060006060848603121561253757612536612370565b5b60006125458682870161238c565b93505060206125568682870161238c565b9250506040612567868287016123c2565b9150509250925092565b6000806040838503121561258857612587612370565b5b6000612596858286016123c2565b92505060206125a7858286016123c2565b9150509250929050565b600060ff82169050919050565b6125c7816125b1565b82525050565b60006020820190506125e260008301846125be565b92915050565b6000602082840312156125fe576125fd612370565b5b600061260c848285016123c2565b91505092915050565b6000806040838503121561262c5761262b612370565b5b600061263a8582860161238c565b925050602061264b8582860161238c565b9150509250929050565b61265e81612417565b811461266957600080fd5b50565b60008135905061267b81612655565b92915050565b6000806040838503121561269857612697612370565b5b60006126a68582860161238c565b92505060206126b78582860161266c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061270857607f821691505b60208210810361271b5761271a6126c1565b5b50919050565b7f4c5020506169722063616e6e6f742062652074686520446561642077616c6c6560008201527f742c206f72203021000000000000000000000000000000000000000000000000602082015250565b600061277d6028836122c9565b915061278882612721565b604082019050919050565b600060208201905081810360008301526127ac81612770565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061281c826123a1565b9150612827836123a1565b925082612837576128366127b3565b5b828204905092915050565b7f43616e6e6f74206c6971756964617465206d6f7265207468616e203225206f6660008201527f2074686520737570706c79206174206f6e636521000000000000000000000000602082015250565b600061289e6034836122c9565b91506128a982612842565b604082019050919050565b600060208201905081810360008301526128cd81612891565b9050919050565b60008160011c9050919050565b6000808291508390505b600185111561292b57808604811115612907576129066127e2565b5b60018516156129165780820291505b8081029050612924856128d4565b94506128eb565b94509492505050565b6000826129445760019050612a00565b816129525760009050612a00565b81600181146129685760028114612972576129a1565b6001915050612a00565b60ff841115612984576129836127e2565b5b8360020a91508482111561299b5761299a6127e2565b5b50612a00565b5060208310610133831016604e8410600b84101617156129d65782820a9050838111156129d1576129d06127e2565b5b612a00565b6129e384848460016128e1565b925090508184048111156129fa576129f96127e2565b5b81810290505b9392505050565b6000612a12826123a1565b9150612a1d836125b1565b9250612a4a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612934565b905092915050565b6000612a5d826123a1565b9150612a68836123a1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612aa157612aa06127e2565b5b828202905092915050565b6000612ab7826123a1565b9150612ac2836123a1565b9250828201905080821115612ada57612ad96127e2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612b3c6025836122c9565b9150612b4782612ae0565b604082019050919050565b60006020820190508181036000830152612b6b81612b2f565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031302500000000000000000000000000000000000000602082015250565b6000612bce602d836122c9565b9150612bd982612b72565b604082019050919050565b60006020820190508181036000830152612bfd81612bc1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c606026836122c9565b9150612c6b82612c04565b604082019050919050565b60006020820190508181036000830152612c8f81612c53565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612cf26024836122c9565b9150612cfd82612c96565b604082019050919050565b60006020820190508181036000830152612d2181612ce5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d846022836122c9565b9150612d8f82612d28565b604082019050919050565b60006020820190508181036000830152612db381612d77565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612df06020836122c9565b9150612dfb82612dba565b602082019050919050565b60006020820190508181036000830152612e1f81612de3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612e5c601d836122c9565b9150612e6782612e26565b602082019050919050565b60006020820190508181036000830152612e8b81612e4f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612eee6025836122c9565b9150612ef982612e92565b604082019050919050565b60006020820190508181036000830152612f1d81612ee1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f806023836122c9565b9150612f8b82612f24565b604082019050919050565b60006020820190508181036000830152612faf81612f73565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130126026836122c9565b915061301d82612fb6565b604082019050919050565b6000602082019050818103600083015261304181613005565b9050919050565b6000613053826123a1565b915061305e836123a1565b9250828203905081811115613076576130756127e2565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006130b26012836122c9565b91506130bd8261307c565b602082019050919050565b600060208201905081810360008301526130e1816130a5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006131446039836122c9565b915061314f826130e8565b604082019050919050565b6000602082019050818103600083015261317381613137565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b60006131d66036836122c9565b91506131e18261317a565b604082019050919050565b60006020820190508181036000830152613205816131c9565b9050919050565b600060608201905061322160008301866124c7565b61322e60208301856124c7565b61323b60408301846124c7565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506132b081612375565b92915050565b6000602082840312156132cc576132cb612370565b5b60006132da848285016132a1565b91505092915050565b6000819050919050565b60006133086133036132fe846132e3565b61244d565b6123a1565b9050919050565b613318816132ed565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61335381612282565b82525050565b6000613365838361334a565b60208301905092915050565b6000602082019050919050565b60006133898261331e565b6133938185613329565b935061339e8361333a565b8060005b838110156133cf5781516133b68882613359565b97506133c183613371565b9250506001810190506133a2565b5085935050505092915050565b600060a0820190506133f160008301886124c7565b6133fe602083018761330f565b8181036040830152613410818661337e565b905061341f6060830185612294565b61342c60808301846124c7565b9695505050505050565b600060c08201905061344b6000830189612294565b61345860208301886124c7565b613465604083018761330f565b613472606083018661330f565b61347f6080830185612294565b61348c60a08301846124c7565b979650505050505050565b6000815190506134a6816123ab565b92915050565b6000806000606084860312156134c5576134c4612370565b5b60006134d386828701613497565b93505060206134e486828701613497565b92505060406134f586828701613497565b915050925092509256fea264697066735822122070c9bad05a92fc2e5953de1a8e9e3ae3c2c475b0b35d9406e8cf36d7c0c2d9fd64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c806381bfdcca1161010d578063ad16a0cf116100a0578063d12a76881161006f578063d12a768814610796578063dd62ed3e146107c1578063df8408fe146107fe578063f2fde38b14610827578063f345bd851461085057610204565b8063ad16a0cf146106c6578063af8af690146106f1578063bb85c6d11461072e578063c0fdea571461076b57610204565b8063a3996f7b116100dc578063a3996f7b1461060a578063a457c2d714610621578063a9059cbb1461065e578063aa4bde281461069b57610204565b806381bfdcca1461054c5780638c0b5e22146105895780638da5cb5b146105b457806395d89b41146105df57610204565b8063313ce56711610190578063677daa571161015f578063677daa571461045357806370a0823114610490578063715018a6146104cd57806375f0a874146104e4578063768dc7101461050f57610204565b8063313ce5671461039557806339509351146103c057806349bd5a5e146103fd578063527ffabd1461042857610204565b806318160ddd116101cc57806318160ddd146102c75780631b56bbf9146102f257806323b872dd1461031b57806330b63d801461035857610204565b806303fd2a451461020957806306fdde0314610234578063095ea7b31461025f5780631694505e1461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e61087b565b60405161022b91906122a3565b60405180910390f35b34801561024057600080fd5b506102496108a1565b604051610256919061234e565b60405180910390f35b34801561026b57600080fd5b50610286600480360381019061028191906123d7565b610933565b6040516102939190612432565b60405180910390f35b3480156102a857600080fd5b506102b1610956565b6040516102be91906124ac565b60405180910390f35b3480156102d357600080fd5b506102dc61097a565b6040516102e991906124d6565b60405180910390f35b3480156102fe57600080fd5b50610319600480360381019061031491906124f1565b610984565b005b34801561032757600080fd5b50610342600480360381019061033d919061251e565b610acf565b60405161034f9190612432565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612571565b610afe565b60405161038c9190612432565b60405180910390f35b3480156103a157600080fd5b506103aa610c0c565b6040516103b791906125cd565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906123d7565b610c15565b6040516103f49190612432565b60405180910390f35b34801561040957600080fd5b50610412610c4c565b60405161041f91906122a3565b60405180910390f35b34801561043457600080fd5b5061043d610c72565b60405161044a91906124d6565b60405180910390f35b34801561045f57600080fd5b5061047a600480360381019061047591906125e8565b610c78565b6040516104879190612432565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b291906124f1565b610c92565b6040516104c491906124d6565b60405180910390f35b3480156104d957600080fd5b506104e2610cda565b005b3480156104f057600080fd5b506104f9610cee565b60405161050691906122a3565b60405180910390f35b34801561051b57600080fd5b50610536600480360381019061053191906124f1565b610d14565b6040516105439190612432565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906125e8565b610d34565b6040516105809190612432565b60405180910390f35b34801561059557600080fd5b5061059e610d4e565b6040516105ab91906124d6565b60405180910390f35b3480156105c057600080fd5b506105c9610d54565b6040516105d691906122a3565b60405180910390f35b3480156105eb57600080fd5b506105f4610d7e565b604051610601919061234e565b60405180910390f35b34801561061657600080fd5b5061061f610e10565b005b34801561062d57600080fd5b50610648600480360381019061064391906123d7565b610e8a565b6040516106559190612432565b60405180910390f35b34801561066a57600080fd5b50610685600480360381019061068091906123d7565b610f01565b6040516106929190612432565b60405180910390f35b3480156106a757600080fd5b506106b0610f24565b6040516106bd91906124d6565b60405180910390f35b3480156106d257600080fd5b506106db610f2a565b6040516106e891906124d6565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190612571565b610f30565b6040516107259190612432565b60405180910390f35b34801561073a57600080fd5b50610755600480360381019061075091906124f1565b610fa1565b6040516107629190612432565b60405180910390f35b34801561077757600080fd5b506107806110f4565b60405161078d91906124d6565b60405180910390f35b3480156107a257600080fd5b506107ab6110fa565b6040516107b891906124d6565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190612615565b611100565b6040516107f591906124d6565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190612681565b611187565b005b34801561083357600080fd5b5061084e600480360381019061084991906124f1565b6111ea565b005b34801561085c57600080fd5b5061086561126d565b60405161087291906124d6565b60405180910390f35b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546108b0906126f0565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc906126f0565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b60008061093e611273565b905061094b81858561127b565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b61098c611444565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390612793565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290612793565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610ada611273565b9050610ae78582856114c2565b610af285858561154e565b60019150509392505050565b6000610b08611444565b6062600954610b179190612811565b8310610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f906128b4565b60405180910390fd5b6062600954610b679190612811565b8210610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f906128b4565b60405180910390fd5b600860009054906101000a900460ff16600a610bc49190612a07565b83610bcf9190612a52565b601281905550600860009054906101000a900460ff16600a610bf19190612a07565b82610bfc9190612a52565b6013819055506001905092915050565b60006009905090565b600080610c20611273565b9050610c41818585610c328589611100565b610c3c9190612aac565b61127b565b600191505092915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000610c82611444565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce2611444565b610cec6000611adc565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60116020528060005260406000206000915054906101000a900460ff1681565b6000610d3e611444565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d8d906126f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610db9906126f0565b8015610e065780601f10610ddb57610100808354040283529160200191610e06565b820191906000526020600020905b815481529060010190602001808311610de957829003601f168201915b5050505050905090565b610e18611444565b6001600a819055506002600b81905550600860009054906101000a900460ff16600a610e449190612a07565b62989681610e529190612a52565b600c81905550600860009054906101000a900460ff16600a610e749190612a07565b62989681610e829190612a52565b600d81905550565b600080610e95611273565b90506000610ea38286611100565b905083811015610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90612b52565b60405180910390fd5b610ef5828686840361127b565b60019250505092915050565b600080610f0c611273565b9050610f1981858561154e565b600191505092915050565b600d5481565b60135481565b6000610f3a611444565b600a8284610f489190612aac565b1115610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090612be4565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610fab611444565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290612793565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190612793565b60405180910390fd5b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60105481565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61118f611444565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111f2611444565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890612c76565b60405180910390fd5b61126a81611adc565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190612d08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090612d9a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161143791906124d6565b60405180910390a3505050565b61144c611273565b73ffffffffffffffffffffffffffffffffffffffff1661146a610d54565b73ffffffffffffffffffffffffffffffffffffffff16146114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790612e06565b60405180910390fd5b565b60006114ce8484611100565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611548578181101561153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190612e72565b60405180910390fd5b611547848484840361127b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490612f04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390612f96565b60405180910390fd5b8061163684610c92565b1015611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90613028565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117205750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611737575060148054906101000a900460ff16155b15611acb57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461189057600060105461179f30610c92565b6117a99190613048565b905060125481106117c0576117bf601254611ba2565b5b6013546010541061188e576117d6601354611c61565b601354601060008282546117ea9190613048565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505090508061188c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611883906130c8565b60405180910390fd5b505b505b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119335750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561194057819050611aba565b600c54821115611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c9061315a565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a3357600d546119e684610c92565b836119f19190612aac565b1115611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a29906131ec565b60405180910390fd5b5b60006064600b5484611a459190612a52565b611a4f9190612811565b905060006064600a5485611a639190612a52565b611a6d9190612811565b90508082611a7b9190612aac565b84611a869190613048565b92508160106000828254611a9a9190612aac565b92505081905550611ab786308385611ab29190612aac565b611ed2565b50505b611ac5848483611ed2565b50611ad7565b611ad6838383611ed2565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60016014806101000a81548160ff0219169083151502179055506000600282611bcb9190612811565b905060008183611bdb9190613048565b90506000479050611beb83611c61565b60008147611bf99190613048565b9050611c058382612132565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611c389392919061320c565b60405180910390a15050505060006014806101000a81548160ff02191690831515021790555050565b60016014806101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611c9857611c97613243565b5b604051908082528060200260200182016040528015611cc65781602001602082028036833780820191505090505b5090503081600081518110611cde57611cdd613272565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da791906132b6565b81600181518110611dbb57611dba613272565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e20307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461127b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611e829594939291906133dc565b600060405180830381600087803b158015611e9c57600080fd5b505af1158015611eb0573d6000803e3d6000fd5b505050505060006014806101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890612f04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa790612f96565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90613028565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161212491906124d6565b60405180910390a350505050565b60016014806101000a81548160ff021916908315150217905550612177307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461127b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121fe96959493929190613436565b60606040518083038185885af115801561221c573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061224191906134ac565b50505060006014806101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061228d82612262565b9050919050565b61229d81612282565b82525050565b60006020820190506122b86000830184612294565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122f85780820151818401526020810190506122dd565b60008484015250505050565b6000601f19601f8301169050919050565b6000612320826122be565b61232a81856122c9565b935061233a8185602086016122da565b61234381612304565b840191505092915050565b600060208201905081810360008301526123688184612315565b905092915050565b600080fd5b61237e81612282565b811461238957600080fd5b50565b60008135905061239b81612375565b92915050565b6000819050919050565b6123b4816123a1565b81146123bf57600080fd5b50565b6000813590506123d1816123ab565b92915050565b600080604083850312156123ee576123ed612370565b5b60006123fc8582860161238c565b925050602061240d858286016123c2565b9150509250929050565b60008115159050919050565b61242c81612417565b82525050565b60006020820190506124476000830184612423565b92915050565b6000819050919050565b600061247261246d61246884612262565b61244d565b612262565b9050919050565b600061248482612457565b9050919050565b600061249682612479565b9050919050565b6124a68161248b565b82525050565b60006020820190506124c1600083018461249d565b92915050565b6124d0816123a1565b82525050565b60006020820190506124eb60008301846124c7565b92915050565b60006020828403121561250757612506612370565b5b60006125158482850161238c565b91505092915050565b60008060006060848603121561253757612536612370565b5b60006125458682870161238c565b93505060206125568682870161238c565b9250506040612567868287016123c2565b9150509250925092565b6000806040838503121561258857612587612370565b5b6000612596858286016123c2565b92505060206125a7858286016123c2565b9150509250929050565b600060ff82169050919050565b6125c7816125b1565b82525050565b60006020820190506125e260008301846125be565b92915050565b6000602082840312156125fe576125fd612370565b5b600061260c848285016123c2565b91505092915050565b6000806040838503121561262c5761262b612370565b5b600061263a8582860161238c565b925050602061264b8582860161238c565b9150509250929050565b61265e81612417565b811461266957600080fd5b50565b60008135905061267b81612655565b92915050565b6000806040838503121561269857612697612370565b5b60006126a68582860161238c565b92505060206126b78582860161266c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061270857607f821691505b60208210810361271b5761271a6126c1565b5b50919050565b7f4c5020506169722063616e6e6f742062652074686520446561642077616c6c6560008201527f742c206f72203021000000000000000000000000000000000000000000000000602082015250565b600061277d6028836122c9565b915061278882612721565b604082019050919050565b600060208201905081810360008301526127ac81612770565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061281c826123a1565b9150612827836123a1565b925082612837576128366127b3565b5b828204905092915050565b7f43616e6e6f74206c6971756964617465206d6f7265207468616e203225206f6660008201527f2074686520737570706c79206174206f6e636521000000000000000000000000602082015250565b600061289e6034836122c9565b91506128a982612842565b604082019050919050565b600060208201905081810360008301526128cd81612891565b9050919050565b60008160011c9050919050565b6000808291508390505b600185111561292b57808604811115612907576129066127e2565b5b60018516156129165780820291505b8081029050612924856128d4565b94506128eb565b94509492505050565b6000826129445760019050612a00565b816129525760009050612a00565b81600181146129685760028114612972576129a1565b6001915050612a00565b60ff841115612984576129836127e2565b5b8360020a91508482111561299b5761299a6127e2565b5b50612a00565b5060208310610133831016604e8410600b84101617156129d65782820a9050838111156129d1576129d06127e2565b5b612a00565b6129e384848460016128e1565b925090508184048111156129fa576129f96127e2565b5b81810290505b9392505050565b6000612a12826123a1565b9150612a1d836125b1565b9250612a4a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612934565b905092915050565b6000612a5d826123a1565b9150612a68836123a1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612aa157612aa06127e2565b5b828202905092915050565b6000612ab7826123a1565b9150612ac2836123a1565b9250828201905080821115612ada57612ad96127e2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612b3c6025836122c9565b9150612b4782612ae0565b604082019050919050565b60006020820190508181036000830152612b6b81612b2f565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031302500000000000000000000000000000000000000602082015250565b6000612bce602d836122c9565b9150612bd982612b72565b604082019050919050565b60006020820190508181036000830152612bfd81612bc1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c606026836122c9565b9150612c6b82612c04565b604082019050919050565b60006020820190508181036000830152612c8f81612c53565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612cf26024836122c9565b9150612cfd82612c96565b604082019050919050565b60006020820190508181036000830152612d2181612ce5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d846022836122c9565b9150612d8f82612d28565b604082019050919050565b60006020820190508181036000830152612db381612d77565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612df06020836122c9565b9150612dfb82612dba565b602082019050919050565b60006020820190508181036000830152612e1f81612de3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612e5c601d836122c9565b9150612e6782612e26565b602082019050919050565b60006020820190508181036000830152612e8b81612e4f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612eee6025836122c9565b9150612ef982612e92565b604082019050919050565b60006020820190508181036000830152612f1d81612ee1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f806023836122c9565b9150612f8b82612f24565b604082019050919050565b60006020820190508181036000830152612faf81612f73565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130126026836122c9565b915061301d82612fb6565b604082019050919050565b6000602082019050818103600083015261304181613005565b9050919050565b6000613053826123a1565b915061305e836123a1565b9250828203905081811115613076576130756127e2565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006130b26012836122c9565b91506130bd8261307c565b602082019050919050565b600060208201905081810360008301526130e1816130a5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006131446039836122c9565b915061314f826130e8565b604082019050919050565b6000602082019050818103600083015261317381613137565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b60006131d66036836122c9565b91506131e18261317a565b604082019050919050565b60006020820190508181036000830152613205816131c9565b9050919050565b600060608201905061322160008301866124c7565b61322e60208301856124c7565b61323b60408301846124c7565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506132b081612375565b92915050565b6000602082840312156132cc576132cb612370565b5b60006132da848285016132a1565b91505092915050565b6000819050919050565b60006133086133036132fe846132e3565b61244d565b6123a1565b9050919050565b613318816132ed565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61335381612282565b82525050565b6000613365838361334a565b60208301905092915050565b6000602082019050919050565b60006133898261331e565b6133938185613329565b935061339e8361333a565b8060005b838110156133cf5781516133b68882613359565b97506133c183613371565b9250506001810190506133a2565b5085935050505092915050565b600060a0820190506133f160008301886124c7565b6133fe602083018761330f565b8181036040830152613410818661337e565b905061341f6060830185612294565b61342c60808301846124c7565b9695505050505050565b600060c08201905061344b6000830189612294565b61345860208301886124c7565b613465604083018761330f565b613472606083018661330f565b61347f6080830185612294565b61348c60a08301846124c7565b979650505050505050565b6000815190506134a6816123ab565b92915050565b6000806000606084860312156134c5576134c4612370565b5b60006134d386828701613497565b93505060206134e486828701613497565b92505060406134f586828701613497565b915050925092509256fea264697066735822122070c9bad05a92fc2e5953de1a8e9e3ae3c2c475b0b35d9406e8cf36d7c0c2d9fd64736f6c63430008100033

Deployed Bytecode Sourcemap

28854:8783:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29537:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18572:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20846:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30161:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19710:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31426:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21670:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36599:602;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19553:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23386:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30219:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29235:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37209:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18737:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15831:103;;;;;;;;;;;;;:::i;:::-;;29455:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29652:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37399:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29331:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15183:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18396:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29857:211;;;;;;;;;;;;;:::i;:::-;;22470:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20290:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29391:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29785:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36200:391;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35842:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29608:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29709:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19883:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34310:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16089:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29139:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29537:64;;;;;;;;;;;;;:::o;18572:102::-;18628:13;18661:5;18654:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18572:102;:::o;20846:244::-;20967:4;20989:13;21005:12;:10;:12::i;:::-;20989:28;;21028:32;21037:5;21044:7;21053:6;21028:8;:32::i;:::-;21078:4;21071:11;;;20846:244;;;;:::o;30161:51::-;;;:::o;19710:110::-;19773:7;19800:12;;19793:19;;19710:110;:::o;31426:254::-;15069:13;:11;:13::i;:::-;31508:4:::1;;;;;;;;;;;31499:13;;:5;:13;;::::0;31491:66:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;31593:1;31576:19;;:5;:19;;::::0;31568:72:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;31667:5;31651:13;;:21;;;;;;;;;;;;;;;;;;31426:254:::0;:::o;21670:297::-;21803:4;21820:15;21838:12;:10;:12::i;:::-;21820:30;;21861:38;21877:4;21883:7;21892:6;21861:15;:38::i;:::-;21910:27;21920:4;21926:2;21930:6;21910:9;:27::i;:::-;21955:4;21948:11;;;21670:297;;;;;:::o;36599:602::-;36756:4;15069:13;:11;:13::i;:::-;36829:2:::1;36819:7;;:12;;;;:::i;:::-;36786:30;:45;36778:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;36944:2;36934:7;;:12;;;;:::i;:::-;36907:24;:39;36899:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;37083:9;;;;;;;;;;;37079:2;:13;;;;:::i;:::-;37046:30;:46;;;;:::i;:::-;37014:29;:78;;;;37160:9;;;;;;;;;;;37156:2;:13;;;;:::i;:::-;37129:24;:40;;;;:::i;:::-;37103:23;:66;;;;37189:4;37182:11;;36599:602:::0;;;;:::o;19553:92::-;19611:5;19636:1;19629:8;;19553:92;:::o;23386:272::-;23503:4;23525:13;23541:12;:10;:12::i;:::-;23525:28;;23564:64;23573:5;23580:7;23617:10;23589:25;23599:5;23606:7;23589:9;:25::i;:::-;:38;;;;:::i;:::-;23564:8;:64::i;:::-;23646:4;23639:11;;;23386:272;;;;:::o;30219:28::-;;;;;;;;;;;;;:::o;29235:35::-;;;;:::o;37209:182::-;37311:4;15069:13;:11;:13::i;:::-;37347:12:::1;37333:11;:26;;;;37379:4;37372:11;;37209:182:::0;;;:::o;18737:177::-;18856:7;18888:9;:18;18898:7;18888:18;;;;;;;;;;;;;;;;18881:25;;18737:177;;;:::o;15831:103::-;15069:13;:11;:13::i;:::-;15896:30:::1;15923:1;15896:18;:30::i;:::-;15831:103::o:0;29455:75::-;;;;;;;;;;;;;:::o;29652:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;37399:198::-;37509:4;15069:13;:11;:13::i;:::-;37549:16:::1;37531:15;:34;;;;37585:4;37578:11;;37399:198:::0;;;:::o;29331:53::-;;;;:::o;15183:87::-;15229:7;15256:6;;;;;;;;;;;15249:13;;15183:87;:::o;18396:106::-;18454:13;18487:7;18480:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18396:106;:::o;29857:211::-;15069:13;:11;:13::i;:::-;29927:1:::1;29909:15;:19;;;;29957:1;29939:15;:19;;;;29998:9;;;;;;;;;;;29994:2;:13;;;;:::i;:::-;29983:8;:24;;;;:::i;:::-;29969:11;:38;;;;30051:9;;;;;;;;;;;30047:2;:13;;;;:::i;:::-;30036:8;:24;;;;:::i;:::-;30018:15;:42;;;;29857:211::o:0;22470:507::-;22592:4;22614:13;22630:12;:10;:12::i;:::-;22614:28;;22653:24;22680:25;22690:5;22697:7;22680:9;:25::i;:::-;22653:52;;22758:15;22738:16;:35;;22716:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;22874:60;22883:5;22890:7;22918:15;22899:16;:34;22874:8;:60::i;:::-;22965:4;22958:11;;;;22470:507;;;;:::o;20290:236::-;20407:4;20429:13;20445:12;:10;:12::i;:::-;20429:28;;20468;20478:5;20485:2;20489:6;20468:9;:28::i;:::-;20514:4;20507:11;;;20290:236;;;;:::o;29391:57::-;;;;:::o;29785:63::-;;;;:::o;36200:391::-;36348:4;15069:13;:11;:13::i;:::-;36417:2:::1;36396:16;36379;:33;;;;:::i;:::-;36378:41;;36370:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;36498:16;36480:15;:34;;;;36543:16;36525:15;:34;;;;36579:4;36572:11;;36200:391:::0;;;;:::o;35842:350::-;35945:4;15069:13;:11;:13::i;:::-;35988:4:::1;;;;;;;;;;;35975:17;;:9;:17;;::::0;35967:70:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36077:1;36056:23;;:9;:23;;::::0;36048:76:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36153:9;36135:15;;:27;;;;;;;;;;;;;;;;;;36180:4;36173:11;;35842:350:::0;;;:::o;29608:37::-;;;;:::o;29709:69::-;;;;:::o;19883:201::-;20017:7;20049:11;:18;20061:5;20049:18;;;;;;;;;;;;;;;:27;20068:7;20049:27;;;;;;;;;;;;;;;;20042:34;;19883:201;;;;:::o;34310:132::-;15069:13;:11;:13::i;:::-;34427:7:::1;34396:18;:28;34415:8;34396:28;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;34310:132:::0;;:::o;16089:238::-;15069:13;:11;:13::i;:::-;16212:1:::1;16192:22;;:8;:22;;::::0;16170:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16291:28;16310:8;16291:18;:28::i;:::-;16089:238:::0;:::o;29139:35::-;;;;:::o;13976:98::-;14029:7;14056:10;14049:17;;13976:98;:::o;25693:380::-;25846:1;25829:19;;:5;:19;;;25821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25927:1;25908:21;;:7;:21;;;25900:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26011:6;25981:11;:18;25993:5;25981:18;;;;;;;;;;;;;;;:27;26000:7;25981:27;;;;;;;;;;;;;;;:36;;;;26049:7;26033:32;;26042:5;26033:32;;;26058:6;26033:32;;;;;;:::i;:::-;;;;;;;;25693:380;;;:::o;15348:132::-;15423:12;:10;:12::i;:::-;15412:23;;:7;:5;:7::i;:::-;:23;;;15404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15348:132::o;26364:502::-;26499:24;26526:25;26536:5;26543:7;26526:9;:25::i;:::-;26499:52;;26586:17;26566:16;:37;26562:297;;26666:6;26646:16;:26;;26620:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26781:51;26790:5;26797:7;26825:6;26806:16;:25;26781:8;:51::i;:::-;26562:297;26488:378;26364:502;;;:::o;32158:2144::-;32272:1;32256:18;;:4;:18;;;32248:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32349:1;32335:16;;:2;:16;;;32327:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32429:6;32410:15;32420:4;32410:9;:15::i;:::-;:25;;32402:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;32504:13;;;;;;;;;;;32496:21;;:4;:21;;;:44;;;;32527:13;;;;;;;;;;;32521:19;;:2;:19;;;32496:44;32495:67;;;;;32546:16;;;;;;;;;;32545:17;32495:67;32491:1804;;;32591:13;;;;;;;;;;;32583:21;;:4;:21;;;32579:681;;32625:32;32687:18;;32660:24;32678:4;32660:9;:24::i;:::-;:45;;;;:::i;:::-;32625:80;;32756:29;;32728:24;:57;32724:152;;32810:46;32826:29;;32810:15;:46::i;:::-;32724:152;32922:23;;32899:18;;32898:47;32894:351;;32970:42;32988:23;;32970:17;:42::i;:::-;33057:23;;33035:18;;:45;;;;;;;:::i;:::-;;;;;;;;33103:9;33123:15;;;;;;;;;;;33115:29;;:52;33145:21;33115:52;;;;;;;;;;;;;;;;;;;;;;;33103:64;;33198:4;33190:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;32947:298;32894:351;32606:654;32579:681;33276:22;33317:18;:24;33336:4;33317:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;33345:18;:22;33364:2;33345:22;;;;;;;;;;;;;;;;;;;;;;;;;33317:50;33313:839;;;33405:6;33388:23;;33313:839;;;33484:11;;33474:6;:21;;33466:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;33587:13;;;;;;;;;;;33579:21;;:4;:21;;;33576:178;;33660:15;;33642:13;33652:2;33642:9;:13::i;:::-;33633:6;:22;;;;:::i;:::-;33632:43;;33624:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;33576:178;33774:22;33829:3;33810:15;;33801:6;:24;;;;:::i;:::-;33800:32;;;;:::i;:::-;33774:59;;33852:22;33907:3;33888:15;;33879:6;:24;;;;:::i;:::-;33878:32;;;;:::i;:::-;33852:59;;33974:14;33957;:31;;;;:::i;:::-;33947:6;:42;;;;:::i;:::-;33930:59;;34030:14;34008:18;;:36;;;;;;;:::i;:::-;;;;;;;;34065:71;34081:4;34095;34120:14;34103;:31;;;;:::i;:::-;34065:15;:71::i;:::-;33447:705;;33313:839;34166:41;34182:4;34188:2;34192:14;34166:15;:41::i;:::-;32564:1655;32491:1804;;;34250:33;34266:4;34272:2;34276:6;34250:15;:33::i;:::-;32491:1804;32158:2144;;;:::o;16487:191::-;16561:16;16580:6;;;;;;;;;;;16561:25;;16606:8;16597:6;;:17;;;;;;;;;;;;;;;;;;16661:8;16630:40;;16651:8;16630:40;;;;;;;;;;;;16550:128;16487:191;:::o;34450:474::-;30478:4;30459:16;;:23;;;;;;;;;;;;;;;;;;34536:12:::1;34575:1;34552:20;:24;;;;:::i;:::-;34536:41;;34588:17;34632:4;34609:20;:27;;;;:::i;:::-;34588:49;;34650:22;34675:21;34650:46;;34709:23;34727:4;34709:17;:23::i;:::-;34745:18;34791:14;34767:21;:38;;;;:::i;:::-;34745:61;;34819:36;34833:9;34844:10;34819:13;:36::i;:::-;34873:43;34888:4;34894:10;34906:9;34873:43;;;;;;;;:::i;:::-;;;;;;;;34525:399;;;;30524:5:::0;30505:16;;:24;;;;;;;;;;;;;;;;;;34450:474;:::o;34932:488::-;30478:4;30459:16;;:23;;;;;;;;;;;;;;;;;;35011:21:::1;35049:1;35035:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35011:40;;35080:4;35062;35067:1;35062:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;35106:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35096:4;35101:1;35096:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;35141:62;35158:4;35173:15;35191:11;35141:8;:62::i;:::-;35216:15;:66;;;35297:11;35323:1;35339:4;35366;35386:15;35216:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;35000:420;30524:5:::0;30505:16;;:24;;;;;;;;;;;;;;;;;;34932:488;:::o;26874:776::-;27021:1;27005:18;;:4;:18;;;26997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27098:1;27084:16;;:2;:16;;;27076:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27153:19;27175:9;:15;27185:4;27175:15;;;;;;;;;;;;;;;;27153:37;;27238:6;27223:11;:21;;27201:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;27378:6;27364:11;:20;27346:9;:15;27356:4;27346:15;;;;;;;;;;;;;;;:38;;;;27581:6;27564:9;:13;27574:2;27564:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;27631:2;27616:26;;27625:4;27616:26;;;27635:6;27616:26;;;;;;:::i;:::-;;;;;;;;26986:664;26874:776;;;:::o;35428:406::-;30478:4;30459:16;;:23;;;;;;;;;;;;;;;;;;35545:62:::1;35562:4;35577:15;35595:11;35545:8;:62::i;:::-;35620:15;:31;;;35659:9;35692:4;35712:11;35738:1;35754::::0;35770:15:::1;;;;;;;;;;;35800;35620:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;30524:5:::0;30505:16;;:24;;;;;;;;;;;;;;;;;;35428:406;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:99::-;645:6;679:5;673:12;663:22;;593:99;;;:::o;698:169::-;782:11;816:6;811:3;804:19;856:4;851:3;847:14;832:29;;698:169;;;;:::o;873:246::-;954:1;964:113;978:6;975:1;972:13;964:113;;;1063:1;1058:3;1054:11;1048:18;1044:1;1039:3;1035:11;1028:39;1000:2;997:1;993:10;988:15;;964:113;;;1111:1;1102:6;1097:3;1093:16;1086:27;935:184;873:246;;;:::o;1125:102::-;1166:6;1217:2;1213:7;1208:2;1201:5;1197:14;1193:28;1183:38;;1125:102;;;:::o;1233:377::-;1321:3;1349:39;1382:5;1349:39;:::i;:::-;1404:71;1468:6;1463:3;1404:71;:::i;:::-;1397:78;;1484:65;1542:6;1537:3;1530:4;1523:5;1519:16;1484:65;:::i;:::-;1574:29;1596:6;1574:29;:::i;:::-;1569:3;1565:39;1558:46;;1325:285;1233:377;;;;:::o;1616:313::-;1729:4;1767:2;1756:9;1752:18;1744:26;;1816:9;1810:4;1806:20;1802:1;1791:9;1787:17;1780:47;1844:78;1917:4;1908:6;1844:78;:::i;:::-;1836:86;;1616:313;;;;:::o;2016:117::-;2125:1;2122;2115:12;2262:122;2335:24;2353:5;2335:24;:::i;:::-;2328:5;2325:35;2315:63;;2374:1;2371;2364:12;2315:63;2262:122;:::o;2390:139::-;2436:5;2474:6;2461:20;2452:29;;2490:33;2517:5;2490:33;:::i;:::-;2390:139;;;;:::o;2535:77::-;2572:7;2601:5;2590:16;;2535:77;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:60::-;3826:3;3847:5;3840:12;;3798:60;;;:::o;3864:142::-;3914:9;3947:53;3965:34;3974:24;3992:5;3974:24;:::i;:::-;3965:34;:::i;:::-;3947:53;:::i;:::-;3934:66;;3864:142;;;:::o;4012:126::-;4062:9;4095:37;4126:5;4095:37;:::i;:::-;4082:50;;4012:126;;;:::o;4144:152::-;4220:9;4253:37;4284:5;4253:37;:::i;:::-;4240:50;;4144:152;;;:::o;4302:183::-;4415:63;4472:5;4415:63;:::i;:::-;4410:3;4403:76;4302:183;;:::o;4491:274::-;4610:4;4648:2;4637:9;4633:18;4625:26;;4661:97;4755:1;4744:9;4740:17;4731:6;4661:97;:::i;:::-;4491:274;;;;:::o;4771:118::-;4858:24;4876:5;4858:24;:::i;:::-;4853:3;4846:37;4771:118;;:::o;4895:222::-;4988:4;5026:2;5015:9;5011:18;5003:26;;5039:71;5107:1;5096:9;5092:17;5083:6;5039:71;:::i;:::-;4895:222;;;;:::o;5123:329::-;5182:6;5231:2;5219:9;5210:7;5206:23;5202:32;5199:119;;;5237:79;;:::i;:::-;5199:119;5357:1;5382:53;5427:7;5418:6;5407:9;5403:22;5382:53;:::i;:::-;5372:63;;5328:117;5123:329;;;;:::o;5458:619::-;5535:6;5543;5551;5600:2;5588:9;5579:7;5575:23;5571:32;5568:119;;;5606:79;;:::i;:::-;5568:119;5726:1;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5697:117;5853:2;5879:53;5924:7;5915:6;5904:9;5900:22;5879:53;:::i;:::-;5869:63;;5824:118;5981:2;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5952:118;5458:619;;;;;:::o;6083:474::-;6151:6;6159;6208:2;6196:9;6187:7;6183:23;6179:32;6176:119;;;6214:79;;:::i;:::-;6176:119;6334:1;6359:53;6404:7;6395:6;6384:9;6380:22;6359:53;:::i;:::-;6349:63;;6305:117;6461:2;6487:53;6532:7;6523:6;6512:9;6508:22;6487:53;:::i;:::-;6477:63;;6432:118;6083:474;;;;;:::o;6563:86::-;6598:7;6638:4;6631:5;6627:16;6616:27;;6563:86;;;:::o;6655:112::-;6738:22;6754:5;6738:22;:::i;:::-;6733:3;6726:35;6655:112;;:::o;6773:214::-;6862:4;6900:2;6889:9;6885:18;6877:26;;6913:67;6977:1;6966:9;6962:17;6953:6;6913:67;:::i;:::-;6773:214;;;;:::o;6993:329::-;7052:6;7101:2;7089:9;7080:7;7076:23;7072:32;7069:119;;;7107:79;;:::i;:::-;7069:119;7227:1;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7198:117;6993:329;;;;:::o;7328:474::-;7396:6;7404;7453:2;7441:9;7432:7;7428:23;7424:32;7421:119;;;7459:79;;:::i;:::-;7421:119;7579:1;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7550:117;7706:2;7732:53;7777:7;7768:6;7757:9;7753:22;7732:53;:::i;:::-;7722:63;;7677:118;7328:474;;;;;:::o;7808:116::-;7878:21;7893:5;7878:21;:::i;:::-;7871:5;7868:32;7858:60;;7914:1;7911;7904:12;7858:60;7808:116;:::o;7930:133::-;7973:5;8011:6;7998:20;7989:29;;8027:30;8051:5;8027:30;:::i;:::-;7930:133;;;;:::o;8069:468::-;8134:6;8142;8191:2;8179:9;8170:7;8166:23;8162:32;8159:119;;;8197:79;;:::i;:::-;8159:119;8317:1;8342:53;8387:7;8378:6;8367:9;8363:22;8342:53;:::i;:::-;8332:63;;8288:117;8444:2;8470:50;8512:7;8503:6;8492:9;8488:22;8470:50;:::i;:::-;8460:60;;8415:115;8069:468;;;;;:::o;8543:180::-;8591:77;8588:1;8581:88;8688:4;8685:1;8678:15;8712:4;8709:1;8702:15;8729:320;8773:6;8810:1;8804:4;8800:12;8790:22;;8857:1;8851:4;8847:12;8878:18;8868:81;;8934:4;8926:6;8922:17;8912:27;;8868:81;8996:2;8988:6;8985:14;8965:18;8962:38;8959:84;;9015:18;;:::i;:::-;8959:84;8780:269;8729:320;;;:::o;9055:227::-;9195:34;9191:1;9183:6;9179:14;9172:58;9264:10;9259:2;9251:6;9247:15;9240:35;9055:227;:::o;9288:366::-;9430:3;9451:67;9515:2;9510:3;9451:67;:::i;:::-;9444:74;;9527:93;9616:3;9527:93;:::i;:::-;9645:2;9640:3;9636:12;9629:19;;9288:366;;;:::o;9660:419::-;9826:4;9864:2;9853:9;9849:18;9841:26;;9913:9;9907:4;9903:20;9899:1;9888:9;9884:17;9877:47;9941:131;10067:4;9941:131;:::i;:::-;9933:139;;9660:419;;;:::o;10085:180::-;10133:77;10130:1;10123:88;10230:4;10227:1;10220:15;10254:4;10251:1;10244:15;10271:180;10319:77;10316:1;10309:88;10416:4;10413:1;10406:15;10440:4;10437:1;10430:15;10457:185;10497:1;10514:20;10532:1;10514:20;:::i;:::-;10509:25;;10548:20;10566:1;10548:20;:::i;:::-;10543:25;;10587:1;10577:35;;10592:18;;:::i;:::-;10577:35;10634:1;10631;10627:9;10622:14;;10457:185;;;;:::o;10648:239::-;10788:34;10784:1;10776:6;10772:14;10765:58;10857:22;10852:2;10844:6;10840:15;10833:47;10648:239;:::o;10893:366::-;11035:3;11056:67;11120:2;11115:3;11056:67;:::i;:::-;11049:74;;11132:93;11221:3;11132:93;:::i;:::-;11250:2;11245:3;11241:12;11234:19;;10893:366;;;:::o;11265:419::-;11431:4;11469:2;11458:9;11454:18;11446:26;;11518:9;11512:4;11508:20;11504:1;11493:9;11489:17;11482:47;11546:131;11672:4;11546:131;:::i;:::-;11538:139;;11265:419;;;:::o;11690:102::-;11732:8;11779:5;11776:1;11772:13;11751:34;;11690:102;;;:::o;11798:848::-;11859:5;11866:4;11890:6;11881:15;;11914:5;11905:14;;11928:712;11949:1;11939:8;11936:15;11928:712;;;12044:4;12039:3;12035:14;12029:4;12026:24;12023:50;;;12053:18;;:::i;:::-;12023:50;12103:1;12093:8;12089:16;12086:451;;;12518:4;12511:5;12507:16;12498:25;;12086:451;12568:4;12562;12558:15;12550:23;;12598:32;12621:8;12598:32;:::i;:::-;12586:44;;11928:712;;;11798:848;;;;;;;:::o;12652:1073::-;12706:5;12897:8;12887:40;;12918:1;12909:10;;12920:5;;12887:40;12946:4;12936:36;;12963:1;12954:10;;12965:5;;12936:36;13032:4;13080:1;13075:27;;;;13116:1;13111:191;;;;13025:277;;13075:27;13093:1;13084:10;;13095:5;;;13111:191;13156:3;13146:8;13143:17;13140:43;;;13163:18;;:::i;:::-;13140:43;13212:8;13209:1;13205:16;13196:25;;13247:3;13240:5;13237:14;13234:40;;;13254:18;;:::i;:::-;13234:40;13287:5;;;13025:277;;13411:2;13401:8;13398:16;13392:3;13386:4;13383:13;13379:36;13361:2;13351:8;13348:16;13343:2;13337:4;13334:12;13330:35;13314:111;13311:246;;;13467:8;13461:4;13457:19;13448:28;;13502:3;13495:5;13492:14;13489:40;;;13509:18;;:::i;:::-;13489:40;13542:5;;13311:246;13582:42;13620:3;13610:8;13604:4;13601:1;13582:42;:::i;:::-;13567:57;;;;13656:4;13651:3;13647:14;13640:5;13637:25;13634:51;;;13665:18;;:::i;:::-;13634:51;13714:4;13707:5;13703:16;13694:25;;12652:1073;;;;;;:::o;13731:281::-;13789:5;13813:23;13831:4;13813:23;:::i;:::-;13805:31;;13857:25;13873:8;13857:25;:::i;:::-;13845:37;;13901:104;13938:66;13928:8;13922:4;13901:104;:::i;:::-;13892:113;;13731:281;;;;:::o;14018:348::-;14058:7;14081:20;14099:1;14081:20;:::i;:::-;14076:25;;14115:20;14133:1;14115:20;:::i;:::-;14110:25;;14303:1;14235:66;14231:74;14228:1;14225:81;14220:1;14213:9;14206:17;14202:105;14199:131;;;14310:18;;:::i;:::-;14199:131;14358:1;14355;14351:9;14340:20;;14018:348;;;;:::o;14372:191::-;14412:3;14431:20;14449:1;14431:20;:::i;:::-;14426:25;;14465:20;14483:1;14465:20;:::i;:::-;14460:25;;14508:1;14505;14501:9;14494:16;;14529:3;14526:1;14523:10;14520:36;;;14536:18;;:::i;:::-;14520:36;14372:191;;;;:::o;14569:224::-;14709:34;14705:1;14697:6;14693:14;14686:58;14778:7;14773:2;14765:6;14761:15;14754:32;14569:224;:::o;14799:366::-;14941:3;14962:67;15026:2;15021:3;14962:67;:::i;:::-;14955:74;;15038:93;15127:3;15038:93;:::i;:::-;15156:2;15151:3;15147:12;15140:19;;14799:366;;;:::o;15171:419::-;15337:4;15375:2;15364:9;15360:18;15352:26;;15424:9;15418:4;15414:20;15410:1;15399:9;15395:17;15388:47;15452:131;15578:4;15452:131;:::i;:::-;15444:139;;15171:419;;;:::o;15596:232::-;15736:34;15732:1;15724:6;15720:14;15713:58;15805:15;15800:2;15792:6;15788:15;15781:40;15596:232;:::o;15834:366::-;15976:3;15997:67;16061:2;16056:3;15997:67;:::i;:::-;15990:74;;16073:93;16162:3;16073:93;:::i;:::-;16191:2;16186:3;16182:12;16175:19;;15834:366;;;:::o;16206:419::-;16372:4;16410:2;16399:9;16395:18;16387:26;;16459:9;16453:4;16449:20;16445:1;16434:9;16430:17;16423:47;16487:131;16613:4;16487:131;:::i;:::-;16479:139;;16206:419;;;:::o;16631:225::-;16771:34;16767:1;16759:6;16755:14;16748:58;16840:8;16835:2;16827:6;16823:15;16816:33;16631:225;:::o;16862:366::-;17004:3;17025:67;17089:2;17084:3;17025:67;:::i;:::-;17018:74;;17101:93;17190:3;17101:93;:::i;:::-;17219:2;17214:3;17210:12;17203:19;;16862:366;;;:::o;17234:419::-;17400:4;17438:2;17427:9;17423:18;17415:26;;17487:9;17481:4;17477:20;17473:1;17462:9;17458:17;17451:47;17515:131;17641:4;17515:131;:::i;:::-;17507:139;;17234:419;;;:::o;17659:223::-;17799:34;17795:1;17787:6;17783:14;17776:58;17868:6;17863:2;17855:6;17851:15;17844:31;17659:223;:::o;17888:366::-;18030:3;18051:67;18115:2;18110:3;18051:67;:::i;:::-;18044:74;;18127:93;18216:3;18127:93;:::i;:::-;18245:2;18240:3;18236:12;18229:19;;17888:366;;;:::o;18260:419::-;18426:4;18464:2;18453:9;18449:18;18441:26;;18513:9;18507:4;18503:20;18499:1;18488:9;18484:17;18477:47;18541:131;18667:4;18541:131;:::i;:::-;18533:139;;18260:419;;;:::o;18685:221::-;18825:34;18821:1;18813:6;18809:14;18802:58;18894:4;18889:2;18881:6;18877:15;18870:29;18685:221;:::o;18912:366::-;19054:3;19075:67;19139:2;19134:3;19075:67;:::i;:::-;19068:74;;19151:93;19240:3;19151:93;:::i;:::-;19269:2;19264:3;19260:12;19253:19;;18912:366;;;:::o;19284:419::-;19450:4;19488:2;19477:9;19473:18;19465:26;;19537:9;19531:4;19527:20;19523:1;19512:9;19508:17;19501:47;19565:131;19691:4;19565:131;:::i;:::-;19557:139;;19284:419;;;:::o;19709:182::-;19849:34;19845:1;19837:6;19833:14;19826:58;19709:182;:::o;19897:366::-;20039:3;20060:67;20124:2;20119:3;20060:67;:::i;:::-;20053:74;;20136:93;20225:3;20136:93;:::i;:::-;20254:2;20249:3;20245:12;20238:19;;19897:366;;;:::o;20269:419::-;20435:4;20473:2;20462:9;20458:18;20450:26;;20522:9;20516:4;20512:20;20508:1;20497:9;20493:17;20486:47;20550:131;20676:4;20550:131;:::i;:::-;20542:139;;20269:419;;;:::o;20694:179::-;20834:31;20830:1;20822:6;20818:14;20811:55;20694:179;:::o;20879:366::-;21021:3;21042:67;21106:2;21101:3;21042:67;:::i;:::-;21035:74;;21118:93;21207:3;21118:93;:::i;:::-;21236:2;21231:3;21227:12;21220:19;;20879:366;;;:::o;21251:419::-;21417:4;21455:2;21444:9;21440:18;21432:26;;21504:9;21498:4;21494:20;21490:1;21479:9;21475:17;21468:47;21532:131;21658:4;21532:131;:::i;:::-;21524:139;;21251:419;;;:::o;21676:224::-;21816:34;21812:1;21804:6;21800:14;21793:58;21885:7;21880:2;21872:6;21868:15;21861:32;21676:224;:::o;21906:366::-;22048:3;22069:67;22133:2;22128:3;22069:67;:::i;:::-;22062:74;;22145:93;22234:3;22145:93;:::i;:::-;22263:2;22258:3;22254:12;22247:19;;21906:366;;;:::o;22278:419::-;22444:4;22482:2;22471:9;22467:18;22459:26;;22531:9;22525:4;22521:20;22517:1;22506:9;22502:17;22495:47;22559:131;22685:4;22559:131;:::i;:::-;22551:139;;22278:419;;;:::o;22703:222::-;22843:34;22839:1;22831:6;22827:14;22820:58;22912:5;22907:2;22899:6;22895:15;22888:30;22703:222;:::o;22931:366::-;23073:3;23094:67;23158:2;23153:3;23094:67;:::i;:::-;23087:74;;23170:93;23259:3;23170:93;:::i;:::-;23288:2;23283:3;23279:12;23272:19;;22931:366;;;:::o;23303:419::-;23469:4;23507:2;23496:9;23492:18;23484:26;;23556:9;23550:4;23546:20;23542:1;23531:9;23527:17;23520:47;23584:131;23710:4;23584:131;:::i;:::-;23576:139;;23303:419;;;:::o;23728:225::-;23868:34;23864:1;23856:6;23852:14;23845:58;23937:8;23932:2;23924:6;23920:15;23913:33;23728:225;:::o;23959:366::-;24101:3;24122:67;24186:2;24181:3;24122:67;:::i;:::-;24115:74;;24198:93;24287:3;24198:93;:::i;:::-;24316:2;24311:3;24307:12;24300:19;;23959:366;;;:::o;24331:419::-;24497:4;24535:2;24524:9;24520:18;24512:26;;24584:9;24578:4;24574:20;24570:1;24559:9;24555:17;24548:47;24612:131;24738:4;24612:131;:::i;:::-;24604:139;;24331:419;;;:::o;24756:194::-;24796:4;24816:20;24834:1;24816:20;:::i;:::-;24811:25;;24850:20;24868:1;24850:20;:::i;:::-;24845:25;;24894:1;24891;24887:9;24879:17;;24918:1;24912:4;24909:11;24906:37;;;24923:18;;:::i;:::-;24906:37;24756:194;;;;:::o;24956:168::-;25096:20;25092:1;25084:6;25080:14;25073:44;24956:168;:::o;25130:366::-;25272:3;25293:67;25357:2;25352:3;25293:67;:::i;:::-;25286:74;;25369:93;25458:3;25369:93;:::i;:::-;25487:2;25482:3;25478:12;25471:19;;25130:366;;;:::o;25502:419::-;25668:4;25706:2;25695:9;25691:18;25683:26;;25755:9;25749:4;25745:20;25741:1;25730:9;25726:17;25719:47;25783:131;25909:4;25783:131;:::i;:::-;25775:139;;25502:419;;;:::o;25927:244::-;26067:34;26063:1;26055:6;26051:14;26044:58;26136:27;26131:2;26123:6;26119:15;26112:52;25927:244;:::o;26177:366::-;26319:3;26340:67;26404:2;26399:3;26340:67;:::i;:::-;26333:74;;26416:93;26505:3;26416:93;:::i;:::-;26534:2;26529:3;26525:12;26518:19;;26177:366;;;:::o;26549:419::-;26715:4;26753:2;26742:9;26738:18;26730:26;;26802:9;26796:4;26792:20;26788:1;26777:9;26773:17;26766:47;26830:131;26956:4;26830:131;:::i;:::-;26822:139;;26549:419;;;:::o;26974:241::-;27114:34;27110:1;27102:6;27098:14;27091:58;27183:24;27178:2;27170:6;27166:15;27159:49;26974:241;:::o;27221:366::-;27363:3;27384:67;27448:2;27443:3;27384:67;:::i;:::-;27377:74;;27460:93;27549:3;27460:93;:::i;:::-;27578:2;27573:3;27569:12;27562:19;;27221:366;;;:::o;27593:419::-;27759:4;27797:2;27786:9;27782:18;27774:26;;27846:9;27840:4;27836:20;27832:1;27821:9;27817:17;27810:47;27874:131;28000:4;27874:131;:::i;:::-;27866:139;;27593:419;;;:::o;28018:442::-;28167:4;28205:2;28194:9;28190:18;28182:26;;28218:71;28286:1;28275:9;28271:17;28262:6;28218:71;:::i;:::-;28299:72;28367:2;28356:9;28352:18;28343:6;28299:72;:::i;:::-;28381;28449:2;28438:9;28434:18;28425:6;28381:72;:::i;:::-;28018:442;;;;;;:::o;28466:180::-;28514:77;28511:1;28504:88;28611:4;28608:1;28601:15;28635:4;28632:1;28625:15;28652:180;28700:77;28697:1;28690:88;28797:4;28794:1;28787:15;28821:4;28818:1;28811:15;28838:143;28895:5;28926:6;28920:13;28911:22;;28942:33;28969:5;28942:33;:::i;:::-;28838:143;;;;:::o;28987:351::-;29057:6;29106:2;29094:9;29085:7;29081:23;29077:32;29074:119;;;29112:79;;:::i;:::-;29074:119;29232:1;29257:64;29313:7;29304:6;29293:9;29289:22;29257:64;:::i;:::-;29247:74;;29203:128;28987:351;;;;:::o;29344:85::-;29389:7;29418:5;29407:16;;29344:85;;;:::o;29435:158::-;29493:9;29526:61;29544:42;29553:32;29579:5;29553:32;:::i;:::-;29544:42;:::i;:::-;29526:61;:::i;:::-;29513:74;;29435:158;;;:::o;29599:147::-;29694:45;29733:5;29694:45;:::i;:::-;29689:3;29682:58;29599:147;;:::o;29752:114::-;29819:6;29853:5;29847:12;29837:22;;29752:114;;;:::o;29872:184::-;29971:11;30005:6;30000:3;29993:19;30045:4;30040:3;30036:14;30021:29;;29872:184;;;;:::o;30062:132::-;30129:4;30152:3;30144:11;;30182:4;30177:3;30173:14;30165:22;;30062:132;;;:::o;30200:108::-;30277:24;30295:5;30277:24;:::i;:::-;30272:3;30265:37;30200:108;;:::o;30314:179::-;30383:10;30404:46;30446:3;30438:6;30404:46;:::i;:::-;30482:4;30477:3;30473:14;30459:28;;30314:179;;;;:::o;30499:113::-;30569:4;30601;30596:3;30592:14;30584:22;;30499:113;;;:::o;30648:732::-;30767:3;30796:54;30844:5;30796:54;:::i;:::-;30866:86;30945:6;30940:3;30866:86;:::i;:::-;30859:93;;30976:56;31026:5;30976:56;:::i;:::-;31055:7;31086:1;31071:284;31096:6;31093:1;31090:13;31071:284;;;31172:6;31166:13;31199:63;31258:3;31243:13;31199:63;:::i;:::-;31192:70;;31285:60;31338:6;31285:60;:::i;:::-;31275:70;;31131:224;31118:1;31115;31111:9;31106:14;;31071:284;;;31075:14;31371:3;31364:10;;30772:608;;;30648:732;;;;:::o;31386:831::-;31649:4;31687:3;31676:9;31672:19;31664:27;;31701:71;31769:1;31758:9;31754:17;31745:6;31701:71;:::i;:::-;31782:80;31858:2;31847:9;31843:18;31834:6;31782:80;:::i;:::-;31909:9;31903:4;31899:20;31894:2;31883:9;31879:18;31872:48;31937:108;32040:4;32031:6;31937:108;:::i;:::-;31929:116;;32055:72;32123:2;32112:9;32108:18;32099:6;32055:72;:::i;:::-;32137:73;32205:3;32194:9;32190:19;32181:6;32137:73;:::i;:::-;31386:831;;;;;;;;:::o;32223:807::-;32472:4;32510:3;32499:9;32495:19;32487:27;;32524:71;32592:1;32581:9;32577:17;32568:6;32524:71;:::i;:::-;32605:72;32673:2;32662:9;32658:18;32649:6;32605:72;:::i;:::-;32687:80;32763:2;32752:9;32748:18;32739:6;32687:80;:::i;:::-;32777;32853:2;32842:9;32838:18;32829:6;32777:80;:::i;:::-;32867:73;32935:3;32924:9;32920:19;32911:6;32867:73;:::i;:::-;32950;33018:3;33007:9;33003:19;32994:6;32950:73;:::i;:::-;32223:807;;;;;;;;;:::o;33036:143::-;33093:5;33124:6;33118:13;33109:22;;33140:33;33167:5;33140:33;:::i;:::-;33036:143;;;;:::o;33185:663::-;33273:6;33281;33289;33338:2;33326:9;33317:7;33313:23;33309:32;33306:119;;;33344:79;;:::i;:::-;33306:119;33464:1;33489:64;33545:7;33536:6;33525:9;33521:22;33489:64;:::i;:::-;33479:74;;33435:128;33602:2;33628:64;33684:7;33675:6;33664:9;33660:22;33628:64;:::i;:::-;33618:74;;33573:129;33741:2;33767:64;33823:7;33814:6;33803:9;33799:22;33767:64;:::i;:::-;33757:74;;33712:129;33185:663;;;;;:::o

Swarm Source

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