ETH Price: $2,871.02 (-5.91%)
Gas: 1 Gwei

Token

NZARU (NZARU)
 

Overview

Max Total Supply

10,000,000,000 NZARU

Holders

98

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.536834596028077731 NZARU

Value
$0.00
0x48f98763e2bee82463ddbf9a4dac7b04a2b2c6e2
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:
NZARU

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

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: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

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-periphery/contracts/interfaces/IUniswapV2Router01.sol

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/IUniswapV2Router02.sol

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: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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











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


// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        if (amount > 0) {

        emit Transfer(sender, recipient, amount);}

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: contracts/test.sol


pragma solidity ^0.8.16;


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

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;
   
    struct BuyFee {
        
        uint16 devFee;
    }

    struct SellFee {
        
        uint16 devFee;
    }

    bool private swapping;

    BuyFee public buyFee;
    SellFee public sellFee;

    

    uint256 public swapTokensAtAmount = 4 * 10**10 * 10**18; 


    uint256 public maxBuyAmount = 2 * 10**10 * 10**18; 
    uint256 public maxSellAmount = 2 * 10**10 * 10**18; 
    uint256 public maxWalletAmount = 2 * 10**10 * 10**18;

    uint16 private totalBuyFee;
    uint16 private totalSellFee;
    

    bool public swapEnabled;
    bool private isTradingEnabled;
   

    address payable devWallet = payable(address(0xb70B90C114Fcb1Ba0f4bA65d4029e9e1c2d67164)); 
   
   
    

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromLimit;
    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("NZARU", "NZARU") {
       
        buyFee.devFee = 10;
        totalBuyFee = 10; 

        
        sellFee.devFee = 30;
        totalSellFee = 30;

        

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D// Uniswap V2 Router
        );
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

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

        swapEnabled = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 1 * 10**10 * (10**18)); // 10 Billion Tokens
    }

    receive() external payable {}

    function updateRouter(address newAddress) external onlyOwner {
    require(newAddress != address(uniswapV2Router), "ERC20: The router already has that address");
            uniswapV2Router = IUniswapV2Router02(newAddress);
         address get_pair =
            IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this),
            uniswapV2Router.WETH());
        if (get_pair == address(0)) {
          uniswapV2Pair =
            IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),
             uniswapV2Router.WETH());
    } else {
        uniswapV2Pair = get_pair;
        }
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "ERC20: Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

     function claimStuckTokens(address _token) external onlyOwner {
        require(_token != address(this), "No rugs");
        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }
        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }

    function excludefromLimit(address account, bool excluded)
        external
        onlyOwner
    {
        _isExcludedFromLimit[account] = excluded;
    }


   function enableTrading() external onlyOwner {
        isTradingEnabled = true;
       
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "ERC20: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }
            
    function setBuyFees(
        uint16 newBuyFee
        ) external onlyOwner

    {
        buyFee.devFee = newBuyFee;
         totalBuyFee = newBuyFee;
        require(totalBuyFee <= 5,
         "MaX buy fees limit  is 5%");
    }

   
    function setSellFee(
        uint16 newSellFee
        
    ) external onlyOwner  {
        sellFee.devFee = newSellFee;
        totalSellFee = newSellFee;
        require (totalSellFee <= 30, "Max sell fees limit is 30%");
    }

                    

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

    // function to change dev wallet
    function setDevWallet(address newWallet) external onlyOwner {
    require (newWallet != address(0), "Dev wallet can not be a zero address");
        devWallet = payable(newWallet);
    }
  
    // Function to set Max Wallet limit ( How many tokens a wallet can hold)
    function setMaxWallet(uint256 amount) external onlyOwner {
        require(amount > 20000000, "Can't set lower amount, No rugPull");
        maxWalletAmount = amount * 10**18;
    }
    // // function to set Max Buy limit per transaction
    function setMaxBuyAmount(uint256 amount) external onlyOwner {
      require(amount >= 20000000, "Can't set lower amount, No rugPull");
        maxBuyAmount = amount * 10**18;
    }
    // function to set Max sell limit per transaction
    function setMaxSellAmount(uint256 amount) external onlyOwner {
        require(amount >= 20000000, "Can't set lower amount, No rugPull");
        maxSellAmount = amount * 10**18;
    }

    // function to set threshold for eth conversion
   function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
       swapTokensAtAmount =  amount * 10**18;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "Token: transfer from the zero address");
        require(to != address(0), "Token: transfer to the zero address");
       
        require( isTradingEnabled || _isExcludedFromFees[from],
            "Trading not enabled yet"
        );

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

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

        if (
            swapEnabled &&
            !swapping &&
            from != uniswapV2Pair &&
            overMinimumTokenBalance
        ) {
            
            uint256 swapTokens = contractTokenBalance;
            swapAndSendToDev(swapTokens);

        }

        bool takeFee = true;

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

        if (takeFee) {
            uint256 fees;

          

            if (automatedMarketMakerPairs[to]) {
                fees = totalSellFee;
            } else if (automatedMarketMakerPairs[from]) {
                fees = totalBuyFee;
            }

            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                if (automatedMarketMakerPairs[to]) {
                    require(amount <= maxSellAmount, "Sell exceeds per transaction limit");
                } else if (automatedMarketMakerPairs[from]) {
                  require(amount <= maxBuyAmount, "Buy exceeds per transaction limit");
                   
                }

                if (!automatedMarketMakerPairs[to]) {
                    require(
                        balanceOf(to) + amount <= maxWalletAmount,
                        "Antiwhale: Balance exceeds limit"
                    );
                }
            }

            uint256 feeAmount = amount.mul(fees).div(100);
            amount = amount.sub(feeAmount);

            super._transfer(from, address(this), feeAmount);
        }

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

    function swapAndSendToDev (uint256 tokens) private lockTheSwap {
        uint256 initialBalance = address(this).balance;
        swapTokensForEth(tokens);
        uint256 newBalance = address(this).balance.sub(initialBalance);

        
       (bool os, ) = payable(devWallet).call{value: newBalance}("");
       require(os,"transaction failed");

    }
   

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

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

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

        );
    }
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"devFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludefromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"devFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newBuyFee","type":"uint16"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newSellFee","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526b813f3978f894098440000000600a556b409f9cbc7c4a04c220000000600b556b409f9cbc7c4a04c220000000600c556b409f9cbc7c4a04c220000000600d5573b70b90c114fcb1ba0f4ba65d4029e9e1c2d67164600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a657600080fd5b506040518060400160405280600581526020017f4e5a4152550000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4e5a415255000000000000000000000000000000000000000000000000000000815250816003908162000124919062000c6c565b50806004908162000136919062000c6c565b505050620001596200014d6200047360201b60201c565b6200047b60201b60201c565b600a600860000160006101000a81548161ffff021916908361ffff160217905550600a600e60006101000a81548161ffff021916908361ffff160217905550601e600960000160006101000a81548161ffff021916908361ffff160217905550601e600e60026101000a81548161ffff021916908361ffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000264919062000dbd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f2919062000dbd565b6040518363ffffffff1660e01b81526004016200031192919062000e00565b6020604051808303816000875af115801562000331573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000357919062000dbd565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ee8160016200054160201b60201c565b62000410620004026200067760201b60201c565b6001620006a160201b60201c565b62000423306001620006a160201b60201c565b6001600e60046101000a81548160ff0219169083151502179055506200046b620004526200067760201b60201c565b6b204fce5e3e250261100000006200087060201b60201c565b505062001124565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620005d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005cd9062000eb4565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006b16200047360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d76200067760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007279062000f26565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620007c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007bc9062000fbe565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000864919062000ffd565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d9906200106a565b60405180910390fd5b620008f660008383620009e860201b60201c565b80600260008282546200090a9190620010bb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009619190620010bb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009c8919062001107565b60405180910390a3620009e460008383620009ed60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a7457607f821691505b60208210810362000a8a5762000a8962000a2c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000af47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ab5565b62000b00868362000ab5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b4d62000b4762000b418462000b18565b62000b22565b62000b18565b9050919050565b6000819050919050565b62000b698362000b2c565b62000b8162000b788262000b54565b84845462000ac2565b825550505050565b600090565b62000b9862000b89565b62000ba581848462000b5e565b505050565b5b8181101562000bcd5762000bc160008262000b8e565b60018101905062000bab565b5050565b601f82111562000c1c5762000be68162000a90565b62000bf18462000aa5565b8101602085101562000c01578190505b62000c1962000c108562000aa5565b83018262000baa565b50505b505050565b600082821c905092915050565b600062000c416000198460080262000c21565b1980831691505092915050565b600062000c5c838362000c2e565b9150826002028217905092915050565b62000c7782620009f2565b67ffffffffffffffff81111562000c935762000c92620009fd565b5b62000c9f825462000a5b565b62000cac82828562000bd1565b600060209050601f83116001811462000ce4576000841562000ccf578287015190505b62000cdb858262000c4e565b86555062000d4b565b601f19841662000cf48662000a90565b60005b8281101562000d1e5784890151825560018201915060208501945060208101905062000cf7565b8683101562000d3e578489015162000d3a601f89168262000c2e565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d858262000d58565b9050919050565b62000d978162000d78565b811462000da357600080fd5b50565b60008151905062000db78162000d8c565b92915050565b60006020828403121562000dd65762000dd562000d53565b5b600062000de68482850162000da6565b91505092915050565b62000dfa8162000d78565b82525050565b600060408201905062000e17600083018562000def565b62000e26602083018462000def565b9392505050565b600082825260208201905092915050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b600062000e9c603f8362000e2d565b915062000ea98262000e3e565b604082019050919050565b6000602082019050818103600083015262000ecf8162000e8d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f0e60208362000e2d565b915062000f1b8262000ed6565b602082019050919050565b6000602082019050818103600083015262000f418162000eff565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b600062000fa660318362000e2d565b915062000fb38262000f48565b604082019050919050565b6000602082019050818103600083015262000fd98162000f97565b9050919050565b60008115159050919050565b62000ff78162000fe0565b82525050565b600060208201905062001014600083018462000fec565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001052601f8362000e2d565b91506200105f826200101a565b602082019050919050565b60006020820190508181036000830152620010858162001043565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010c88262000b18565b9150620010d58362000b18565b9250828201905080821115620010f057620010ef6200108c565b5b92915050565b620011018162000b18565b82525050565b60006020820190506200111e6000830184620010f6565b92915050565b614af780620011346000396000f3fe6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f4560514610828578063e99c9d0914610853578063f2fde38b1461087c578063f34eb0b8146108a5578063f9d0831a146108ce57610230565b8063b62496f514610733578063c024666814610770578063c851cc3214610799578063dd62ed3e146107c2578063e064648a146107ff57610230565b80639a7a23d6116100f25780639a7a23d61461063c578063a457c2d714610665578063a9059cbb146106a2578063aa4bde28146106df578063afa4f3b21461070a57610230565b806388e765ff146105a45780638a8c523c146105cf5780638da5cb5b146105e657806395d89b411461061157610230565b806343c348a5116101b157806366d602ae1161017557806366d602ae146104d15780636ddd1713146104fc57806370a0823114610527578063715018a6146105645780637537a47f1461057b57610230565b806343c348a5146103ec578063470624021461041557806349bd5a5e146104405780634fbee1931461046b5780635d0044ca146104a857610230565b80631f53ac02116101f85780631f53ac02146102f357806323b872dd1461031c5780632b14ca5614610359578063313ce5671461038457806339509351146103af57610230565b806306fdde0314610235578063095ea7b3146102605780631694505e1461029d57806318160ddd146102c857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f7565b604051610257919061349b565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190613556565b610989565b60405161029491906135b1565b60405180910390f35b3480156102a957600080fd5b506102b26109a7565b6040516102bf919061362b565b60405180910390f35b3480156102d457600080fd5b506102dd6109cd565b6040516102ea9190613655565b60405180910390f35b3480156102ff57600080fd5b5061031a60048036038101906103159190613670565b6109d7565b005b34801561032857600080fd5b50610343600480360381019061033e919061369d565b610b06565b60405161035091906135b1565b60405180910390f35b34801561036557600080fd5b5061036e610bfe565b60405161037b919061370d565b60405180910390f35b34801561039057600080fd5b50610399610c18565b6040516103a69190613744565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613556565b610c21565b6040516103e391906135b1565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e919061378b565b610ccd565b005b34801561042157600080fd5b5061042a610de1565b604051610437919061370d565b60405180910390f35b34801561044c57600080fd5b50610455610dfb565b60405161046291906137c7565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190613670565b610e21565b60405161049f91906135b1565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca91906137e2565b610e77565b005b3480156104dd57600080fd5b506104e6610f56565b6040516104f39190613655565b60405180910390f35b34801561050857600080fd5b50610511610f5c565b60405161051e91906135b1565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190613670565b610f6f565b60405161055b9190613655565b60405180910390f35b34801561057057600080fd5b50610579610fb7565b005b34801561058757600080fd5b506105a2600480360381019061059d919061383b565b61103f565b005b3480156105b057600080fd5b506105b9611116565b6040516105c69190613655565b60405180910390f35b3480156105db57600080fd5b506105e461111c565b005b3480156105f257600080fd5b506105fb6111b5565b60405161060891906137c7565b60405180910390f35b34801561061d57600080fd5b506106266111df565b604051610633919061349b565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e919061383b565b611271565b005b34801561067157600080fd5b5061068c60048036038101906106879190613556565b61138b565b60405161069991906135b1565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613556565b611476565b6040516106d691906135b1565b60405180910390f35b3480156106eb57600080fd5b506106f4611494565b6040516107019190613655565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906137e2565b61149a565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613670565b611533565b60405161076791906135b1565b60405180910390f35b34801561077c57600080fd5b506107976004803603810190610792919061383b565b611553565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190613670565b61170a565b005b3480156107ce57600080fd5b506107e960048036038101906107e4919061387b565b611c54565b6040516107f69190613655565b60405180910390f35b34801561080b57600080fd5b506108266004803603810190610821919061378b565b611cdb565b005b34801561083457600080fd5b5061083d611def565b60405161084a9190613655565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906137e2565b611df5565b005b34801561088857600080fd5b506108a3600480360381019061089e9190613670565b611ed5565b005b3480156108b157600080fd5b506108cc60048036038101906108c791906137e2565b611fcc565b005b3480156108da57600080fd5b506108f560048036038101906108f09190613670565b6120ac565b005b606060038054610906906138ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906138ea565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600061099d61099661232c565b8484612334565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6109df61232c565b73ffffffffffffffffffffffffffffffffffffffff166109fd6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613967565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906139f9565b60405180910390fd5b80600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b138484846124fd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5e61232c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613a8b565b60405180910390fd5b610bf285610bea61232c565b858403612334565b60019150509392505050565b60098060000160009054906101000a900461ffff16905081565b60006012905090565b6000610cc3610c2e61232c565b848460016000610c3c61232c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cbe9190613ada565b612334565b6001905092915050565b610cd561232c565b73ffffffffffffffffffffffffffffffffffffffff16610cf36111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613967565b60405180910390fd5b80600860000160006101000a81548161ffff021916908361ffff16021790555080600e60006101000a81548161ffff021916908361ffff1602179055506005600e60009054906101000a900461ffff1661ffff161115610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613b5a565b60405180910390fd5b50565b60088060000160009054906101000a900461ffff16905081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e7f61232c565b73ffffffffffffffffffffffffffffffffffffffff16610e9d6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613967565b60405180910390fd5b6301312d008111610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090613bec565b60405180910390fd5b670de0b6b3a764000081610f4d9190613c0c565b600d8190555050565b600c5481565b600e60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fbf61232c565b73ffffffffffffffffffffffffffffffffffffffff16610fdd6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613967565b60405180910390fd5b61103d6000612bcb565b565b61104761232c565b73ffffffffffffffffffffffffffffffffffffffff166110656111b5565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290613967565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b61112461232c565b73ffffffffffffffffffffffffffffffffffffffff166111426111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90613967565b60405180910390fd5b6001600e60056101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111ee906138ea565b80601f016020809104026020016040519081016040528092919081815260200182805461121a906138ea565b80156112675780601f1061123c57610100808354040283529160200191611267565b820191906000526020600020905b81548152906001019060200180831161124a57829003601f168201915b5050505050905090565b61127961232c565b73ffffffffffffffffffffffffffffffffffffffff166112976111b5565b73ffffffffffffffffffffffffffffffffffffffff16146112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613967565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613ce6565b60405180910390fd5b6113878282612c91565b5050565b6000806001600061139a61232c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90613d78565b60405180910390fd5b61146b61146261232c565b85858403612334565b600191505092915050565b600061148a61148361232c565b84846124fd565b6001905092915050565b600d5481565b6114a261232c565b73ffffffffffffffffffffffffffffffffffffffff166114c06111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613967565b60405180910390fd5b670de0b6b3a76400008161152a9190613c0c565b600a8190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b61155b61232c565b73ffffffffffffffffffffffffffffffffffffffff166115796111b5565b73ffffffffffffffffffffffffffffffffffffffff16146115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613967565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890613e0a565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116fe91906135b1565b60405180910390a25050565b61171261232c565b73ffffffffffffffffffffffffffffffffffffffff166117306111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90613967565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613e9c565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ea9190613ed1565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611973573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119979190613ed1565b6040518363ffffffff1660e01b81526004016119b4929190613efe565b602060405180830381865afa1580156119d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f59190613ed1565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c0e57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abc9190613ed1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b699190613ed1565b6040518363ffffffff1660e01b8152600401611b86929190613efe565b6020604051808303816000875af1158015611ba5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc99190613ed1565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c50565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ce361232c565b73ffffffffffffffffffffffffffffffffffffffff16611d016111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90613967565b60405180910390fd5b80600960000160006101000a81548161ffff021916908361ffff16021790555080600e60026101000a81548161ffff021916908361ffff160217905550601e600e60029054906101000a900461ffff1661ffff161115611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390613f73565b60405180910390fd5b50565b600a5481565b611dfd61232c565b73ffffffffffffffffffffffffffffffffffffffff16611e1b6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890613967565b60405180910390fd5b6301312d00811015611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90613bec565b60405180910390fd5b670de0b6b3a764000081611ecc9190613c0c565b600c8190555050565b611edd61232c565b73ffffffffffffffffffffffffffffffffffffffff16611efb6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890613967565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb790614005565b60405180910390fd5b611fc981612bcb565b50565b611fd461232c565b73ffffffffffffffffffffffffffffffffffffffff16611ff26111b5565b73ffffffffffffffffffffffffffffffffffffffff1614612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613967565b60405180910390fd5b6301312d0081101561208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690613bec565b60405180910390fd5b670de0b6b3a7640000816120a39190613c0c565b600b8190555050565b6120b461232c565b73ffffffffffffffffffffffffffffffffffffffff166120d26111b5565b73ffffffffffffffffffffffffffffffffffffffff1614612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f90613967565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d90614071565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361221d576121d26111b5565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612217573d6000803e3d6000fd5b50612329565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161225d91906137c7565b602060405180830381865afa15801561227a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229e91906140a6565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122c46111b5565b836040518363ffffffff1660e01b81526004016122e29291906140d3565b6020604051808303816000875af1158015612301573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123259190614111565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a906141b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240990614242565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124f09190613655565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361256c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612563906142d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d290614366565b60405180910390fd5b600e60059054906101000a900460ff168061263f5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61267e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612675906143d2565b60405180910390fd5b600081036126975761269283836000612dc4565b612bc6565b60006126a230610f6f565b90506000600a548210159050600e60049054906101000a900460ff1680156126d75750600760149054906101000a900460ff16155b80156127315750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561273a5750805b1561274f57600082905061274d8161304d565b505b600060019050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127f65750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561280057600090505b8015612bb7576000601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561287657600e60029054906101000a900461ffff1661ffff1690506128e1565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128e057600e60009054906101000a900461ffff1661ffff1690505b5b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129855750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b6a57601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a2657600c54851115612a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1890614464565b60405180910390fd5b612abf565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612abe57600b54851115612abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab4906144f6565b60405180910390fd5b5b5b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b6957600d5485612b1d88610f6f565b612b279190613ada565b1115612b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5f90614562565b60405180910390fd5b5b5b6000612b926064612b84848961317c90919063ffffffff16565b61319290919063ffffffff16565b9050612ba781876131a890919063ffffffff16565b9550612bb4883083612dc4565b50505b612bc2868686612dc4565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1a906145f4565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a90614686565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9990614718565b60405180910390fd5b612ead8383836131be565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2a906147aa565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc69190613ada565b92505081905550600082111561303c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130339190613655565b60405180910390a35b6130478484846131c3565b50505050565b6001600760146101000a81548160ff0219169083151502179055506000479050613076826131c8565b600061308b82476131a890919063ffffffff16565b90506000600e60069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130d5906147fb565b60006040518083038185875af1925050503d8060008114613112576040519150601f19603f3d011682016040523d82523d6000602084013e613117565b606091505b505090508061315b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131529061485c565b60405180910390fd5b5050506000600760146101000a81548160ff02191690831515021790555050565b6000818361318a9190613c0c565b905092915050565b600081836131a091906148ab565b905092915050565b600081836131b691906148dc565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156131e5576131e4614910565b5b6040519080825280602002602001820160405280156132135781602001602082028036833780820191505090505b509050308160008151811061322b5761322a61493f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f69190613ed1565b8160018151811061330a5761330961493f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061337130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612334565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133d5959493929190614a67565b600060405180830381600087803b1580156133ef57600080fd5b505af1158015613403573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561344557808201518184015260208101905061342a565b60008484015250505050565b6000601f19601f8301169050919050565b600061346d8261340b565b6134778185613416565b9350613487818560208601613427565b61349081613451565b840191505092915050565b600060208201905081810360008301526134b58184613462565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ed826134c2565b9050919050565b6134fd816134e2565b811461350857600080fd5b50565b60008135905061351a816134f4565b92915050565b6000819050919050565b61353381613520565b811461353e57600080fd5b50565b6000813590506135508161352a565b92915050565b6000806040838503121561356d5761356c6134bd565b5b600061357b8582860161350b565b925050602061358c85828601613541565b9150509250929050565b60008115159050919050565b6135ab81613596565b82525050565b60006020820190506135c660008301846135a2565b92915050565b6000819050919050565b60006135f16135ec6135e7846134c2565b6135cc565b6134c2565b9050919050565b6000613603826135d6565b9050919050565b6000613615826135f8565b9050919050565b6136258161360a565b82525050565b6000602082019050613640600083018461361c565b92915050565b61364f81613520565b82525050565b600060208201905061366a6000830184613646565b92915050565b600060208284031215613686576136856134bd565b5b60006136948482850161350b565b91505092915050565b6000806000606084860312156136b6576136b56134bd565b5b60006136c48682870161350b565b93505060206136d58682870161350b565b92505060406136e686828701613541565b9150509250925092565b600061ffff82169050919050565b613707816136f0565b82525050565b600060208201905061372260008301846136fe565b92915050565b600060ff82169050919050565b61373e81613728565b82525050565b60006020820190506137596000830184613735565b92915050565b613768816136f0565b811461377357600080fd5b50565b6000813590506137858161375f565b92915050565b6000602082840312156137a1576137a06134bd565b5b60006137af84828501613776565b91505092915050565b6137c1816134e2565b82525050565b60006020820190506137dc60008301846137b8565b92915050565b6000602082840312156137f8576137f76134bd565b5b600061380684828501613541565b91505092915050565b61381881613596565b811461382357600080fd5b50565b6000813590506138358161380f565b92915050565b60008060408385031215613852576138516134bd565b5b60006138608582860161350b565b925050602061387185828601613826565b9150509250929050565b60008060408385031215613892576138916134bd565b5b60006138a08582860161350b565b92505060206138b18582860161350b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061390257607f821691505b602082108103613915576139146138bb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613951602083613416565b915061395c8261391b565b602082019050919050565b6000602082019050818103600083015261398081613944565b9050919050565b7f4465762077616c6c65742063616e206e6f742062652061207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139e3602483613416565b91506139ee82613987565b604082019050919050565b60006020820190508181036000830152613a12816139d6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a75602883613416565b9150613a8082613a19565b604082019050919050565b60006020820190508181036000830152613aa481613a68565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ae582613520565b9150613af083613520565b9250828201905080821115613b0857613b07613aab565b5b92915050565b7f4d6158206275792066656573206c696d69742020697320352500000000000000600082015250565b6000613b44601983613416565b9150613b4f82613b0e565b602082019050919050565b60006020820190508181036000830152613b7381613b37565b9050919050565b7f43616e277420736574206c6f77657220616d6f756e742c204e6f20727567507560008201527f6c6c000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd6602283613416565b9150613be182613b7a565b604082019050919050565b60006020820190508181036000830152613c0581613bc9565b9050919050565b6000613c1782613520565b9150613c2283613520565b9250828202613c3081613520565b91508282048414831517613c4757613c46613aab565b5b5092915050565b7f45524332303a2054686520556e697377617020706169722063616e6e6f74206260008201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d6160208201527f6b65725061697273000000000000000000000000000000000000000000000000604082015250565b6000613cd0604883613416565b9150613cdb82613c4e565b606082019050919050565b60006020820190508181036000830152613cff81613cc3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613d62602583613416565b9150613d6d82613d06565b604082019050919050565b60006020820190508181036000830152613d9181613d55565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b6000613df4603183613416565b9150613dff82613d98565b604082019050919050565b60006020820190508181036000830152613e2381613de7565b9050919050565b7f45524332303a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e86602a83613416565b9150613e9182613e2a565b604082019050919050565b60006020820190508181036000830152613eb581613e79565b9050919050565b600081519050613ecb816134f4565b92915050565b600060208284031215613ee757613ee66134bd565b5b6000613ef584828501613ebc565b91505092915050565b6000604082019050613f1360008301856137b8565b613f2060208301846137b8565b9392505050565b7f4d61782073656c6c2066656573206c696d697420697320333025000000000000600082015250565b6000613f5d601a83613416565b9150613f6882613f27565b602082019050919050565b60006020820190508181036000830152613f8c81613f50565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fef602683613416565b9150613ffa82613f93565b604082019050919050565b6000602082019050818103600083015261401e81613fe2565b9050919050565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b600061405b600783613416565b915061406682614025565b602082019050919050565b6000602082019050818103600083015261408a8161404e565b9050919050565b6000815190506140a08161352a565b92915050565b6000602082840312156140bc576140bb6134bd565b5b60006140ca84828501614091565b91505092915050565b60006040820190506140e860008301856137b8565b6140f56020830184613646565b9392505050565b60008151905061410b8161380f565b92915050565b600060208284031215614127576141266134bd565b5b6000614135848285016140fc565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061419a602483613416565b91506141a58261413e565b604082019050919050565b600060208201905081810360008301526141c98161418d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061422c602283613416565b9150614237826141d0565b604082019050919050565b6000602082019050818103600083015261425b8161421f565b9050919050565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142be602583613416565b91506142c982614262565b604082019050919050565b600060208201905081810360008301526142ed816142b1565b9050919050565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614350602383613416565b915061435b826142f4565b604082019050919050565b6000602082019050818103600083015261437f81614343565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006143bc601783613416565b91506143c782614386565b602082019050919050565b600060208201905081810360008301526143eb816143af565b9050919050565b7f53656c6c206578636565647320706572207472616e73616374696f6e206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600061444e602283613416565b9150614459826143f2565b604082019050919050565b6000602082019050818103600083015261447d81614441565b9050919050565b7f427579206578636565647320706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006144e0602183613416565b91506144eb82614484565b604082019050919050565b6000602082019050818103600083015261450f816144d3565b9050919050565b7f416e74697768616c653a2042616c616e63652065786365656473206c696d6974600082015250565b600061454c602083613416565b915061455782614516565b602082019050919050565b6000602082019050818103600083015261457b8161453f565b9050919050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006145de603f83613416565b91506145e982614582565b604082019050919050565b6000602082019050818103600083015261460d816145d1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614670602583613416565b915061467b82614614565b604082019050919050565b6000602082019050818103600083015261469f81614663565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614702602383613416565b915061470d826146a6565b604082019050919050565b60006020820190508181036000830152614731816146f5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614794602683613416565b915061479f82614738565b604082019050919050565b600060208201905081810360008301526147c381614787565b9050919050565b600081905092915050565b50565b60006147e56000836147ca565b91506147f0826147d5565b600082019050919050565b6000614806826147d8565b9150819050919050565b7f7472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b6000614846601283613416565b915061485182614810565b602082019050919050565b6000602082019050818103600083015261487581614839565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b682613520565b91506148c183613520565b9250826148d1576148d061487c565b5b828204905092915050565b60006148e782613520565b91506148f283613520565b925082820390508181111561490a57614909613aab565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061499361498e6149898461496e565b6135cc565b613520565b9050919050565b6149a381614978565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149de816134e2565b82525050565b60006149f083836149d5565b60208301905092915050565b6000602082019050919050565b6000614a14826149a9565b614a1e81856149b4565b9350614a29836149c5565b8060005b83811015614a5a578151614a4188826149e4565b9750614a4c836149fc565b925050600181019050614a2d565b5085935050505092915050565b600060a082019050614a7c6000830188613646565b614a89602083018761499a565b8181036040830152614a9b8186614a09565b9050614aaa60608301856137b8565b614ab76080830184613646565b969550505050505056fea26469706673582212208bca772a7d762fbe4c2ecc2e257f8ccd4a9a21d7d74eb58d1335cf05dd5ab7cd64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f4560514610828578063e99c9d0914610853578063f2fde38b1461087c578063f34eb0b8146108a5578063f9d0831a146108ce57610230565b8063b62496f514610733578063c024666814610770578063c851cc3214610799578063dd62ed3e146107c2578063e064648a146107ff57610230565b80639a7a23d6116100f25780639a7a23d61461063c578063a457c2d714610665578063a9059cbb146106a2578063aa4bde28146106df578063afa4f3b21461070a57610230565b806388e765ff146105a45780638a8c523c146105cf5780638da5cb5b146105e657806395d89b411461061157610230565b806343c348a5116101b157806366d602ae1161017557806366d602ae146104d15780636ddd1713146104fc57806370a0823114610527578063715018a6146105645780637537a47f1461057b57610230565b806343c348a5146103ec578063470624021461041557806349bd5a5e146104405780634fbee1931461046b5780635d0044ca146104a857610230565b80631f53ac02116101f85780631f53ac02146102f357806323b872dd1461031c5780632b14ca5614610359578063313ce5671461038457806339509351146103af57610230565b806306fdde0314610235578063095ea7b3146102605780631694505e1461029d57806318160ddd146102c857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f7565b604051610257919061349b565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190613556565b610989565b60405161029491906135b1565b60405180910390f35b3480156102a957600080fd5b506102b26109a7565b6040516102bf919061362b565b60405180910390f35b3480156102d457600080fd5b506102dd6109cd565b6040516102ea9190613655565b60405180910390f35b3480156102ff57600080fd5b5061031a60048036038101906103159190613670565b6109d7565b005b34801561032857600080fd5b50610343600480360381019061033e919061369d565b610b06565b60405161035091906135b1565b60405180910390f35b34801561036557600080fd5b5061036e610bfe565b60405161037b919061370d565b60405180910390f35b34801561039057600080fd5b50610399610c18565b6040516103a69190613744565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613556565b610c21565b6040516103e391906135b1565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e919061378b565b610ccd565b005b34801561042157600080fd5b5061042a610de1565b604051610437919061370d565b60405180910390f35b34801561044c57600080fd5b50610455610dfb565b60405161046291906137c7565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190613670565b610e21565b60405161049f91906135b1565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca91906137e2565b610e77565b005b3480156104dd57600080fd5b506104e6610f56565b6040516104f39190613655565b60405180910390f35b34801561050857600080fd5b50610511610f5c565b60405161051e91906135b1565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190613670565b610f6f565b60405161055b9190613655565b60405180910390f35b34801561057057600080fd5b50610579610fb7565b005b34801561058757600080fd5b506105a2600480360381019061059d919061383b565b61103f565b005b3480156105b057600080fd5b506105b9611116565b6040516105c69190613655565b60405180910390f35b3480156105db57600080fd5b506105e461111c565b005b3480156105f257600080fd5b506105fb6111b5565b60405161060891906137c7565b60405180910390f35b34801561061d57600080fd5b506106266111df565b604051610633919061349b565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e919061383b565b611271565b005b34801561067157600080fd5b5061068c60048036038101906106879190613556565b61138b565b60405161069991906135b1565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613556565b611476565b6040516106d691906135b1565b60405180910390f35b3480156106eb57600080fd5b506106f4611494565b6040516107019190613655565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906137e2565b61149a565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613670565b611533565b60405161076791906135b1565b60405180910390f35b34801561077c57600080fd5b506107976004803603810190610792919061383b565b611553565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190613670565b61170a565b005b3480156107ce57600080fd5b506107e960048036038101906107e4919061387b565b611c54565b6040516107f69190613655565b60405180910390f35b34801561080b57600080fd5b506108266004803603810190610821919061378b565b611cdb565b005b34801561083457600080fd5b5061083d611def565b60405161084a9190613655565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906137e2565b611df5565b005b34801561088857600080fd5b506108a3600480360381019061089e9190613670565b611ed5565b005b3480156108b157600080fd5b506108cc60048036038101906108c791906137e2565b611fcc565b005b3480156108da57600080fd5b506108f560048036038101906108f09190613670565b6120ac565b005b606060038054610906906138ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906138ea565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600061099d61099661232c565b8484612334565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6109df61232c565b73ffffffffffffffffffffffffffffffffffffffff166109fd6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613967565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906139f9565b60405180910390fd5b80600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b138484846124fd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5e61232c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613a8b565b60405180910390fd5b610bf285610bea61232c565b858403612334565b60019150509392505050565b60098060000160009054906101000a900461ffff16905081565b60006012905090565b6000610cc3610c2e61232c565b848460016000610c3c61232c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cbe9190613ada565b612334565b6001905092915050565b610cd561232c565b73ffffffffffffffffffffffffffffffffffffffff16610cf36111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613967565b60405180910390fd5b80600860000160006101000a81548161ffff021916908361ffff16021790555080600e60006101000a81548161ffff021916908361ffff1602179055506005600e60009054906101000a900461ffff1661ffff161115610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613b5a565b60405180910390fd5b50565b60088060000160009054906101000a900461ffff16905081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e7f61232c565b73ffffffffffffffffffffffffffffffffffffffff16610e9d6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613967565b60405180910390fd5b6301312d008111610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090613bec565b60405180910390fd5b670de0b6b3a764000081610f4d9190613c0c565b600d8190555050565b600c5481565b600e60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fbf61232c565b73ffffffffffffffffffffffffffffffffffffffff16610fdd6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613967565b60405180910390fd5b61103d6000612bcb565b565b61104761232c565b73ffffffffffffffffffffffffffffffffffffffff166110656111b5565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290613967565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b61112461232c565b73ffffffffffffffffffffffffffffffffffffffff166111426111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90613967565b60405180910390fd5b6001600e60056101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111ee906138ea565b80601f016020809104026020016040519081016040528092919081815260200182805461121a906138ea565b80156112675780601f1061123c57610100808354040283529160200191611267565b820191906000526020600020905b81548152906001019060200180831161124a57829003601f168201915b5050505050905090565b61127961232c565b73ffffffffffffffffffffffffffffffffffffffff166112976111b5565b73ffffffffffffffffffffffffffffffffffffffff16146112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613967565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613ce6565b60405180910390fd5b6113878282612c91565b5050565b6000806001600061139a61232c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90613d78565b60405180910390fd5b61146b61146261232c565b85858403612334565b600191505092915050565b600061148a61148361232c565b84846124fd565b6001905092915050565b600d5481565b6114a261232c565b73ffffffffffffffffffffffffffffffffffffffff166114c06111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613967565b60405180910390fd5b670de0b6b3a76400008161152a9190613c0c565b600a8190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b61155b61232c565b73ffffffffffffffffffffffffffffffffffffffff166115796111b5565b73ffffffffffffffffffffffffffffffffffffffff16146115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613967565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890613e0a565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116fe91906135b1565b60405180910390a25050565b61171261232c565b73ffffffffffffffffffffffffffffffffffffffff166117306111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90613967565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613e9c565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ea9190613ed1565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611973573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119979190613ed1565b6040518363ffffffff1660e01b81526004016119b4929190613efe565b602060405180830381865afa1580156119d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f59190613ed1565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c0e57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abc9190613ed1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b699190613ed1565b6040518363ffffffff1660e01b8152600401611b86929190613efe565b6020604051808303816000875af1158015611ba5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc99190613ed1565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c50565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ce361232c565b73ffffffffffffffffffffffffffffffffffffffff16611d016111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90613967565b60405180910390fd5b80600960000160006101000a81548161ffff021916908361ffff16021790555080600e60026101000a81548161ffff021916908361ffff160217905550601e600e60029054906101000a900461ffff1661ffff161115611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390613f73565b60405180910390fd5b50565b600a5481565b611dfd61232c565b73ffffffffffffffffffffffffffffffffffffffff16611e1b6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890613967565b60405180910390fd5b6301312d00811015611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90613bec565b60405180910390fd5b670de0b6b3a764000081611ecc9190613c0c565b600c8190555050565b611edd61232c565b73ffffffffffffffffffffffffffffffffffffffff16611efb6111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890613967565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb790614005565b60405180910390fd5b611fc981612bcb565b50565b611fd461232c565b73ffffffffffffffffffffffffffffffffffffffff16611ff26111b5565b73ffffffffffffffffffffffffffffffffffffffff1614612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613967565b60405180910390fd5b6301312d0081101561208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690613bec565b60405180910390fd5b670de0b6b3a7640000816120a39190613c0c565b600b8190555050565b6120b461232c565b73ffffffffffffffffffffffffffffffffffffffff166120d26111b5565b73ffffffffffffffffffffffffffffffffffffffff1614612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f90613967565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d90614071565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361221d576121d26111b5565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612217573d6000803e3d6000fd5b50612329565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161225d91906137c7565b602060405180830381865afa15801561227a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229e91906140a6565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122c46111b5565b836040518363ffffffff1660e01b81526004016122e29291906140d3565b6020604051808303816000875af1158015612301573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123259190614111565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a906141b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240990614242565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124f09190613655565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361256c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612563906142d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d290614366565b60405180910390fd5b600e60059054906101000a900460ff168061263f5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61267e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612675906143d2565b60405180910390fd5b600081036126975761269283836000612dc4565b612bc6565b60006126a230610f6f565b90506000600a548210159050600e60049054906101000a900460ff1680156126d75750600760149054906101000a900460ff16155b80156127315750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561273a5750805b1561274f57600082905061274d8161304d565b505b600060019050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127f65750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561280057600090505b8015612bb7576000601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561287657600e60029054906101000a900461ffff1661ffff1690506128e1565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128e057600e60009054906101000a900461ffff1661ffff1690505b5b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129855750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b6a57601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a2657600c54851115612a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1890614464565b60405180910390fd5b612abf565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612abe57600b54851115612abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab4906144f6565b60405180910390fd5b5b5b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b6957600d5485612b1d88610f6f565b612b279190613ada565b1115612b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5f90614562565b60405180910390fd5b5b5b6000612b926064612b84848961317c90919063ffffffff16565b61319290919063ffffffff16565b9050612ba781876131a890919063ffffffff16565b9550612bb4883083612dc4565b50505b612bc2868686612dc4565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1a906145f4565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a90614686565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9990614718565b60405180910390fd5b612ead8383836131be565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2a906147aa565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc69190613ada565b92505081905550600082111561303c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130339190613655565b60405180910390a35b6130478484846131c3565b50505050565b6001600760146101000a81548160ff0219169083151502179055506000479050613076826131c8565b600061308b82476131a890919063ffffffff16565b90506000600e60069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130d5906147fb565b60006040518083038185875af1925050503d8060008114613112576040519150601f19603f3d011682016040523d82523d6000602084013e613117565b606091505b505090508061315b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131529061485c565b60405180910390fd5b5050506000600760146101000a81548160ff02191690831515021790555050565b6000818361318a9190613c0c565b905092915050565b600081836131a091906148ab565b905092915050565b600081836131b691906148dc565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156131e5576131e4614910565b5b6040519080825280602002602001820160405280156132135781602001602082028036833780820191505090505b509050308160008151811061322b5761322a61493f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f69190613ed1565b8160018151811061330a5761330961493f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061337130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612334565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133d5959493929190614a67565b600060405180830381600087803b1580156133ef57600080fd5b505af1158015613403573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561344557808201518184015260208101905061342a565b60008484015250505050565b6000601f19601f8301169050919050565b600061346d8261340b565b6134778185613416565b9350613487818560208601613427565b61349081613451565b840191505092915050565b600060208201905081810360008301526134b58184613462565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ed826134c2565b9050919050565b6134fd816134e2565b811461350857600080fd5b50565b60008135905061351a816134f4565b92915050565b6000819050919050565b61353381613520565b811461353e57600080fd5b50565b6000813590506135508161352a565b92915050565b6000806040838503121561356d5761356c6134bd565b5b600061357b8582860161350b565b925050602061358c85828601613541565b9150509250929050565b60008115159050919050565b6135ab81613596565b82525050565b60006020820190506135c660008301846135a2565b92915050565b6000819050919050565b60006135f16135ec6135e7846134c2565b6135cc565b6134c2565b9050919050565b6000613603826135d6565b9050919050565b6000613615826135f8565b9050919050565b6136258161360a565b82525050565b6000602082019050613640600083018461361c565b92915050565b61364f81613520565b82525050565b600060208201905061366a6000830184613646565b92915050565b600060208284031215613686576136856134bd565b5b60006136948482850161350b565b91505092915050565b6000806000606084860312156136b6576136b56134bd565b5b60006136c48682870161350b565b93505060206136d58682870161350b565b92505060406136e686828701613541565b9150509250925092565b600061ffff82169050919050565b613707816136f0565b82525050565b600060208201905061372260008301846136fe565b92915050565b600060ff82169050919050565b61373e81613728565b82525050565b60006020820190506137596000830184613735565b92915050565b613768816136f0565b811461377357600080fd5b50565b6000813590506137858161375f565b92915050565b6000602082840312156137a1576137a06134bd565b5b60006137af84828501613776565b91505092915050565b6137c1816134e2565b82525050565b60006020820190506137dc60008301846137b8565b92915050565b6000602082840312156137f8576137f76134bd565b5b600061380684828501613541565b91505092915050565b61381881613596565b811461382357600080fd5b50565b6000813590506138358161380f565b92915050565b60008060408385031215613852576138516134bd565b5b60006138608582860161350b565b925050602061387185828601613826565b9150509250929050565b60008060408385031215613892576138916134bd565b5b60006138a08582860161350b565b92505060206138b18582860161350b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061390257607f821691505b602082108103613915576139146138bb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613951602083613416565b915061395c8261391b565b602082019050919050565b6000602082019050818103600083015261398081613944565b9050919050565b7f4465762077616c6c65742063616e206e6f742062652061207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139e3602483613416565b91506139ee82613987565b604082019050919050565b60006020820190508181036000830152613a12816139d6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a75602883613416565b9150613a8082613a19565b604082019050919050565b60006020820190508181036000830152613aa481613a68565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ae582613520565b9150613af083613520565b9250828201905080821115613b0857613b07613aab565b5b92915050565b7f4d6158206275792066656573206c696d69742020697320352500000000000000600082015250565b6000613b44601983613416565b9150613b4f82613b0e565b602082019050919050565b60006020820190508181036000830152613b7381613b37565b9050919050565b7f43616e277420736574206c6f77657220616d6f756e742c204e6f20727567507560008201527f6c6c000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd6602283613416565b9150613be182613b7a565b604082019050919050565b60006020820190508181036000830152613c0581613bc9565b9050919050565b6000613c1782613520565b9150613c2283613520565b9250828202613c3081613520565b91508282048414831517613c4757613c46613aab565b5b5092915050565b7f45524332303a2054686520556e697377617020706169722063616e6e6f74206260008201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d6160208201527f6b65725061697273000000000000000000000000000000000000000000000000604082015250565b6000613cd0604883613416565b9150613cdb82613c4e565b606082019050919050565b60006020820190508181036000830152613cff81613cc3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613d62602583613416565b9150613d6d82613d06565b604082019050919050565b60006020820190508181036000830152613d9181613d55565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b6000613df4603183613416565b9150613dff82613d98565b604082019050919050565b60006020820190508181036000830152613e2381613de7565b9050919050565b7f45524332303a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e86602a83613416565b9150613e9182613e2a565b604082019050919050565b60006020820190508181036000830152613eb581613e79565b9050919050565b600081519050613ecb816134f4565b92915050565b600060208284031215613ee757613ee66134bd565b5b6000613ef584828501613ebc565b91505092915050565b6000604082019050613f1360008301856137b8565b613f2060208301846137b8565b9392505050565b7f4d61782073656c6c2066656573206c696d697420697320333025000000000000600082015250565b6000613f5d601a83613416565b9150613f6882613f27565b602082019050919050565b60006020820190508181036000830152613f8c81613f50565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fef602683613416565b9150613ffa82613f93565b604082019050919050565b6000602082019050818103600083015261401e81613fe2565b9050919050565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b600061405b600783613416565b915061406682614025565b602082019050919050565b6000602082019050818103600083015261408a8161404e565b9050919050565b6000815190506140a08161352a565b92915050565b6000602082840312156140bc576140bb6134bd565b5b60006140ca84828501614091565b91505092915050565b60006040820190506140e860008301856137b8565b6140f56020830184613646565b9392505050565b60008151905061410b8161380f565b92915050565b600060208284031215614127576141266134bd565b5b6000614135848285016140fc565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061419a602483613416565b91506141a58261413e565b604082019050919050565b600060208201905081810360008301526141c98161418d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061422c602283613416565b9150614237826141d0565b604082019050919050565b6000602082019050818103600083015261425b8161421f565b9050919050565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142be602583613416565b91506142c982614262565b604082019050919050565b600060208201905081810360008301526142ed816142b1565b9050919050565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614350602383613416565b915061435b826142f4565b604082019050919050565b6000602082019050818103600083015261437f81614343565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006143bc601783613416565b91506143c782614386565b602082019050919050565b600060208201905081810360008301526143eb816143af565b9050919050565b7f53656c6c206578636565647320706572207472616e73616374696f6e206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600061444e602283613416565b9150614459826143f2565b604082019050919050565b6000602082019050818103600083015261447d81614441565b9050919050565b7f427579206578636565647320706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006144e0602183613416565b91506144eb82614484565b604082019050919050565b6000602082019050818103600083015261450f816144d3565b9050919050565b7f416e74697768616c653a2042616c616e63652065786365656473206c696d6974600082015250565b600061454c602083613416565b915061455782614516565b602082019050919050565b6000602082019050818103600083015261457b8161453f565b9050919050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006145de603f83613416565b91506145e982614582565b604082019050919050565b6000602082019050818103600083015261460d816145d1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614670602583613416565b915061467b82614614565b604082019050919050565b6000602082019050818103600083015261469f81614663565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614702602383613416565b915061470d826146a6565b604082019050919050565b60006020820190508181036000830152614731816146f5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614794602683613416565b915061479f82614738565b604082019050919050565b600060208201905081810360008301526147c381614787565b9050919050565b600081905092915050565b50565b60006147e56000836147ca565b91506147f0826147d5565b600082019050919050565b6000614806826147d8565b9150819050919050565b7f7472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b6000614846601283613416565b915061485182614810565b602082019050919050565b6000602082019050818103600083015261487581614839565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b682613520565b91506148c183613520565b9250826148d1576148d061487c565b5b828204905092915050565b60006148e782613520565b91506148f283613520565b925082820390508181111561490a57614909613aab565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061499361498e6149898461496e565b6135cc565b613520565b9050919050565b6149a381614978565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149de816134e2565b82525050565b60006149f083836149d5565b60208301905092915050565b6000602082019050919050565b6000614a14826149a9565b614a1e81856149b4565b9350614a29836149c5565b8060005b83811015614a5a578151614a4188826149e4565b9750614a4c836149fc565b925050600181019050614a2d565b5085935050505092915050565b600060a082019050614a7c6000830188613646565b614a89602083018761499a565b8181036040830152614a9b8186614a09565b9050614aaa60608301856137b8565b614ab76080830184613646565b969550505050505056fea26469706673582212208bca772a7d762fbe4c2ecc2e257f8ccd4a9a21d7d74eb58d1335cf05dd5ab7cd64736f6c63430008110033

Deployed Bytecode Sourcemap

34697:10184:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24641:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26808:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34772:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25761:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40390:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27459:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35047:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25603:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28360:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39699:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35020:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34820:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40218:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40667:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35210:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35404:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25932:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18062:103;;;;;;;;;;;;;:::i;:::-;;38729:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35153:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38897:95;;;;;;;;;;;;;:::i;:::-;;17411:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24860:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39000:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29078:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26272:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35268:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41405:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35710:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37964:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37327:629;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26510:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39950:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35086:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41158:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18320:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40914:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38307:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24641:100;24695:13;24728:5;24721:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24641:100;:::o;26808:169::-;26891:4;26908:39;26917:12;:10;:12::i;:::-;26931:7;26940:6;26908:8;:39::i;:::-;26965:4;26958:11;;26808:169;;;;:::o;34772:41::-;;;;;;;;;;;;;:::o;25761:108::-;25822:7;25849:12;;25842:19;;25761:108;:::o;40390:189::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40487:1:::1;40466:23;;:9;:23;;::::0;40457:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40561:9;40541;;:30;;;;;;;;;;;;;;;;;;40390:189:::0;:::o;27459:492::-;27599:4;27616:36;27626:6;27634:9;27645:6;27616:9;:36::i;:::-;27665:24;27692:11;:19;27704:6;27692:19;;;;;;;;;;;;;;;:33;27712:12;:10;:12::i;:::-;27692:33;;;;;;;;;;;;;;;;27665:60;;27764:6;27744:16;:26;;27736:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;27851:57;27860:6;27868:12;:10;:12::i;:::-;27901:6;27882:16;:25;27851:8;:57::i;:::-;27939:4;27932:11;;;27459:492;;;;;:::o;35047:22::-;;;;;;;;;;;;;;;;;;:::o;25603:93::-;25661:5;25686:2;25679:9;;25603:93;:::o;28360:215::-;28448:4;28465:80;28474:12;:10;:12::i;:::-;28488:7;28534:10;28497:11;:25;28509:12;:10;:12::i;:::-;28497:25;;;;;;;;;;;;;;;:34;28523:7;28497:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;28465:8;:80::i;:::-;28563:4;28556:11;;28360:215;;;;:::o;39699:238::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39810:9:::1;39794:6;:13;;;:25;;;;;;;;;;;;;;;;;;39845:9;39831:11;;:23;;;;;;;;;;;;;;;;;;39888:1;39873:11;;;;;;;;;;;:16;;;;39865:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39699:238:::0;:::o;35020:20::-;;;;;;;;;;;;;;;;;;:::o;34820:29::-;;;;;;;;;;;;;:::o;40218:126::-;40284:4;40308:19;:28;40328:7;40308:28;;;;;;;;;;;;;;;;;;;;;;;;;40301:35;;40218:126;;;:::o;40667:184::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40752:8:::1;40743:6;:17;40735:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40837:6;40828;:15;;;;:::i;:::-;40810;:33;;;;40667:184:::0;:::o;35210:50::-;;;;:::o;35404:23::-;;;;;;;;;;;;;:::o;25932:127::-;26006:7;26033:9;:18;26043:7;26033:18;;;;;;;;;;;;;;;;26026:25;;25932:127;;;:::o;18062:103::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18127:30:::1;18154:1;18127:18;:30::i;:::-;18062:103::o:0;38729:159::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38872:8:::1;38840:20;:29;38861:7;38840:29;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;38729:159:::0;;:::o;35153:49::-;;;;:::o;38897:95::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38971:4:::1;38952:16;;:23;;;;;;;;;;;;;;;;;;38897:95::o:0;17411:87::-;17457:7;17484:6;;;;;;;;;;;17477:13;;17411:87;:::o;24860:104::-;24916:13;24949:7;24942:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24860:104;:::o;39000:319::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39144:13:::1;;;;;;;;;;;39136:21;;:4;:21;;::::0;39114:143:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39270:41;39299:4;39305:5;39270:28;:41::i;:::-;39000:319:::0;;:::o;29078:413::-;29171:4;29188:24;29215:11;:25;29227:12;:10;:12::i;:::-;29215:25;;;;;;;;;;;;;;;:34;29241:7;29215:34;;;;;;;;;;;;;;;;29188:61;;29288:15;29268:16;:35;;29260:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29381:67;29390:12;:10;:12::i;:::-;29404:7;29432:15;29413:16;:34;29381:8;:67::i;:::-;29479:4;29472:11;;;29078:413;;;;:::o;26272:175::-;26358:4;26375:42;26385:12;:10;:12::i;:::-;26399:9;26410:6;26375:9;:42::i;:::-;26435:4;26428:11;;26272:175;;;;:::o;35268:52::-;;;;:::o;41405:121::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41512:6:::1;41503;:15;;;;:::i;:::-;41481:18;:37;;;;41405:121:::0;:::o;35710:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;37964:334::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38103:8:::1;38071:40;;:19;:28;38091:7;38071:28;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;38049:139:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38230:8;38199:19;:28;38219:7;38199:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38272:7;38256:34;;;38281:8;38256:34;;;;;;:::i;:::-;;;;;;;;37964:334:::0;;:::o;37327:629::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37425:15:::1;;;;;;;;;;;37403:38;;:10;:38;;::::0;37395:93:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37540:10;37503:15;;:48;;;;;;;;;;;;;;;;;;37563:16;37613:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37595:52;;;37656:4;37676:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37595:104;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37563:136;;37734:1;37714:22;;:8;:22;;::::0;37710:239:::1;;37798:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37780:55;;;37844:4;37865:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37780:108;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37751:13;;:137;;;;;;;;;;;;;;;;;;37710:239;;;37929:8;37913:13;;:24;;;;;;;;;;;;;;;;;;37710:239;37388:568;37327:629:::0;:::o;26510:151::-;26599:7;26626:11;:18;26638:5;26626:18;;;;;;;;;;;;;;;:27;26645:7;26626:27;;;;;;;;;;;;;;;;26619:34;;26510:151;;;;:::o;39950:236::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40063:10:::1;40046:7;:14;;;:27;;;;;;;;;;;;;;;;;;40099:10;40084:12;;:25;;;;;;;;;;;;;;;;;;40145:2;40129:12;;;;;;;;;;;:18;;;;40120:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39950:236:::0;:::o;35086:55::-;;;;:::o;41158:187::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41248:8:::1;41238:6;:18;;41230:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41331:6;41322;:15;;;;:::i;:::-;41306:13;:31;;;;41158:187:::0;:::o;18320:201::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18429:1:::1;18409:22;;:8;:22;;::::0;18401:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18485:28;18504:8;18485:18;:28::i;:::-;18320:201:::0;:::o;40914:183::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41001:8:::1;40991:6;:18;;40983:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41083:6;41074;:15;;;;:::i;:::-;41059:12;:30;;;;40914:183:::0;:::o;38307:414::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38405:4:::1;38387:23;;:6;:23;;::::0;38379:43:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38455:3;38437:22;;:6;:22;;::::0;38433:124:::1;;38484:7;:5;:7::i;:::-;38476:25;;:48;38502:21;38476:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38539:7;;38433:124;38567:17;38594:6;38567:34;;38612:15;38630:10;:20;;;38659:4;38630:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38612:53;;38676:10;:19;;;38696:7;:5;:7::i;:::-;38705;38676:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38368:353;;17702:1;38307:414:::0;:::o;16115:98::-;16168:7;16195:10;16188:17;;16115:98;:::o;32792:380::-;32945:1;32928:19;;:5;:19;;;32920:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33026:1;33007:21;;:7;:21;;;32999:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33110:6;33080:11;:18;33092:5;33080:18;;;;;;;;;;;;;;;:27;33099:7;33080:27;;;;;;;;;;;;;;;:36;;;;33148:7;33132:32;;33141:5;33132:32;;;33157:6;33132:32;;;;;;:::i;:::-;;;;;;;;32792:380;;;:::o;41534:2370::-;41682:1;41666:18;;:4;:18;;;41658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41759:1;41745:16;;:2;:16;;;41737:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41830:16;;;;;;;;;;;:45;;;;41850:19;:25;41870:4;41850:25;;;;;;;;;;;;;;;;;;;;;;;;;41830:45;41821:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;41953:1;41943:6;:11;41939:93;;41971:28;41987:4;41993:2;41997:1;41971:15;:28::i;:::-;42014:7;;41939:93;42044:28;42075:24;42093:4;42075:9;:24::i;:::-;42044:55;;42110:28;42178:18;;42141:20;:55;;42110:86;;42227:11;;;;;;;;;;;:37;;;;;42256:8;;;;;;;;;;;42255:9;42227:37;:75;;;;;42289:13;;;;;;;;;;;42281:21;;:4;:21;;;;42227:75;:115;;;;;42319:23;42227:115;42209:272;;;42383:18;42404:20;42383:41;;42439:28;42456:10;42439:16;:28::i;:::-;42354:127;42209:272;42493:12;42508:4;42493:19;;42614;:25;42634:4;42614:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42643:19;:23;42663:2;42643:23;;;;;;;;;;;;;;;;;;;;;;;;;42614:52;42610:100;;;42693:5;42683:15;;42610:100;42726:7;42722:1129;;;42750:12;42797:25;:29;42823:2;42797:29;;;;;;;;;;;;;;;;;;;;;;;;;42793:185;;;42854:12;;;;;;;;;;;42847:19;;;;42793:185;;;42892:25;:31;42918:4;42892:31;;;;;;;;;;;;;;;;;;;;;;;;;42888:90;;;42951:11;;;;;;;;;;;42944:18;;;;42888:90;42793:185;42999:20;:26;43020:4;42999:26;;;;;;;;;;;;;;;;;;;;;;;;;42998:27;:56;;;;;43030:20;:24;43051:2;43030:24;;;;;;;;;;;;;;;;;;;;;;;;;43029:25;42998:56;42994:675;;;43079:25;:29;43105:2;43079:29;;;;;;;;;;;;;;;;;;;;;;;;;43075:321;;;43151:13;;43141:6;:23;;43133:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;43075:321;;;43233:25;:31;43259:4;43233:31;;;;;;;;;;;;;;;;;;;;;;;;;43229:167;;;43305:12;;43295:6;:22;;43287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43229:167;43075:321;43421:25;:29;43447:2;43421:29;;;;;;;;;;;;;;;;;;;;;;;;;43416:238;;43535:15;;43525:6;43509:13;43519:2;43509:9;:13::i;:::-;:22;;;;:::i;:::-;:41;;43475:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;43416:238;42994:675;43685:17;43705:25;43726:3;43705:16;43716:4;43705:6;:10;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;43685:45;;43754:21;43765:9;43754:6;:10;;:21;;;;:::i;:::-;43745:30;;43792:47;43808:4;43822;43829:9;43792:15;:47::i;:::-;42735:1116;;42722:1129;43863:33;43879:4;43885:2;43889:6;43863:15;:33::i;:::-;41647:2257;;;41534:2370;;;;:::o;18681:191::-;18755:16;18774:6;;;;;;;;;;;18755:25;;18800:8;18791:6;;:17;;;;;;;;;;;;;;;;;;18855:8;18824:40;;18845:8;18824:40;;;;;;;;;;;;18744:128;18681:191;:::o;39327:352::-;39467:5;39432:40;;:25;:31;39458:4;39432:31;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;39410:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;39608:5;39574:25;:31;39600:4;39574:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39665:5;39631:40;;39659:4;39631:40;;;;;;;;;;;;39327:352;;:::o;29981:763::-;30139:1;30121:20;;:6;:20;;;30113:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;30223:1;30202:23;;:9;:23;;;30194:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30278:47;30299:6;30307:9;30318:6;30278:20;:47::i;:::-;30338:21;30362:9;:17;30372:6;30362:17;;;;;;;;;;;;;;;;30338:41;;30415:6;30398:13;:23;;30390:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30536:6;30520:13;:22;30500:9;:17;30510:6;30500:17;;;;;;;;;;;;;;;:42;;;;30588:6;30564:9;:20;30574:9;30564:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;30620:1;30611:6;:10;30607:71;;;30658:9;30641:35;;30650:6;30641:35;;;30669:6;30641:35;;;;;;:::i;:::-;;;;;;;;30607:71;30690:46;30710:6;30718:9;30729:6;30690:19;:46::i;:::-;30102:642;29981:763;;;:::o;43912:362::-;36100:4;36089:8;;:15;;;;;;;;;;;;;;;;;;43986:22:::1;44011:21;43986:46;;44043:24;44060:6;44043:16;:24::i;:::-;44078:18;44099:41;44125:14;44099:21;:25;;:41;;;;:::i;:::-;44078:62;;44163:7;44184:9;;;;;;;;;;;44176:23;;44207:10;44176:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44162:60;;;44240:2;44232:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;43975:299;;;36138:5:::0;36127:8;;:16;;;;;;;;;;;;;;;;;;43912:362;:::o;12009:98::-;12067:7;12098:1;12094;:5;;;;:::i;:::-;12087:12;;12009:98;;;;:::o;12408:::-;12466:7;12497:1;12493;:5;;;;:::i;:::-;12486:12;;12408:98;;;;:::o;11652:::-;11710:7;11741:1;11737;:5;;;;:::i;:::-;11730:12;;11652:98;;;;:::o;33772:125::-;;;;:::o;34501:124::-;;;;:::o;44287:591::-;44413:21;44451:1;44437:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44413:40;;44482:4;44464;44469:1;44464:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44508:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44498:4;44503:1;44498:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44543:62;44560:4;44575:15;;;;;;;;;;;44593:11;44543:8;:62::i;:::-;44644:15;;;;;;;;;;;:66;;;44725:11;44751:1;44795:4;44822;44842:15;44644:226;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44342:536;44287:591;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:329::-;4830:6;4879:2;4867:9;4858:7;4854:23;4850:32;4847:119;;;4885:79;;:::i;:::-;4847:119;5005:1;5030:53;5075:7;5066:6;5055:9;5051:22;5030:53;:::i;:::-;5020:63;;4976:117;4771:329;;;;:::o;5106:619::-;5183:6;5191;5199;5248:2;5236:9;5227:7;5223:23;5219:32;5216:119;;;5254:79;;:::i;:::-;5216:119;5374:1;5399:53;5444:7;5435:6;5424:9;5420:22;5399:53;:::i;:::-;5389:63;;5345:117;5501:2;5527:53;5572:7;5563:6;5552:9;5548:22;5527:53;:::i;:::-;5517:63;;5472:118;5629:2;5655:53;5700:7;5691:6;5680:9;5676:22;5655:53;:::i;:::-;5645:63;;5600:118;5106:619;;;;;:::o;5731:89::-;5767:7;5807:6;5800:5;5796:18;5785:29;;5731:89;;;:::o;5826:115::-;5911:23;5928:5;5911:23;:::i;:::-;5906:3;5899:36;5826:115;;:::o;5947:218::-;6038:4;6076:2;6065:9;6061:18;6053:26;;6089:69;6155:1;6144:9;6140:17;6131:6;6089:69;:::i;:::-;5947:218;;;;:::o;6171:86::-;6206:7;6246:4;6239:5;6235:16;6224:27;;6171:86;;;:::o;6263:112::-;6346:22;6362:5;6346:22;:::i;:::-;6341:3;6334:35;6263:112;;:::o;6381:214::-;6470:4;6508:2;6497:9;6493:18;6485:26;;6521:67;6585:1;6574:9;6570:17;6561:6;6521:67;:::i;:::-;6381:214;;;;:::o;6601:120::-;6673:23;6690:5;6673:23;:::i;:::-;6666:5;6663:34;6653:62;;6711:1;6708;6701:12;6653:62;6601:120;:::o;6727:137::-;6772:5;6810:6;6797:20;6788:29;;6826:32;6852:5;6826:32;:::i;:::-;6727:137;;;;:::o;6870:327::-;6928:6;6977:2;6965:9;6956:7;6952:23;6948:32;6945:119;;;6983:79;;:::i;:::-;6945:119;7103:1;7128:52;7172:7;7163:6;7152:9;7148:22;7128:52;:::i;:::-;7118:62;;7074:116;6870:327;;;;:::o;7203:118::-;7290:24;7308:5;7290:24;:::i;:::-;7285:3;7278:37;7203:118;;:::o;7327:222::-;7420:4;7458:2;7447:9;7443:18;7435:26;;7471:71;7539:1;7528:9;7524:17;7515:6;7471:71;:::i;:::-;7327:222;;;;:::o;7555:329::-;7614:6;7663:2;7651:9;7642:7;7638:23;7634:32;7631:119;;;7669:79;;:::i;:::-;7631:119;7789:1;7814:53;7859:7;7850:6;7839:9;7835:22;7814:53;:::i;:::-;7804:63;;7760:117;7555:329;;;;:::o;7890:116::-;7960:21;7975:5;7960:21;:::i;:::-;7953:5;7950:32;7940:60;;7996:1;7993;7986:12;7940:60;7890:116;:::o;8012:133::-;8055:5;8093:6;8080:20;8071:29;;8109:30;8133:5;8109:30;:::i;:::-;8012:133;;;;:::o;8151:468::-;8216:6;8224;8273:2;8261:9;8252:7;8248:23;8244:32;8241:119;;;8279:79;;:::i;:::-;8241:119;8399:1;8424:53;8469:7;8460:6;8449:9;8445:22;8424:53;:::i;:::-;8414:63;;8370:117;8526:2;8552:50;8594:7;8585:6;8574:9;8570:22;8552:50;:::i;:::-;8542:60;;8497:115;8151:468;;;;;:::o;8625:474::-;8693:6;8701;8750:2;8738:9;8729:7;8725:23;8721:32;8718:119;;;8756:79;;:::i;:::-;8718:119;8876:1;8901:53;8946:7;8937:6;8926:9;8922:22;8901:53;:::i;:::-;8891:63;;8847:117;9003:2;9029:53;9074:7;9065:6;9054:9;9050:22;9029:53;:::i;:::-;9019:63;;8974:118;8625:474;;;;;:::o;9105:180::-;9153:77;9150:1;9143:88;9250:4;9247:1;9240:15;9274:4;9271:1;9264:15;9291:320;9335:6;9372:1;9366:4;9362:12;9352:22;;9419:1;9413:4;9409:12;9440:18;9430:81;;9496:4;9488:6;9484:17;9474:27;;9430:81;9558:2;9550:6;9547:14;9527:18;9524:38;9521:84;;9577:18;;:::i;:::-;9521:84;9342:269;9291:320;;;:::o;9617:182::-;9757:34;9753:1;9745:6;9741:14;9734:58;9617:182;:::o;9805:366::-;9947:3;9968:67;10032:2;10027:3;9968:67;:::i;:::-;9961:74;;10044:93;10133:3;10044:93;:::i;:::-;10162:2;10157:3;10153:12;10146:19;;9805:366;;;:::o;10177:419::-;10343:4;10381:2;10370:9;10366:18;10358:26;;10430:9;10424:4;10420:20;10416:1;10405:9;10401:17;10394:47;10458:131;10584:4;10458:131;:::i;:::-;10450:139;;10177:419;;;:::o;10602:223::-;10742:34;10738:1;10730:6;10726:14;10719:58;10811:6;10806:2;10798:6;10794:15;10787:31;10602:223;:::o;10831:366::-;10973:3;10994:67;11058:2;11053:3;10994:67;:::i;:::-;10987:74;;11070:93;11159:3;11070:93;:::i;:::-;11188:2;11183:3;11179:12;11172:19;;10831:366;;;:::o;11203:419::-;11369:4;11407:2;11396:9;11392:18;11384:26;;11456:9;11450:4;11446:20;11442:1;11431:9;11427:17;11420:47;11484:131;11610:4;11484:131;:::i;:::-;11476:139;;11203:419;;;:::o;11628:227::-;11768:34;11764:1;11756:6;11752:14;11745:58;11837:10;11832:2;11824:6;11820:15;11813:35;11628:227;:::o;11861:366::-;12003:3;12024:67;12088:2;12083:3;12024:67;:::i;:::-;12017:74;;12100:93;12189:3;12100:93;:::i;:::-;12218:2;12213:3;12209:12;12202:19;;11861:366;;;:::o;12233:419::-;12399:4;12437:2;12426:9;12422:18;12414:26;;12486:9;12480:4;12476:20;12472:1;12461:9;12457:17;12450:47;12514:131;12640:4;12514:131;:::i;:::-;12506:139;;12233:419;;;:::o;12658:180::-;12706:77;12703:1;12696:88;12803:4;12800:1;12793:15;12827:4;12824:1;12817:15;12844:191;12884:3;12903:20;12921:1;12903:20;:::i;:::-;12898:25;;12937:20;12955:1;12937:20;:::i;:::-;12932:25;;12980:1;12977;12973:9;12966:16;;13001:3;12998:1;12995:10;12992:36;;;13008:18;;:::i;:::-;12992:36;12844:191;;;;:::o;13041:175::-;13181:27;13177:1;13169:6;13165:14;13158:51;13041:175;:::o;13222:366::-;13364:3;13385:67;13449:2;13444:3;13385:67;:::i;:::-;13378:74;;13461:93;13550:3;13461:93;:::i;:::-;13579:2;13574:3;13570:12;13563:19;;13222:366;;;:::o;13594:419::-;13760:4;13798:2;13787:9;13783:18;13775:26;;13847:9;13841:4;13837:20;13833:1;13822:9;13818:17;13811:47;13875:131;14001:4;13875:131;:::i;:::-;13867:139;;13594:419;;;:::o;14019:221::-;14159:34;14155:1;14147:6;14143:14;14136:58;14228:4;14223:2;14215:6;14211:15;14204:29;14019:221;:::o;14246:366::-;14388:3;14409:67;14473:2;14468:3;14409:67;:::i;:::-;14402:74;;14485:93;14574:3;14485:93;:::i;:::-;14603:2;14598:3;14594:12;14587:19;;14246:366;;;:::o;14618:419::-;14784:4;14822:2;14811:9;14807:18;14799:26;;14871:9;14865:4;14861:20;14857:1;14846:9;14842:17;14835:47;14899:131;15025:4;14899:131;:::i;:::-;14891:139;;14618:419;;;:::o;15043:410::-;15083:7;15106:20;15124:1;15106:20;:::i;:::-;15101:25;;15140:20;15158:1;15140:20;:::i;:::-;15135:25;;15195:1;15192;15188:9;15217:30;15235:11;15217:30;:::i;:::-;15206:41;;15396:1;15387:7;15383:15;15380:1;15377:22;15357:1;15350:9;15330:83;15307:139;;15426:18;;:::i;:::-;15307:139;15091:362;15043:410;;;;:::o;15459:296::-;15599:34;15595:1;15587:6;15583:14;15576:58;15668:34;15663:2;15655:6;15651:15;15644:59;15737:10;15732:2;15724:6;15720:15;15713:35;15459:296;:::o;15761:366::-;15903:3;15924:67;15988:2;15983:3;15924:67;:::i;:::-;15917:74;;16000:93;16089:3;16000:93;:::i;:::-;16118:2;16113:3;16109:12;16102:19;;15761:366;;;:::o;16133:419::-;16299:4;16337:2;16326:9;16322:18;16314:26;;16386:9;16380:4;16376:20;16372:1;16361:9;16357:17;16350:47;16414:131;16540:4;16414:131;:::i;:::-;16406:139;;16133:419;;;:::o;16558:224::-;16698:34;16694:1;16686:6;16682:14;16675:58;16767:7;16762:2;16754:6;16750:15;16743:32;16558:224;:::o;16788:366::-;16930:3;16951:67;17015:2;17010:3;16951:67;:::i;:::-;16944:74;;17027:93;17116:3;17027:93;:::i;:::-;17145:2;17140:3;17136:12;17129:19;;16788:366;;;:::o;17160:419::-;17326:4;17364:2;17353:9;17349:18;17341:26;;17413:9;17407:4;17403:20;17399:1;17388:9;17384:17;17377:47;17441:131;17567:4;17441:131;:::i;:::-;17433:139;;17160:419;;;:::o;17585:236::-;17725:34;17721:1;17713:6;17709:14;17702:58;17794:19;17789:2;17781:6;17777:15;17770:44;17585:236;:::o;17827:366::-;17969:3;17990:67;18054:2;18049:3;17990:67;:::i;:::-;17983:74;;18066:93;18155:3;18066:93;:::i;:::-;18184:2;18179:3;18175:12;18168:19;;17827:366;;;:::o;18199:419::-;18365:4;18403:2;18392:9;18388:18;18380:26;;18452:9;18446:4;18442:20;18438:1;18427:9;18423:17;18416:47;18480:131;18606:4;18480:131;:::i;:::-;18472:139;;18199:419;;;:::o;18624:229::-;18764:34;18760:1;18752:6;18748:14;18741:58;18833:12;18828:2;18820:6;18816:15;18809:37;18624:229;:::o;18859:366::-;19001:3;19022:67;19086:2;19081:3;19022:67;:::i;:::-;19015:74;;19098:93;19187:3;19098:93;:::i;:::-;19216:2;19211:3;19207:12;19200:19;;18859:366;;;:::o;19231:419::-;19397:4;19435:2;19424:9;19420:18;19412:26;;19484:9;19478:4;19474:20;19470:1;19459:9;19455:17;19448:47;19512:131;19638:4;19512:131;:::i;:::-;19504:139;;19231:419;;;:::o;19656:143::-;19713:5;19744:6;19738:13;19729:22;;19760:33;19787:5;19760:33;:::i;:::-;19656:143;;;;:::o;19805:351::-;19875:6;19924:2;19912:9;19903:7;19899:23;19895:32;19892:119;;;19930:79;;:::i;:::-;19892:119;20050:1;20075:64;20131:7;20122:6;20111:9;20107:22;20075:64;:::i;:::-;20065:74;;20021:128;19805:351;;;;:::o;20162:332::-;20283:4;20321:2;20310:9;20306:18;20298:26;;20334:71;20402:1;20391:9;20387:17;20378:6;20334:71;:::i;:::-;20415:72;20483:2;20472:9;20468:18;20459:6;20415:72;:::i;:::-;20162:332;;;;;:::o;20500:176::-;20640:28;20636:1;20628:6;20624:14;20617:52;20500:176;:::o;20682:366::-;20824:3;20845:67;20909:2;20904:3;20845:67;:::i;:::-;20838:74;;20921:93;21010:3;20921:93;:::i;:::-;21039:2;21034:3;21030:12;21023:19;;20682:366;;;:::o;21054:419::-;21220:4;21258:2;21247:9;21243:18;21235:26;;21307:9;21301:4;21297:20;21293:1;21282:9;21278:17;21271:47;21335:131;21461:4;21335:131;:::i;:::-;21327:139;;21054:419;;;:::o;21479:225::-;21619:34;21615:1;21607:6;21603:14;21596:58;21688:8;21683:2;21675:6;21671:15;21664:33;21479:225;:::o;21710:366::-;21852:3;21873:67;21937:2;21932:3;21873:67;:::i;:::-;21866:74;;21949:93;22038:3;21949:93;:::i;:::-;22067:2;22062:3;22058:12;22051:19;;21710:366;;;:::o;22082:419::-;22248:4;22286:2;22275:9;22271:18;22263:26;;22335:9;22329:4;22325:20;22321:1;22310:9;22306:17;22299:47;22363:131;22489:4;22363:131;:::i;:::-;22355:139;;22082:419;;;:::o;22507:157::-;22647:9;22643:1;22635:6;22631:14;22624:33;22507:157;:::o;22670:365::-;22812:3;22833:66;22897:1;22892:3;22833:66;:::i;:::-;22826:73;;22908:93;22997:3;22908:93;:::i;:::-;23026:2;23021:3;23017:12;23010:19;;22670:365;;;:::o;23041:419::-;23207:4;23245:2;23234:9;23230:18;23222:26;;23294:9;23288:4;23284:20;23280:1;23269:9;23265:17;23258:47;23322:131;23448:4;23322:131;:::i;:::-;23314:139;;23041:419;;;:::o;23466:143::-;23523:5;23554:6;23548:13;23539:22;;23570:33;23597:5;23570:33;:::i;:::-;23466:143;;;;:::o;23615:351::-;23685:6;23734:2;23722:9;23713:7;23709:23;23705:32;23702:119;;;23740:79;;:::i;:::-;23702:119;23860:1;23885:64;23941:7;23932:6;23921:9;23917:22;23885:64;:::i;:::-;23875:74;;23831:128;23615:351;;;;:::o;23972:332::-;24093:4;24131:2;24120:9;24116:18;24108:26;;24144:71;24212:1;24201:9;24197:17;24188:6;24144:71;:::i;:::-;24225:72;24293:2;24282:9;24278:18;24269:6;24225:72;:::i;:::-;23972:332;;;;;:::o;24310:137::-;24364:5;24395:6;24389:13;24380:22;;24411:30;24435:5;24411:30;:::i;:::-;24310:137;;;;:::o;24453:345::-;24520:6;24569:2;24557:9;24548:7;24544:23;24540:32;24537:119;;;24575:79;;:::i;:::-;24537:119;24695:1;24720:61;24773:7;24764:6;24753:9;24749:22;24720:61;:::i;:::-;24710:71;;24666:125;24453:345;;;;:::o;24804:223::-;24944:34;24940:1;24932:6;24928:14;24921:58;25013:6;25008:2;25000:6;24996:15;24989:31;24804:223;:::o;25033:366::-;25175:3;25196:67;25260:2;25255:3;25196:67;:::i;:::-;25189:74;;25272:93;25361:3;25272:93;:::i;:::-;25390:2;25385:3;25381:12;25374:19;;25033:366;;;:::o;25405:419::-;25571:4;25609:2;25598:9;25594:18;25586:26;;25658:9;25652:4;25648:20;25644:1;25633:9;25629:17;25622:47;25686:131;25812:4;25686:131;:::i;:::-;25678:139;;25405:419;;;:::o;25830:221::-;25970:34;25966:1;25958:6;25954:14;25947:58;26039:4;26034:2;26026:6;26022:15;26015:29;25830:221;:::o;26057:366::-;26199:3;26220:67;26284:2;26279:3;26220:67;:::i;:::-;26213:74;;26296:93;26385:3;26296:93;:::i;:::-;26414:2;26409:3;26405:12;26398:19;;26057:366;;;:::o;26429:419::-;26595:4;26633:2;26622:9;26618:18;26610:26;;26682:9;26676:4;26672:20;26668:1;26657:9;26653:17;26646:47;26710:131;26836:4;26710:131;:::i;:::-;26702:139;;26429:419;;;:::o;26854:224::-;26994:34;26990:1;26982:6;26978:14;26971:58;27063:7;27058:2;27050:6;27046:15;27039:32;26854:224;:::o;27084:366::-;27226:3;27247:67;27311:2;27306:3;27247:67;:::i;:::-;27240:74;;27323:93;27412:3;27323:93;:::i;:::-;27441:2;27436:3;27432:12;27425:19;;27084:366;;;:::o;27456:419::-;27622:4;27660:2;27649:9;27645:18;27637:26;;27709:9;27703:4;27699:20;27695:1;27684:9;27680:17;27673:47;27737:131;27863:4;27737:131;:::i;:::-;27729:139;;27456:419;;;:::o;27881:222::-;28021:34;28017:1;28009:6;28005:14;27998:58;28090:5;28085:2;28077:6;28073:15;28066:30;27881:222;:::o;28109:366::-;28251:3;28272:67;28336:2;28331:3;28272:67;:::i;:::-;28265:74;;28348:93;28437:3;28348:93;:::i;:::-;28466:2;28461:3;28457:12;28450:19;;28109:366;;;:::o;28481:419::-;28647:4;28685:2;28674:9;28670:18;28662:26;;28734:9;28728:4;28724:20;28720:1;28709:9;28705:17;28698:47;28762:131;28888:4;28762:131;:::i;:::-;28754:139;;28481:419;;;:::o;28906:173::-;29046:25;29042:1;29034:6;29030:14;29023:49;28906:173;:::o;29085:366::-;29227:3;29248:67;29312:2;29307:3;29248:67;:::i;:::-;29241:74;;29324:93;29413:3;29324:93;:::i;:::-;29442:2;29437:3;29433:12;29426:19;;29085:366;;;:::o;29457:419::-;29623:4;29661:2;29650:9;29646:18;29638:26;;29710:9;29704:4;29700:20;29696:1;29685:9;29681:17;29674:47;29738:131;29864:4;29738:131;:::i;:::-;29730:139;;29457:419;;;:::o;29882:221::-;30022:34;30018:1;30010:6;30006:14;29999:58;30091:4;30086:2;30078:6;30074:15;30067:29;29882:221;:::o;30109:366::-;30251:3;30272:67;30336:2;30331:3;30272:67;:::i;:::-;30265:74;;30348:93;30437:3;30348:93;:::i;:::-;30466:2;30461:3;30457:12;30450:19;;30109:366;;;:::o;30481:419::-;30647:4;30685:2;30674:9;30670:18;30662:26;;30734:9;30728:4;30724:20;30720:1;30709:9;30705:17;30698:47;30762:131;30888:4;30762:131;:::i;:::-;30754:139;;30481:419;;;:::o;30906:220::-;31046:34;31042:1;31034:6;31030:14;31023:58;31115:3;31110:2;31102:6;31098:15;31091:28;30906:220;:::o;31132:366::-;31274:3;31295:67;31359:2;31354:3;31295:67;:::i;:::-;31288:74;;31371:93;31460:3;31371:93;:::i;:::-;31489:2;31484:3;31480:12;31473:19;;31132:366;;;:::o;31504:419::-;31670:4;31708:2;31697:9;31693:18;31685:26;;31757:9;31751:4;31747:20;31743:1;31732:9;31728:17;31721:47;31785:131;31911:4;31785:131;:::i;:::-;31777:139;;31504:419;;;:::o;31929:182::-;32069:34;32065:1;32057:6;32053:14;32046:58;31929:182;:::o;32117:366::-;32259:3;32280:67;32344:2;32339:3;32280:67;:::i;:::-;32273:74;;32356:93;32445:3;32356:93;:::i;:::-;32474:2;32469:3;32465:12;32458:19;;32117:366;;;:::o;32489:419::-;32655:4;32693:2;32682:9;32678:18;32670:26;;32742:9;32736:4;32732:20;32728:1;32717:9;32713:17;32706:47;32770:131;32896:4;32770:131;:::i;:::-;32762:139;;32489:419;;;:::o;32914:250::-;33054:34;33050:1;33042:6;33038:14;33031:58;33123:33;33118:2;33110:6;33106:15;33099:58;32914:250;:::o;33170:366::-;33312:3;33333:67;33397:2;33392:3;33333:67;:::i;:::-;33326:74;;33409:93;33498:3;33409:93;:::i;:::-;33527:2;33522:3;33518:12;33511:19;;33170:366;;;:::o;33542:419::-;33708:4;33746:2;33735:9;33731:18;33723:26;;33795:9;33789:4;33785:20;33781:1;33770:9;33766:17;33759:47;33823:131;33949:4;33823:131;:::i;:::-;33815:139;;33542:419;;;:::o;33967:224::-;34107:34;34103:1;34095:6;34091:14;34084:58;34176:7;34171:2;34163:6;34159:15;34152:32;33967:224;:::o;34197:366::-;34339:3;34360:67;34424:2;34419:3;34360:67;:::i;:::-;34353:74;;34436:93;34525:3;34436:93;:::i;:::-;34554:2;34549:3;34545:12;34538:19;;34197:366;;;:::o;34569:419::-;34735:4;34773:2;34762:9;34758:18;34750:26;;34822:9;34816:4;34812:20;34808:1;34797:9;34793:17;34786:47;34850:131;34976:4;34850:131;:::i;:::-;34842:139;;34569:419;;;:::o;34994:222::-;35134:34;35130:1;35122:6;35118:14;35111:58;35203:5;35198:2;35190:6;35186:15;35179:30;34994:222;:::o;35222:366::-;35364:3;35385:67;35449:2;35444:3;35385:67;:::i;:::-;35378:74;;35461:93;35550:3;35461:93;:::i;:::-;35579:2;35574:3;35570:12;35563:19;;35222:366;;;:::o;35594:419::-;35760:4;35798:2;35787:9;35783:18;35775:26;;35847:9;35841:4;35837:20;35833:1;35822:9;35818:17;35811:47;35875:131;36001:4;35875:131;:::i;:::-;35867:139;;35594:419;;;:::o;36019:225::-;36159:34;36155:1;36147:6;36143:14;36136:58;36228:8;36223:2;36215:6;36211:15;36204:33;36019:225;:::o;36250:366::-;36392:3;36413:67;36477:2;36472:3;36413:67;:::i;:::-;36406:74;;36489:93;36578:3;36489:93;:::i;:::-;36607:2;36602:3;36598:12;36591:19;;36250:366;;;:::o;36622:419::-;36788:4;36826:2;36815:9;36811:18;36803:26;;36875:9;36869:4;36865:20;36861:1;36850:9;36846:17;36839:47;36903:131;37029:4;36903:131;:::i;:::-;36895:139;;36622:419;;;:::o;37047:147::-;37148:11;37185:3;37170:18;;37047:147;;;;:::o;37200:114::-;;:::o;37320:398::-;37479:3;37500:83;37581:1;37576:3;37500:83;:::i;:::-;37493:90;;37592:93;37681:3;37592:93;:::i;:::-;37710:1;37705:3;37701:11;37694:18;;37320:398;;;:::o;37724:379::-;37908:3;37930:147;38073:3;37930:147;:::i;:::-;37923:154;;38094:3;38087:10;;37724:379;;;:::o;38109:168::-;38249:20;38245:1;38237:6;38233:14;38226:44;38109:168;:::o;38283:366::-;38425:3;38446:67;38510:2;38505:3;38446:67;:::i;:::-;38439:74;;38522:93;38611:3;38522:93;:::i;:::-;38640:2;38635:3;38631:12;38624:19;;38283:366;;;:::o;38655:419::-;38821:4;38859:2;38848:9;38844:18;38836:26;;38908:9;38902:4;38898:20;38894:1;38883:9;38879:17;38872:47;38936:131;39062:4;38936:131;:::i;:::-;38928:139;;38655:419;;;:::o;39080:180::-;39128:77;39125:1;39118:88;39225:4;39222:1;39215:15;39249:4;39246:1;39239:15;39266:185;39306:1;39323:20;39341:1;39323:20;:::i;:::-;39318:25;;39357:20;39375:1;39357:20;:::i;:::-;39352:25;;39396:1;39386:35;;39401:18;;:::i;:::-;39386:35;39443:1;39440;39436:9;39431:14;;39266:185;;;;:::o;39457:194::-;39497:4;39517:20;39535:1;39517:20;:::i;:::-;39512:25;;39551:20;39569:1;39551:20;:::i;:::-;39546:25;;39595:1;39592;39588:9;39580:17;;39619:1;39613:4;39610:11;39607:37;;;39624:18;;:::i;:::-;39607:37;39457:194;;;;:::o;39657:180::-;39705:77;39702:1;39695:88;39802:4;39799:1;39792:15;39826:4;39823:1;39816:15;39843:180;39891:77;39888:1;39881:88;39988:4;39985:1;39978:15;40012:4;40009:1;40002:15;40029:85;40074:7;40103:5;40092:16;;40029:85;;;:::o;40120:158::-;40178:9;40211:61;40229:42;40238:32;40264:5;40238:32;:::i;:::-;40229:42;:::i;:::-;40211:61;:::i;:::-;40198:74;;40120:158;;;:::o;40284:147::-;40379:45;40418:5;40379:45;:::i;:::-;40374:3;40367:58;40284:147;;:::o;40437:114::-;40504:6;40538:5;40532:12;40522:22;;40437:114;;;:::o;40557:184::-;40656:11;40690:6;40685:3;40678:19;40730:4;40725:3;40721:14;40706:29;;40557:184;;;;:::o;40747:132::-;40814:4;40837:3;40829:11;;40867:4;40862:3;40858:14;40850:22;;40747:132;;;:::o;40885:108::-;40962:24;40980:5;40962:24;:::i;:::-;40957:3;40950:37;40885:108;;:::o;40999:179::-;41068:10;41089:46;41131:3;41123:6;41089:46;:::i;:::-;41167:4;41162:3;41158:14;41144:28;;40999:179;;;;:::o;41184:113::-;41254:4;41286;41281:3;41277:14;41269:22;;41184:113;;;:::o;41333:732::-;41452:3;41481:54;41529:5;41481:54;:::i;:::-;41551:86;41630:6;41625:3;41551:86;:::i;:::-;41544:93;;41661:56;41711:5;41661:56;:::i;:::-;41740:7;41771:1;41756:284;41781:6;41778:1;41775:13;41756:284;;;41857:6;41851:13;41884:63;41943:3;41928:13;41884:63;:::i;:::-;41877:70;;41970:60;42023:6;41970:60;:::i;:::-;41960:70;;41816:224;41803:1;41800;41796:9;41791:14;;41756:284;;;41760:14;42056:3;42049:10;;41457:608;;;41333:732;;;;:::o;42071:831::-;42334:4;42372:3;42361:9;42357:19;42349:27;;42386:71;42454:1;42443:9;42439:17;42430:6;42386:71;:::i;:::-;42467:80;42543:2;42532:9;42528:18;42519:6;42467:80;:::i;:::-;42594:9;42588:4;42584:20;42579:2;42568:9;42564:18;42557:48;42622:108;42725:4;42716:6;42622:108;:::i;:::-;42614:116;;42740:72;42808:2;42797:9;42793:18;42784:6;42740:72;:::i;:::-;42822:73;42890:3;42879:9;42875:19;42866:6;42822:73;:::i;:::-;42071:831;;;;;;;;:::o

Swarm Source

ipfs://8bca772a7d762fbe4c2ecc2e257f8ccd4a9a21d7d74eb58d1335cf05dd5ab7cd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.