ETH Price: $3,116.68 (+0.80%)
Gas: 2 Gwei

Token

tao.bot (TAOBOT)
 

Overview

Max Total Supply

100,000,000 TAOBOT

Holders

1,696

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
44,771.007216788232656348 TAOBOT

Value
$0.00
0xb20c69078d7890992911f7ab33962537a8dd41e1
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:
TaoBot

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-06
*/

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/access/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

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

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

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

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

// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// File contracts/TaoBot.sol

pragma solidity ^0.8.9;

contract TaoBot is ERC20, Ownable {
    address private WETH;
    
    address public constant uniswapV2Router02 =
        0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    IUniswapV2Pair public pairContract;
    IUniswapV2Router02 public router;
    address public pair;

    mapping(address => uint256) private buyBlock;

    address public feeReceiver = 0xA2e429584D54c874901aF16fF2cC97381742b1A4;

    // 25% Buy / 50% Sell Anti-Snipe Tax
    uint16 public feePercentageBuy = 2500;
    uint16 public feePercentageSell = 5000;
    uint16 public burnFeePercentage = 0;

    uint256 public maxTokenAmountPerWallet = 1000000 * 10 ** decimals();
    uint256 public maxTokenAmountPerTransaction = 0 * 10 ** decimals();

    uint256 public swapTreshold = 500000000000000000;
    bool private inSwap = false;

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

    constructor() ERC20(unicode"tao.bot", unicode"TAOBOT") {
        router = IUniswapV2Router02(uniswapV2Router02);
        WETH = router.WETH();
        pair = IUniswapV2Factory(router.factory()).createPair(
            WETH,
            address(this)
        );
        pairContract = IUniswapV2Pair(pair);
        _approve(address(this), uniswapV2Router02, type(uint256).max);
        _approve(address(this), pair, type(uint256).max);
        _approve(msg.sender, uniswapV2Router02, type(uint256).max);
        _mint(msg.sender, (100000000) * 10 ** decimals());
    }

    receive() external payable {}

    modifier isBot(address from, address to) {
        require(
            block.number > buyBlock[from] || block.number > buyBlock[to],
            "Cannot perform more than one transaction in the same block"
        );
        _;
        buyBlock[from] = block.number;
        buyBlock[to] = block.number;
    }

    function checkMaxTransactionAmountExceeded(uint256 amount) private view {
        if (msg.sender != owner() || msg.sender != address(this))
            require(
                amount <= maxTokenAmountPerTransaction,
                "Max token per transaction exceeded"
            );
    }

    function checkMaxWalletAmountExceeded(
        address to,
        uint256 amount
    ) private view {
        if (msg.sender != owner() || to != address(this))
            require(
                balanceOf(to) + amount <= maxTokenAmountPerWallet,
                "Max token per wallet exceeded"
            );
    }

    function calculateTokenAmountInETH(
        uint256 amount
    ) public view returns (uint256) {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;
        try router.getAmountsOut(amount, path) returns (
            uint[] memory amountsOut
        ) {
            return amountsOut[1];
        } catch {
            return 0;
        }
    }

    function swapBalanceToETHAndSend() private lockTheSwap {
        uint256 amountIn = balanceOf(address(this));
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amountIn,
            0,
            path,
            address(this),
            block.timestamp
        );
        payable(feeReceiver).transfer(address(this).balance);
    }

    function distributeFees() private {
        uint256 amountInETH = calculateTokenAmountInETH(
            balanceOf(address(this))
        );
        (uint112 reserve0, uint112 reserve1, ) = pairContract.getReserves();
        uint256 totalETHInPool;
        if (pairContract.token0() == WETH) totalETHInPool = uint256(reserve0);
        else if (pairContract.token1() == WETH)
            totalETHInPool = uint256(reserve1);
        if (amountInETH > swapTreshold) swapBalanceToETHAndSend();
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override isBot(from, to) {
        if (
            from == owner() ||
            to == owner() ||
            from == feeReceiver ||
            to == feeReceiver ||
            inSwap
        ) {
            super._transfer(from, to, amount);
        } else {
            uint256 feePercentage = 0;
            bool buying = from == pair && to != uniswapV2Router02;
            bool selling = from != uniswapV2Router02 && to == pair;
            if (msg.sender != pair && !inSwap) distributeFees();
            if (buying) {
                feePercentage = feePercentageBuy;
            }
            if (selling) {
                feePercentage = feePercentageSell;
            }
            uint256 feeAmount = (amount * feePercentage) / (10000);
            uint256 burnFeeAmount = (amount * burnFeePercentage) / (10000);
            uint256 finalAmount = (amount - (feeAmount + burnFeeAmount));
            if (maxTokenAmountPerTransaction > 0)
                checkMaxTransactionAmountExceeded(amount);
            if (buying && maxTokenAmountPerWallet > 0)
                checkMaxWalletAmountExceeded(to, finalAmount);
            if (burnFeeAmount > 0) _burn(from, burnFeeAmount);
            super._transfer(from, address(this), feeAmount);
            super._transfer(from, to, finalAmount);
        }
    }

    function manualSwap() public {
        require(msg.sender == feeReceiver, "Insufficient Permissions");
        swapBalanceToETHAndSend();
    }

    function removeLimits() public {
        require(msg.sender == feeReceiver, "Insufficient Permissions");
        maxTokenAmountPerWallet = 0;
        maxTokenAmountPerTransaction = 0;
    }

    function removeTaxes() public {
        require(msg.sender == feeReceiver, "Insufficient Permissions");
        feePercentageBuy = 0;
        feePercentageSell = 0;
        burnFeePercentage = 0;
    }

    function updateThreshold(uint256 _swapTreshold) public {
        require(msg.sender == feeReceiver, "Insufficient Permissions");
        swapTreshold = _swapTreshold;
    }

    // Update to real taxes
    function launch() public {
        require(msg.sender == feeReceiver, "Insufficient Permissions");
        feePercentageBuy = 500;
        feePercentageSell = 500;
    }

    function changeFeeReceiver(address _feeReceiver) public {
        require(msg.sender == feeReceiver, "Insufficient Permissions");
        feeReceiver = _feeReceiver;
    }
}

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFeePercentage","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateTokenAmountInETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_feeReceiver","type":"address"}],"name":"changeFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feePercentageBuy","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercentageSell","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTokenAmountPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairContract","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uniswapV2Router02","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapTreshold","type":"uint256"}],"name":"updateThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405273a2e429584d54c874901af16ff2cc97381742b1a4600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109c4600b60146101000a81548161ffff021916908361ffff160217905550611388600b60166101000a81548161ffff021916908361ffff1602179055505f600b60186101000a81548161ffff021916908361ffff160217905550620000c36200061360201b60201c565b600a620000d1919062000bb1565b620f4240620000e1919062000c01565b600c55620000f46200061360201b60201c565b600a62000102919062000bb1565b5f6200010f919062000c01565b600d556706f05b59d3b20000600e555f600f5f6101000a81548160ff02191690831515021790555034801562000143575f80fd5b506040518060400160405280600781526020017f74616f2e626f74000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f54414f424f5400000000000000000000000000000000000000000000000000008152508160039081620001c1919062000ea6565b508060049081620001d3919062000ea6565b505050620001f6620001ea6200061b60201b60201c565b6200062260201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002db919062000fef565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000385573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003ab919062000fef565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306040518363ffffffff1660e01b81526004016200040892919062001030565b6020604051808303815f875af115801562000425573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200044b919062000fef565b60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053230737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006e560201b60201c565b620005863060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006e560201b60201c565b620005cd33737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006e560201b60201c565b6200060d33620005e26200061360201b60201c565b600a620005f0919062000bb1565b6305f5e10062000601919062000c01565b620008b060201b60201c565b62001267565b5f6012905090565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000756576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074d90620010df565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007be9062001173565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620008a39190620011a4565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000918906200120d565b60405180910390fd5b620009345f838362000a1560201b60201c565b8060025f8282546200094791906200122d565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009f69190620011a4565b60405180910390a362000a115f838362000a1a60201b60201c565b5050565b505050565b505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000aa95780860481111562000a815762000a8062000a1f565b5b600185161562000a915780820291505b808102905062000aa18562000a4c565b945062000a61565b94509492505050565b5f8262000ac3576001905062000b95565b8162000ad2575f905062000b95565b816001811462000aeb576002811462000af65762000b2c565b600191505062000b95565b60ff84111562000b0b5762000b0a62000a1f565b5b8360020a91508482111562000b255762000b2462000a1f565b5b5062000b95565b5060208310610133831016604e8410600b841016171562000b665782820a90508381111562000b605762000b5f62000a1f565b5b62000b95565b62000b75848484600162000a58565b9250905081840481111562000b8f5762000b8e62000a1f565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f62000bbd8262000b9c565b915062000bca8362000ba5565b925062000bf97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ab2565b905092915050565b5f62000c0d8262000b9c565b915062000c1a8362000b9c565b925082820262000c2a8162000b9c565b9150828204841483151762000c445762000c4362000a1f565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000cc757607f821691505b60208210810362000cdd5762000cdc62000c82565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000d417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d04565b62000d4d868362000d04565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000d8e62000d8862000d828462000b9c565b62000d65565b62000b9c565b9050919050565b5f819050919050565b62000da98362000d6e565b62000dc162000db88262000d95565b84845462000d10565b825550505050565b5f90565b62000dd762000dc9565b62000de481848462000d9e565b505050565b5b8181101562000e0b5762000dff5f8262000dcd565b60018101905062000dea565b5050565b601f82111562000e5a5762000e248162000ce3565b62000e2f8462000cf5565b8101602085101562000e3f578190505b62000e5762000e4e8562000cf5565b83018262000de9565b50505b505050565b5f82821c905092915050565b5f62000e7c5f198460080262000e5f565b1980831691505092915050565b5f62000e96838362000e6b565b9150826002028217905092915050565b62000eb18262000c4b565b67ffffffffffffffff81111562000ecd5762000ecc62000c55565b5b62000ed9825462000caf565b62000ee682828562000e0f565b5f60209050601f83116001811462000f1c575f841562000f07578287015190505b62000f13858262000e89565b86555062000f82565b601f19841662000f2c8662000ce3565b5f5b8281101562000f555784890151825560018201915060208501945060208101905062000f2e565b8683101562000f75578489015162000f71601f89168262000e6b565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000fb98262000f8e565b9050919050565b62000fcb8162000fad565b811462000fd6575f80fd5b50565b5f8151905062000fe98162000fc0565b92915050565b5f6020828403121562001007576200100662000f8a565b5b5f620010168482850162000fd9565b91505092915050565b6200102a8162000fad565b82525050565b5f604082019050620010455f8301856200101f565b6200105460208301846200101f565b9392505050565b5f82825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f620010c76024836200105b565b9150620010d4826200106b565b604082019050919050565b5f6020820190508181035f830152620010f881620010b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200115b6022836200105b565b91506200116882620010ff565b604082019050919050565b5f6020820190508181035f8301526200118c816200114d565b9050919050565b6200119e8162000b9c565b82525050565b5f602082019050620011b95f83018462001193565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620011f5601f836200105b565b91506200120282620011bf565b602082019050919050565b5f6020820190508181035f8301526200122681620011e7565b9050919050565b5f620012398262000b9c565b9150620012468362000b9c565b925082820190508082111562001261576200126062000a1f565b5b92915050565b6137c780620012755f395ff3fe6080604052600436106101e6575f3560e01c80637c08b96411610101578063ab99904211610094578063dd62ed3e11610063578063dd62ed3e1461069f578063e52fb9ec146106db578063f2fde38b14610705578063f887ea401461072d576101ed565b8063ab999042146105f9578063b3f0067414610623578063c4ceb3391461064d578063d7d7442f14610677576101ed565b8063a457c2d7116100d0578063a457c2d71461052d578063a7c6402c14610569578063a8aa1b3114610593578063a9059cbb146105bd576101ed565b80637c08b964146104755780638da5cb5b1461049d5780639277883d146104c757806395d89b4114610503576101ed565b8063418bce8a1161017957806369e1ea7f1161014857806369e1ea7f146103f757806370a082311461040d578063715018a614610449578063751039fc1461045f576101ed565b8063418bce8a146103635780634d709adf1461038d57806351bc3c85146103b7578063685fbc6b146103cd576101ed565b806323b872dd116101b557806323b872dd14610297578063313ce567146102d357806339509351146102fd5780633a4ceedd14610339576101ed565b806301339c21146101f157806306fdde0314610207578063095ea7b31461023157806318160ddd1461026d576101ed565b366101ed57005b5f80fd5b3480156101fc575f80fd5b50610205610757565b005b348015610212575f80fd5b5061021b610826565b6040516102289190612687565b60405180910390f35b34801561023c575f80fd5b5061025760048036038101906102529190612745565b6108b6565b604051610264919061279d565b60405180910390f35b348015610278575f80fd5b506102816108d8565b60405161028e91906127c5565b60405180910390f35b3480156102a2575f80fd5b506102bd60048036038101906102b891906127de565b6108e1565b6040516102ca919061279d565b60405180910390f35b3480156102de575f80fd5b506102e761090f565b6040516102f49190612849565b60405180910390f35b348015610308575f80fd5b50610323600480360381019061031e9190612745565b610917565b604051610330919061279d565b60405180910390f35b348015610344575f80fd5b5061034d61094d565b60405161035a919061287e565b60405180910390f35b34801561036e575f80fd5b50610377610961565b60405161038491906127c5565b60405180910390f35b348015610398575f80fd5b506103a1610967565b6040516103ae91906128f2565b60405180910390f35b3480156103c2575f80fd5b506103cb61098c565b005b3480156103d8575f80fd5b506103e1610a25565b6040516103ee91906127c5565b60405180910390f35b348015610402575f80fd5b5061040b610a2b565b005b348015610418575f80fd5b50610433600480360381019061042e919061290b565b610b13565b60405161044091906127c5565b60405180910390f35b348015610454575f80fd5b5061045d610b58565b005b34801561046a575f80fd5b50610473610b6b565b005b348015610480575f80fd5b5061049b6004803603810190610496919061290b565b610c0a565b005b3480156104a8575f80fd5b506104b1610cdc565b6040516104be9190612945565b60405180910390f35b3480156104d2575f80fd5b506104ed60048036038101906104e8919061295e565b610d04565b6040516104fa91906127c5565b60405180910390f35b34801561050e575f80fd5b50610517610edc565b6040516105249190612687565b60405180910390f35b348015610538575f80fd5b50610553600480360381019061054e9190612745565b610f6c565b604051610560919061279d565b60405180910390f35b348015610574575f80fd5b5061057d610fe1565b60405161058a9190612945565b60405180910390f35b34801561059e575f80fd5b506105a7610ff9565b6040516105b49190612945565b60405180910390f35b3480156105c8575f80fd5b506105e360048036038101906105de9190612745565b61101e565b6040516105f0919061279d565b60405180910390f35b348015610604575f80fd5b5061060d611040565b60405161061a919061287e565b60405180910390f35b34801561062e575f80fd5b50610637611054565b6040516106449190612945565b60405180910390f35b348015610658575f80fd5b50610661611079565b60405161066e919061287e565b60405180910390f35b348015610682575f80fd5b5061069d6004803603810190610698919061295e565b61108d565b005b3480156106aa575f80fd5b506106c560048036038101906106c09190612989565b611126565b6040516106d291906127c5565b60405180910390f35b3480156106e6575f80fd5b506106ef6111a8565b6040516106fc91906127c5565b60405180910390f35b348015610710575f80fd5b5061072b6004803603810190610726919061290b565b6111ae565b005b348015610738575f80fd5b50610741611230565b60405161074e91906129e7565b60405180910390f35b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd90612a4a565b60405180910390fd5b6101f4600b60146101000a81548161ffff021916908361ffff1602179055506101f4600b60166101000a81548161ffff021916908361ffff160217905550565b60606003805461083590612a95565b80601f016020809104026020016040519081016040528092919081815260200182805461086190612a95565b80156108ac5780601f10610883576101008083540402835291602001916108ac565b820191905f5260205f20905b81548152906001019060200180831161088f57829003601f168201915b5050505050905090565b5f806108c0611255565b90506108cd81858561125c565b600191505092915050565b5f600254905090565b5f806108eb611255565b90506108f885828561141f565b6109038585856114aa565b60019150509392505050565b5f6012905090565b5f80610921611255565b90506109428185856109338589611126565b61093d9190612af2565b61125c565b600191505092915050565b600b60149054906101000a900461ffff1681565b600d5481565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290612a4a565b60405180910390fd5b610a23611a03565b565b600c5481565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190612a4a565b60405180910390fd5b5f600b60146101000a81548161ffff021916908361ffff1602179055505f600b60166101000a81548161ffff021916908361ffff1602179055505f600b60186101000a81548161ffff021916908361ffff160217905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b60611c45565b610b695f611cc3565b565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190612a4a565b60405180910390fd5b5f600c819055505f600d81905550565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090612a4a565b60405180910390fd5b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f80600267ffffffffffffffff811115610d2157610d20612b25565b5b604051908082528060200260200182016040528015610d4f5781602001602082028036833780820191505090505b50905030815f81518110610d6657610d65612b52565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110610dd657610dd5612b52565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f84836040518363ffffffff1660e01b8152600401610e6c929190612c36565b5f60405180830381865afa925050508015610ea957506040513d5f823e3d601f19601f82011682018060405250810190610ea69190612d8b565b60015b610eb6575f915050610ed7565b80600181518110610eca57610ec9612b52565b5b6020026020010151925050505b919050565b606060048054610eeb90612a95565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1790612a95565b8015610f625780601f10610f3957610100808354040283529160200191610f62565b820191905f5260205f20905b815481529060010190602001808311610f4557829003601f168201915b5050505050905090565b5f80610f76611255565b90505f610f838286611126565b905083811015610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90612e42565b60405180910390fd5b610fd5828686840361125c565b60019250505092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80611028611255565b90506110358185856114aa565b600191505092915050565b600b60169054906101000a900461ffff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60189054906101000a900461ffff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390612a4a565b60405180910390fd5b80600e8190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600e5481565b6111b6611c45565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90612ed0565b60405180910390fd5b61122d81611cc3565b50565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190612f5e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90612fec565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161141291906127c5565b60405180910390a3505050565b5f61142a8484611126565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114a45781811015611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90613054565b60405180910390fd5b6114a3848484840361125c565b5b50505050565b8282600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20544311806115335750600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205443115b611572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611569906130e2565b60405180910390fd5b61157a610cdc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806115e557506115b6610cdc565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8061163c5750600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806116935750600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806116a95750600f5f9054906101000a900460ff165b156116be576116b9858585611d86565b611978565b5f8060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561175c5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b90505f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16141580156117fb575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16145b905060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156118665750600f5f9054906101000a900460ff16155b1561187457611873611ff2565b5b811561189257600b60149054906101000a900461ffff1661ffff1692505b80156118b057600b60169054906101000a900461ffff1661ffff1692505b5f61271084886118c09190613100565b6118ca919061316e565b90505f612710600b60189054906101000a900461ffff1661ffff16896118f09190613100565b6118fa919061316e565b90505f81836119099190612af2565b89611914919061319e565b90505f600d54111561192a57611929896122a4565b5b84801561193857505f600c54115b15611948576119478a82612360565b5b5f82111561195b5761195a8b83612430565b5b6119668b3085611d86565b6119718b8b83611d86565b5050505050505b43600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555043600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050505050565b6001600f5f6101000a81548160ff0219169083151502179055505f611a2730610b13565b90505f600267ffffffffffffffff811115611a4557611a44612b25565b5b604051908082528060200260200182016040528015611a735781602001602082028036833780820191505090505b50905030815f81518110611a8a57611a89612b52565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110611afa57611af9612b52565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611b9695949392919061320a565b5f604051808303815f87803b158015611bad575f80fd5b505af1158015611bbf573d5f803e3d5ffd5b50505050600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611c27573d5f803e3d5ffd5b5050505f600f5f6101000a81548160ff021916908315150217905550565b611c4d611255565b73ffffffffffffffffffffffffffffffffffffffff16611c6b610cdc565b73ffffffffffffffffffffffffffffffffffffffff1614611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb8906132ac565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb9061333a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e59906133c8565b60405180910390fd5b611e6d8383836125f3565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790613456565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fd991906127c5565b60405180910390a3611fec8484846125f8565b50505050565b5f612004611fff30610b13565b610d04565b90505f8060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015612072573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061209691906134f0565b50915091505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa15801561213e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121629190613554565b73ffffffffffffffffffffffffffffffffffffffff160361219557826dffffffffffffffffffffffffffff16905061228b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612237573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061225b9190613554565b73ffffffffffffffffffffffffffffffffffffffff160361228a57816dffffffffffffffffffffffffffff1690505b5b600e5484111561229e5761229d611a03565b5b50505050565b6122ac610cdc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158061231257503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b1561235d57600d5481111561235c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612353906135ef565b60405180910390fd5b5b50565b612368610cdc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415806123ce57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561242c57600c54816123e084610b13565b6123ea9190612af2565b111561242b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242290613657565b60405180910390fd5b5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361249e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612495906136e5565b60405180910390fd5b6124a9825f836125f3565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561252c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252390613773565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125db91906127c5565b60405180910390a36125ee835f846125f8565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612634578082015181840152602081019050612619565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612659826125fd565b6126638185612607565b9350612673818560208601612617565b61267c8161263f565b840191505092915050565b5f6020820190508181035f83015261269f818461264f565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6126e1826126b8565b9050919050565b6126f1816126d7565b81146126fb575f80fd5b50565b5f8135905061270c816126e8565b92915050565b5f819050919050565b61272481612712565b811461272e575f80fd5b50565b5f8135905061273f8161271b565b92915050565b5f806040838503121561275b5761275a6126b0565b5b5f612768858286016126fe565b925050602061277985828601612731565b9150509250929050565b5f8115159050919050565b61279781612783565b82525050565b5f6020820190506127b05f83018461278e565b92915050565b6127bf81612712565b82525050565b5f6020820190506127d85f8301846127b6565b92915050565b5f805f606084860312156127f5576127f46126b0565b5b5f612802868287016126fe565b9350506020612813868287016126fe565b925050604061282486828701612731565b9150509250925092565b5f60ff82169050919050565b6128438161282e565b82525050565b5f60208201905061285c5f83018461283a565b92915050565b5f61ffff82169050919050565b61287881612862565b82525050565b5f6020820190506128915f83018461286f565b92915050565b5f819050919050565b5f6128ba6128b56128b0846126b8565b612897565b6126b8565b9050919050565b5f6128cb826128a0565b9050919050565b5f6128dc826128c1565b9050919050565b6128ec816128d2565b82525050565b5f6020820190506129055f8301846128e3565b92915050565b5f602082840312156129205761291f6126b0565b5b5f61292d848285016126fe565b91505092915050565b61293f816126d7565b82525050565b5f6020820190506129585f830184612936565b92915050565b5f60208284031215612973576129726126b0565b5b5f61298084828501612731565b91505092915050565b5f806040838503121561299f5761299e6126b0565b5b5f6129ac858286016126fe565b92505060206129bd858286016126fe565b9150509250929050565b5f6129d1826128c1565b9050919050565b6129e1816129c7565b82525050565b5f6020820190506129fa5f8301846129d8565b92915050565b7f496e73756666696369656e74205065726d697373696f6e7300000000000000005f82015250565b5f612a34601883612607565b9150612a3f82612a00565b602082019050919050565b5f6020820190508181035f830152612a6181612a28565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612aac57607f821691505b602082108103612abf57612abe612a68565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612afc82612712565b9150612b0783612712565b9250828201905080821115612b1f57612b1e612ac5565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612bb1816126d7565b82525050565b5f612bc28383612ba8565b60208301905092915050565b5f602082019050919050565b5f612be482612b7f565b612bee8185612b89565b9350612bf983612b99565b805f5b83811015612c29578151612c108882612bb7565b9750612c1b83612bce565b925050600181019050612bfc565b5085935050505092915050565b5f604082019050612c495f8301856127b6565b8181036020830152612c5b8184612bda565b90509392505050565b5f80fd5b612c718261263f565b810181811067ffffffffffffffff82111715612c9057612c8f612b25565b5b80604052505050565b5f612ca26126a7565b9050612cae8282612c68565b919050565b5f67ffffffffffffffff821115612ccd57612ccc612b25565b5b602082029050602081019050919050565b5f80fd5b5f81519050612cf08161271b565b92915050565b5f612d08612d0384612cb3565b612c99565b90508083825260208201905060208402830185811115612d2b57612d2a612cde565b5b835b81811015612d545780612d408882612ce2565b845260208401935050602081019050612d2d565b5050509392505050565b5f82601f830112612d7257612d71612c64565b5b8151612d82848260208601612cf6565b91505092915050565b5f60208284031215612da057612d9f6126b0565b5b5f82015167ffffffffffffffff811115612dbd57612dbc6126b4565b5b612dc984828501612d5e565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612e2c602583612607565b9150612e3782612dd2565b604082019050919050565b5f6020820190508181035f830152612e5981612e20565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612eba602683612607565b9150612ec582612e60565b604082019050919050565b5f6020820190508181035f830152612ee781612eae565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612f48602483612607565b9150612f5382612eee565b604082019050919050565b5f6020820190508181035f830152612f7581612f3c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612fd6602283612607565b9150612fe182612f7c565b604082019050919050565b5f6020820190508181035f83015261300381612fca565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61303e601d83612607565b91506130498261300a565b602082019050919050565b5f6020820190508181035f83015261306b81613032565b9050919050565b7f43616e6e6f7420706572666f726d206d6f7265207468616e206f6e65207472615f8201527f6e73616374696f6e20696e207468652073616d6520626c6f636b000000000000602082015250565b5f6130cc603a83612607565b91506130d782613072565b604082019050919050565b5f6020820190508181035f8301526130f9816130c0565b9050919050565b5f61310a82612712565b915061311583612712565b925082820261312381612712565b9150828204841483151761313a57613139612ac5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61317882612712565b915061318383612712565b92508261319357613192613141565b5b828204905092915050565b5f6131a882612712565b91506131b383612712565b92508282039050818111156131cb576131ca612ac5565b5b92915050565b5f819050919050565b5f6131f46131ef6131ea846131d1565b612897565b612712565b9050919050565b613204816131da565b82525050565b5f60a08201905061321d5f8301886127b6565b61322a60208301876131fb565b818103604083015261323c8186612bda565b905061324b6060830185612936565b61325860808301846127b6565b9695505050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613296602083612607565b91506132a182613262565b602082019050919050565b5f6020820190508181035f8301526132c38161328a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613324602583612607565b915061332f826132ca565b604082019050919050565b5f6020820190508181035f83015261335181613318565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6133b2602383612607565b91506133bd82613358565b604082019050919050565b5f6020820190508181035f8301526133df816133a6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613440602683612607565b915061344b826133e6565b604082019050919050565b5f6020820190508181035f83015261346d81613434565b9050919050565b5f6dffffffffffffffffffffffffffff82169050919050565b61349681613474565b81146134a0575f80fd5b50565b5f815190506134b18161348d565b92915050565b5f63ffffffff82169050919050565b6134cf816134b7565b81146134d9575f80fd5b50565b5f815190506134ea816134c6565b92915050565b5f805f60608486031215613507576135066126b0565b5b5f613514868287016134a3565b9350506020613525868287016134a3565b9250506040613536868287016134dc565b9150509250925092565b5f8151905061354e816126e8565b92915050565b5f60208284031215613569576135686126b0565b5b5f61357684828501613540565b91505092915050565b7f4d617820746f6b656e20706572207472616e73616374696f6e206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f6135d9602283612607565b91506135e48261357f565b604082019050919050565b5f6020820190508181035f830152613606816135cd565b9050919050565b7f4d617820746f6b656e207065722077616c6c65742065786365656465640000005f82015250565b5f613641601d83612607565b915061364c8261360d565b602082019050919050565b5f6020820190508181035f83015261366e81613635565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6136cf602183612607565b91506136da82613675565b604082019050919050565b5f6020820190508181035f8301526136fc816136c3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61375d602283612607565b915061376882613703565b604082019050919050565b5f6020820190508181035f83015261378a81613751565b905091905056fea2646970667358221220df9ce131ee5ffeec6577a5c50116371c5553b35ee52461fb42ee2af9d75cff4f64736f6c63430008180033

Deployed Bytecode

0x6080604052600436106101e6575f3560e01c80637c08b96411610101578063ab99904211610094578063dd62ed3e11610063578063dd62ed3e1461069f578063e52fb9ec146106db578063f2fde38b14610705578063f887ea401461072d576101ed565b8063ab999042146105f9578063b3f0067414610623578063c4ceb3391461064d578063d7d7442f14610677576101ed565b8063a457c2d7116100d0578063a457c2d71461052d578063a7c6402c14610569578063a8aa1b3114610593578063a9059cbb146105bd576101ed565b80637c08b964146104755780638da5cb5b1461049d5780639277883d146104c757806395d89b4114610503576101ed565b8063418bce8a1161017957806369e1ea7f1161014857806369e1ea7f146103f757806370a082311461040d578063715018a614610449578063751039fc1461045f576101ed565b8063418bce8a146103635780634d709adf1461038d57806351bc3c85146103b7578063685fbc6b146103cd576101ed565b806323b872dd116101b557806323b872dd14610297578063313ce567146102d357806339509351146102fd5780633a4ceedd14610339576101ed565b806301339c21146101f157806306fdde0314610207578063095ea7b31461023157806318160ddd1461026d576101ed565b366101ed57005b5f80fd5b3480156101fc575f80fd5b50610205610757565b005b348015610212575f80fd5b5061021b610826565b6040516102289190612687565b60405180910390f35b34801561023c575f80fd5b5061025760048036038101906102529190612745565b6108b6565b604051610264919061279d565b60405180910390f35b348015610278575f80fd5b506102816108d8565b60405161028e91906127c5565b60405180910390f35b3480156102a2575f80fd5b506102bd60048036038101906102b891906127de565b6108e1565b6040516102ca919061279d565b60405180910390f35b3480156102de575f80fd5b506102e761090f565b6040516102f49190612849565b60405180910390f35b348015610308575f80fd5b50610323600480360381019061031e9190612745565b610917565b604051610330919061279d565b60405180910390f35b348015610344575f80fd5b5061034d61094d565b60405161035a919061287e565b60405180910390f35b34801561036e575f80fd5b50610377610961565b60405161038491906127c5565b60405180910390f35b348015610398575f80fd5b506103a1610967565b6040516103ae91906128f2565b60405180910390f35b3480156103c2575f80fd5b506103cb61098c565b005b3480156103d8575f80fd5b506103e1610a25565b6040516103ee91906127c5565b60405180910390f35b348015610402575f80fd5b5061040b610a2b565b005b348015610418575f80fd5b50610433600480360381019061042e919061290b565b610b13565b60405161044091906127c5565b60405180910390f35b348015610454575f80fd5b5061045d610b58565b005b34801561046a575f80fd5b50610473610b6b565b005b348015610480575f80fd5b5061049b6004803603810190610496919061290b565b610c0a565b005b3480156104a8575f80fd5b506104b1610cdc565b6040516104be9190612945565b60405180910390f35b3480156104d2575f80fd5b506104ed60048036038101906104e8919061295e565b610d04565b6040516104fa91906127c5565b60405180910390f35b34801561050e575f80fd5b50610517610edc565b6040516105249190612687565b60405180910390f35b348015610538575f80fd5b50610553600480360381019061054e9190612745565b610f6c565b604051610560919061279d565b60405180910390f35b348015610574575f80fd5b5061057d610fe1565b60405161058a9190612945565b60405180910390f35b34801561059e575f80fd5b506105a7610ff9565b6040516105b49190612945565b60405180910390f35b3480156105c8575f80fd5b506105e360048036038101906105de9190612745565b61101e565b6040516105f0919061279d565b60405180910390f35b348015610604575f80fd5b5061060d611040565b60405161061a919061287e565b60405180910390f35b34801561062e575f80fd5b50610637611054565b6040516106449190612945565b60405180910390f35b348015610658575f80fd5b50610661611079565b60405161066e919061287e565b60405180910390f35b348015610682575f80fd5b5061069d6004803603810190610698919061295e565b61108d565b005b3480156106aa575f80fd5b506106c560048036038101906106c09190612989565b611126565b6040516106d291906127c5565b60405180910390f35b3480156106e6575f80fd5b506106ef6111a8565b6040516106fc91906127c5565b60405180910390f35b348015610710575f80fd5b5061072b6004803603810190610726919061290b565b6111ae565b005b348015610738575f80fd5b50610741611230565b60405161074e91906129e7565b60405180910390f35b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd90612a4a565b60405180910390fd5b6101f4600b60146101000a81548161ffff021916908361ffff1602179055506101f4600b60166101000a81548161ffff021916908361ffff160217905550565b60606003805461083590612a95565b80601f016020809104026020016040519081016040528092919081815260200182805461086190612a95565b80156108ac5780601f10610883576101008083540402835291602001916108ac565b820191905f5260205f20905b81548152906001019060200180831161088f57829003601f168201915b5050505050905090565b5f806108c0611255565b90506108cd81858561125c565b600191505092915050565b5f600254905090565b5f806108eb611255565b90506108f885828561141f565b6109038585856114aa565b60019150509392505050565b5f6012905090565b5f80610921611255565b90506109428185856109338589611126565b61093d9190612af2565b61125c565b600191505092915050565b600b60149054906101000a900461ffff1681565b600d5481565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290612a4a565b60405180910390fd5b610a23611a03565b565b600c5481565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190612a4a565b60405180910390fd5b5f600b60146101000a81548161ffff021916908361ffff1602179055505f600b60166101000a81548161ffff021916908361ffff1602179055505f600b60186101000a81548161ffff021916908361ffff160217905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b60611c45565b610b695f611cc3565b565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190612a4a565b60405180910390fd5b5f600c819055505f600d81905550565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090612a4a565b60405180910390fd5b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f80600267ffffffffffffffff811115610d2157610d20612b25565b5b604051908082528060200260200182016040528015610d4f5781602001602082028036833780820191505090505b50905030815f81518110610d6657610d65612b52565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110610dd657610dd5612b52565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f84836040518363ffffffff1660e01b8152600401610e6c929190612c36565b5f60405180830381865afa925050508015610ea957506040513d5f823e3d601f19601f82011682018060405250810190610ea69190612d8b565b60015b610eb6575f915050610ed7565b80600181518110610eca57610ec9612b52565b5b6020026020010151925050505b919050565b606060048054610eeb90612a95565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1790612a95565b8015610f625780601f10610f3957610100808354040283529160200191610f62565b820191905f5260205f20905b815481529060010190602001808311610f4557829003601f168201915b5050505050905090565b5f80610f76611255565b90505f610f838286611126565b905083811015610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90612e42565b60405180910390fd5b610fd5828686840361125c565b60019250505092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80611028611255565b90506110358185856114aa565b600191505092915050565b600b60169054906101000a900461ffff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60189054906101000a900461ffff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390612a4a565b60405180910390fd5b80600e8190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600e5481565b6111b6611c45565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90612ed0565b60405180910390fd5b61122d81611cc3565b50565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190612f5e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90612fec565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161141291906127c5565b60405180910390a3505050565b5f61142a8484611126565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114a45781811015611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90613054565b60405180910390fd5b6114a3848484840361125c565b5b50505050565b8282600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20544311806115335750600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205443115b611572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611569906130e2565b60405180910390fd5b61157a610cdc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806115e557506115b6610cdc565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8061163c5750600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806116935750600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806116a95750600f5f9054906101000a900460ff165b156116be576116b9858585611d86565b611978565b5f8060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561175c5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b90505f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16141580156117fb575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16145b905060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156118665750600f5f9054906101000a900460ff16155b1561187457611873611ff2565b5b811561189257600b60149054906101000a900461ffff1661ffff1692505b80156118b057600b60169054906101000a900461ffff1661ffff1692505b5f61271084886118c09190613100565b6118ca919061316e565b90505f612710600b60189054906101000a900461ffff1661ffff16896118f09190613100565b6118fa919061316e565b90505f81836119099190612af2565b89611914919061319e565b90505f600d54111561192a57611929896122a4565b5b84801561193857505f600c54115b15611948576119478a82612360565b5b5f82111561195b5761195a8b83612430565b5b6119668b3085611d86565b6119718b8b83611d86565b5050505050505b43600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555043600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050505050565b6001600f5f6101000a81548160ff0219169083151502179055505f611a2730610b13565b90505f600267ffffffffffffffff811115611a4557611a44612b25565b5b604051908082528060200260200182016040528015611a735781602001602082028036833780820191505090505b50905030815f81518110611a8a57611a89612b52565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110611afa57611af9612b52565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611b9695949392919061320a565b5f604051808303815f87803b158015611bad575f80fd5b505af1158015611bbf573d5f803e3d5ffd5b50505050600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611c27573d5f803e3d5ffd5b5050505f600f5f6101000a81548160ff021916908315150217905550565b611c4d611255565b73ffffffffffffffffffffffffffffffffffffffff16611c6b610cdc565b73ffffffffffffffffffffffffffffffffffffffff1614611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb8906132ac565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb9061333a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e59906133c8565b60405180910390fd5b611e6d8383836125f3565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790613456565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fd991906127c5565b60405180910390a3611fec8484846125f8565b50505050565b5f612004611fff30610b13565b610d04565b90505f8060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015612072573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061209691906134f0565b50915091505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa15801561213e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121629190613554565b73ffffffffffffffffffffffffffffffffffffffff160361219557826dffffffffffffffffffffffffffff16905061228b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612237573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061225b9190613554565b73ffffffffffffffffffffffffffffffffffffffff160361228a57816dffffffffffffffffffffffffffff1690505b5b600e5484111561229e5761229d611a03565b5b50505050565b6122ac610cdc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158061231257503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b1561235d57600d5481111561235c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612353906135ef565b60405180910390fd5b5b50565b612368610cdc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415806123ce57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561242c57600c54816123e084610b13565b6123ea9190612af2565b111561242b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242290613657565b60405180910390fd5b5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361249e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612495906136e5565b60405180910390fd5b6124a9825f836125f3565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561252c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252390613773565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125db91906127c5565b60405180910390a36125ee835f846125f8565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612634578082015181840152602081019050612619565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612659826125fd565b6126638185612607565b9350612673818560208601612617565b61267c8161263f565b840191505092915050565b5f6020820190508181035f83015261269f818461264f565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6126e1826126b8565b9050919050565b6126f1816126d7565b81146126fb575f80fd5b50565b5f8135905061270c816126e8565b92915050565b5f819050919050565b61272481612712565b811461272e575f80fd5b50565b5f8135905061273f8161271b565b92915050565b5f806040838503121561275b5761275a6126b0565b5b5f612768858286016126fe565b925050602061277985828601612731565b9150509250929050565b5f8115159050919050565b61279781612783565b82525050565b5f6020820190506127b05f83018461278e565b92915050565b6127bf81612712565b82525050565b5f6020820190506127d85f8301846127b6565b92915050565b5f805f606084860312156127f5576127f46126b0565b5b5f612802868287016126fe565b9350506020612813868287016126fe565b925050604061282486828701612731565b9150509250925092565b5f60ff82169050919050565b6128438161282e565b82525050565b5f60208201905061285c5f83018461283a565b92915050565b5f61ffff82169050919050565b61287881612862565b82525050565b5f6020820190506128915f83018461286f565b92915050565b5f819050919050565b5f6128ba6128b56128b0846126b8565b612897565b6126b8565b9050919050565b5f6128cb826128a0565b9050919050565b5f6128dc826128c1565b9050919050565b6128ec816128d2565b82525050565b5f6020820190506129055f8301846128e3565b92915050565b5f602082840312156129205761291f6126b0565b5b5f61292d848285016126fe565b91505092915050565b61293f816126d7565b82525050565b5f6020820190506129585f830184612936565b92915050565b5f60208284031215612973576129726126b0565b5b5f61298084828501612731565b91505092915050565b5f806040838503121561299f5761299e6126b0565b5b5f6129ac858286016126fe565b92505060206129bd858286016126fe565b9150509250929050565b5f6129d1826128c1565b9050919050565b6129e1816129c7565b82525050565b5f6020820190506129fa5f8301846129d8565b92915050565b7f496e73756666696369656e74205065726d697373696f6e7300000000000000005f82015250565b5f612a34601883612607565b9150612a3f82612a00565b602082019050919050565b5f6020820190508181035f830152612a6181612a28565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612aac57607f821691505b602082108103612abf57612abe612a68565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612afc82612712565b9150612b0783612712565b9250828201905080821115612b1f57612b1e612ac5565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612bb1816126d7565b82525050565b5f612bc28383612ba8565b60208301905092915050565b5f602082019050919050565b5f612be482612b7f565b612bee8185612b89565b9350612bf983612b99565b805f5b83811015612c29578151612c108882612bb7565b9750612c1b83612bce565b925050600181019050612bfc565b5085935050505092915050565b5f604082019050612c495f8301856127b6565b8181036020830152612c5b8184612bda565b90509392505050565b5f80fd5b612c718261263f565b810181811067ffffffffffffffff82111715612c9057612c8f612b25565b5b80604052505050565b5f612ca26126a7565b9050612cae8282612c68565b919050565b5f67ffffffffffffffff821115612ccd57612ccc612b25565b5b602082029050602081019050919050565b5f80fd5b5f81519050612cf08161271b565b92915050565b5f612d08612d0384612cb3565b612c99565b90508083825260208201905060208402830185811115612d2b57612d2a612cde565b5b835b81811015612d545780612d408882612ce2565b845260208401935050602081019050612d2d565b5050509392505050565b5f82601f830112612d7257612d71612c64565b5b8151612d82848260208601612cf6565b91505092915050565b5f60208284031215612da057612d9f6126b0565b5b5f82015167ffffffffffffffff811115612dbd57612dbc6126b4565b5b612dc984828501612d5e565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612e2c602583612607565b9150612e3782612dd2565b604082019050919050565b5f6020820190508181035f830152612e5981612e20565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612eba602683612607565b9150612ec582612e60565b604082019050919050565b5f6020820190508181035f830152612ee781612eae565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612f48602483612607565b9150612f5382612eee565b604082019050919050565b5f6020820190508181035f830152612f7581612f3c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612fd6602283612607565b9150612fe182612f7c565b604082019050919050565b5f6020820190508181035f83015261300381612fca565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61303e601d83612607565b91506130498261300a565b602082019050919050565b5f6020820190508181035f83015261306b81613032565b9050919050565b7f43616e6e6f7420706572666f726d206d6f7265207468616e206f6e65207472615f8201527f6e73616374696f6e20696e207468652073616d6520626c6f636b000000000000602082015250565b5f6130cc603a83612607565b91506130d782613072565b604082019050919050565b5f6020820190508181035f8301526130f9816130c0565b9050919050565b5f61310a82612712565b915061311583612712565b925082820261312381612712565b9150828204841483151761313a57613139612ac5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61317882612712565b915061318383612712565b92508261319357613192613141565b5b828204905092915050565b5f6131a882612712565b91506131b383612712565b92508282039050818111156131cb576131ca612ac5565b5b92915050565b5f819050919050565b5f6131f46131ef6131ea846131d1565b612897565b612712565b9050919050565b613204816131da565b82525050565b5f60a08201905061321d5f8301886127b6565b61322a60208301876131fb565b818103604083015261323c8186612bda565b905061324b6060830185612936565b61325860808301846127b6565b9695505050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613296602083612607565b91506132a182613262565b602082019050919050565b5f6020820190508181035f8301526132c38161328a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613324602583612607565b915061332f826132ca565b604082019050919050565b5f6020820190508181035f83015261335181613318565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6133b2602383612607565b91506133bd82613358565b604082019050919050565b5f6020820190508181035f8301526133df816133a6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613440602683612607565b915061344b826133e6565b604082019050919050565b5f6020820190508181035f83015261346d81613434565b9050919050565b5f6dffffffffffffffffffffffffffff82169050919050565b61349681613474565b81146134a0575f80fd5b50565b5f815190506134b18161348d565b92915050565b5f63ffffffff82169050919050565b6134cf816134b7565b81146134d9575f80fd5b50565b5f815190506134ea816134c6565b92915050565b5f805f60608486031215613507576135066126b0565b5b5f613514868287016134a3565b9350506020613525868287016134a3565b9250506040613536868287016134dc565b9150509250925092565b5f8151905061354e816126e8565b92915050565b5f60208284031215613569576135686126b0565b5b5f61357684828501613540565b91505092915050565b7f4d617820746f6b656e20706572207472616e73616374696f6e206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f6135d9602283612607565b91506135e48261357f565b604082019050919050565b5f6020820190508181035f830152613606816135cd565b9050919050565b7f4d617820746f6b656e207065722077616c6c65742065786365656465640000005f82015250565b5f613641601d83612607565b915061364c8261360d565b602082019050919050565b5f6020820190508181035f83015261366e81613635565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6136cf602183612607565b91506136da82613675565b604082019050919050565b5f6020820190508181035f8301526136fc816136c3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61375d602283612607565b915061376882613703565b604082019050919050565b5f6020820190508181035f83015261378a81613751565b905091905056fea2646970667358221220df9ce131ee5ffeec6577a5c50116371c5553b35ee52461fb42ee2af9d75cff4f64736f6c63430008180033

Deployed Bytecode Sourcemap

30225:6552:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36419:173;;;;;;;;;;;;;:::i;:::-;;9514:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11940:226;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10643:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12746:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10485:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13450:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30686:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30893:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30403:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35638:146;;;;;;;;;;;;;:::i;:::-;;30819:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35993:206;;;;;;;;;;;;;:::i;:::-;;10814:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2835:103;;;;;;;;;;;;;:::i;:::-;;35792:193;;;;;;;;;;;;;:::i;:::-;;36600:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2194:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32747:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9733:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14216:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30299:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30483:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11163:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30730:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30564:71;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30775:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36207:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11444:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30968:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3093:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30444:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36419:173;36477:11;;;;;;;;;;;36463:25;;:10;:25;;;36455:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36547:3;36528:16;;:22;;;;;;;;;;;;;;;;;;36581:3;36561:17;;:23;;;;;;;;;;;;;;;;;;36419:173::o;9514:100::-;9568:13;9601:5;9594:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9514:100;:::o;11940:226::-;12048:4;12065:13;12081:12;:10;:12::i;:::-;12065:28;;12104:32;12113:5;12120:7;12129:6;12104:8;:32::i;:::-;12154:4;12147:11;;;11940:226;;;;:::o;10643:108::-;10704:7;10731:12;;10724:19;;10643:108;:::o;12746:295::-;12877:4;12894:15;12912:12;:10;:12::i;:::-;12894:30;;12935:38;12951:4;12957:7;12966:6;12935:15;:38::i;:::-;12984:27;12994:4;13000:2;13004:6;12984:9;:27::i;:::-;13029:4;13022:11;;;12746:295;;;;;:::o;10485:93::-;10543:5;10568:2;10561:9;;10485:93;:::o;13450:263::-;13563:4;13580:13;13596:12;:10;:12::i;:::-;13580:28;;13619:64;13628:5;13635:7;13672:10;13644:25;13654:5;13661:7;13644:9;:25::i;:::-;:38;;;;:::i;:::-;13619:8;:64::i;:::-;13701:4;13694:11;;;13450:263;;;;:::o;30686:37::-;;;;;;;;;;;;;:::o;30893:66::-;;;;:::o;30403:34::-;;;;;;;;;;;;;:::o;35638:146::-;35700:11;;;;;;;;;;;35686:25;;:10;:25;;;35678:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;35751:25;:23;:25::i;:::-;35638:146::o;30819:67::-;;;;:::o;35993:206::-;36056:11;;;;;;;;;;;36042:25;;:10;:25;;;36034:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36126:1;36107:16;;:20;;;;;;;;;;;;;;;;;;36158:1;36138:17;;:21;;;;;;;;;;;;;;;;;;36190:1;36170:17;;:21;;;;;;;;;;;;;;;;;;35993:206::o;10814:143::-;10904:7;10931:9;:18;10941:7;10931:18;;;;;;;;;;;;;;;;10924:25;;10814:143;;;:::o;2835:103::-;2080:13;:11;:13::i;:::-;2900:30:::1;2927:1;2900:18;:30::i;:::-;2835:103::o:0;35792:193::-;35856:11;;;;;;;;;;;35842:25;;:10;:25;;;35834:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;35933:1;35907:23;:27;;;;35976:1;35945:28;:32;;;;35792:193::o;36600:174::-;36689:11;;;;;;;;;;;36675:25;;:10;:25;;;36667:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36754:12;36740:11;;:26;;;;;;;;;;;;;;;;;;36600:174;:::o;2194:87::-;2240:7;2267:6;;;;;;;;;;;2260:13;;2194:87;:::o;32747:412::-;32835:7;32855:21;32893:1;32879:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32855:40;;32924:4;32906;32911:1;32906:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32950:4;;;;;;;;;;;32940;32945:1;32940:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;32969:6;;;;;;;;;;;:20;;;32990:6;32998:4;32969:34;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32965:187;;33139:1;33132:8;;;;;32965:187;33085:10;33096:1;33085:13;;;;;;;;:::i;:::-;;;;;;;;33078:20;;;;32747:412;;;;:::o;9733:104::-;9789:13;9822:7;9815:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9733:104;:::o;14216:498::-;14334:4;14351:13;14367:12;:10;:12::i;:::-;14351:28;;14390:24;14417:25;14427:5;14434:7;14417:9;:25::i;:::-;14390:52;;14495:15;14475:16;:35;;14453:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14611:60;14620:5;14627:7;14655:15;14636:16;:34;14611:8;:60::i;:::-;14702:4;14695:11;;;;14216:498;;;;:::o;30299:95::-;30352:42;30299:95;:::o;30483:19::-;;;;;;;;;;;;;:::o;11163:218::-;11267:4;11284:13;11300:12;:10;:12::i;:::-;11284:28;;11323;11333:5;11340:2;11344:6;11323:9;:28::i;:::-;11369:4;11362:11;;;11163:218;;;;:::o;30730:38::-;;;;;;;;;;;;;:::o;30564:71::-;;;;;;;;;;;;;:::o;30775:35::-;;;;;;;;;;;;;:::o;36207:175::-;36295:11;;;;;;;;;;;36281:25;;:10;:25;;;36273:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36361:13;36346:12;:28;;;;36207:175;:::o;11444:176::-;11558:7;11585:11;:18;11597:5;11585:18;;;;;;;;;;;;;;;:27;11604:7;11585:27;;;;;;;;;;;;;;;;11578:34;;11444:176;;;;:::o;30968:48::-;;;;:::o;3093:238::-;2080:13;:11;:13::i;:::-;3216:1:::1;3196:22;;:8;:22;;::::0;3174:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3295:28;3314:8;3295:18;:28::i;:::-;3093:238:::0;:::o;30444:32::-;;;;;;;;;;;;;:::o;718:98::-;771:7;798:10;791:17;;718:98;:::o;18342:380::-;18495:1;18478:19;;:5;:19;;;18470:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18576:1;18557:21;;:7;:21;;;18549:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18660:6;18630:11;:18;18642:5;18630:18;;;;;;;;;;;;;;;:27;18649:7;18630:27;;;;;;;;;;;;;;;:36;;;;18698:7;18682:32;;18691:5;18682:32;;;18707:6;18682:32;;;;;;:::i;:::-;;;;;;;;18342:380;;;:::o;19013:502::-;19148:24;19175:25;19185:5;19192:7;19175:9;:25::i;:::-;19148:52;;19235:17;19215:16;:37;19211:297;;19315:6;19295:16;:26;;19269:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;19430:51;19439:5;19446:7;19474:6;19455:16;:25;19430:8;:51::i;:::-;19211:297;19137:378;19013:502;;;:::o;34175:1455::-;34294:4;34300:2;31872:8;:14;31881:4;31872:14;;;;;;;;;;;;;;;;31857:12;:29;:60;;;;31905:8;:12;31914:2;31905:12;;;;;;;;;;;;;;;;31890;:27;31857:60;31835:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;34341:7:::1;:5;:7::i;:::-;34333:15;;:4;:15;;;:45;;;;34371:7;:5;:7::i;:::-;34365:13;;:2;:13;;;34333:45;:81;;;;34403:11;;;;;;;;;;;34395:19;;:4;:19;;;34333:81;:115;;;;34437:11;;;;;;;;;;;34431:17;;:2;:17;;;34333:115;:138;;;;34465:6;;;;;;;;;;;34333:138;34315:1308;;;34498:33;34514:4;34520:2;34524:6;34498:15;:33::i;:::-;34315:1308;;;34564:21;34604:11:::0;34626:4:::1;;;;;;;;;;;34618:12;;:4;:12;;;:39;;;;;30352:42;34634:23;;:2;:23;;;;34618:39;34604:53;;34672:12;30352:42;34687:25;;:4;:25;;;;:39;;;;;34722:4;;;;;;;;;;;34716:10;;:2;:10;;;34687:39;34672:54;;34759:4;;;;;;;;;;;34745:18;;:10;:18;;;;:29;;;;;34768:6;;;;;;;;;;;34767:7;34745:29;34741:51;;;34776:16;:14;:16::i;:::-;34741:51;34811:6;34807:79;;;34854:16;;;;;;;;;;;34838:32;;;;34807:79;34904:7;34900:81;;;34948:17;;;;;;;;;;;34932:33;;;;34900:81;34995:17;35043:5;35025:13;35016:6;:22;;;;:::i;:::-;35015:34;;;;:::i;:::-;34995:54;;35064:21;35120:5;35098:17;;;;;;;;;;;35089:26;;:6;:26;;;;:::i;:::-;35088:38;;;;:::i;:::-;35064:62;;35141:19;35186:13;35174:9;:25;;;;:::i;:::-;35164:6;:36;;;;:::i;:::-;35141:60;;35251:1;35220:28;;:32;35216:96;;;35271:41;35305:6;35271:33;:41::i;:::-;35216:96;35331:6;:37;;;;;35367:1;35341:23;;:27;35331:37;35327:105;;;35387:45;35416:2;35420:11;35387:28;:45::i;:::-;35327:105;35467:1;35451:13;:17;35447:49;;;35470:26;35476:4;35482:13;35470:5;:26::i;:::-;35447:49;35511:47;35527:4;35541;35548:9;35511:15;:47::i;:::-;35573:38;35589:4;35595:2;35599:11;35573:15;:38::i;:::-;34549:1074;;;;;;34315:1308;32043:12:::0;32026:8;:14;32035:4;32026:14;;;;;;;;;;;;;;;:29;;;;32081:12;32066:8;:12;32075:2;32066:12;;;;;;;;;;;;;;;:27;;;;34175:1455;;;;;:::o;33167:485::-;31102:4;31093:6;;:13;;;;;;;;;;;;;;;;;;33233:16:::1;33252:24;33270:4;33252:9;:24::i;:::-;33233:43;;33287:21;33325:1;33311:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33287:40;;33356:4;33338;33343:1;33338:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;33382:4;;;;;;;;;;;33372;33377:1;33372:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;::::0;::::1;33397:6;;;;;;;;;;;:57;;;33469:8;33492:1;33508:4;33535;33555:15;33397:184;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;33600:11;;;;;;;;;;;33592:29;;:52;33622:21;33592:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;33222:430;;31138:5:::0;31129:6;;:14;;;;;;;;;;;;;;;;;;33167:485::o;2359:132::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2359:132::o;3491:191::-;3565:16;3584:6;;;;;;;;;;;3565:25;;3610:8;3601:6;;:17;;;;;;;;;;;;;;;;;;3665:8;3634:40;;3655:8;3634:40;;;;;;;;;;;;3554:128;3491:191;:::o;15184:877::-;15331:1;15315:18;;:4;:18;;;15307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15408:1;15394:16;;:2;:16;;;15386:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15463:38;15484:4;15490:2;15494:6;15463:20;:38::i;:::-;15514:19;15536:9;:15;15546:4;15536:15;;;;;;;;;;;;;;;;15514:37;;15599:6;15584:11;:21;;15562:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;15739:6;15725:11;:20;15707:9;:15;15717:4;15707:15;;;;;;;;;;;;;;;:38;;;;15942:6;15925:9;:13;15935:2;15925:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15992:2;15977:26;;15986:4;15977:26;;;15996:6;15977:26;;;;;;:::i;:::-;;;;;;;;16016:37;16036:4;16042:2;16046:6;16016:19;:37::i;:::-;15296:765;15184:877;;;:::o;33660:507::-;33705:19;33727:75;33767:24;33785:4;33767:9;:24::i;:::-;33727:25;:75::i;:::-;33705:97;;33814:16;33832;33854:12;;;;;;;;;;;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33813:67;;;;;33891:22;33953:4;;;;;;;;;;;33928:29;;:12;;;;;;;;;;;:19;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;;;33924:167;;33984:8;33976:17;;33959:34;;33924:167;;;34038:4;;;;;;;;;;;34013:29;;:12;;;;;;;;;;;:19;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;;;34009:82;;34082:8;34074:17;;34057:34;;34009:82;33924:167;34120:12;;34106:11;:26;34102:57;;;34134:25;:23;:25::i;:::-;34102:57;33694:473;;;;33660:507::o;32109:296::-;32210:7;:5;:7::i;:::-;32196:21;;:10;:21;;;;:52;;;;32243:4;32221:27;;:10;:27;;;;32196:52;32192:205;;;32299:28;;32289:6;:38;;32263:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;32192:205;32109:296;:::o;32413:326::-;32546:7;:5;:7::i;:::-;32532:21;;:10;:21;;;;:44;;;;32571:4;32557:19;;:2;:19;;;;32532:44;32528:203;;;32643:23;;32633:6;32617:13;32627:2;32617:9;:13::i;:::-;:22;;;;:::i;:::-;:49;;32591:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32528:203;32413:326;;:::o;17229:675::-;17332:1;17313:21;;:7;:21;;;17305:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17385:49;17406:7;17423:1;17427:6;17385:20;:49::i;:::-;17447:22;17472:9;:18;17482:7;17472:18;;;;;;;;;;;;;;;;17447:43;;17527:6;17509:14;:24;;17501:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17646:6;17629:14;:23;17608:9;:18;17618:7;17608:18;;;;;;;;;;;;;;;:44;;;;17763:6;17747:12;;:22;;;;;;;;;;;17824:1;17798:37;;17807:7;17798:37;;;17828:6;17798:37;;;;;;:::i;:::-;;;;;;;;17848:48;17868:7;17885:1;17889:6;17848:19;:48::i;:::-;17294:610;17229:675;;:::o;20115:125::-;;;;:::o;20844:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:89::-;4889:7;4929:6;4922:5;4918:18;4907:29;;4853:89;;;:::o;4948:115::-;5033:23;5050:5;5033:23;:::i;:::-;5028:3;5021:36;4948:115;;:::o;5069:218::-;5160:4;5198:2;5187:9;5183:18;5175:26;;5211:69;5277:1;5266:9;5262:17;5253:6;5211:69;:::i;:::-;5069:218;;;;:::o;5293:60::-;5321:3;5342:5;5335:12;;5293:60;;;:::o;5359:142::-;5409:9;5442:53;5460:34;5469:24;5487:5;5469:24;:::i;:::-;5460:34;:::i;:::-;5442:53;:::i;:::-;5429:66;;5359:142;;;:::o;5507:126::-;5557:9;5590:37;5621:5;5590:37;:::i;:::-;5577:50;;5507:126;;;:::o;5639:149::-;5712:9;5745:37;5776:5;5745:37;:::i;:::-;5732:50;;5639:149;;;:::o;5794:177::-;5904:60;5958:5;5904:60;:::i;:::-;5899:3;5892:73;5794:177;;:::o;5977:268::-;6093:4;6131:2;6120:9;6116:18;6108:26;;6144:94;6235:1;6224:9;6220:17;6211:6;6144:94;:::i;:::-;5977:268;;;;:::o;6251:329::-;6310:6;6359:2;6347:9;6338:7;6334:23;6330:32;6327:119;;;6365:79;;:::i;:::-;6327:119;6485:1;6510:53;6555:7;6546:6;6535:9;6531:22;6510:53;:::i;:::-;6500:63;;6456:117;6251:329;;;;:::o;6586:118::-;6673:24;6691:5;6673:24;:::i;:::-;6668:3;6661:37;6586:118;;:::o;6710:222::-;6803:4;6841:2;6830:9;6826:18;6818:26;;6854:71;6922:1;6911:9;6907:17;6898:6;6854:71;:::i;:::-;6710:222;;;;:::o;6938:329::-;6997:6;7046:2;7034:9;7025:7;7021:23;7017:32;7014:119;;;7052:79;;:::i;:::-;7014:119;7172:1;7197:53;7242:7;7233:6;7222:9;7218:22;7197:53;:::i;:::-;7187:63;;7143:117;6938:329;;;;:::o;7273:474::-;7341:6;7349;7398:2;7386:9;7377:7;7373:23;7369:32;7366:119;;;7404:79;;:::i;:::-;7366:119;7524:1;7549:53;7594:7;7585:6;7574:9;7570:22;7549:53;:::i;:::-;7539:63;;7495:117;7651:2;7677:53;7722:7;7713:6;7702:9;7698:22;7677:53;:::i;:::-;7667:63;;7622:118;7273:474;;;;;:::o;7753:153::-;7830:9;7863:37;7894:5;7863:37;:::i;:::-;7850:50;;7753:153;;;:::o;7912:185::-;8026:64;8084:5;8026:64;:::i;:::-;8021:3;8014:77;7912:185;;:::o;8103:276::-;8223:4;8261:2;8250:9;8246:18;8238:26;;8274:98;8369:1;8358:9;8354:17;8345:6;8274:98;:::i;:::-;8103:276;;;;:::o;8385:174::-;8525:26;8521:1;8513:6;8509:14;8502:50;8385:174;:::o;8565:366::-;8707:3;8728:67;8792:2;8787:3;8728:67;:::i;:::-;8721:74;;8804:93;8893:3;8804:93;:::i;:::-;8922:2;8917:3;8913:12;8906:19;;8565:366;;;:::o;8937:419::-;9103:4;9141:2;9130:9;9126:18;9118:26;;9190:9;9184:4;9180:20;9176:1;9165:9;9161:17;9154:47;9218:131;9344:4;9218:131;:::i;:::-;9210:139;;8937:419;;;:::o;9362:180::-;9410:77;9407:1;9400:88;9507:4;9504:1;9497:15;9531:4;9528:1;9521:15;9548:320;9592:6;9629:1;9623:4;9619:12;9609:22;;9676:1;9670:4;9666:12;9697:18;9687:81;;9753:4;9745:6;9741:17;9731:27;;9687:81;9815:2;9807:6;9804:14;9784:18;9781:38;9778:84;;9834:18;;:::i;:::-;9778:84;9599:269;9548:320;;;:::o;9874:180::-;9922:77;9919:1;9912:88;10019:4;10016:1;10009:15;10043:4;10040:1;10033:15;10060:191;10100:3;10119:20;10137:1;10119:20;:::i;:::-;10114:25;;10153:20;10171:1;10153:20;:::i;:::-;10148:25;;10196:1;10193;10189:9;10182:16;;10217:3;10214:1;10211:10;10208:36;;;10224:18;;:::i;:::-;10208:36;10060:191;;;;:::o;10257:180::-;10305:77;10302:1;10295:88;10402:4;10399:1;10392:15;10426:4;10423:1;10416:15;10443:180;10491:77;10488:1;10481:88;10588:4;10585:1;10578:15;10612:4;10609:1;10602:15;10629:114;10696:6;10730:5;10724:12;10714:22;;10629:114;;;:::o;10749:184::-;10848:11;10882:6;10877:3;10870:19;10922:4;10917:3;10913:14;10898:29;;10749:184;;;;:::o;10939:132::-;11006:4;11029:3;11021:11;;11059:4;11054:3;11050:14;11042:22;;10939:132;;;:::o;11077:108::-;11154:24;11172:5;11154:24;:::i;:::-;11149:3;11142:37;11077:108;;:::o;11191:179::-;11260:10;11281:46;11323:3;11315:6;11281:46;:::i;:::-;11359:4;11354:3;11350:14;11336:28;;11191:179;;;;:::o;11376:113::-;11446:4;11478;11473:3;11469:14;11461:22;;11376:113;;;:::o;11525:732::-;11644:3;11673:54;11721:5;11673:54;:::i;:::-;11743:86;11822:6;11817:3;11743:86;:::i;:::-;11736:93;;11853:56;11903:5;11853:56;:::i;:::-;11932:7;11963:1;11948:284;11973:6;11970:1;11967:13;11948:284;;;12049:6;12043:13;12076:63;12135:3;12120:13;12076:63;:::i;:::-;12069:70;;12162:60;12215:6;12162:60;:::i;:::-;12152:70;;12008:224;11995:1;11992;11988:9;11983:14;;11948:284;;;11952:14;12248:3;12241:10;;11649:608;;;11525:732;;;;:::o;12263:483::-;12434:4;12472:2;12461:9;12457:18;12449:26;;12485:71;12553:1;12542:9;12538:17;12529:6;12485:71;:::i;:::-;12603:9;12597:4;12593:20;12588:2;12577:9;12573:18;12566:48;12631:108;12734:4;12725:6;12631:108;:::i;:::-;12623:116;;12263:483;;;;;:::o;12752:117::-;12861:1;12858;12851:12;12875:281;12958:27;12980:4;12958:27;:::i;:::-;12950:6;12946:40;13088:6;13076:10;13073:22;13052:18;13040:10;13037:34;13034:62;13031:88;;;13099:18;;:::i;:::-;13031:88;13139:10;13135:2;13128:22;12918:238;12875:281;;:::o;13162:129::-;13196:6;13223:20;;:::i;:::-;13213:30;;13252:33;13280:4;13272:6;13252:33;:::i;:::-;13162:129;;;:::o;13297:311::-;13374:4;13464:18;13456:6;13453:30;13450:56;;;13486:18;;:::i;:::-;13450:56;13536:4;13528:6;13524:17;13516:25;;13596:4;13590;13586:15;13578:23;;13297:311;;;:::o;13614:117::-;13723:1;13720;13713:12;13737:143;13794:5;13825:6;13819:13;13810:22;;13841:33;13868:5;13841:33;:::i;:::-;13737:143;;;;:::o;13903:732::-;14010:5;14035:81;14051:64;14108:6;14051:64;:::i;:::-;14035:81;:::i;:::-;14026:90;;14136:5;14165:6;14158:5;14151:21;14199:4;14192:5;14188:16;14181:23;;14252:4;14244:6;14240:17;14232:6;14228:30;14281:3;14273:6;14270:15;14267:122;;;14300:79;;:::i;:::-;14267:122;14415:6;14398:231;14432:6;14427:3;14424:15;14398:231;;;14507:3;14536:48;14580:3;14568:10;14536:48;:::i;:::-;14531:3;14524:61;14614:4;14609:3;14605:14;14598:21;;14474:155;14458:4;14453:3;14449:14;14442:21;;14398:231;;;14402:21;14016:619;;13903:732;;;;;:::o;14658:385::-;14740:5;14789:3;14782:4;14774:6;14770:17;14766:27;14756:122;;14797:79;;:::i;:::-;14756:122;14907:6;14901:13;14932:105;15033:3;15025:6;15018:4;15010:6;15006:17;14932:105;:::i;:::-;14923:114;;14746:297;14658:385;;;;:::o;15049:554::-;15144:6;15193:2;15181:9;15172:7;15168:23;15164:32;15161:119;;;15199:79;;:::i;:::-;15161:119;15340:1;15329:9;15325:17;15319:24;15370:18;15362:6;15359:30;15356:117;;;15392:79;;:::i;:::-;15356:117;15497:89;15578:7;15569:6;15558:9;15554:22;15497:89;:::i;:::-;15487:99;;15290:306;15049:554;;;;:::o;15609:224::-;15749:34;15745:1;15737:6;15733:14;15726:58;15818:7;15813:2;15805:6;15801:15;15794:32;15609:224;:::o;15839:366::-;15981:3;16002:67;16066:2;16061:3;16002:67;:::i;:::-;15995:74;;16078:93;16167:3;16078:93;:::i;:::-;16196:2;16191:3;16187:12;16180:19;;15839:366;;;:::o;16211:419::-;16377:4;16415:2;16404:9;16400:18;16392:26;;16464:9;16458:4;16454:20;16450:1;16439:9;16435:17;16428:47;16492:131;16618:4;16492:131;:::i;:::-;16484:139;;16211:419;;;:::o;16636:225::-;16776:34;16772:1;16764:6;16760:14;16753:58;16845:8;16840:2;16832:6;16828:15;16821:33;16636:225;:::o;16867:366::-;17009:3;17030:67;17094:2;17089:3;17030:67;:::i;:::-;17023:74;;17106:93;17195:3;17106:93;:::i;:::-;17224:2;17219:3;17215:12;17208:19;;16867:366;;;:::o;17239:419::-;17405:4;17443:2;17432:9;17428:18;17420:26;;17492:9;17486:4;17482:20;17478:1;17467:9;17463:17;17456:47;17520:131;17646:4;17520:131;:::i;:::-;17512:139;;17239:419;;;:::o;17664:223::-;17804:34;17800:1;17792:6;17788:14;17781:58;17873:6;17868:2;17860:6;17856:15;17849:31;17664:223;:::o;17893:366::-;18035:3;18056:67;18120:2;18115:3;18056:67;:::i;:::-;18049:74;;18132:93;18221:3;18132:93;:::i;:::-;18250:2;18245:3;18241:12;18234:19;;17893:366;;;:::o;18265:419::-;18431:4;18469:2;18458:9;18454:18;18446:26;;18518:9;18512:4;18508:20;18504:1;18493:9;18489:17;18482:47;18546:131;18672:4;18546:131;:::i;:::-;18538:139;;18265:419;;;:::o;18690:221::-;18830:34;18826:1;18818:6;18814:14;18807:58;18899:4;18894:2;18886:6;18882:15;18875:29;18690:221;:::o;18917:366::-;19059:3;19080:67;19144:2;19139:3;19080:67;:::i;:::-;19073:74;;19156:93;19245:3;19156:93;:::i;:::-;19274:2;19269:3;19265:12;19258:19;;18917:366;;;:::o;19289:419::-;19455:4;19493:2;19482:9;19478:18;19470:26;;19542:9;19536:4;19532:20;19528:1;19517:9;19513:17;19506:47;19570:131;19696:4;19570:131;:::i;:::-;19562:139;;19289:419;;;:::o;19714:179::-;19854:31;19850:1;19842:6;19838:14;19831:55;19714:179;:::o;19899:366::-;20041:3;20062:67;20126:2;20121:3;20062:67;:::i;:::-;20055:74;;20138:93;20227:3;20138:93;:::i;:::-;20256:2;20251:3;20247:12;20240:19;;19899:366;;;:::o;20271:419::-;20437:4;20475:2;20464:9;20460:18;20452:26;;20524:9;20518:4;20514:20;20510:1;20499:9;20495:17;20488:47;20552:131;20678:4;20552:131;:::i;:::-;20544:139;;20271:419;;;:::o;20696:245::-;20836:34;20832:1;20824:6;20820:14;20813:58;20905:28;20900:2;20892:6;20888:15;20881:53;20696:245;:::o;20947:366::-;21089:3;21110:67;21174:2;21169:3;21110:67;:::i;:::-;21103:74;;21186:93;21275:3;21186:93;:::i;:::-;21304:2;21299:3;21295:12;21288:19;;20947:366;;;:::o;21319:419::-;21485:4;21523:2;21512:9;21508:18;21500:26;;21572:9;21566:4;21562:20;21558:1;21547:9;21543:17;21536:47;21600:131;21726:4;21600:131;:::i;:::-;21592:139;;21319:419;;;:::o;21744:410::-;21784:7;21807:20;21825:1;21807:20;:::i;:::-;21802:25;;21841:20;21859:1;21841:20;:::i;:::-;21836:25;;21896:1;21893;21889:9;21918:30;21936:11;21918:30;:::i;:::-;21907:41;;22097:1;22088:7;22084:15;22081:1;22078:22;22058:1;22051:9;22031:83;22008:139;;22127:18;;:::i;:::-;22008:139;21792:362;21744:410;;;;:::o;22160:180::-;22208:77;22205:1;22198:88;22305:4;22302:1;22295:15;22329:4;22326:1;22319:15;22346:185;22386:1;22403:20;22421:1;22403:20;:::i;:::-;22398:25;;22437:20;22455:1;22437:20;:::i;:::-;22432:25;;22476:1;22466:35;;22481:18;;:::i;:::-;22466:35;22523:1;22520;22516:9;22511:14;;22346:185;;;;:::o;22537:194::-;22577:4;22597:20;22615:1;22597:20;:::i;:::-;22592:25;;22631:20;22649:1;22631:20;:::i;:::-;22626:25;;22675:1;22672;22668:9;22660:17;;22699:1;22693:4;22690:11;22687:37;;;22704:18;;:::i;:::-;22687:37;22537:194;;;;:::o;22737:85::-;22782:7;22811:5;22800:16;;22737:85;;;:::o;22828:158::-;22886:9;22919:61;22937:42;22946:32;22972:5;22946:32;:::i;:::-;22937:42;:::i;:::-;22919:61;:::i;:::-;22906:74;;22828:158;;;:::o;22992:147::-;23087:45;23126:5;23087:45;:::i;:::-;23082:3;23075:58;22992:147;;:::o;23145:831::-;23408:4;23446:3;23435:9;23431:19;23423:27;;23460:71;23528:1;23517:9;23513:17;23504:6;23460:71;:::i;:::-;23541:80;23617:2;23606:9;23602:18;23593:6;23541:80;:::i;:::-;23668:9;23662:4;23658:20;23653:2;23642:9;23638:18;23631:48;23696:108;23799:4;23790:6;23696:108;:::i;:::-;23688:116;;23814:72;23882:2;23871:9;23867:18;23858:6;23814:72;:::i;:::-;23896:73;23964:3;23953:9;23949:19;23940:6;23896:73;:::i;:::-;23145:831;;;;;;;;:::o;23982:182::-;24122:34;24118:1;24110:6;24106:14;24099:58;23982:182;:::o;24170:366::-;24312:3;24333:67;24397:2;24392:3;24333:67;:::i;:::-;24326:74;;24409:93;24498:3;24409:93;:::i;:::-;24527:2;24522:3;24518:12;24511:19;;24170:366;;;:::o;24542:419::-;24708:4;24746:2;24735:9;24731:18;24723:26;;24795:9;24789:4;24785:20;24781:1;24770:9;24766:17;24759:47;24823:131;24949:4;24823:131;:::i;:::-;24815:139;;24542:419;;;:::o;24967:224::-;25107:34;25103:1;25095:6;25091:14;25084:58;25176:7;25171:2;25163:6;25159:15;25152:32;24967:224;:::o;25197:366::-;25339:3;25360:67;25424:2;25419:3;25360:67;:::i;:::-;25353:74;;25436:93;25525:3;25436:93;:::i;:::-;25554:2;25549:3;25545:12;25538:19;;25197:366;;;:::o;25569:419::-;25735:4;25773:2;25762:9;25758:18;25750:26;;25822:9;25816:4;25812:20;25808:1;25797:9;25793:17;25786:47;25850:131;25976:4;25850:131;:::i;:::-;25842:139;;25569:419;;;:::o;25994:222::-;26134:34;26130:1;26122:6;26118:14;26111:58;26203:5;26198:2;26190:6;26186:15;26179:30;25994:222;:::o;26222:366::-;26364:3;26385:67;26449:2;26444:3;26385:67;:::i;:::-;26378:74;;26461:93;26550:3;26461:93;:::i;:::-;26579:2;26574:3;26570:12;26563:19;;26222:366;;;:::o;26594:419::-;26760:4;26798:2;26787:9;26783:18;26775:26;;26847:9;26841:4;26837:20;26833:1;26822:9;26818:17;26811:47;26875:131;27001:4;26875:131;:::i;:::-;26867:139;;26594:419;;;:::o;27019:225::-;27159:34;27155:1;27147:6;27143:14;27136:58;27228:8;27223:2;27215:6;27211:15;27204:33;27019:225;:::o;27250:366::-;27392:3;27413:67;27477:2;27472:3;27413:67;:::i;:::-;27406:74;;27489:93;27578:3;27489:93;:::i;:::-;27607:2;27602:3;27598:12;27591:19;;27250:366;;;:::o;27622:419::-;27788:4;27826:2;27815:9;27811:18;27803:26;;27875:9;27869:4;27865:20;27861:1;27850:9;27846:17;27839:47;27903:131;28029:4;27903:131;:::i;:::-;27895:139;;27622:419;;;:::o;28047:114::-;28084:7;28124:30;28117:5;28113:42;28102:53;;28047:114;;;:::o;28167:122::-;28240:24;28258:5;28240:24;:::i;:::-;28233:5;28230:35;28220:63;;28279:1;28276;28269:12;28220:63;28167:122;:::o;28295:143::-;28352:5;28383:6;28377:13;28368:22;;28399:33;28426:5;28399:33;:::i;:::-;28295:143;;;;:::o;28444:93::-;28480:7;28520:10;28513:5;28509:22;28498:33;;28444:93;;;:::o;28543:120::-;28615:23;28632:5;28615:23;:::i;:::-;28608:5;28605:34;28595:62;;28653:1;28650;28643:12;28595:62;28543:120;:::o;28669:141::-;28725:5;28756:6;28750:13;28741:22;;28772:32;28798:5;28772:32;:::i;:::-;28669:141;;;;:::o;28816:661::-;28903:6;28911;28919;28968:2;28956:9;28947:7;28943:23;28939:32;28936:119;;;28974:79;;:::i;:::-;28936:119;29094:1;29119:64;29175:7;29166:6;29155:9;29151:22;29119:64;:::i;:::-;29109:74;;29065:128;29232:2;29258:64;29314:7;29305:6;29294:9;29290:22;29258:64;:::i;:::-;29248:74;;29203:129;29371:2;29397:63;29452:7;29443:6;29432:9;29428:22;29397:63;:::i;:::-;29387:73;;29342:128;28816:661;;;;;:::o;29483:143::-;29540:5;29571:6;29565:13;29556:22;;29587:33;29614:5;29587:33;:::i;:::-;29483:143;;;;:::o;29632:351::-;29702:6;29751:2;29739:9;29730:7;29726:23;29722:32;29719:119;;;29757:79;;:::i;:::-;29719:119;29877:1;29902:64;29958:7;29949:6;29938:9;29934:22;29902:64;:::i;:::-;29892:74;;29848:128;29632:351;;;;:::o;29989:221::-;30129:34;30125:1;30117:6;30113:14;30106:58;30198:4;30193:2;30185:6;30181:15;30174:29;29989:221;:::o;30216:366::-;30358:3;30379:67;30443:2;30438:3;30379:67;:::i;:::-;30372:74;;30455:93;30544:3;30455:93;:::i;:::-;30573:2;30568:3;30564:12;30557:19;;30216:366;;;:::o;30588:419::-;30754:4;30792:2;30781:9;30777:18;30769:26;;30841:9;30835:4;30831:20;30827:1;30816:9;30812:17;30805:47;30869:131;30995:4;30869:131;:::i;:::-;30861:139;;30588:419;;;:::o;31013:179::-;31153:31;31149:1;31141:6;31137:14;31130:55;31013:179;:::o;31198:366::-;31340:3;31361:67;31425:2;31420:3;31361:67;:::i;:::-;31354:74;;31437:93;31526:3;31437:93;:::i;:::-;31555:2;31550:3;31546:12;31539:19;;31198:366;;;:::o;31570:419::-;31736:4;31774:2;31763:9;31759:18;31751:26;;31823:9;31817:4;31813:20;31809:1;31798:9;31794:17;31787:47;31851:131;31977:4;31851:131;:::i;:::-;31843:139;;31570:419;;;:::o;31995:220::-;32135:34;32131:1;32123:6;32119:14;32112:58;32204:3;32199:2;32191:6;32187:15;32180:28;31995:220;:::o;32221:366::-;32363:3;32384:67;32448:2;32443:3;32384:67;:::i;:::-;32377:74;;32460:93;32549:3;32460:93;:::i;:::-;32578:2;32573:3;32569:12;32562:19;;32221:366;;;:::o;32593:419::-;32759:4;32797:2;32786:9;32782:18;32774:26;;32846:9;32840:4;32836:20;32832:1;32821:9;32817:17;32810:47;32874:131;33000:4;32874:131;:::i;:::-;32866:139;;32593:419;;;:::o;33018:221::-;33158:34;33154:1;33146:6;33142:14;33135:58;33227:4;33222:2;33214:6;33210:15;33203:29;33018:221;:::o;33245:366::-;33387:3;33408:67;33472:2;33467:3;33408:67;:::i;:::-;33401:74;;33484:93;33573:3;33484:93;:::i;:::-;33602:2;33597:3;33593:12;33586:19;;33245:366;;;:::o;33617:419::-;33783:4;33821:2;33810:9;33806:18;33798:26;;33870:9;33864:4;33860:20;33856:1;33845:9;33841:17;33834:47;33898:131;34024:4;33898:131;:::i;:::-;33890:139;;33617:419;;;:::o

Swarm Source

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