ETH Price: $2,382.57 (-0.86%)

Token

YAMA (YAMA)
 

Overview

Max Total Supply

1,000,000,000 YAMA

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,153,908.008987339768546539 YAMA

Value
$0.00
0x49ce6687f99d5f74e094a0547c8ce98292bb8395
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:
YAMA

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 2022-12-01
*/

// 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 YAMA 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 = 8 * 10**7 * 10**18; // 1% of the supply (antiwhale)


    uint256 public maxBuyAmount = 8 * 10**7 * 10**18; // 1% of the supply (antiwhale)
    uint256 public maxSellAmount = 8 * 10**7 * 10**18; // 1% of the supply (antiwhale)
    uint256 public maxWalletAmount = 8 * 10**7 * 10**18; // 1% of the supply (antiwhale)

    uint16 private totalBuyFee;
    uint16 private totalSellFee;
    

    bool public swapEnabled;
    bool private isTradingEnabled;
   

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

    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("YAMA", "YAMA") {
       
        buyFee.devFee = 0;
        totalBuyFee = 0;

        
        sellFee.devFee = 6;
        totalSellFee = 6;

        

        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**9 * (10**18)); // 1 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 <= 20,
         "MaX buy fees limit  is 20%");
    }

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

                    

    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 > 10000000, "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 >= 100000, "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 >= 100000, "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"}]

60806040526a422ca8b0a00a4250000000600a556a422ca8b0a00a4250000000600b556a422ca8b0a00a4250000000600c556a422ca8b0a00a4250000000600d55739f3f5e63759f59f7eaff2298054f90a89bce9911600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a257600080fd5b506040518060400160405280600481526020017f59414d41000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f59414d4100000000000000000000000000000000000000000000000000000000815250816003908162000120919062000c68565b50806004908162000132919062000c68565b50505062000155620001496200046f60201b60201c565b6200047760201b60201c565b6000600860000160006101000a81548161ffff021916908361ffff1602179055506000600e60006101000a81548161ffff021916908361ffff1602179055506006600960000160006101000a81548161ffff021916908361ffff1602179055506006600e60026101000a81548161ffff021916908361ffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000260919062000db9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ee919062000db9565b6040518363ffffffff1660e01b81526004016200030d92919062000dfc565b6020604051808303816000875af11580156200032d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000353919062000db9565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ea8160016200053d60201b60201c565b6200040c620003fe6200067360201b60201c565b60016200069d60201b60201c565b6200041f3060016200069d60201b60201c565b6001600e60046101000a81548160ff021916908315150217905550620004676200044e6200067360201b60201c565b6b033b2e3c9fd0803ce80000006200086c60201b60201c565b505062001120565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620005d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c99062000eb0565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006ad6200046f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d36200067360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200072c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007239062000f22565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620007c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b89062000fba565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000860919062000ff9565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d59062001066565b60405180910390fd5b620008f260008383620009e460201b60201c565b8060026000828254620009069190620010b7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200095d9190620010b7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009c4919062001103565b60405180910390a3620009e060008383620009e960201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a7057607f821691505b60208210810362000a865762000a8562000a28565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000af07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ab1565b62000afc868362000ab1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b4962000b4362000b3d8462000b14565b62000b1e565b62000b14565b9050919050565b6000819050919050565b62000b658362000b28565b62000b7d62000b748262000b50565b84845462000abe565b825550505050565b600090565b62000b9462000b85565b62000ba181848462000b5a565b505050565b5b8181101562000bc95762000bbd60008262000b8a565b60018101905062000ba7565b5050565b601f82111562000c185762000be28162000a8c565b62000bed8462000aa1565b8101602085101562000bfd578190505b62000c1562000c0c8562000aa1565b83018262000ba6565b50505b505050565b600082821c905092915050565b600062000c3d6000198460080262000c1d565b1980831691505092915050565b600062000c58838362000c2a565b9150826002028217905092915050565b62000c7382620009ee565b67ffffffffffffffff81111562000c8f5762000c8e620009f9565b5b62000c9b825462000a57565b62000ca882828562000bcd565b600060209050601f83116001811462000ce0576000841562000ccb578287015190505b62000cd7858262000c4a565b86555062000d47565b601f19841662000cf08662000a8c565b60005b8281101562000d1a5784890151825560018201915060208501945060208101905062000cf3565b8683101562000d3a578489015162000d36601f89168262000c2a565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d818262000d54565b9050919050565b62000d938162000d74565b811462000d9f57600080fd5b50565b60008151905062000db38162000d88565b92915050565b60006020828403121562000dd25762000dd162000d4f565b5b600062000de28482850162000da2565b91505092915050565b62000df68162000d74565b82525050565b600060408201905062000e13600083018562000deb565b62000e22602083018462000deb565b9392505050565b600082825260208201905092915050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b600062000e98603f8362000e29565b915062000ea58262000e3a565b604082019050919050565b6000602082019050818103600083015262000ecb8162000e89565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f0a60208362000e29565b915062000f178262000ed2565b602082019050919050565b6000602082019050818103600083015262000f3d8162000efb565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b600062000fa260318362000e29565b915062000faf8262000f44565b604082019050919050565b6000602082019050818103600083015262000fd58162000f93565b9050919050565b60008115159050919050565b62000ff38162000fdc565b82525050565b600060208201905062001010600083018462000fe8565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200104e601f8362000e29565b91506200105b8262001016565b602082019050919050565b6000602082019050818103600083015262001081816200103f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010c48262000b14565b9150620010d18362000b14565b9250828201905080821115620010ec57620010eb62001088565b5b92915050565b620010fd8162000b14565b82525050565b60006020820190506200111a6000830184620010f2565b92915050565b614af480620011306000396000f3fe6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f4560514610828578063e99c9d0914610853578063f2fde38b1461087c578063f34eb0b8146108a5578063f9d0831a146108ce57610230565b8063b62496f514610733578063c024666814610770578063c851cc3214610799578063dd62ed3e146107c2578063e064648a146107ff57610230565b80639a7a23d6116100f25780639a7a23d61461063c578063a457c2d714610665578063a9059cbb146106a2578063aa4bde28146106df578063afa4f3b21461070a57610230565b806388e765ff146105a45780638a8c523c146105cf5780638da5cb5b146105e657806395d89b411461061157610230565b806343c348a5116101b157806366d602ae1161017557806366d602ae146104d15780636ddd1713146104fc57806370a0823114610527578063715018a6146105645780637537a47f1461057b57610230565b806343c348a5146103ec578063470624021461041557806349bd5a5e146104405780634fbee1931461046b5780635d0044ca146104a857610230565b80631f53ac02116101f85780631f53ac02146102f357806323b872dd1461031c5780632b14ca5614610359578063313ce5671461038457806339509351146103af57610230565b806306fdde0314610235578063095ea7b3146102605780631694505e1461029d57806318160ddd146102c857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f7565b6040516102579190613498565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190613553565b610989565b60405161029491906135ae565b60405180910390f35b3480156102a957600080fd5b506102b26109a7565b6040516102bf9190613628565b60405180910390f35b3480156102d457600080fd5b506102dd6109cd565b6040516102ea9190613652565b60405180910390f35b3480156102ff57600080fd5b5061031a6004803603810190610315919061366d565b6109d7565b005b34801561032857600080fd5b50610343600480360381019061033e919061369a565b610b06565b60405161035091906135ae565b60405180910390f35b34801561036557600080fd5b5061036e610bfe565b60405161037b919061370a565b60405180910390f35b34801561039057600080fd5b50610399610c18565b6040516103a69190613741565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613553565b610c21565b6040516103e391906135ae565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190613788565b610ccd565b005b34801561042157600080fd5b5061042a610de1565b604051610437919061370a565b60405180910390f35b34801561044c57600080fd5b50610455610dfb565b60405161046291906137c4565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d919061366d565b610e21565b60405161049f91906135ae565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca91906137df565b610e77565b005b3480156104dd57600080fd5b506104e6610f55565b6040516104f39190613652565b60405180910390f35b34801561050857600080fd5b50610511610f5b565b60405161051e91906135ae565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061366d565b610f6e565b60405161055b9190613652565b60405180910390f35b34801561057057600080fd5b50610579610fb6565b005b34801561058757600080fd5b506105a2600480360381019061059d9190613838565b61103e565b005b3480156105b057600080fd5b506105b9611115565b6040516105c69190613652565b60405180910390f35b3480156105db57600080fd5b506105e461111b565b005b3480156105f257600080fd5b506105fb6111b4565b60405161060891906137c4565b60405180910390f35b34801561061d57600080fd5b506106266111de565b6040516106339190613498565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613838565b611270565b005b34801561067157600080fd5b5061068c60048036038101906106879190613553565b61138a565b60405161069991906135ae565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613553565b611475565b6040516106d691906135ae565b60405180910390f35b3480156106eb57600080fd5b506106f4611493565b6040516107019190613652565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906137df565b611499565b005b34801561073f57600080fd5b5061075a6004803603810190610755919061366d565b611532565b60405161076791906135ae565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190613838565b611552565b005b3480156107a557600080fd5b506107c060048036038101906107bb919061366d565b611709565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190613878565b611c53565b6040516107f69190613652565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190613788565b611cda565b005b34801561083457600080fd5b5061083d611dee565b60405161084a9190613652565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906137df565b611df4565b005b34801561088857600080fd5b506108a3600480360381019061089e919061366d565b611ed3565b005b3480156108b157600080fd5b506108cc60048036038101906108c791906137df565b611fca565b005b3480156108da57600080fd5b506108f560048036038101906108f0919061366d565b6120a9565b005b606060038054610906906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906138e7565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600061099d610996612329565b8484612331565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6109df612329565b73ffffffffffffffffffffffffffffffffffffffff166109fd6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906139f6565b60405180910390fd5b80600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b138484846124fa565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5e612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613a88565b60405180910390fd5b610bf285610bea612329565b858403612331565b60019150509392505050565b60098060000160009054906101000a900461ffff16905081565b60006012905090565b6000610cc3610c2e612329565b848460016000610c3c612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cbe9190613ad7565b612331565b6001905092915050565b610cd5612329565b73ffffffffffffffffffffffffffffffffffffffff16610cf36111b4565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613964565b60405180910390fd5b80600860000160006101000a81548161ffff021916908361ffff16021790555080600e60006101000a81548161ffff021916908361ffff1602179055506014600e60009054906101000a900461ffff1661ffff161115610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613b57565b60405180910390fd5b50565b60088060000160009054906101000a900461ffff16905081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e7f612329565b73ffffffffffffffffffffffffffffffffffffffff16610e9d6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613964565b60405180910390fd5b629896808111610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90613be9565b60405180910390fd5b670de0b6b3a764000081610f4c9190613c09565b600d8190555050565b600c5481565b600e60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fbe612329565b73ffffffffffffffffffffffffffffffffffffffff16610fdc6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990613964565b60405180910390fd5b61103c6000612bc8565b565b611046612329565b73ffffffffffffffffffffffffffffffffffffffff166110646111b4565b73ffffffffffffffffffffffffffffffffffffffff16146110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613964565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b611123612329565b73ffffffffffffffffffffffffffffffffffffffff166111416111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90613964565b60405180910390fd5b6001600e60056101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111ed906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611219906138e7565b80156112665780601f1061123b57610100808354040283529160200191611266565b820191906000526020600020905b81548152906001019060200180831161124957829003601f168201915b5050505050905090565b611278612329565b73ffffffffffffffffffffffffffffffffffffffff166112966111b4565b73ffffffffffffffffffffffffffffffffffffffff16146112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390613964565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390613ce3565b60405180910390fd5b6113868282612c8e565b5050565b60008060016000611399612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613d75565b60405180910390fd5b61146a611461612329565b85858403612331565b600191505092915050565b6000611489611482612329565b84846124fa565b6001905092915050565b600d5481565b6114a1612329565b73ffffffffffffffffffffffffffffffffffffffff166114bf6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90613964565b60405180910390fd5b670de0b6b3a7640000816115299190613c09565b600a8190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b61155a612329565b73ffffffffffffffffffffffffffffffffffffffff166115786111b4565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613964565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790613e07565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116fd91906135ae565b60405180910390a25050565b611711612329565b73ffffffffffffffffffffffffffffffffffffffff1661172f6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613964565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613e99565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e99190613ece565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611972573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119969190613ece565b6040518363ffffffff1660e01b81526004016119b3929190613efb565b602060405180830381865afa1580156119d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f49190613ece565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c0d57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abb9190613ece565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b689190613ece565b6040518363ffffffff1660e01b8152600401611b85929190613efb565b6020604051808303816000875af1158015611ba4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc89190613ece565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c4f565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ce2612329565b73ffffffffffffffffffffffffffffffffffffffff16611d006111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d90613964565b60405180910390fd5b80600960000160006101000a81548161ffff021916908361ffff16021790555080600e60026101000a81548161ffff021916908361ffff1602179055506014600e60029054906101000a900461ffff1661ffff161115611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290613f70565b60405180910390fd5b50565b600a5481565b611dfc612329565b73ffffffffffffffffffffffffffffffffffffffff16611e1a6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790613964565b60405180910390fd5b620186a0811015611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613be9565b60405180910390fd5b670de0b6b3a764000081611eca9190613c09565b600c8190555050565b611edb612329565b73ffffffffffffffffffffffffffffffffffffffff16611ef96111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4690613964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb590614002565b60405180910390fd5b611fc781612bc8565b50565b611fd2612329565b73ffffffffffffffffffffffffffffffffffffffff16611ff06111b4565b73ffffffffffffffffffffffffffffffffffffffff1614612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90613964565b60405180910390fd5b620186a081101561208c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208390613be9565b60405180910390fd5b670de0b6b3a7640000816120a09190613c09565b600b8190555050565b6120b1612329565b73ffffffffffffffffffffffffffffffffffffffff166120cf6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90613964565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a9061406e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361221a576121cf6111b4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612214573d6000803e3d6000fd5b50612326565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161225a91906137c4565b602060405180830381865afa158015612277573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229b91906140a3565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122c16111b4565b836040518363ffffffff1660e01b81526004016122df9291906140d0565b6020604051808303816000875af11580156122fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612322919061410e565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612397906141ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361240f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124069061423f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124ed9190613652565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612560906142d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cf90614363565b60405180910390fd5b600e60059054906101000a900460ff168061263c5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61267b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612672906143cf565b60405180910390fd5b600081036126945761268f83836000612dc1565b612bc3565b600061269f30610f6e565b90506000600a548210159050600e60049054906101000a900460ff1680156126d45750600760149054906101000a900460ff16155b801561272e5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127375750805b1561274c57600082905061274a8161304a565b505b600060019050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127f35750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156127fd57600090505b8015612bb4576000601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561287357600e60029054906101000a900461ffff1661ffff1690506128de565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128dd57600e60009054906101000a900461ffff1661ffff1690505b5b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129825750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b6757601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a2357600c54851115612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1590614461565b60405180910390fd5b612abc565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612abb57600b54851115612aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab1906144f3565b60405180910390fd5b5b5b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b6657600d5485612b1a88610f6e565b612b249190613ad7565b1115612b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c9061455f565b60405180910390fd5b5b5b6000612b8f6064612b81848961317990919063ffffffff16565b61318f90919063ffffffff16565b9050612ba481876131a590919063ffffffff16565b9550612bb1883083612dc1565b50505b612bbf868686612dc1565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d17906145f1565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2790614683565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9690614715565b60405180910390fd5b612eaa8383836131bb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f27906147a7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc39190613ad7565b925050819055506000821115613039578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130309190613652565b60405180910390a35b6130448484846131c0565b50505050565b6001600760146101000a81548160ff0219169083151502179055506000479050613073826131c5565b600061308882476131a590919063ffffffff16565b90506000600e60069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130d2906147f8565b60006040518083038185875af1925050503d806000811461310f576040519150601f19603f3d011682016040523d82523d6000602084013e613114565b606091505b5050905080613158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314f90614859565b60405180910390fd5b5050506000600760146101000a81548160ff02191690831515021790555050565b600081836131879190613c09565b905092915050565b6000818361319d91906148a8565b905092915050565b600081836131b391906148d9565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156131e2576131e161490d565b5b6040519080825280602002602001820160405280156132105781602001602082028036833780820191505090505b50905030816000815181106132285761322761493c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f39190613ece565b816001815181106133075761330661493c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061336e30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612331565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133d2959493929190614a64565b600060405180830381600087803b1580156133ec57600080fd5b505af1158015613400573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613442578082015181840152602081019050613427565b60008484015250505050565b6000601f19601f8301169050919050565b600061346a82613408565b6134748185613413565b9350613484818560208601613424565b61348d8161344e565b840191505092915050565b600060208201905081810360008301526134b2818461345f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ea826134bf565b9050919050565b6134fa816134df565b811461350557600080fd5b50565b600081359050613517816134f1565b92915050565b6000819050919050565b6135308161351d565b811461353b57600080fd5b50565b60008135905061354d81613527565b92915050565b6000806040838503121561356a576135696134ba565b5b600061357885828601613508565b92505060206135898582860161353e565b9150509250929050565b60008115159050919050565b6135a881613593565b82525050565b60006020820190506135c3600083018461359f565b92915050565b6000819050919050565b60006135ee6135e96135e4846134bf565b6135c9565b6134bf565b9050919050565b6000613600826135d3565b9050919050565b6000613612826135f5565b9050919050565b61362281613607565b82525050565b600060208201905061363d6000830184613619565b92915050565b61364c8161351d565b82525050565b60006020820190506136676000830184613643565b92915050565b600060208284031215613683576136826134ba565b5b600061369184828501613508565b91505092915050565b6000806000606084860312156136b3576136b26134ba565b5b60006136c186828701613508565b93505060206136d286828701613508565b92505060406136e38682870161353e565b9150509250925092565b600061ffff82169050919050565b613704816136ed565b82525050565b600060208201905061371f60008301846136fb565b92915050565b600060ff82169050919050565b61373b81613725565b82525050565b60006020820190506137566000830184613732565b92915050565b613765816136ed565b811461377057600080fd5b50565b6000813590506137828161375c565b92915050565b60006020828403121561379e5761379d6134ba565b5b60006137ac84828501613773565b91505092915050565b6137be816134df565b82525050565b60006020820190506137d960008301846137b5565b92915050565b6000602082840312156137f5576137f46134ba565b5b60006138038482850161353e565b91505092915050565b61381581613593565b811461382057600080fd5b50565b6000813590506138328161380c565b92915050565b6000806040838503121561384f5761384e6134ba565b5b600061385d85828601613508565b925050602061386e85828601613823565b9150509250929050565b6000806040838503121561388f5761388e6134ba565b5b600061389d85828601613508565b92505060206138ae85828601613508565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138ff57607f821691505b602082108103613912576139116138b8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061394e602083613413565b915061395982613918565b602082019050919050565b6000602082019050818103600083015261397d81613941565b9050919050565b7f4465762077616c6c65742063616e206e6f742062652061207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139e0602483613413565b91506139eb82613984565b604082019050919050565b60006020820190508181036000830152613a0f816139d3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a72602883613413565b9150613a7d82613a16565b604082019050919050565b60006020820190508181036000830152613aa181613a65565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ae28261351d565b9150613aed8361351d565b9250828201905080821115613b0557613b04613aa8565b5b92915050565b7f4d6158206275792066656573206c696d69742020697320323025000000000000600082015250565b6000613b41601a83613413565b9150613b4c82613b0b565b602082019050919050565b60006020820190508181036000830152613b7081613b34565b9050919050565b7f43616e277420736574206c6f77657220616d6f756e742c204e6f20727567507560008201527f6c6c000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd3602283613413565b9150613bde82613b77565b604082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b6000613c148261351d565b9150613c1f8361351d565b9250828202613c2d8161351d565b91508282048414831517613c4457613c43613aa8565b5b5092915050565b7f45524332303a2054686520556e697377617020706169722063616e6e6f74206260008201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d6160208201527f6b65725061697273000000000000000000000000000000000000000000000000604082015250565b6000613ccd604883613413565b9150613cd882613c4b565b606082019050919050565b60006020820190508181036000830152613cfc81613cc0565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613d5f602583613413565b9150613d6a82613d03565b604082019050919050565b60006020820190508181036000830152613d8e81613d52565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b6000613df1603183613413565b9150613dfc82613d95565b604082019050919050565b60006020820190508181036000830152613e2081613de4565b9050919050565b7f45524332303a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e83602a83613413565b9150613e8e82613e27565b604082019050919050565b60006020820190508181036000830152613eb281613e76565b9050919050565b600081519050613ec8816134f1565b92915050565b600060208284031215613ee457613ee36134ba565b5b6000613ef284828501613eb9565b91505092915050565b6000604082019050613f1060008301856137b5565b613f1d60208301846137b5565b9392505050565b7f4d61782073656c6c2066656573206c696d697420697320323025000000000000600082015250565b6000613f5a601a83613413565b9150613f6582613f24565b602082019050919050565b60006020820190508181036000830152613f8981613f4d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fec602683613413565b9150613ff782613f90565b604082019050919050565b6000602082019050818103600083015261401b81613fdf565b9050919050565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b6000614058600783613413565b915061406382614022565b602082019050919050565b600060208201905081810360008301526140878161404b565b9050919050565b60008151905061409d81613527565b92915050565b6000602082840312156140b9576140b86134ba565b5b60006140c78482850161408e565b91505092915050565b60006040820190506140e560008301856137b5565b6140f26020830184613643565b9392505050565b6000815190506141088161380c565b92915050565b600060208284031215614124576141236134ba565b5b6000614132848285016140f9565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614197602483613413565b91506141a28261413b565b604082019050919050565b600060208201905081810360008301526141c68161418a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614229602283613413565b9150614234826141cd565b604082019050919050565b600060208201905081810360008301526142588161421c565b9050919050565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142bb602583613413565b91506142c68261425f565b604082019050919050565b600060208201905081810360008301526142ea816142ae565b9050919050565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061434d602383613413565b9150614358826142f1565b604082019050919050565b6000602082019050818103600083015261437c81614340565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006143b9601783613413565b91506143c482614383565b602082019050919050565b600060208201905081810360008301526143e8816143ac565b9050919050565b7f53656c6c206578636565647320706572207472616e73616374696f6e206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600061444b602283613413565b9150614456826143ef565b604082019050919050565b6000602082019050818103600083015261447a8161443e565b9050919050565b7f427579206578636565647320706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006144dd602183613413565b91506144e882614481565b604082019050919050565b6000602082019050818103600083015261450c816144d0565b9050919050565b7f416e74697768616c653a2042616c616e63652065786365656473206c696d6974600082015250565b6000614549602083613413565b915061455482614513565b602082019050919050565b600060208201905081810360008301526145788161453c565b9050919050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006145db603f83613413565b91506145e68261457f565b604082019050919050565b6000602082019050818103600083015261460a816145ce565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061466d602583613413565b915061467882614611565b604082019050919050565b6000602082019050818103600083015261469c81614660565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006146ff602383613413565b915061470a826146a3565b604082019050919050565b6000602082019050818103600083015261472e816146f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614791602683613413565b915061479c82614735565b604082019050919050565b600060208201905081810360008301526147c081614784565b9050919050565b600081905092915050565b50565b60006147e26000836147c7565b91506147ed826147d2565b600082019050919050565b6000614803826147d5565b9150819050919050565b7f7472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b6000614843601283613413565b915061484e8261480d565b602082019050919050565b6000602082019050818103600083015261487281614836565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b38261351d565b91506148be8361351d565b9250826148ce576148cd614879565b5b828204905092915050565b60006148e48261351d565b91506148ef8361351d565b925082820390508181111561490757614906613aa8565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061499061498b6149868461496b565b6135c9565b61351d565b9050919050565b6149a081614975565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149db816134df565b82525050565b60006149ed83836149d2565b60208301905092915050565b6000602082019050919050565b6000614a11826149a6565b614a1b81856149b1565b9350614a26836149c2565b8060005b83811015614a57578151614a3e88826149e1565b9750614a49836149f9565b925050600181019050614a2a565b5085935050505092915050565b600060a082019050614a796000830188613643565b614a866020830187614997565b8181036040830152614a988186614a06565b9050614aa760608301856137b5565b614ab46080830184613643565b969550505050505056fea264697066735822122048dba2fb10f9a78566b33c16bee70d18532b3679b83c01a20eafd7d6e16fb69664736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f4560514610828578063e99c9d0914610853578063f2fde38b1461087c578063f34eb0b8146108a5578063f9d0831a146108ce57610230565b8063b62496f514610733578063c024666814610770578063c851cc3214610799578063dd62ed3e146107c2578063e064648a146107ff57610230565b80639a7a23d6116100f25780639a7a23d61461063c578063a457c2d714610665578063a9059cbb146106a2578063aa4bde28146106df578063afa4f3b21461070a57610230565b806388e765ff146105a45780638a8c523c146105cf5780638da5cb5b146105e657806395d89b411461061157610230565b806343c348a5116101b157806366d602ae1161017557806366d602ae146104d15780636ddd1713146104fc57806370a0823114610527578063715018a6146105645780637537a47f1461057b57610230565b806343c348a5146103ec578063470624021461041557806349bd5a5e146104405780634fbee1931461046b5780635d0044ca146104a857610230565b80631f53ac02116101f85780631f53ac02146102f357806323b872dd1461031c5780632b14ca5614610359578063313ce5671461038457806339509351146103af57610230565b806306fdde0314610235578063095ea7b3146102605780631694505e1461029d57806318160ddd146102c857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f7565b6040516102579190613498565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190613553565b610989565b60405161029491906135ae565b60405180910390f35b3480156102a957600080fd5b506102b26109a7565b6040516102bf9190613628565b60405180910390f35b3480156102d457600080fd5b506102dd6109cd565b6040516102ea9190613652565b60405180910390f35b3480156102ff57600080fd5b5061031a6004803603810190610315919061366d565b6109d7565b005b34801561032857600080fd5b50610343600480360381019061033e919061369a565b610b06565b60405161035091906135ae565b60405180910390f35b34801561036557600080fd5b5061036e610bfe565b60405161037b919061370a565b60405180910390f35b34801561039057600080fd5b50610399610c18565b6040516103a69190613741565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613553565b610c21565b6040516103e391906135ae565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190613788565b610ccd565b005b34801561042157600080fd5b5061042a610de1565b604051610437919061370a565b60405180910390f35b34801561044c57600080fd5b50610455610dfb565b60405161046291906137c4565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d919061366d565b610e21565b60405161049f91906135ae565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca91906137df565b610e77565b005b3480156104dd57600080fd5b506104e6610f55565b6040516104f39190613652565b60405180910390f35b34801561050857600080fd5b50610511610f5b565b60405161051e91906135ae565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061366d565b610f6e565b60405161055b9190613652565b60405180910390f35b34801561057057600080fd5b50610579610fb6565b005b34801561058757600080fd5b506105a2600480360381019061059d9190613838565b61103e565b005b3480156105b057600080fd5b506105b9611115565b6040516105c69190613652565b60405180910390f35b3480156105db57600080fd5b506105e461111b565b005b3480156105f257600080fd5b506105fb6111b4565b60405161060891906137c4565b60405180910390f35b34801561061d57600080fd5b506106266111de565b6040516106339190613498565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613838565b611270565b005b34801561067157600080fd5b5061068c60048036038101906106879190613553565b61138a565b60405161069991906135ae565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613553565b611475565b6040516106d691906135ae565b60405180910390f35b3480156106eb57600080fd5b506106f4611493565b6040516107019190613652565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906137df565b611499565b005b34801561073f57600080fd5b5061075a6004803603810190610755919061366d565b611532565b60405161076791906135ae565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190613838565b611552565b005b3480156107a557600080fd5b506107c060048036038101906107bb919061366d565b611709565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190613878565b611c53565b6040516107f69190613652565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190613788565b611cda565b005b34801561083457600080fd5b5061083d611dee565b60405161084a9190613652565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906137df565b611df4565b005b34801561088857600080fd5b506108a3600480360381019061089e919061366d565b611ed3565b005b3480156108b157600080fd5b506108cc60048036038101906108c791906137df565b611fca565b005b3480156108da57600080fd5b506108f560048036038101906108f0919061366d565b6120a9565b005b606060038054610906906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906138e7565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600061099d610996612329565b8484612331565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6109df612329565b73ffffffffffffffffffffffffffffffffffffffff166109fd6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906139f6565b60405180910390fd5b80600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b138484846124fa565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5e612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613a88565b60405180910390fd5b610bf285610bea612329565b858403612331565b60019150509392505050565b60098060000160009054906101000a900461ffff16905081565b60006012905090565b6000610cc3610c2e612329565b848460016000610c3c612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cbe9190613ad7565b612331565b6001905092915050565b610cd5612329565b73ffffffffffffffffffffffffffffffffffffffff16610cf36111b4565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613964565b60405180910390fd5b80600860000160006101000a81548161ffff021916908361ffff16021790555080600e60006101000a81548161ffff021916908361ffff1602179055506014600e60009054906101000a900461ffff1661ffff161115610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613b57565b60405180910390fd5b50565b60088060000160009054906101000a900461ffff16905081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e7f612329565b73ffffffffffffffffffffffffffffffffffffffff16610e9d6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613964565b60405180910390fd5b629896808111610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90613be9565b60405180910390fd5b670de0b6b3a764000081610f4c9190613c09565b600d8190555050565b600c5481565b600e60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fbe612329565b73ffffffffffffffffffffffffffffffffffffffff16610fdc6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990613964565b60405180910390fd5b61103c6000612bc8565b565b611046612329565b73ffffffffffffffffffffffffffffffffffffffff166110646111b4565b73ffffffffffffffffffffffffffffffffffffffff16146110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613964565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b611123612329565b73ffffffffffffffffffffffffffffffffffffffff166111416111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90613964565b60405180910390fd5b6001600e60056101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111ed906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611219906138e7565b80156112665780601f1061123b57610100808354040283529160200191611266565b820191906000526020600020905b81548152906001019060200180831161124957829003601f168201915b5050505050905090565b611278612329565b73ffffffffffffffffffffffffffffffffffffffff166112966111b4565b73ffffffffffffffffffffffffffffffffffffffff16146112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390613964565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390613ce3565b60405180910390fd5b6113868282612c8e565b5050565b60008060016000611399612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613d75565b60405180910390fd5b61146a611461612329565b85858403612331565b600191505092915050565b6000611489611482612329565b84846124fa565b6001905092915050565b600d5481565b6114a1612329565b73ffffffffffffffffffffffffffffffffffffffff166114bf6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90613964565b60405180910390fd5b670de0b6b3a7640000816115299190613c09565b600a8190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b61155a612329565b73ffffffffffffffffffffffffffffffffffffffff166115786111b4565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613964565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790613e07565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116fd91906135ae565b60405180910390a25050565b611711612329565b73ffffffffffffffffffffffffffffffffffffffff1661172f6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613964565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613e99565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e99190613ece565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611972573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119969190613ece565b6040518363ffffffff1660e01b81526004016119b3929190613efb565b602060405180830381865afa1580156119d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f49190613ece565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c0d57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abb9190613ece565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b689190613ece565b6040518363ffffffff1660e01b8152600401611b85929190613efb565b6020604051808303816000875af1158015611ba4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc89190613ece565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c4f565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ce2612329565b73ffffffffffffffffffffffffffffffffffffffff16611d006111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d90613964565b60405180910390fd5b80600960000160006101000a81548161ffff021916908361ffff16021790555080600e60026101000a81548161ffff021916908361ffff1602179055506014600e60029054906101000a900461ffff1661ffff161115611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290613f70565b60405180910390fd5b50565b600a5481565b611dfc612329565b73ffffffffffffffffffffffffffffffffffffffff16611e1a6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790613964565b60405180910390fd5b620186a0811015611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613be9565b60405180910390fd5b670de0b6b3a764000081611eca9190613c09565b600c8190555050565b611edb612329565b73ffffffffffffffffffffffffffffffffffffffff16611ef96111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4690613964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb590614002565b60405180910390fd5b611fc781612bc8565b50565b611fd2612329565b73ffffffffffffffffffffffffffffffffffffffff16611ff06111b4565b73ffffffffffffffffffffffffffffffffffffffff1614612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90613964565b60405180910390fd5b620186a081101561208c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208390613be9565b60405180910390fd5b670de0b6b3a7640000816120a09190613c09565b600b8190555050565b6120b1612329565b73ffffffffffffffffffffffffffffffffffffffff166120cf6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90613964565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a9061406e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361221a576121cf6111b4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612214573d6000803e3d6000fd5b50612326565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161225a91906137c4565b602060405180830381865afa158015612277573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229b91906140a3565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122c16111b4565b836040518363ffffffff1660e01b81526004016122df9291906140d0565b6020604051808303816000875af11580156122fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612322919061410e565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612397906141ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361240f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124069061423f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124ed9190613652565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612560906142d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cf90614363565b60405180910390fd5b600e60059054906101000a900460ff168061263c5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61267b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612672906143cf565b60405180910390fd5b600081036126945761268f83836000612dc1565b612bc3565b600061269f30610f6e565b90506000600a548210159050600e60049054906101000a900460ff1680156126d45750600760149054906101000a900460ff16155b801561272e5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127375750805b1561274c57600082905061274a8161304a565b505b600060019050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127f35750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156127fd57600090505b8015612bb4576000601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561287357600e60029054906101000a900461ffff1661ffff1690506128de565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128dd57600e60009054906101000a900461ffff1661ffff1690505b5b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129825750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b6757601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a2357600c54851115612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1590614461565b60405180910390fd5b612abc565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612abb57600b54851115612aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab1906144f3565b60405180910390fd5b5b5b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b6657600d5485612b1a88610f6e565b612b249190613ad7565b1115612b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c9061455f565b60405180910390fd5b5b5b6000612b8f6064612b81848961317990919063ffffffff16565b61318f90919063ffffffff16565b9050612ba481876131a590919063ffffffff16565b9550612bb1883083612dc1565b50505b612bbf868686612dc1565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d17906145f1565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2790614683565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9690614715565b60405180910390fd5b612eaa8383836131bb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f27906147a7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc39190613ad7565b925050819055506000821115613039578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130309190613652565b60405180910390a35b6130448484846131c0565b50505050565b6001600760146101000a81548160ff0219169083151502179055506000479050613073826131c5565b600061308882476131a590919063ffffffff16565b90506000600e60069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130d2906147f8565b60006040518083038185875af1925050503d806000811461310f576040519150601f19603f3d011682016040523d82523d6000602084013e613114565b606091505b5050905080613158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314f90614859565b60405180910390fd5b5050506000600760146101000a81548160ff02191690831515021790555050565b600081836131879190613c09565b905092915050565b6000818361319d91906148a8565b905092915050565b600081836131b391906148d9565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156131e2576131e161490d565b5b6040519080825280602002602001820160405280156132105781602001602082028036833780820191505090505b50905030816000815181106132285761322761493c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f39190613ece565b816001815181106133075761330661493c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061336e30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612331565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133d2959493929190614a64565b600060405180830381600087803b1580156133ec57600080fd5b505af1158015613400573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613442578082015181840152602081019050613427565b60008484015250505050565b6000601f19601f8301169050919050565b600061346a82613408565b6134748185613413565b9350613484818560208601613424565b61348d8161344e565b840191505092915050565b600060208201905081810360008301526134b2818461345f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ea826134bf565b9050919050565b6134fa816134df565b811461350557600080fd5b50565b600081359050613517816134f1565b92915050565b6000819050919050565b6135308161351d565b811461353b57600080fd5b50565b60008135905061354d81613527565b92915050565b6000806040838503121561356a576135696134ba565b5b600061357885828601613508565b92505060206135898582860161353e565b9150509250929050565b60008115159050919050565b6135a881613593565b82525050565b60006020820190506135c3600083018461359f565b92915050565b6000819050919050565b60006135ee6135e96135e4846134bf565b6135c9565b6134bf565b9050919050565b6000613600826135d3565b9050919050565b6000613612826135f5565b9050919050565b61362281613607565b82525050565b600060208201905061363d6000830184613619565b92915050565b61364c8161351d565b82525050565b60006020820190506136676000830184613643565b92915050565b600060208284031215613683576136826134ba565b5b600061369184828501613508565b91505092915050565b6000806000606084860312156136b3576136b26134ba565b5b60006136c186828701613508565b93505060206136d286828701613508565b92505060406136e38682870161353e565b9150509250925092565b600061ffff82169050919050565b613704816136ed565b82525050565b600060208201905061371f60008301846136fb565b92915050565b600060ff82169050919050565b61373b81613725565b82525050565b60006020820190506137566000830184613732565b92915050565b613765816136ed565b811461377057600080fd5b50565b6000813590506137828161375c565b92915050565b60006020828403121561379e5761379d6134ba565b5b60006137ac84828501613773565b91505092915050565b6137be816134df565b82525050565b60006020820190506137d960008301846137b5565b92915050565b6000602082840312156137f5576137f46134ba565b5b60006138038482850161353e565b91505092915050565b61381581613593565b811461382057600080fd5b50565b6000813590506138328161380c565b92915050565b6000806040838503121561384f5761384e6134ba565b5b600061385d85828601613508565b925050602061386e85828601613823565b9150509250929050565b6000806040838503121561388f5761388e6134ba565b5b600061389d85828601613508565b92505060206138ae85828601613508565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138ff57607f821691505b602082108103613912576139116138b8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061394e602083613413565b915061395982613918565b602082019050919050565b6000602082019050818103600083015261397d81613941565b9050919050565b7f4465762077616c6c65742063616e206e6f742062652061207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139e0602483613413565b91506139eb82613984565b604082019050919050565b60006020820190508181036000830152613a0f816139d3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a72602883613413565b9150613a7d82613a16565b604082019050919050565b60006020820190508181036000830152613aa181613a65565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ae28261351d565b9150613aed8361351d565b9250828201905080821115613b0557613b04613aa8565b5b92915050565b7f4d6158206275792066656573206c696d69742020697320323025000000000000600082015250565b6000613b41601a83613413565b9150613b4c82613b0b565b602082019050919050565b60006020820190508181036000830152613b7081613b34565b9050919050565b7f43616e277420736574206c6f77657220616d6f756e742c204e6f20727567507560008201527f6c6c000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd3602283613413565b9150613bde82613b77565b604082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b6000613c148261351d565b9150613c1f8361351d565b9250828202613c2d8161351d565b91508282048414831517613c4457613c43613aa8565b5b5092915050565b7f45524332303a2054686520556e697377617020706169722063616e6e6f74206260008201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d6160208201527f6b65725061697273000000000000000000000000000000000000000000000000604082015250565b6000613ccd604883613413565b9150613cd882613c4b565b606082019050919050565b60006020820190508181036000830152613cfc81613cc0565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613d5f602583613413565b9150613d6a82613d03565b604082019050919050565b60006020820190508181036000830152613d8e81613d52565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b6000613df1603183613413565b9150613dfc82613d95565b604082019050919050565b60006020820190508181036000830152613e2081613de4565b9050919050565b7f45524332303a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e83602a83613413565b9150613e8e82613e27565b604082019050919050565b60006020820190508181036000830152613eb281613e76565b9050919050565b600081519050613ec8816134f1565b92915050565b600060208284031215613ee457613ee36134ba565b5b6000613ef284828501613eb9565b91505092915050565b6000604082019050613f1060008301856137b5565b613f1d60208301846137b5565b9392505050565b7f4d61782073656c6c2066656573206c696d697420697320323025000000000000600082015250565b6000613f5a601a83613413565b9150613f6582613f24565b602082019050919050565b60006020820190508181036000830152613f8981613f4d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fec602683613413565b9150613ff782613f90565b604082019050919050565b6000602082019050818103600083015261401b81613fdf565b9050919050565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b6000614058600783613413565b915061406382614022565b602082019050919050565b600060208201905081810360008301526140878161404b565b9050919050565b60008151905061409d81613527565b92915050565b6000602082840312156140b9576140b86134ba565b5b60006140c78482850161408e565b91505092915050565b60006040820190506140e560008301856137b5565b6140f26020830184613643565b9392505050565b6000815190506141088161380c565b92915050565b600060208284031215614124576141236134ba565b5b6000614132848285016140f9565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614197602483613413565b91506141a28261413b565b604082019050919050565b600060208201905081810360008301526141c68161418a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614229602283613413565b9150614234826141cd565b604082019050919050565b600060208201905081810360008301526142588161421c565b9050919050565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142bb602583613413565b91506142c68261425f565b604082019050919050565b600060208201905081810360008301526142ea816142ae565b9050919050565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061434d602383613413565b9150614358826142f1565b604082019050919050565b6000602082019050818103600083015261437c81614340565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006143b9601783613413565b91506143c482614383565b602082019050919050565b600060208201905081810360008301526143e8816143ac565b9050919050565b7f53656c6c206578636565647320706572207472616e73616374696f6e206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600061444b602283613413565b9150614456826143ef565b604082019050919050565b6000602082019050818103600083015261447a8161443e565b9050919050565b7f427579206578636565647320706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006144dd602183613413565b91506144e882614481565b604082019050919050565b6000602082019050818103600083015261450c816144d0565b9050919050565b7f416e74697768616c653a2042616c616e63652065786365656473206c696d6974600082015250565b6000614549602083613413565b915061455482614513565b602082019050919050565b600060208201905081810360008301526145788161453c565b9050919050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006145db603f83613413565b91506145e68261457f565b604082019050919050565b6000602082019050818103600083015261460a816145ce565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061466d602583613413565b915061467882614611565b604082019050919050565b6000602082019050818103600083015261469c81614660565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006146ff602383613413565b915061470a826146a3565b604082019050919050565b6000602082019050818103600083015261472e816146f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614791602683613413565b915061479c82614735565b604082019050919050565b600060208201905081810360008301526147c081614784565b9050919050565b600081905092915050565b50565b60006147e26000836147c7565b91506147ed826147d2565b600082019050919050565b6000614803826147d5565b9150819050919050565b7f7472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b6000614843601283613413565b915061484e8261480d565b602082019050919050565b6000602082019050818103600083015261487281614836565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b38261351d565b91506148be8361351d565b9250826148ce576148cd614879565b5b828204905092915050565b60006148e48261351d565b91506148ef8361351d565b925082820390508181111561490757614906613aa8565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061499061498b6149868461496b565b6135c9565b61351d565b9050919050565b6149a081614975565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149db816134df565b82525050565b60006149ed83836149d2565b60208301905092915050565b6000602082019050919050565b6000614a11826149a6565b614a1b81856149b1565b9350614a26836149c2565b8060005b83811015614a57578151614a3e88826149e1565b9750614a49836149f9565b925050600181019050614a2a565b5085935050505092915050565b600060a082019050614a796000830188613643565b614a866020830187614997565b8181036040830152614a988186614a06565b9050614aa760608301856137b5565b614ab46080830184613643565b969550505050505056fea264697066735822122048dba2fb10f9a78566b33c16bee70d18532b3679b83c01a20eafd7d6e16fb69664736f6c63430008110033

Deployed Bytecode Sourcemap

34697:10293:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24641:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26808:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34771:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25761:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40503:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27459:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35046:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25603:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28360:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39810:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35019:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34819:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40331:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40780:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35269:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35524:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25932:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18062:103;;;;;;;;;;;;;:::i;:::-;;38840:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35182:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39008:95;;;;;;;;;;;;;:::i;:::-;;17411:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24860:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39111:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29078:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26272:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35357:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41514:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35830:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38075:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37438:629;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26510:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40063:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35085:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41269:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18320:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41027:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38418: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;34771:41::-;;;;;;;;;;;;;:::o;25761:108::-;25822:7;25849:12;;25842:19;;25761:108;:::o;40503:189::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40600:1:::1;40579:23;;:9;:23;;::::0;40570:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40674:9;40654;;:30;;;;;;;;;;;;;;;;;;40503: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;35046: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;39810:240::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39921:9:::1;39905:6;:13;;;:25;;;;;;;;;;;;;;;;;;39956:9;39942:11;;:23;;;;;;;;;;;;;;;;;;39999:2;39984:11;;;;;;;;;;;:17;;;;39976:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39810:240:::0;:::o;35019:20::-;;;;;;;;;;;;;;;;;;:::o;34819:29::-;;;;;;;;;;;;;:::o;40331:126::-;40397:4;40421:19;:28;40441:7;40421:28;;;;;;;;;;;;;;;;;;;;;;;;;40414:35;;40331:126;;;:::o;40780:184::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40865:8:::1;40856:6;:17;40848:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40950:6;40941;:15;;;;:::i;:::-;40923;:33;;;;40780:184:::0;:::o;35269:49::-;;;;:::o;35524: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;38840:159::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38983:8:::1;38951:20;:29;38972:7;38951:29;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;38840:159:::0;;:::o;35182:48::-;;;;:::o;39008:95::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39082:4:::1;39063:16;;:23;;;;;;;;;;;;;;;;;;39008: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;39111:319::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39255:13:::1;;;;;;;;;;;39247:21;;:4;:21;;::::0;39225:143:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39381:41;39410:4;39416:5;39381:28;:41::i;:::-;39111: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;35357:51::-;;;;:::o;41514:121::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41621:6:::1;41612;:15;;;;:::i;:::-;41590:18;:37;;;;41514:121:::0;:::o;35830:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;38075:334::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38214:8:::1;38182:40;;:19;:28;38202:7;38182:28;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;38160:139:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38341:8;38310:19;:28;38330:7;38310:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38383:7;38367:34;;;38392:8;38367:34;;;;;;:::i;:::-;;;;;;;;38075:334:::0;;:::o;37438:629::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37536:15:::1;;;;;;;;;;;37514:38;;:10;:38;;::::0;37506:93:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37651:10;37614:15;;:48;;;;;;;;;;;;;;;;;;37674:16;37724:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37706:52;;;37767:4;37787:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37706:104;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37674:136;;37845:1;37825:22;;:8;:22;;::::0;37821:239:::1;;37909:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37891:55;;;37955:4;37976:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37891:108;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37862:13;;:137;;;;;;;;;;;;;;;;;;37821:239;;;38040:8;38024:13;;:24;;;;;;;;;;;;;;;;;;37821:239;37499:568;37438:629:::0;:::o;26510:151::-;26599:7;26626:11;:18;26638:5;26626:18;;;;;;;;;;;;;;;:27;26645:7;26626:27;;;;;;;;;;;;;;;;26619:34;;26510:151;;;;:::o;40063:236::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40176:10:::1;40159:7;:14;;;:27;;;;;;;;;;;;;;;;;;40212:10;40197:12;;:25;;;;;;;;;;;;;;;;;;40258:2;40242:12;;;;;;;;;;;:18;;;;40233:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40063:236:::0;:::o;35085:54::-;;;;:::o;41269:185::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41359:6:::1;41349;:16;;41341:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41440:6;41431;:15;;;;:::i;:::-;41415:13;:31;;;;41269:185:::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;41027:181::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41114:6:::1;41104;:16;;41096:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41194:6;41185;:15;;;;:::i;:::-;41170:12;:30;;;;41027:181:::0;:::o;38418:414::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38516:4:::1;38498:23;;:6;:23;;::::0;38490:43:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38566:3;38548:22;;:6;:22;;::::0;38544:124:::1;;38595:7;:5;:7::i;:::-;38587:25;;:48;38613:21;38587:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38650:7;;38544:124;38678:17;38705:6;38678:34;;38723:15;38741:10;:20;;;38770:4;38741:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38723:53;;38787:10;:19;;;38807:7;:5;:7::i;:::-;38816;38787:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38479:353;;17702:1;38418: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;41643:2370::-;41791:1;41775:18;;:4;:18;;;41767:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41868:1;41854:16;;:2;:16;;;41846:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41939:16;;;;;;;;;;;:45;;;;41959:19;:25;41979:4;41959:25;;;;;;;;;;;;;;;;;;;;;;;;;41939:45;41930:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;42062:1;42052:6;:11;42048:93;;42080:28;42096:4;42102:2;42106:1;42080:15;:28::i;:::-;42123:7;;42048:93;42153:28;42184:24;42202:4;42184:9;:24::i;:::-;42153:55;;42219:28;42287:18;;42250:20;:55;;42219:86;;42336:11;;;;;;;;;;;:37;;;;;42365:8;;;;;;;;;;;42364:9;42336:37;:75;;;;;42398:13;;;;;;;;;;;42390:21;;:4;:21;;;;42336:75;:115;;;;;42428:23;42336:115;42318:272;;;42492:18;42513:20;42492:41;;42548:28;42565:10;42548:16;:28::i;:::-;42463:127;42318:272;42602:12;42617:4;42602:19;;42723;:25;42743:4;42723:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42752:19;:23;42772:2;42752:23;;;;;;;;;;;;;;;;;;;;;;;;;42723:52;42719:100;;;42802:5;42792:15;;42719:100;42835:7;42831:1129;;;42859:12;42906:25;:29;42932:2;42906:29;;;;;;;;;;;;;;;;;;;;;;;;;42902:185;;;42963:12;;;;;;;;;;;42956:19;;;;42902:185;;;43001:25;:31;43027:4;43001:31;;;;;;;;;;;;;;;;;;;;;;;;;42997:90;;;43060:11;;;;;;;;;;;43053:18;;;;42997:90;42902:185;43108:20;:26;43129:4;43108:26;;;;;;;;;;;;;;;;;;;;;;;;;43107:27;:56;;;;;43139:20;:24;43160:2;43139:24;;;;;;;;;;;;;;;;;;;;;;;;;43138:25;43107:56;43103:675;;;43188:25;:29;43214:2;43188:29;;;;;;;;;;;;;;;;;;;;;;;;;43184:321;;;43260:13;;43250:6;:23;;43242:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;43184:321;;;43342:25;:31;43368:4;43342:31;;;;;;;;;;;;;;;;;;;;;;;;;43338:167;;;43414:12;;43404:6;:22;;43396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43338:167;43184:321;43530:25;:29;43556:2;43530:29;;;;;;;;;;;;;;;;;;;;;;;;;43525:238;;43644:15;;43634:6;43618:13;43628:2;43618:9;:13::i;:::-;:22;;;;:::i;:::-;:41;;43584:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;43525:238;43103:675;43794:17;43814:25;43835:3;43814:16;43825:4;43814:6;:10;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;43794:45;;43863:21;43874:9;43863:6;:10;;:21;;;;:::i;:::-;43854:30;;43901:47;43917:4;43931;43938:9;43901:15;:47::i;:::-;42844:1116;;42831:1129;43972:33;43988:4;43994:2;43998:6;43972:15;:33::i;:::-;41756:2257;;;41643: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;39438:352::-;39578:5;39543:40;;:25;:31;39569:4;39543:31;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;39521:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;39719:5;39685:25;:31;39711:4;39685:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39776:5;39742:40;;39770:4;39742:40;;;;;;;;;;;;39438: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;44021:362::-;36220:4;36209:8;;:15;;;;;;;;;;;;;;;;;;44095:22:::1;44120:21;44095:46;;44152:24;44169:6;44152:16;:24::i;:::-;44187:18;44208:41;44234:14;44208:21;:25;;:41;;;;:::i;:::-;44187:62;;44272:7;44293:9;;;;;;;;;;;44285:23;;44316:10;44285:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44271:60;;;44349:2;44341:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;44084:299;;;36258:5:::0;36247:8;;:16;;;;;;;;;;;;;;;;;;44021: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;44396:591::-;44522:21;44560:1;44546:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44522:40;;44591:4;44573;44578:1;44573:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44617:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44607:4;44612:1;44607:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44652:62;44669:4;44684:15;;;;;;;;;;;44702:11;44652:8;:62::i;:::-;44753:15;;;;;;;;;;;:66;;;44834:11;44860:1;44904:4;44931;44951:15;44753:226;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44451:536;44396: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:176::-;13181:28;13177:1;13169:6;13165:14;13158:52;13041:176;:::o;13223:366::-;13365:3;13386:67;13450:2;13445:3;13386:67;:::i;:::-;13379:74;;13462:93;13551:3;13462:93;:::i;:::-;13580:2;13575:3;13571:12;13564:19;;13223:366;;;:::o;13595:419::-;13761:4;13799:2;13788:9;13784:18;13776:26;;13848:9;13842:4;13838:20;13834:1;13823:9;13819:17;13812:47;13876:131;14002:4;13876:131;:::i;:::-;13868:139;;13595:419;;;:::o;14020:221::-;14160:34;14156:1;14148:6;14144:14;14137:58;14229:4;14224:2;14216:6;14212:15;14205:29;14020:221;:::o;14247:366::-;14389:3;14410:67;14474:2;14469:3;14410:67;:::i;:::-;14403:74;;14486:93;14575:3;14486:93;:::i;:::-;14604:2;14599:3;14595:12;14588:19;;14247:366;;;:::o;14619:419::-;14785:4;14823:2;14812:9;14808:18;14800:26;;14872:9;14866:4;14862:20;14858:1;14847:9;14843:17;14836:47;14900:131;15026:4;14900:131;:::i;:::-;14892:139;;14619:419;;;:::o;15044:410::-;15084:7;15107:20;15125:1;15107:20;:::i;:::-;15102:25;;15141:20;15159:1;15141:20;:::i;:::-;15136:25;;15196:1;15193;15189:9;15218:30;15236:11;15218:30;:::i;:::-;15207:41;;15397:1;15388:7;15384:15;15381:1;15378:22;15358:1;15351:9;15331:83;15308:139;;15427:18;;:::i;:::-;15308:139;15092:362;15044:410;;;;:::o;15460:296::-;15600:34;15596:1;15588:6;15584:14;15577:58;15669:34;15664:2;15656:6;15652:15;15645:59;15738:10;15733:2;15725:6;15721:15;15714:35;15460:296;:::o;15762:366::-;15904:3;15925:67;15989:2;15984:3;15925:67;:::i;:::-;15918:74;;16001:93;16090:3;16001:93;:::i;:::-;16119:2;16114:3;16110:12;16103:19;;15762:366;;;:::o;16134:419::-;16300:4;16338:2;16327:9;16323:18;16315:26;;16387:9;16381:4;16377:20;16373:1;16362:9;16358:17;16351:47;16415:131;16541:4;16415:131;:::i;:::-;16407:139;;16134:419;;;:::o;16559:224::-;16699:34;16695:1;16687:6;16683:14;16676:58;16768:7;16763:2;16755:6;16751:15;16744:32;16559:224;:::o;16789:366::-;16931:3;16952:67;17016:2;17011:3;16952:67;:::i;:::-;16945:74;;17028:93;17117:3;17028:93;:::i;:::-;17146:2;17141:3;17137:12;17130:19;;16789:366;;;:::o;17161:419::-;17327:4;17365:2;17354:9;17350:18;17342:26;;17414:9;17408:4;17404:20;17400:1;17389:9;17385:17;17378:47;17442:131;17568:4;17442:131;:::i;:::-;17434:139;;17161:419;;;:::o;17586:236::-;17726:34;17722:1;17714:6;17710:14;17703:58;17795:19;17790:2;17782:6;17778:15;17771:44;17586:236;:::o;17828:366::-;17970:3;17991:67;18055:2;18050:3;17991:67;:::i;:::-;17984:74;;18067:93;18156:3;18067:93;:::i;:::-;18185:2;18180:3;18176:12;18169:19;;17828:366;;;:::o;18200:419::-;18366:4;18404:2;18393:9;18389:18;18381:26;;18453:9;18447:4;18443:20;18439:1;18428:9;18424:17;18417:47;18481:131;18607:4;18481:131;:::i;:::-;18473:139;;18200:419;;;:::o;18625:229::-;18765:34;18761:1;18753:6;18749:14;18742:58;18834:12;18829:2;18821:6;18817:15;18810:37;18625:229;:::o;18860:366::-;19002:3;19023:67;19087:2;19082:3;19023:67;:::i;:::-;19016:74;;19099:93;19188:3;19099:93;:::i;:::-;19217:2;19212:3;19208:12;19201:19;;18860:366;;;:::o;19232:419::-;19398:4;19436:2;19425:9;19421:18;19413:26;;19485:9;19479:4;19475:20;19471:1;19460:9;19456:17;19449:47;19513:131;19639:4;19513:131;:::i;:::-;19505:139;;19232:419;;;:::o;19657:143::-;19714:5;19745:6;19739:13;19730:22;;19761:33;19788:5;19761:33;:::i;:::-;19657:143;;;;:::o;19806:351::-;19876:6;19925:2;19913:9;19904:7;19900:23;19896:32;19893:119;;;19931:79;;:::i;:::-;19893:119;20051:1;20076:64;20132:7;20123:6;20112:9;20108:22;20076:64;:::i;:::-;20066:74;;20022:128;19806:351;;;;:::o;20163:332::-;20284:4;20322:2;20311:9;20307:18;20299:26;;20335:71;20403:1;20392:9;20388:17;20379:6;20335:71;:::i;:::-;20416:72;20484:2;20473:9;20469:18;20460:6;20416:72;:::i;:::-;20163:332;;;;;:::o;20501:176::-;20641:28;20637:1;20629:6;20625:14;20618:52;20501:176;:::o;20683:366::-;20825:3;20846:67;20910:2;20905:3;20846:67;:::i;:::-;20839:74;;20922:93;21011:3;20922:93;:::i;:::-;21040:2;21035:3;21031:12;21024:19;;20683:366;;;:::o;21055:419::-;21221:4;21259:2;21248:9;21244:18;21236:26;;21308:9;21302:4;21298:20;21294:1;21283:9;21279:17;21272:47;21336:131;21462:4;21336:131;:::i;:::-;21328:139;;21055:419;;;:::o;21480:225::-;21620:34;21616:1;21608:6;21604:14;21597:58;21689:8;21684:2;21676:6;21672:15;21665:33;21480:225;:::o;21711:366::-;21853:3;21874:67;21938:2;21933:3;21874:67;:::i;:::-;21867:74;;21950:93;22039:3;21950:93;:::i;:::-;22068:2;22063:3;22059:12;22052:19;;21711:366;;;:::o;22083:419::-;22249:4;22287:2;22276:9;22272:18;22264:26;;22336:9;22330:4;22326:20;22322:1;22311:9;22307:17;22300:47;22364:131;22490:4;22364:131;:::i;:::-;22356:139;;22083:419;;;:::o;22508:157::-;22648:9;22644:1;22636:6;22632:14;22625:33;22508:157;:::o;22671:365::-;22813:3;22834:66;22898:1;22893:3;22834:66;:::i;:::-;22827:73;;22909:93;22998:3;22909:93;:::i;:::-;23027:2;23022:3;23018:12;23011:19;;22671:365;;;:::o;23042:419::-;23208:4;23246:2;23235:9;23231:18;23223:26;;23295:9;23289:4;23285:20;23281:1;23270:9;23266:17;23259:47;23323:131;23449:4;23323:131;:::i;:::-;23315:139;;23042:419;;;:::o;23467:143::-;23524:5;23555:6;23549:13;23540:22;;23571:33;23598:5;23571:33;:::i;:::-;23467:143;;;;:::o;23616:351::-;23686:6;23735:2;23723:9;23714:7;23710:23;23706:32;23703:119;;;23741:79;;:::i;:::-;23703:119;23861:1;23886:64;23942:7;23933:6;23922:9;23918:22;23886:64;:::i;:::-;23876:74;;23832:128;23616:351;;;;:::o;23973:332::-;24094:4;24132:2;24121:9;24117:18;24109:26;;24145:71;24213:1;24202:9;24198:17;24189:6;24145:71;:::i;:::-;24226:72;24294:2;24283:9;24279:18;24270:6;24226:72;:::i;:::-;23973:332;;;;;:::o;24311:137::-;24365:5;24396:6;24390:13;24381:22;;24412:30;24436:5;24412:30;:::i;:::-;24311:137;;;;:::o;24454:345::-;24521:6;24570:2;24558:9;24549:7;24545:23;24541:32;24538:119;;;24576:79;;:::i;:::-;24538:119;24696:1;24721:61;24774:7;24765:6;24754:9;24750:22;24721:61;:::i;:::-;24711:71;;24667:125;24454:345;;;;:::o;24805:223::-;24945:34;24941:1;24933:6;24929:14;24922:58;25014:6;25009:2;25001:6;24997:15;24990:31;24805:223;:::o;25034:366::-;25176:3;25197:67;25261:2;25256:3;25197:67;:::i;:::-;25190:74;;25273:93;25362:3;25273:93;:::i;:::-;25391:2;25386:3;25382:12;25375:19;;25034:366;;;:::o;25406:419::-;25572:4;25610:2;25599:9;25595:18;25587:26;;25659:9;25653:4;25649:20;25645:1;25634:9;25630:17;25623:47;25687:131;25813:4;25687:131;:::i;:::-;25679:139;;25406:419;;;:::o;25831:221::-;25971:34;25967:1;25959:6;25955:14;25948:58;26040:4;26035:2;26027:6;26023:15;26016:29;25831:221;:::o;26058:366::-;26200:3;26221:67;26285:2;26280:3;26221:67;:::i;:::-;26214:74;;26297:93;26386:3;26297:93;:::i;:::-;26415:2;26410:3;26406:12;26399:19;;26058:366;;;:::o;26430:419::-;26596:4;26634:2;26623:9;26619:18;26611:26;;26683:9;26677:4;26673:20;26669:1;26658:9;26654:17;26647:47;26711:131;26837:4;26711:131;:::i;:::-;26703:139;;26430:419;;;:::o;26855:224::-;26995:34;26991:1;26983:6;26979:14;26972:58;27064:7;27059:2;27051:6;27047:15;27040:32;26855:224;:::o;27085:366::-;27227:3;27248:67;27312:2;27307:3;27248:67;:::i;:::-;27241:74;;27324:93;27413:3;27324:93;:::i;:::-;27442:2;27437:3;27433:12;27426:19;;27085:366;;;:::o;27457:419::-;27623:4;27661:2;27650:9;27646:18;27638:26;;27710:9;27704:4;27700:20;27696:1;27685:9;27681:17;27674:47;27738:131;27864:4;27738:131;:::i;:::-;27730:139;;27457:419;;;:::o;27882:222::-;28022:34;28018:1;28010:6;28006:14;27999:58;28091:5;28086:2;28078:6;28074:15;28067:30;27882:222;:::o;28110:366::-;28252:3;28273:67;28337:2;28332:3;28273:67;:::i;:::-;28266:74;;28349:93;28438:3;28349:93;:::i;:::-;28467:2;28462:3;28458:12;28451:19;;28110:366;;;:::o;28482:419::-;28648:4;28686:2;28675:9;28671:18;28663:26;;28735:9;28729:4;28725:20;28721:1;28710:9;28706:17;28699:47;28763:131;28889:4;28763:131;:::i;:::-;28755:139;;28482:419;;;:::o;28907:173::-;29047:25;29043:1;29035:6;29031:14;29024:49;28907:173;:::o;29086:366::-;29228:3;29249:67;29313:2;29308:3;29249:67;:::i;:::-;29242:74;;29325:93;29414:3;29325:93;:::i;:::-;29443:2;29438:3;29434:12;29427:19;;29086:366;;;:::o;29458:419::-;29624:4;29662:2;29651:9;29647:18;29639:26;;29711:9;29705:4;29701:20;29697:1;29686:9;29682:17;29675:47;29739:131;29865:4;29739:131;:::i;:::-;29731:139;;29458:419;;;:::o;29883:221::-;30023:34;30019:1;30011:6;30007:14;30000:58;30092:4;30087:2;30079:6;30075:15;30068:29;29883:221;:::o;30110:366::-;30252:3;30273:67;30337:2;30332:3;30273:67;:::i;:::-;30266:74;;30349:93;30438:3;30349:93;:::i;:::-;30467:2;30462:3;30458:12;30451:19;;30110:366;;;:::o;30482:419::-;30648:4;30686:2;30675:9;30671:18;30663:26;;30735:9;30729:4;30725:20;30721:1;30710:9;30706:17;30699:47;30763:131;30889:4;30763:131;:::i;:::-;30755:139;;30482:419;;;:::o;30907:220::-;31047:34;31043:1;31035:6;31031:14;31024:58;31116:3;31111:2;31103:6;31099:15;31092:28;30907:220;:::o;31133:366::-;31275:3;31296:67;31360:2;31355:3;31296:67;:::i;:::-;31289:74;;31372:93;31461:3;31372:93;:::i;:::-;31490:2;31485:3;31481:12;31474:19;;31133:366;;;:::o;31505:419::-;31671:4;31709:2;31698:9;31694:18;31686:26;;31758:9;31752:4;31748:20;31744:1;31733:9;31729:17;31722:47;31786:131;31912:4;31786:131;:::i;:::-;31778:139;;31505:419;;;:::o;31930:182::-;32070:34;32066:1;32058:6;32054:14;32047:58;31930:182;:::o;32118:366::-;32260:3;32281:67;32345:2;32340:3;32281:67;:::i;:::-;32274:74;;32357:93;32446:3;32357:93;:::i;:::-;32475:2;32470:3;32466:12;32459:19;;32118:366;;;:::o;32490:419::-;32656:4;32694:2;32683:9;32679:18;32671:26;;32743:9;32737:4;32733:20;32729:1;32718:9;32714:17;32707:47;32771:131;32897:4;32771:131;:::i;:::-;32763:139;;32490:419;;;:::o;32915:250::-;33055:34;33051:1;33043:6;33039:14;33032:58;33124:33;33119:2;33111:6;33107:15;33100:58;32915:250;:::o;33171:366::-;33313:3;33334:67;33398:2;33393:3;33334:67;:::i;:::-;33327:74;;33410:93;33499:3;33410:93;:::i;:::-;33528:2;33523:3;33519:12;33512:19;;33171:366;;;:::o;33543:419::-;33709:4;33747:2;33736:9;33732:18;33724:26;;33796:9;33790:4;33786:20;33782:1;33771:9;33767:17;33760:47;33824:131;33950:4;33824:131;:::i;:::-;33816:139;;33543:419;;;:::o;33968:224::-;34108:34;34104:1;34096:6;34092:14;34085:58;34177:7;34172:2;34164:6;34160:15;34153:32;33968:224;:::o;34198:366::-;34340:3;34361:67;34425:2;34420:3;34361:67;:::i;:::-;34354:74;;34437:93;34526:3;34437:93;:::i;:::-;34555:2;34550:3;34546:12;34539:19;;34198:366;;;:::o;34570:419::-;34736:4;34774:2;34763:9;34759:18;34751:26;;34823:9;34817:4;34813:20;34809:1;34798:9;34794:17;34787:47;34851:131;34977:4;34851:131;:::i;:::-;34843:139;;34570:419;;;:::o;34995:222::-;35135:34;35131:1;35123:6;35119:14;35112:58;35204:5;35199:2;35191:6;35187:15;35180:30;34995:222;:::o;35223:366::-;35365:3;35386:67;35450:2;35445:3;35386:67;:::i;:::-;35379:74;;35462:93;35551:3;35462:93;:::i;:::-;35580:2;35575:3;35571:12;35564:19;;35223:366;;;:::o;35595:419::-;35761:4;35799:2;35788:9;35784:18;35776:26;;35848:9;35842:4;35838:20;35834:1;35823:9;35819:17;35812:47;35876:131;36002:4;35876:131;:::i;:::-;35868:139;;35595:419;;;:::o;36020:225::-;36160:34;36156:1;36148:6;36144:14;36137:58;36229:8;36224:2;36216:6;36212:15;36205:33;36020:225;:::o;36251:366::-;36393:3;36414:67;36478:2;36473:3;36414:67;:::i;:::-;36407:74;;36490:93;36579:3;36490:93;:::i;:::-;36608:2;36603:3;36599:12;36592:19;;36251:366;;;:::o;36623:419::-;36789:4;36827:2;36816:9;36812:18;36804:26;;36876:9;36870:4;36866:20;36862:1;36851:9;36847:17;36840:47;36904:131;37030:4;36904:131;:::i;:::-;36896:139;;36623:419;;;:::o;37048:147::-;37149:11;37186:3;37171:18;;37048:147;;;;:::o;37201:114::-;;:::o;37321:398::-;37480:3;37501:83;37582:1;37577:3;37501:83;:::i;:::-;37494:90;;37593:93;37682:3;37593:93;:::i;:::-;37711:1;37706:3;37702:11;37695:18;;37321:398;;;:::o;37725:379::-;37909:3;37931:147;38074:3;37931:147;:::i;:::-;37924:154;;38095:3;38088:10;;37725:379;;;:::o;38110:168::-;38250:20;38246:1;38238:6;38234:14;38227:44;38110:168;:::o;38284:366::-;38426:3;38447:67;38511:2;38506:3;38447:67;:::i;:::-;38440:74;;38523:93;38612:3;38523:93;:::i;:::-;38641:2;38636:3;38632:12;38625:19;;38284:366;;;:::o;38656:419::-;38822:4;38860:2;38849:9;38845:18;38837:26;;38909:9;38903:4;38899:20;38895:1;38884:9;38880:17;38873:47;38937:131;39063:4;38937:131;:::i;:::-;38929:139;;38656:419;;;:::o;39081:180::-;39129:77;39126:1;39119:88;39226:4;39223:1;39216:15;39250:4;39247:1;39240:15;39267:185;39307:1;39324:20;39342:1;39324:20;:::i;:::-;39319:25;;39358:20;39376:1;39358:20;:::i;:::-;39353:25;;39397:1;39387:35;;39402:18;;:::i;:::-;39387:35;39444:1;39441;39437:9;39432:14;;39267:185;;;;:::o;39458:194::-;39498:4;39518:20;39536:1;39518:20;:::i;:::-;39513:25;;39552:20;39570:1;39552:20;:::i;:::-;39547:25;;39596:1;39593;39589:9;39581:17;;39620:1;39614:4;39611:11;39608:37;;;39625:18;;:::i;:::-;39608:37;39458:194;;;;:::o;39658:180::-;39706:77;39703:1;39696:88;39803:4;39800:1;39793:15;39827:4;39824:1;39817:15;39844:180;39892:77;39889:1;39882:88;39989:4;39986:1;39979:15;40013:4;40010:1;40003:15;40030:85;40075:7;40104:5;40093:16;;40030:85;;;:::o;40121:158::-;40179:9;40212:61;40230:42;40239:32;40265:5;40239:32;:::i;:::-;40230:42;:::i;:::-;40212:61;:::i;:::-;40199:74;;40121:158;;;:::o;40285:147::-;40380:45;40419:5;40380:45;:::i;:::-;40375:3;40368:58;40285:147;;:::o;40438:114::-;40505:6;40539:5;40533:12;40523:22;;40438:114;;;:::o;40558:184::-;40657:11;40691:6;40686:3;40679:19;40731:4;40726:3;40722:14;40707:29;;40558:184;;;;:::o;40748:132::-;40815:4;40838:3;40830:11;;40868:4;40863:3;40859:14;40851:22;;40748:132;;;:::o;40886:108::-;40963:24;40981:5;40963:24;:::i;:::-;40958:3;40951:37;40886:108;;:::o;41000:179::-;41069:10;41090:46;41132:3;41124:6;41090:46;:::i;:::-;41168:4;41163:3;41159:14;41145:28;;41000:179;;;;:::o;41185:113::-;41255:4;41287;41282:3;41278:14;41270:22;;41185:113;;;:::o;41334:732::-;41453:3;41482:54;41530:5;41482:54;:::i;:::-;41552:86;41631:6;41626:3;41552:86;:::i;:::-;41545:93;;41662:56;41712:5;41662:56;:::i;:::-;41741:7;41772:1;41757:284;41782:6;41779:1;41776:13;41757:284;;;41858:6;41852:13;41885:63;41944:3;41929:13;41885:63;:::i;:::-;41878:70;;41971:60;42024:6;41971:60;:::i;:::-;41961:70;;41817:224;41804:1;41801;41797:9;41792:14;;41757:284;;;41761:14;42057:3;42050:10;;41458:608;;;41334:732;;;;:::o;42072:831::-;42335:4;42373:3;42362:9;42358:19;42350:27;;42387:71;42455:1;42444:9;42440:17;42431:6;42387:71;:::i;:::-;42468:80;42544:2;42533:9;42529:18;42520:6;42468:80;:::i;:::-;42595:9;42589:4;42585:20;42580:2;42569:9;42565:18;42558:48;42623:108;42726:4;42717:6;42623:108;:::i;:::-;42615:116;;42741:72;42809:2;42798:9;42794:18;42785:6;42741:72;:::i;:::-;42823:73;42891:3;42880:9;42876:19;42867:6;42823:73;:::i;:::-;42072:831;;;;;;;;:::o

Swarm Source

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