ETH Price: $2,519.46 (+2.05%)

Token

Uptober (UPTO)
 

Overview

Max Total Supply

555,555,555 UPTO

Holders

76

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.274710613 UPTO

Value
$0.00
0xfdd8a3373d3e699ef05acfb013ddabab16d18542
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:
UpToToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-01
*/

/*

Uptober $upto community token by hapu,  dynamic wallet feature to combat bots, trade at your own risk no promises. ($upto)

Website = https://uptober.xyz
Telegram = http://t.me/uptobertoken
Twitter = https://twitter.com/uptobertoken

*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.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 subtraction 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/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: contracts/UpToToken.sol

pragma solidity ^0.8.4;









abstract contract MaxWalletDynamic {
    uint256 startMaxWallet;
    uint256 startTime; // last increment time
    uint256 constant startMaxBuyPercentil = 5; // maximum buy on start 1000=100%
    uint256 constant maxBuyIncrementMinutesTimer = 2; // increment maxbuy minutes
    uint256 constant maxBuyIncrementPercentil = 3; // increment maxbyu percentil 1000=100%
    uint256 constant maxIncrements = 1000; // maximum time incrementations
    uint256 maxBuyIncrementValue; // value for increment maxBuy

    function startMaxWalletDynamic(uint256 totalSupply) internal {
        startTime = block.timestamp;
        startMaxWallet = (totalSupply * startMaxBuyPercentil) / 1000;
        maxBuyIncrementValue = (totalSupply * maxBuyIncrementPercentil) / 1000;
    }

    function checkMaxWallet(uint256 walletSize) internal view {
        require(walletSize <= getMaxWallet(), "max wallet limit");
    }

    function getMaxWallet() public view returns (uint256) {
        uint256 incrementCount = (block.timestamp - startTime) /
            (maxBuyIncrementMinutesTimer * 1 minutes);
        if (incrementCount >= maxIncrements) incrementCount = maxIncrements;
        return startMaxWallet + maxBuyIncrementValue * incrementCount;
    }

    function _setStartMaxWallet(uint256 startMaxWallet_) internal {
        startMaxWallet = startMaxWallet_;
    }
}


contract UpToToken is Context, IERC20, Ownable, MaxWalletDynamic {
    using SafeMath for uint256;
    using Address for address;

    address payable public treasuryWallet =
        payable(0xdD8829695079dCf1624D6566542dDC27038af547);
    address public constant deadAddress =
        0x000000000000000000000000000000000000dEaD;

    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isSniper;
    address[] private _confirmedSnipers;

    mapping(address => bool) private _isExcludedFee;

    string private constant _name = "Uptober";
    string private constant _symbol = "UPTO";
    uint8 private constant _decimals = 9;

    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 555555555 * 10**_decimals;

    uint256 public treasuryFeeOnBuy = 1;
    uint256 public treasuryFeeOnSell = 14;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    // PancakeSwap: 0x10ED43C718714eb63d5aA57B78B54704E256024E
    // Uniswap V2: 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
    address private constant _uniswapRouterAddress =
        0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    bool private _inSwapAndLiquify;

    uint256 public launchTime;
    bool private _tradingOpen = false;
    bool private _transferOpen = false;
    
    uint256 public swapAtAmount = _tTotal.div(1000);
    bool public swapAndTreasureEnabled = true;

    event SendETHRewards(address to, uint256 amountETH);
    event SendTokenRewards(address to, address token, uint256 amount);
    event SwapETHForTokens(address whereTo, uint256 amountIn, address[] path);
    event SwapTokensForETH(uint256 amountIn, address[] path);
    event SwapAndLiquify(
        uint256 tokensSwappedForEth,
        uint256 ethAddedForLp,
        uint256 tokensAddedForLp
    );

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

    constructor() {
        _tOwned[_msgSender()] = _tTotal;        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function initContract() external onlyOwner {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            _uniswapRouterAddress
        );
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFee[owner()] = true;
        _isExcludedFee[address(this)] = true;
    }

    function openTrading() external onlyOwner {
        _tradingOpen = true;
        _transferOpen = true;
        launchTime = block.timestamp;
        startMaxWalletDynamic(_tTotal);
    }

    function name() external pure returns (string memory) {
        return _name;
    }

    function symbol() external pure returns (string memory) {
        return _symbol;
    }

    function decimals() external pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() external pure override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _tOwned[account];
    }

    function transfer(address recipient, uint256 amount)
        external
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        external
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        external
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        external
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isSniper[to], "Stop sniping!");
        require(!_isSniper[from], "Stop sniping!");
        require(!_isSniper[_msgSender()], "Stop sniping!");
        require(
            _transferOpen || from == owner(),
            "transferring tokens is not currently allowed"
        );
        if ((from == uniswapV2Pair || to == uniswapV2Pair) && from != owner()) {
            require(_tradingOpen, "Trading not yet enabled.");
        }
        if (block.timestamp == launchTime && from == uniswapV2Pair) {
            _isSniper[to] = true;
            _confirmedSnipers.push(to);
        }

        if (
            balanceOf(address(this)) >= swapAtAmount &&
            !_inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndTreasureEnabled
        ) {
            swapAndSendTreasure(swapAtAmount);
        }

        if (isExcludedFromFee(from) || isExcludedFromFee(to)) {
            _basicTransfer(from, to, amount);
        } else {
            if (to == uniswapV2Pair) {
                _transferStandard(from, to, amount, treasuryFeeOnSell);
            } else if (from == uniswapV2Pair) {
                _transferStandard(from, to, amount, treasuryFeeOnBuy);
            } else {
                _basicTransfer(from, to, amount);
            }
        }

        if (
            from != owner() &&
            to != owner() &&
            to != uniswapV2Pair &&
            to != address(uniswapV2Router)
        ) {
            checkMaxWallet(balanceOf(to));
        }
    }

    function swapAndSendTreasure(uint256 amount) private lockTheSwap {
        _swapTokensForEth(amount);
        if (address(this).balance > 0) {
            treasuryWallet.call{value: address(this).balance}("");
        }
    }

    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), // the contract
            block.timestamp
        );

        emit SwapTokensForETH(tokenAmount, path);
    }

    function _basicTransfer(
        address from,
        address to,
        uint256 amount
    ) private {
        _tOwned[from] = _tOwned[from].sub(amount);
        _tOwned[to] = _tOwned[to].add(amount);
        emit Transfer(from, to, amount);
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount,
        uint256 fee
    ) private {
        uint256 treasuryFeeAmount = tAmount.div(100).mul(fee);
        uint256 transferAmount = tAmount.sub(treasuryFeeAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _tOwned[recipient] = _tOwned[recipient].add(transferAmount);
        _tOwned[address(this)] = _tOwned[address(this)].add(treasuryFeeAmount);
        emit Transfer(sender, recipient, transferAmount);
        emit Transfer(sender, address(this), treasuryFeeAmount);
    }

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

    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFee[account] = true;
    }

    function includeInFee(address account) external onlyOwner {
        _isExcludedFee[account] = false;
    }

    function setTreasuryFeePercent(uint256 _newFeeOnBuy, uint256 _newFeeOnSell)
        external
        onlyOwner
    {
        require(
            _newFeeOnBuy <= 100 && _newFeeOnSell <= 100,
            "fee cannot exceed 100%"
        );
        treasuryFeeOnBuy = _newFeeOnBuy;
        treasuryFeeOnSell = _newFeeOnSell;
    }

    function setTreasuryAddress(address _treasuryWallet) external onlyOwner {
        treasuryWallet = payable(_treasuryWallet);
    }

    function setSwapAndTreasureEnabled(bool flag) external onlyOwner {
        swapAndTreasureEnabled = flag;
    }

    function setCanTransfer(bool _canTransfer) external onlyOwner {
        _transferOpen = _canTransfer;
    }

    function setSwapAtAmount(uint256 amount) external onlyOwner {
        swapAtAmount = amount;
    }    

    function isRemovedSniper(address account) external view returns (bool) {
        return _isSniper[account];
    }

    function removeSniper(address account) external onlyOwner {
        require(
            account != _uniswapRouterAddress,
            "We can not blacklist Uniswap"
        );
        require(!_isSniper[account], "Account is already blacklisted");
        _isSniper[account] = true;
        _confirmedSnipers.push(account);
    }

    function amnestySniper(address account) external onlyOwner {
        require(_isSniper[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _confirmedSnipers.length; i++) {
            if (_confirmedSnipers[i] == account) {
                _confirmedSnipers[i] = _confirmedSnipers[
                    _confirmedSnipers.length - 1
                ];
                _isSniper[account] = false;
                _confirmedSnipers.pop();
                break;
            }
        }
    }

    function emergencyWithdraw() external onlyOwner {
        payable(owner()).send(address(this).balance);
    }

    // to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountETH","type":"uint256"}],"name":"SendETHRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendTokenRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwappedForEth","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAddedForLp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensAddedForLp","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"whereTo","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"amnestySniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isRemovedSniper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_canTransfer","type":"bool"}],"name":"setCanTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"setSwapAndTreasureEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"_newFeeOnSell","type":"uint256"}],"name":"setTreasuryFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndTreasureEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"treasuryFeeOnBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryFeeOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405273dd8829695079dcf1624d6566542ddc27038af547600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a55600e600b556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff021916908315150217905550620000d56103e86009600a620000b09190620003d6565b63211d1ae3620000c1919062000513565b6200023160201b620019a61790919060201c565b6010556001601160006101000a81548160ff0219169083151502179055503480156200010057600080fd5b5062000121620001156200024960201b60201c565b6200025160201b60201c565b6009600a620001319190620003d6565b63211d1ae362000142919062000513565b60056000620001566200024960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620001a46200024960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009600a620002039190620003d6565b63211d1ae362000214919062000513565b60405162000223919062000326565b60405180910390a3620005f6565b6000818362000241919062000343565b905092915050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003208162000574565b82525050565b60006020820190506200033d600083018462000315565b92915050565b6000620003508262000574565b91506200035d8362000574565b92508262000370576200036f620005ba565b5b828204905092915050565b6000808291508390505b6001851115620003cd57808604811115620003a557620003a46200058b565b5b6001851615620003b55780820291505b8081029050620003c585620005e9565b945062000385565b94509492505050565b6000620003e38262000574565b9150620003f0836200057e565b92506200041f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000427565b905092915050565b6000826200043957600190506200050c565b816200044957600090506200050c565b81600181146200046257600281146200046d57620004a3565b60019150506200050c565b60ff8411156200048257620004816200058b565b5b8360020a9150848211156200049c576200049b6200058b565b5b506200050c565b5060208310610133831016604e8410600b8410161715620004dd5782820a905083811115620004d757620004d66200058b565b5b6200050c565b620004ec84848460016200037b565b925090508184048111156200050657620005056200058b565b5b81810290505b9392505050565b6000620005208262000574565b91506200052d8362000574565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200056957620005686200058b565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160011c9050919050565b61406580620006066000396000f3fe6080604052600436106102295760003560e01c8063715016cb11610123578063a457c2d7116100ab578063db2e21bc1161006f578063db2e21bc14610804578063dd62ed3e1461081b578063ea2f0b3714610858578063f2fde38b14610881578063fd1e467f146108aa57610230565b8063a457c2d71461071f578063a9059cbb1461075c578063c75c136d14610799578063c9567bf9146107c2578063cdd4bd79146107d957610230565b80638203f5fe116100f25780638203f5fe1461065c578063824e460514610673578063869175241461069e5780638da5cb5b146106c957806395d89b41146106f457610230565b8063715016cb146105c8578063715018a6146105f157806375ae267d14610608578063790ca4131461063157610230565b806333251a0b116101b15780635342acb4116101755780635342acb4146104bf578063610d5b19146104fc5780636402511e146105395780636605bfda1461056257806370a082311461058b57610230565b806333251a0b146103da5780633950935114610403578063437823ec146104405780634626402b1461046957806349bd5a5e1461049457610230565b80631694505e116101f85780631694505e146102f157806318160ddd1461031c57806323b872dd1461034757806327c8f83514610384578063313ce567146103af57610230565b806306fdde0314610235578063095ea7b3146102605780630b2a808c1461029d5780630fa604e4146102c657610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108d5565b60405161025791906134ec565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190613021565b610912565b60405161029491906134b6565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612f44565b610930565b005b3480156102d257600080fd5b506102db610c45565b6040516102e891906136ee565b60405180910390f35b3480156102fd57600080fd5b50610306610ca0565b60405161031391906134d1565b60405180910390f35b34801561032857600080fd5b50610331610cc6565b60405161033e91906136ee565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612fd2565b610cea565b60405161037b91906134b6565b60405180910390f35b34801561039057600080fd5b50610399610dc3565b6040516103a69190613457565b60405180910390f35b3480156103bb57600080fd5b506103c4610dc9565b6040516103d19190613793565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc9190612f44565b610dd2565b005b34801561040f57600080fd5b5061042a60048036038101906104259190613021565b610fa8565b60405161043791906134b6565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190612f44565b61105b565b005b34801561047557600080fd5b5061047e6110be565b60405161048b9190613472565b60405180910390f35b3480156104a057600080fd5b506104a96110e4565b6040516104b69190613457565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612f44565b61110a565b6040516104f391906134b6565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612f44565b611160565b60405161053091906134b6565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b9190613086565b6111b6565b005b34801561056e57600080fd5b5061058960048036038101906105849190612f44565b6111c8565b005b34801561059757600080fd5b506105b260048036038101906105ad9190612f44565b611214565b6040516105bf91906136ee565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea91906130af565b61125d565b005b3480156105fd57600080fd5b506106066112c8565b005b34801561061457600080fd5b5061062f600480360381019061062a919061305d565b6112dc565b005b34801561063d57600080fd5b50610646611301565b60405161065391906136ee565b60405180910390f35b34801561066857600080fd5b50610671611307565b005b34801561067f57600080fd5b506106886115ea565b60405161069591906136ee565b60405180910390f35b3480156106aa57600080fd5b506106b36115f0565b6040516106c091906136ee565b60405180910390f35b3480156106d557600080fd5b506106de6115f6565b6040516106eb9190613457565b60405180910390f35b34801561070057600080fd5b5061070961161f565b60405161071691906134ec565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190613021565b61165c565b60405161075391906134b6565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613021565b611729565b60405161079091906134b6565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb919061305d565b611747565b005b3480156107ce57600080fd5b506107d761176c565b005b3480156107e557600080fd5b506107ee6117d8565b6040516107fb91906136ee565b60405180910390f35b34801561081057600080fd5b506108196117de565b005b34801561082757600080fd5b50610842600480360381019061083d9190612f96565b611825565b60405161084f91906136ee565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612f44565b6118ac565b005b34801561088d57600080fd5b506108a860048036038101906108a39190612f44565b61190f565b005b3480156108b657600080fd5b506108bf611993565b6040516108cc91906134b6565b60405180910390f35b60606040518060400160405280600781526020017f5570746f62657200000000000000000000000000000000000000000000000000815250905090565b600061092661091f6119bc565b84846119c4565b6001905092915050565b610938611b8f565b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb906135ee565b60405180910390fd5b60005b600880549050811015610c41578173ffffffffffffffffffffffffffffffffffffffff1660088281548110610a25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610c2e5760086001600880549050610a809190613a60565b81548110610ab7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660088281548110610b1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008805480610bf4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610c41565b8080610c3990613b64565b9150506109c7565b5050565b600080603c6002610c569190613a06565b60025442610c649190613a60565b610c6e9190613864565b90506103e88110610c7f576103e890505b80600354610c8d9190613a06565b600154610c9a919061380e565b91505090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009600a610cd691906138e8565b63211d1ae3610ce59190613a06565b905090565b6000610cf7848484611c0d565b610db884610d036119bc565b610db385604051806060016040528060288152602001613fe360289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d696119bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c49092919063ffffffff16565b6119c4565b600190509392505050565b61dead81565b60006009905090565b610dda611b8f565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e549061360e565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee19061356e565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611051610fb56119bc565b8461104c8560066000610fc66119bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251990919063ffffffff16565b6119c4565b6001905092915050565b611063611b8f565b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111be611b8f565b8060108190555050565b6111d0611b8f565b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611265611b8f565b60648211158015611277575060648111155b6112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad906136ce565b60405180910390fd5b81600a8190555080600b819055505050565b6112d0611b8f565b6112da600061252f565b565b6112e4611b8f565b80600f60016101000a81548160ff02191690831515021790555050565b600e5481565b61130f611b8f565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561136e57600080fd5b505afa158015611382573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a69190612f6d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561140857600080fd5b505afa15801561141c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114409190612f6d565b6040518363ffffffff1660e01b815260040161145d92919061348d565b602060405180830381600087803b15801561147757600080fd5b505af115801561148b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114af9190612f6d565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600061153e6115f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a5481565b60105481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f5550544f00000000000000000000000000000000000000000000000000000000815250905090565b600061171f6116696119bc565b8461171a8560405180606001604052806025815260200161400b60259139600660006116936119bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c49092919063ffffffff16565b6119c4565b6001905092915050565b600061173d6117366119bc565b8484611c0d565b6001905092915050565b61174f611b8f565b80601160006101000a81548160ff02191690831515021790555050565b611774611b8f565b6001600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff02191690831515021790555042600e819055506117d66009600a6117c291906138e8565b63211d1ae36117d19190613a06565b6125f3565b565b600b5481565b6117e6611b8f565b6117ee6115f6565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6118b4611b8f565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611917611b8f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e9061352e565b60405180910390fd5b6119908161252f565b50565b601160009054906101000a900460ff1681565b600081836119b49190613864565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2b9061366e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b9061354e565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b8291906136ee565b60405180910390a3505050565b611b976119bc565b73ffffffffffffffffffffffffffffffffffffffff16611bb56115f6565b73ffffffffffffffffffffffffffffffffffffffff1614611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c02906135ae565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c749061362e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce49061350e565b60405180910390fd5b60008111611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d27906135ce565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db49061364e565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e419061364e565b60405180910390fd5b60076000611e566119bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed59061364e565b60405180910390fd5b600f60019054906101000a900460ff1680611f2b5750611efc6115f6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f619061358e565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806120135750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561205257506120226115f6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156120a757600f60009054906101000a900460ff166120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d906136ae565b60405180910390fd5b5b600e54421480156121055750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156121c6576001600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6010546121d230611214565b101580156121ed5750600d60149054906101000a900460ff16155b80156122475750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561225f5750601160009054906101000a900460ff165b156122705761226f60105461263d565b5b6122798361110a565b8061228957506122888261110a565b5b1561229e57612299838383612714565b61237e565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561230757612302838383600b546128a8565b61237d565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123705761236b838383600a546128a8565b61237c565b61237b838383612714565b5b5b5b6123866115f6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123f457506123c46115f6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561244e5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124a85750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124bf576124be6124b983611214565b612b7a565b5b505050565b600083831115829061250c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250391906134ec565b60405180910390fd5b5082840390509392505050565b60008183612527919061380e565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b426002819055506103e860058261260a9190613a06565b6126149190613864565b6001819055506103e860038261262a9190613a06565b6126349190613864565b60038190555050565b6001600d60146101000a81548160ff02191690831515021790555061266181612bc7565b60004711156126f657600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516126b090613442565b60006040518083038185875af1925050503d80600081146126ed576040519150601f19603f3d011682016040523d82523d6000602084013e6126f2565b606091505b5050505b6000600d60146101000a81548160ff02191690831515021790555050565b61276681600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ec490919063ffffffff16565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127fb81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251990919063ffffffff16565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161289b91906136ee565b60405180910390a3505050565b60006128d0826128c26064866119a690919063ffffffff16565b612eda90919063ffffffff16565b905060006128e78285612ec490919063ffffffff16565b905061293b84600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ec490919063ffffffff16565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506129d081600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251990919063ffffffff16565b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a6582600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251990919063ffffffff16565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612b0591906136ee565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b6a91906136ee565b60405180910390a3505050505050565b612b82610c45565b811115612bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbb9061368e565b60405180910390fd5b50565b6000600267ffffffffffffffff811115612c0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612c385781602001602082028036833780820191505090505b5090503081600081518110612c76577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612d1857600080fd5b505afa158015612d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d509190612f6d565b81600181518110612d8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612df130600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846119c4565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612e55959493929190613739565b600060405180830381600087803b158015612e6f57600080fd5b505af1158015612e83573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a78282604051612eb8929190613709565b60405180910390a15050565b60008183612ed29190613a60565b905092915050565b60008183612ee89190613a06565b905092915050565b600081359050612eff81613f9d565b92915050565b600081519050612f1481613f9d565b92915050565b600081359050612f2981613fb4565b92915050565b600081359050612f3e81613fcb565b92915050565b600060208284031215612f5657600080fd5b6000612f6484828501612ef0565b91505092915050565b600060208284031215612f7f57600080fd5b6000612f8d84828501612f05565b91505092915050565b60008060408385031215612fa957600080fd5b6000612fb785828601612ef0565b9250506020612fc885828601612ef0565b9150509250929050565b600080600060608486031215612fe757600080fd5b6000612ff586828701612ef0565b935050602061300686828701612ef0565b925050604061301786828701612f2f565b9150509250925092565b6000806040838503121561303457600080fd5b600061304285828601612ef0565b925050602061305385828601612f2f565b9150509250929050565b60006020828403121561306f57600080fd5b600061307d84828501612f1a565b91505092915050565b60006020828403121561309857600080fd5b60006130a684828501612f2f565b91505092915050565b600080604083850312156130c257600080fd5b60006130d085828601612f2f565b92505060206130e185828601612f2f565b9150509250929050565b60006130f78383613112565b60208301905092915050565b61310c81613aa6565b82525050565b61311b81613a94565b82525050565b61312a81613a94565b82525050565b600061313b826137be565b61314581856137e1565b9350613150836137ae565b8060005b8381101561318157815161316888826130eb565b9750613173836137d4565b925050600181019050613154565b5085935050505092915050565b61319781613ab8565b82525050565b6131a681613afb565b82525050565b6131b581613b1f565b82525050565b60006131c6826137c9565b6131d081856137fd565b93506131e0818560208601613b31565b6131e981613c0b565b840191505092915050565b60006132016023836137fd565b915061320c82613c29565b604082019050919050565b60006132246026836137fd565b915061322f82613c78565b604082019050919050565b60006132476022836137fd565b915061325282613cc7565b604082019050919050565b600061326a601e836137fd565b915061327582613d16565b602082019050919050565b600061328d602c836137fd565b915061329882613d3f565b604082019050919050565b60006132b06020836137fd565b91506132bb82613d8e565b602082019050919050565b60006132d36029836137fd565b91506132de82613db7565b604082019050919050565b60006132f6601a836137fd565b915061330182613e06565b602082019050919050565b6000613319601c836137fd565b915061332482613e2f565b602082019050919050565b600061333c6025836137fd565b915061334782613e58565b604082019050919050565b600061335f600d836137fd565b915061336a82613ea7565b602082019050919050565b60006133826000836137f2565b915061338d82613ed0565b600082019050919050565b60006133a56024836137fd565b91506133b082613ed3565b604082019050919050565b60006133c86010836137fd565b91506133d382613f22565b602082019050919050565b60006133eb6018836137fd565b91506133f682613f4b565b602082019050919050565b600061340e6016836137fd565b915061341982613f74565b602082019050919050565b61342d81613ae4565b82525050565b61343c81613aee565b82525050565b600061344d82613375565b9150819050919050565b600060208201905061346c6000830184613121565b92915050565b60006020820190506134876000830184613103565b92915050565b60006040820190506134a26000830185613121565b6134af6020830184613121565b9392505050565b60006020820190506134cb600083018461318e565b92915050565b60006020820190506134e6600083018461319d565b92915050565b6000602082019050818103600083015261350681846131bb565b905092915050565b60006020820190508181036000830152613527816131f4565b9050919050565b6000602082019050818103600083015261354781613217565b9050919050565b600060208201905081810360008301526135678161323a565b9050919050565b600060208201905081810360008301526135878161325d565b9050919050565b600060208201905081810360008301526135a781613280565b9050919050565b600060208201905081810360008301526135c7816132a3565b9050919050565b600060208201905081810360008301526135e7816132c6565b9050919050565b60006020820190508181036000830152613607816132e9565b9050919050565b600060208201905081810360008301526136278161330c565b9050919050565b600060208201905081810360008301526136478161332f565b9050919050565b6000602082019050818103600083015261366781613352565b9050919050565b6000602082019050818103600083015261368781613398565b9050919050565b600060208201905081810360008301526136a7816133bb565b9050919050565b600060208201905081810360008301526136c7816133de565b9050919050565b600060208201905081810360008301526136e781613401565b9050919050565b60006020820190506137036000830184613424565b92915050565b600060408201905061371e6000830185613424565b81810360208301526137308184613130565b90509392505050565b600060a08201905061374e6000830188613424565b61375b60208301876131ac565b818103604083015261376d8186613130565b905061377c6060830185613121565b6137896080830184613424565b9695505050505050565b60006020820190506137a86000830184613433565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600061381982613ae4565b915061382483613ae4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561385957613858613bad565b5b828201905092915050565b600061386f82613ae4565b915061387a83613ae4565b92508261388a57613889613bdc565b5b828204905092915050565b6000808291508390505b60018511156138df578086048111156138bb576138ba613bad565b5b60018516156138ca5780820291505b80810290506138d885613c1c565b945061389f565b94509492505050565b60006138f382613ae4565b91506138fe83613aee565b925061392b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613933565b905092915050565b60008261394357600190506139ff565b8161395157600090506139ff565b81600181146139675760028114613971576139a0565b60019150506139ff565b60ff84111561398357613982613bad565b5b8360020a91508482111561399a57613999613bad565b5b506139ff565b5060208310610133831016604e8410600b84101617156139d55782820a9050838111156139d0576139cf613bad565b5b6139ff565b6139e28484846001613895565b925090508184048111156139f9576139f8613bad565b5b81810290505b9392505050565b6000613a1182613ae4565b9150613a1c83613ae4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a5557613a54613bad565b5b828202905092915050565b6000613a6b82613ae4565b9150613a7683613ae4565b925082821015613a8957613a88613bad565b5b828203905092915050565b6000613a9f82613ac4565b9050919050565b6000613ab182613ac4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613b0682613b0d565b9050919050565b6000613b1882613ac4565b9050919050565b6000613b2a82613ae4565b9050919050565b60005b83811015613b4f578082015181840152602081019050613b34565b83811115613b5e576000848401525b50505050565b6000613b6f82613ae4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ba257613ba1613bad565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420697320616c726561647920626c61636b6c69737465640000600082015250565b7f7472616e7366657272696e6720746f6b656e73206973206e6f7420637572726560008201527f6e746c7920616c6c6f7765640000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000600082015250565b7f57652063616e206e6f7420626c61636b6c69737420556e697377617000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53746f7020736e6970696e672100000000000000000000000000000000000000600082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f6d61782077616c6c6574206c696d697400000000000000000000000000000000600082015250565b7f54726164696e67206e6f742079657420656e61626c65642e0000000000000000600082015250565b7f6665652063616e6e6f7420657863656564203130302500000000000000000000600082015250565b613fa681613a94565b8114613fb157600080fd5b50565b613fbd81613ab8565b8114613fc857600080fd5b50565b613fd481613ae4565b8114613fdf57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c522ab22419736264ec2d9cc3cfbe4770eb40e68c6817766f9193ecd09e43d8364736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063715016cb11610123578063a457c2d7116100ab578063db2e21bc1161006f578063db2e21bc14610804578063dd62ed3e1461081b578063ea2f0b3714610858578063f2fde38b14610881578063fd1e467f146108aa57610230565b8063a457c2d71461071f578063a9059cbb1461075c578063c75c136d14610799578063c9567bf9146107c2578063cdd4bd79146107d957610230565b80638203f5fe116100f25780638203f5fe1461065c578063824e460514610673578063869175241461069e5780638da5cb5b146106c957806395d89b41146106f457610230565b8063715016cb146105c8578063715018a6146105f157806375ae267d14610608578063790ca4131461063157610230565b806333251a0b116101b15780635342acb4116101755780635342acb4146104bf578063610d5b19146104fc5780636402511e146105395780636605bfda1461056257806370a082311461058b57610230565b806333251a0b146103da5780633950935114610403578063437823ec146104405780634626402b1461046957806349bd5a5e1461049457610230565b80631694505e116101f85780631694505e146102f157806318160ddd1461031c57806323b872dd1461034757806327c8f83514610384578063313ce567146103af57610230565b806306fdde0314610235578063095ea7b3146102605780630b2a808c1461029d5780630fa604e4146102c657610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108d5565b60405161025791906134ec565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190613021565b610912565b60405161029491906134b6565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612f44565b610930565b005b3480156102d257600080fd5b506102db610c45565b6040516102e891906136ee565b60405180910390f35b3480156102fd57600080fd5b50610306610ca0565b60405161031391906134d1565b60405180910390f35b34801561032857600080fd5b50610331610cc6565b60405161033e91906136ee565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612fd2565b610cea565b60405161037b91906134b6565b60405180910390f35b34801561039057600080fd5b50610399610dc3565b6040516103a69190613457565b60405180910390f35b3480156103bb57600080fd5b506103c4610dc9565b6040516103d19190613793565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc9190612f44565b610dd2565b005b34801561040f57600080fd5b5061042a60048036038101906104259190613021565b610fa8565b60405161043791906134b6565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190612f44565b61105b565b005b34801561047557600080fd5b5061047e6110be565b60405161048b9190613472565b60405180910390f35b3480156104a057600080fd5b506104a96110e4565b6040516104b69190613457565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612f44565b61110a565b6040516104f391906134b6565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612f44565b611160565b60405161053091906134b6565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b9190613086565b6111b6565b005b34801561056e57600080fd5b5061058960048036038101906105849190612f44565b6111c8565b005b34801561059757600080fd5b506105b260048036038101906105ad9190612f44565b611214565b6040516105bf91906136ee565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea91906130af565b61125d565b005b3480156105fd57600080fd5b506106066112c8565b005b34801561061457600080fd5b5061062f600480360381019061062a919061305d565b6112dc565b005b34801561063d57600080fd5b50610646611301565b60405161065391906136ee565b60405180910390f35b34801561066857600080fd5b50610671611307565b005b34801561067f57600080fd5b506106886115ea565b60405161069591906136ee565b60405180910390f35b3480156106aa57600080fd5b506106b36115f0565b6040516106c091906136ee565b60405180910390f35b3480156106d557600080fd5b506106de6115f6565b6040516106eb9190613457565b60405180910390f35b34801561070057600080fd5b5061070961161f565b60405161071691906134ec565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190613021565b61165c565b60405161075391906134b6565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613021565b611729565b60405161079091906134b6565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb919061305d565b611747565b005b3480156107ce57600080fd5b506107d761176c565b005b3480156107e557600080fd5b506107ee6117d8565b6040516107fb91906136ee565b60405180910390f35b34801561081057600080fd5b506108196117de565b005b34801561082757600080fd5b50610842600480360381019061083d9190612f96565b611825565b60405161084f91906136ee565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612f44565b6118ac565b005b34801561088d57600080fd5b506108a860048036038101906108a39190612f44565b61190f565b005b3480156108b657600080fd5b506108bf611993565b6040516108cc91906134b6565b60405180910390f35b60606040518060400160405280600781526020017f5570746f62657200000000000000000000000000000000000000000000000000815250905090565b600061092661091f6119bc565b84846119c4565b6001905092915050565b610938611b8f565b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb906135ee565b60405180910390fd5b60005b600880549050811015610c41578173ffffffffffffffffffffffffffffffffffffffff1660088281548110610a25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610c2e5760086001600880549050610a809190613a60565b81548110610ab7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660088281548110610b1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008805480610bf4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610c41565b8080610c3990613b64565b9150506109c7565b5050565b600080603c6002610c569190613a06565b60025442610c649190613a60565b610c6e9190613864565b90506103e88110610c7f576103e890505b80600354610c8d9190613a06565b600154610c9a919061380e565b91505090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009600a610cd691906138e8565b63211d1ae3610ce59190613a06565b905090565b6000610cf7848484611c0d565b610db884610d036119bc565b610db385604051806060016040528060288152602001613fe360289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d696119bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c49092919063ffffffff16565b6119c4565b600190509392505050565b61dead81565b60006009905090565b610dda611b8f565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e549061360e565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee19061356e565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611051610fb56119bc565b8461104c8560066000610fc66119bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251990919063ffffffff16565b6119c4565b6001905092915050565b611063611b8f565b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111be611b8f565b8060108190555050565b6111d0611b8f565b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611265611b8f565b60648211158015611277575060648111155b6112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad906136ce565b60405180910390fd5b81600a8190555080600b819055505050565b6112d0611b8f565b6112da600061252f565b565b6112e4611b8f565b80600f60016101000a81548160ff02191690831515021790555050565b600e5481565b61130f611b8f565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561136e57600080fd5b505afa158015611382573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a69190612f6d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561140857600080fd5b505afa15801561141c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114409190612f6d565b6040518363ffffffff1660e01b815260040161145d92919061348d565b602060405180830381600087803b15801561147757600080fd5b505af115801561148b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114af9190612f6d565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600061153e6115f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a5481565b60105481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f5550544f00000000000000000000000000000000000000000000000000000000815250905090565b600061171f6116696119bc565b8461171a8560405180606001604052806025815260200161400b60259139600660006116936119bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c49092919063ffffffff16565b6119c4565b6001905092915050565b600061173d6117366119bc565b8484611c0d565b6001905092915050565b61174f611b8f565b80601160006101000a81548160ff02191690831515021790555050565b611774611b8f565b6001600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff02191690831515021790555042600e819055506117d66009600a6117c291906138e8565b63211d1ae36117d19190613a06565b6125f3565b565b600b5481565b6117e6611b8f565b6117ee6115f6565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6118b4611b8f565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611917611b8f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e9061352e565b60405180910390fd5b6119908161252f565b50565b601160009054906101000a900460ff1681565b600081836119b49190613864565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2b9061366e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b9061354e565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b8291906136ee565b60405180910390a3505050565b611b976119bc565b73ffffffffffffffffffffffffffffffffffffffff16611bb56115f6565b73ffffffffffffffffffffffffffffffffffffffff1614611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c02906135ae565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c749061362e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce49061350e565b60405180910390fd5b60008111611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d27906135ce565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db49061364e565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e419061364e565b60405180910390fd5b60076000611e566119bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed59061364e565b60405180910390fd5b600f60019054906101000a900460ff1680611f2b5750611efc6115f6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f619061358e565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806120135750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561205257506120226115f6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156120a757600f60009054906101000a900460ff166120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d906136ae565b60405180910390fd5b5b600e54421480156121055750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156121c6576001600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6010546121d230611214565b101580156121ed5750600d60149054906101000a900460ff16155b80156122475750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561225f5750601160009054906101000a900460ff165b156122705761226f60105461263d565b5b6122798361110a565b8061228957506122888261110a565b5b1561229e57612299838383612714565b61237e565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561230757612302838383600b546128a8565b61237d565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123705761236b838383600a546128a8565b61237c565b61237b838383612714565b5b5b5b6123866115f6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123f457506123c46115f6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561244e5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124a85750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124bf576124be6124b983611214565b612b7a565b5b505050565b600083831115829061250c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250391906134ec565b60405180910390fd5b5082840390509392505050565b60008183612527919061380e565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b426002819055506103e860058261260a9190613a06565b6126149190613864565b6001819055506103e860038261262a9190613a06565b6126349190613864565b60038190555050565b6001600d60146101000a81548160ff02191690831515021790555061266181612bc7565b60004711156126f657600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516126b090613442565b60006040518083038185875af1925050503d80600081146126ed576040519150601f19603f3d011682016040523d82523d6000602084013e6126f2565b606091505b5050505b6000600d60146101000a81548160ff02191690831515021790555050565b61276681600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ec490919063ffffffff16565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127fb81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251990919063ffffffff16565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161289b91906136ee565b60405180910390a3505050565b60006128d0826128c26064866119a690919063ffffffff16565b612eda90919063ffffffff16565b905060006128e78285612ec490919063ffffffff16565b905061293b84600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ec490919063ffffffff16565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506129d081600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251990919063ffffffff16565b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a6582600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251990919063ffffffff16565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612b0591906136ee565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b6a91906136ee565b60405180910390a3505050505050565b612b82610c45565b811115612bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbb9061368e565b60405180910390fd5b50565b6000600267ffffffffffffffff811115612c0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612c385781602001602082028036833780820191505090505b5090503081600081518110612c76577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612d1857600080fd5b505afa158015612d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d509190612f6d565b81600181518110612d8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612df130600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846119c4565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612e55959493929190613739565b600060405180830381600087803b158015612e6f57600080fd5b505af1158015612e83573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a78282604051612eb8929190613709565b60405180910390a15050565b60008183612ed29190613a60565b905092915050565b60008183612ee89190613a06565b905092915050565b600081359050612eff81613f9d565b92915050565b600081519050612f1481613f9d565b92915050565b600081359050612f2981613fb4565b92915050565b600081359050612f3e81613fcb565b92915050565b600060208284031215612f5657600080fd5b6000612f6484828501612ef0565b91505092915050565b600060208284031215612f7f57600080fd5b6000612f8d84828501612f05565b91505092915050565b60008060408385031215612fa957600080fd5b6000612fb785828601612ef0565b9250506020612fc885828601612ef0565b9150509250929050565b600080600060608486031215612fe757600080fd5b6000612ff586828701612ef0565b935050602061300686828701612ef0565b925050604061301786828701612f2f565b9150509250925092565b6000806040838503121561303457600080fd5b600061304285828601612ef0565b925050602061305385828601612f2f565b9150509250929050565b60006020828403121561306f57600080fd5b600061307d84828501612f1a565b91505092915050565b60006020828403121561309857600080fd5b60006130a684828501612f2f565b91505092915050565b600080604083850312156130c257600080fd5b60006130d085828601612f2f565b92505060206130e185828601612f2f565b9150509250929050565b60006130f78383613112565b60208301905092915050565b61310c81613aa6565b82525050565b61311b81613a94565b82525050565b61312a81613a94565b82525050565b600061313b826137be565b61314581856137e1565b9350613150836137ae565b8060005b8381101561318157815161316888826130eb565b9750613173836137d4565b925050600181019050613154565b5085935050505092915050565b61319781613ab8565b82525050565b6131a681613afb565b82525050565b6131b581613b1f565b82525050565b60006131c6826137c9565b6131d081856137fd565b93506131e0818560208601613b31565b6131e981613c0b565b840191505092915050565b60006132016023836137fd565b915061320c82613c29565b604082019050919050565b60006132246026836137fd565b915061322f82613c78565b604082019050919050565b60006132476022836137fd565b915061325282613cc7565b604082019050919050565b600061326a601e836137fd565b915061327582613d16565b602082019050919050565b600061328d602c836137fd565b915061329882613d3f565b604082019050919050565b60006132b06020836137fd565b91506132bb82613d8e565b602082019050919050565b60006132d36029836137fd565b91506132de82613db7565b604082019050919050565b60006132f6601a836137fd565b915061330182613e06565b602082019050919050565b6000613319601c836137fd565b915061332482613e2f565b602082019050919050565b600061333c6025836137fd565b915061334782613e58565b604082019050919050565b600061335f600d836137fd565b915061336a82613ea7565b602082019050919050565b60006133826000836137f2565b915061338d82613ed0565b600082019050919050565b60006133a56024836137fd565b91506133b082613ed3565b604082019050919050565b60006133c86010836137fd565b91506133d382613f22565b602082019050919050565b60006133eb6018836137fd565b91506133f682613f4b565b602082019050919050565b600061340e6016836137fd565b915061341982613f74565b602082019050919050565b61342d81613ae4565b82525050565b61343c81613aee565b82525050565b600061344d82613375565b9150819050919050565b600060208201905061346c6000830184613121565b92915050565b60006020820190506134876000830184613103565b92915050565b60006040820190506134a26000830185613121565b6134af6020830184613121565b9392505050565b60006020820190506134cb600083018461318e565b92915050565b60006020820190506134e6600083018461319d565b92915050565b6000602082019050818103600083015261350681846131bb565b905092915050565b60006020820190508181036000830152613527816131f4565b9050919050565b6000602082019050818103600083015261354781613217565b9050919050565b600060208201905081810360008301526135678161323a565b9050919050565b600060208201905081810360008301526135878161325d565b9050919050565b600060208201905081810360008301526135a781613280565b9050919050565b600060208201905081810360008301526135c7816132a3565b9050919050565b600060208201905081810360008301526135e7816132c6565b9050919050565b60006020820190508181036000830152613607816132e9565b9050919050565b600060208201905081810360008301526136278161330c565b9050919050565b600060208201905081810360008301526136478161332f565b9050919050565b6000602082019050818103600083015261366781613352565b9050919050565b6000602082019050818103600083015261368781613398565b9050919050565b600060208201905081810360008301526136a7816133bb565b9050919050565b600060208201905081810360008301526136c7816133de565b9050919050565b600060208201905081810360008301526136e781613401565b9050919050565b60006020820190506137036000830184613424565b92915050565b600060408201905061371e6000830185613424565b81810360208301526137308184613130565b90509392505050565b600060a08201905061374e6000830188613424565b61375b60208301876131ac565b818103604083015261376d8186613130565b905061377c6060830185613121565b6137896080830184613424565b9695505050505050565b60006020820190506137a86000830184613433565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600061381982613ae4565b915061382483613ae4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561385957613858613bad565b5b828201905092915050565b600061386f82613ae4565b915061387a83613ae4565b92508261388a57613889613bdc565b5b828204905092915050565b6000808291508390505b60018511156138df578086048111156138bb576138ba613bad565b5b60018516156138ca5780820291505b80810290506138d885613c1c565b945061389f565b94509492505050565b60006138f382613ae4565b91506138fe83613aee565b925061392b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613933565b905092915050565b60008261394357600190506139ff565b8161395157600090506139ff565b81600181146139675760028114613971576139a0565b60019150506139ff565b60ff84111561398357613982613bad565b5b8360020a91508482111561399a57613999613bad565b5b506139ff565b5060208310610133831016604e8410600b84101617156139d55782820a9050838111156139d0576139cf613bad565b5b6139ff565b6139e28484846001613895565b925090508184048111156139f9576139f8613bad565b5b81810290505b9392505050565b6000613a1182613ae4565b9150613a1c83613ae4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a5557613a54613bad565b5b828202905092915050565b6000613a6b82613ae4565b9150613a7683613ae4565b925082821015613a8957613a88613bad565b5b828203905092915050565b6000613a9f82613ac4565b9050919050565b6000613ab182613ac4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613b0682613b0d565b9050919050565b6000613b1882613ac4565b9050919050565b6000613b2a82613ae4565b9050919050565b60005b83811015613b4f578082015181840152602081019050613b34565b83811115613b5e576000848401525b50505050565b6000613b6f82613ae4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ba257613ba1613bad565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420697320616c726561647920626c61636b6c69737465640000600082015250565b7f7472616e7366657272696e6720746f6b656e73206973206e6f7420637572726560008201527f6e746c7920616c6c6f7765640000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000600082015250565b7f57652063616e206e6f7420626c61636b6c69737420556e697377617000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53746f7020736e6970696e672100000000000000000000000000000000000000600082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f6d61782077616c6c6574206c696d697400000000000000000000000000000000600082015250565b7f54726164696e67206e6f742079657420656e61626c65642e0000000000000000600082015250565b7f6665652063616e6e6f7420657863656564203130302500000000000000000000600082015250565b613fa681613a94565b8114613fb157600080fd5b50565b613fbd81613ab8565b8114613fc857600080fd5b50565b613fd481613ae4565b8114613fdf57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c522ab22419736264ec2d9cc3cfbe4770eb40e68c6817766f9193ecd09e43d8364736f6c63430008040033

Deployed Bytecode Sourcemap

32162:11645:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35029:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35945:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43072:519;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31698:334;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33125:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35312:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36148:448;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32408:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35219:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42726:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36604:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41534:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32301:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33173:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41406:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42603:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42491:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42113:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35417:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41767:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19955:103;;;;;;;;;;;;;:::i;:::-;;42374:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33485:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34383:439;;;;;;;;;;;;;:::i;:::-;;33037:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33604:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19307:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35122:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36914:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35542:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42253:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34830:191;;;;;;;;;;;;;:::i;:::-;;33079:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43599:111;;;;;;;;;;;;;:::i;:::-;;35751:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41651:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20213:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33658:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35029:85;35068:13;35101:5;;;;;;;;;;;;;;;;;35094:12;;35029:85;:::o;35945:195::-;36049:4;36071:39;36080:12;:10;:12::i;:::-;36094:7;36103:6;36071:8;:39::i;:::-;36128:4;36121:11;;35945:195;;;;:::o;43072:519::-;19193:13;:11;:13::i;:::-;43150:9:::1;:18;43160:7;43150:18;;;;;;;;;;;;;;;;;;;;;;;;;43142:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43215:9;43210:374;43234:17;:24;;;;43230:1;:28;43210:374;;;43308:7;43284:31;;:17;43302:1;43284:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;43280:293;;;43359:17;43426:1;43399:17;:24;;;;:28;;;;:::i;:::-;43359:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43336:17;43354:1;43336:20;;;;;;;;;;;;;;;;;;;;;;;;:110;;;;;;;;;;;;;;;;;;43486:5;43465:9;:18;43475:7;43465:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;43510:17;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43552:5;;43280:293;43260:3;;;;;:::i;:::-;;;;43210:374;;;;43072:519:::0;:::o;31698:334::-;31743:7;31763:22;31864:9;31018:1;31834:39;;;;:::i;:::-;31807:9;;31789:15;:27;;;;:::i;:::-;31788:86;;;;:::i;:::-;31763:111;;31179:4;31889:14;:31;31885:67;;31179:4;31922:30;;31885:67;32010:14;31987:20;;:37;;;;:::i;:::-;31970:14;;:54;;;;:::i;:::-;31963:61;;;31698:334;:::o;33125:41::-;;;;;;;;;;;;;:::o;35312:97::-;35367:7;32909:1;33015:2;:13;;;;:::i;:::-;33003:9;:25;;;;:::i;:::-;35387:14;;35312:97;:::o;36148:448::-;36282:4;36299:36;36309:6;36317:9;36328:6;36299:9;:36::i;:::-;36346:220;36369:6;36390:12;:10;:12::i;:::-;36417:138;36473:6;36417:138;;;;;;;;;;;;;;;;;:11;:19;36429:6;36417:19;;;;;;;;;;;;;;;:33;36437:12;:10;:12::i;:::-;36417:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;36346:8;:220::i;:::-;36584:4;36577:11;;36148:448;;;;;:::o;32408:89::-;32455:42;32408:89;:::o;35219:85::-;35262:5;32909:1;35280:16;;35219:85;:::o;42726:338::-;19193:13;:11;:13::i;:::-;33395:42:::1;42817:32;;:7;:32;;;;42795:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;42925:9;:18;42935:7;42925:18;;;;;;;;;;;;;;;;;;;;;;;;;42924:19;42916:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43010:4;42989:9;:18;42999:7;42989:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;43025:17;43048:7;43025:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42726:338:::0;:::o;36604:302::-;36721:4;36743:133;36766:12;:10;:12::i;:::-;36793:7;36815:50;36854:10;36815:11;:25;36827:12;:10;:12::i;:::-;36815:25;;;;;;;;;;;;;;;:34;36841:7;36815:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;36743:8;:133::i;:::-;36894:4;36887:11;;36604:302;;;;:::o;41534:109::-;19193:13;:11;:13::i;:::-;41631:4:::1;41605:14;:23;41620:7;41605:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;41534:109:::0;:::o;32301:100::-;;;;;;;;;;;;;:::o;33173:28::-;;;;;;;;;;;;;:::o;41406:120::-;41471:4;41495:14;:23;41510:7;41495:23;;;;;;;;;;;;;;;;;;;;;;;;;41488:30;;41406:120;;;:::o;42603:115::-;42668:4;42692:9;:18;42702:7;42692:18;;;;;;;;;;;;;;;;;;;;;;;;;42685:25;;42603:115;;;:::o;42491:100::-;19193:13;:11;:13::i;:::-;42577:6:::1;42562:12;:21;;;;42491:100:::0;:::o;42113:132::-;19193:13;:11;:13::i;:::-;42221:15:::1;42196:14;;:41;;;;;;;;;;;;;;;;;;42113:132:::0;:::o;35417:117::-;35483:7;35510;:16;35518:7;35510:16;;;;;;;;;;;;;;;;35503:23;;35417:117;;;:::o;41767:338::-;19193:13;:11;:13::i;:::-;41934:3:::1;41918:12;:19;;:43;;;;;41958:3;41941:13;:20;;41918:43;41896:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;42041:12;42022:16;:31;;;;42084:13;42064:17;:33;;;;41767:338:::0;;:::o;19955:103::-;19193:13;:11;:13::i;:::-;20020:30:::1;20047:1;20020:18;:30::i;:::-;19955:103::o:0;42374:109::-;19193:13;:11;:13::i;:::-;42463:12:::1;42447:13;;:28;;;;;;;;;;;;;;;;;;42374:109:::0;:::o;33485:25::-;;;;:::o;34383:439::-;19193:13;:11;:13::i;:::-;34437:35:::1;33395:42;34437:103;;34585:16;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34567:70;;;34646:4;34653:16;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34567:110;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34551:13;;:126;;;;;;;;;;;;;;;;;;34708:16;34690:15;;:34;;;;;;;;;;;;;;;;;;34763:4;34737:14;:23;34752:7;:5;:7::i;:::-;34737:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;34810:4;34778:14;:29;34801:4;34778:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;19217:1;34383:439::o:0;33037:35::-;;;;:::o;33604:47::-;;;;:::o;19307:87::-;19353:7;19380:6;;;;;;;;;;;19373:13;;19307:87;:::o;35122:89::-;35163:13;35196:7;;;;;;;;;;;;;;;;;35189:14;;35122:89;:::o;36914:402::-;37036:4;37058:228;37081:12;:10;:12::i;:::-;37108:7;37130:145;37187:15;37130:145;;;;;;;;;;;;;;;;;:11;:25;37142:12;:10;:12::i;:::-;37130:25;;;;;;;;;;;;;;;:34;37156:7;37130:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;37058:8;:228::i;:::-;37304:4;37297:11;;36914:402;;;;:::o;35542:201::-;35649:4;35671:42;35681:12;:10;:12::i;:::-;35695:9;35706:6;35671:9;:42::i;:::-;35731:4;35724:11;;35542:201;;;;:::o;42253:113::-;19193:13;:11;:13::i;:::-;42354:4:::1;42329:22;;:29;;;;;;;;;;;;;;;;;;42253:113:::0;:::o;34830:191::-;19193:13;:11;:13::i;:::-;34898:4:::1;34883:12;;:19;;;;;;;;;;;;;;;;;;34929:4;34913:13;;:20;;;;;;;;;;;;;;;;;;34957:15;34944:10;:28;;;;34983:30;32909:1;33015:2;:13;;;;:::i;:::-;33003:9;:25;;;;:::i;:::-;34983:21;:30::i;:::-;34830:191::o:0;33079:37::-;;;;:::o;43599:111::-;19193:13;:11;:13::i;:::-;43666:7:::1;:5;:7::i;:::-;43658:21;;:44;43680:21;43658:44;;;;;;;;;;;;;;;;;;;;;;;;43599:111::o:0;35751:186::-;35870:7;35902:11;:18;35914:5;35902:18;;;;;;;;;;;;;;;:27;35921:7;35902:27;;;;;;;;;;;;;;;;35895:34;;35751:186;;;;:::o;41651:108::-;19193:13;:11;:13::i;:::-;41746:5:::1;41720:14;:23;41735:7;41720:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;41651:108:::0;:::o;20213:201::-;19193:13;:11;:13::i;:::-;20322:1:::1;20302:22;;:8;:22;;;;20294:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20378:28;20397:8;20378:18;:28::i;:::-;20213:201:::0;:::o;33658:41::-;;;;;;;;;;;;;:::o;24785:98::-;24843:7;24874:1;24870;:5;;;;:::i;:::-;24863:12;;24785:98;;;;:::o;17858:::-;17911:7;17938:10;17931:17;;17858:98;:::o;37324:371::-;37468:1;37451:19;;:5;:19;;;;37443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37549:1;37530:21;;:7;:21;;;;37522:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37633:6;37603:11;:18;37615:5;37603:18;;;;;;;;;;;;;;;:27;37622:7;37603:27;;;;;;;;;;;;;;;:36;;;;37671:7;37655:32;;37664:5;37655:32;;;37680:6;37655:32;;;;;;:::i;:::-;;;;;;;;37324:371;;;:::o;19472:132::-;19547:12;:10;:12::i;:::-;19536:23;;:7;:5;:7::i;:::-;:23;;;19528:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19472:132::o;37703:1902::-;37841:1;37825:18;;:4;:18;;;;37817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37918:1;37904:16;;:2;:16;;;;37896:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37988:1;37979:6;:10;37971:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38055:9;:13;38065:2;38055:13;;;;;;;;;;;;;;;;;;;;;;;;;38054:14;38046:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;38106:9;:15;38116:4;38106:15;;;;;;;;;;;;;;;;;;;;;;;;;38105:16;38097:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;38159:9;:23;38169:12;:10;:12::i;:::-;38159:23;;;;;;;;;;;;;;;;;;;;;;;;;38158:24;38150:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;38233:13;;;;;;;;;;;:32;;;;38258:7;:5;:7::i;:::-;38250:15;;:4;:15;;;38233:32;38211:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;38361:13;;;;;;;;;;;38353:21;;:4;:21;;;:44;;;;38384:13;;;;;;;;;;;38378:19;;:2;:19;;;38353:44;38352:65;;;;;38410:7;:5;:7::i;:::-;38402:15;;:4;:15;;;;38352:65;38348:147;;;38442:12;;;;;;;;;;;38434:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;38348:147;38528:10;;38509:15;:29;:54;;;;;38550:13;;;;;;;;;;;38542:21;;:4;:21;;;38509:54;38505:148;;;38596:4;38580:9;:13;38590:2;38580:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;38615:17;38638:2;38615:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38505:148;38711:12;;38683:24;38701:4;38683:9;:24::i;:::-;:40;;:75;;;;;38741:17;;;;;;;;;;;38740:18;38683:75;:113;;;;;38783:13;;;;;;;;;;;38775:21;;:4;:21;;;;38683:113;:152;;;;;38813:22;;;;;;;;;;;38683:152;38665:242;;;38862:33;38882:12;;38862:19;:33::i;:::-;38665:242;38923:23;38941:4;38923:17;:23::i;:::-;:48;;;;38950:21;38968:2;38950:17;:21::i;:::-;38923:48;38919:453;;;38988:32;39003:4;39009:2;39013:6;38988:14;:32::i;:::-;38919:453;;;39063:13;;;;;;;;;;;39057:19;;:2;:19;;;39053:308;;;39097:54;39115:4;39121:2;39125:6;39133:17;;39097;:54::i;:::-;39053:308;;;39185:13;;;;;;;;;;;39177:21;;:4;:21;;;39173:188;;;39219:53;39237:4;39243:2;39247:6;39255:16;;39219:17;:53::i;:::-;39173:188;;;39313:32;39328:4;39334:2;39338:6;39313:14;:32::i;:::-;39173:188;39053:308;38919:453;39410:7;:5;:7::i;:::-;39402:15;;:4;:15;;;;:45;;;;;39440:7;:5;:7::i;:::-;39434:13;;:2;:13;;;;39402:45;:81;;;;;39470:13;;;;;;;;;;;39464:19;;:2;:19;;;;39402:81;:128;;;;;39514:15;;;;;;;;;;;39500:30;;:2;:30;;;;39402:128;39384:214;;;39557:29;39572:13;39582:2;39572:9;:13::i;:::-;39557:14;:29::i;:::-;39384:214;37703:1902;;;:::o;25927:240::-;26047:7;26105:1;26100;:6;;26108:12;26092:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;26147:1;26143;:5;26136:12;;25927:240;;;;;:::o;23648:98::-;23706:7;23737:1;23733;:5;;;;:::i;:::-;23726:12;;23648:98;;;;:::o;20574:191::-;20648:16;20667:6;;;;;;;;;;;20648:25;;20693:8;20684:6;;:17;;;;;;;;;;;;;;;;;;20748:8;20717:40;;20738:8;20717:40;;;;;;;;;;;;20574:191;;:::o;31289:259::-;31373:15;31361:9;:27;;;;31455:4;30929:1;31417:11;:34;;;;:::i;:::-;31416:43;;;;:::i;:::-;31399:14;:60;;;;31536:4;31098:1;31494:11;:38;;;;:::i;:::-;31493:47;;;;:::i;:::-;31470:20;:70;;;;31289:259;:::o;39613:230::-;34176:4;34156:17;;:24;;;;;;;;;;;;;;;;;;39689:25:::1;39707:6;39689:17;:25::i;:::-;39753:1;39729:21;:25;39725:111;;;39771:14;;;;;;;;;;;:19;;39798:21;39771:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39725:111;34223:5:::0;34203:17;;:25;;;;;;;;;;;;;;;;;;39613:230;:::o;40518:258::-;40653:25;40671:6;40653:7;:13;40661:4;40653:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;40637:7;:13;40645:4;40637:13;;;;;;;;;;;;;;;:41;;;;40703:23;40719:6;40703:7;:11;40711:2;40703:11;;;;;;;;;;;;;;;;:15;;:23;;;;:::i;:::-;40689:7;:11;40697:2;40689:11;;;;;;;;;;;;;;;:37;;;;40757:2;40742:26;;40751:4;40742:26;;;40761:6;40742:26;;;;;;:::i;:::-;;;;;;;;40518:258;;;:::o;40784:614::-;40938:25;40966;40987:3;40966:16;40978:3;40966:7;:11;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;40938:53;;41002:22;41027:30;41039:17;41027:7;:11;;:30;;;;:::i;:::-;41002:55;;41086:28;41106:7;41086;:15;41094:6;41086:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41068:7;:15;41076:6;41068:15;;;;;;;;;;;;;;;:46;;;;41146:38;41169:14;41146:7;:18;41154:9;41146:18;;;;;;;;;;;;;;;;:22;;:38;;;;:::i;:::-;41125:7;:18;41133:9;41125:18;;;;;;;;;;;;;;;:59;;;;41220:45;41247:17;41220:7;:22;41236:4;41220:22;;;;;;;;;;;;;;;;:26;;:45;;;;:::i;:::-;41195:7;:22;41211:4;41195:22;;;;;;;;;;;;;;;:70;;;;41298:9;41281:43;;41290:6;41281:43;;;41309:14;41281:43;;;;;;:::i;:::-;;;;;;;;41365:4;41340:50;;41349:6;41340:50;;;41372:17;41340:50;;;;;;:::i;:::-;;;;;;;;40784:614;;;;;;:::o;31556:134::-;31647:14;:12;:14::i;:::-;31633:10;:28;;31625:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;31556:134;:::o;39851:659::-;39978:21;40016:1;40002:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39978:40;;40047:4;40029;40034:1;40029:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;40073:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40063:4;40068:1;40063:7;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;;;;;40108:62;40125:4;40140:15;;;;;;;;;;;40158:11;40108:8;:62::i;:::-;40209:15;;;;;;;;;;;:66;;;40290:11;40316:1;40360:4;40387;40423:15;40209:240;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40467:35;40484:11;40497:4;40467:35;;;;;;;:::i;:::-;;;;;;;;39851:659;;:::o;24029:98::-;24087:7;24118:1;24114;:5;;;;:::i;:::-;24107:12;;24029:98;;;;:::o;24386:::-;24444:7;24475:1;24471;:5;;;;:::i;:::-;24464:12;;24386:98;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;301:133::-;344:5;382:6;369:20;360:29;;398:30;422:5;398:30;:::i;:::-;350:84;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;644:6;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:284::-;923:6;972:2;960:9;951:7;947:23;943:32;940:2;;;988:1;985;978:12;940:2;1031:1;1056:64;1112:7;1103:6;1092:9;1088:22;1056:64;:::i;:::-;1046:74;;1002:128;930:207;;;;:::o;1143:407::-;1211:6;1219;1268:2;1256:9;1247:7;1243:23;1239:32;1236:2;;;1284:1;1281;1274:12;1236:2;1327:1;1352:53;1397:7;1388:6;1377:9;1373:22;1352:53;:::i;:::-;1342:63;;1298:117;1454:2;1480:53;1525:7;1516:6;1505:9;1501:22;1480:53;:::i;:::-;1470:63;;1425:118;1226:324;;;;;:::o;1556:552::-;1633:6;1641;1649;1698:2;1686:9;1677:7;1673:23;1669:32;1666:2;;;1714:1;1711;1704:12;1666:2;1757:1;1782:53;1827:7;1818:6;1807:9;1803:22;1782:53;:::i;:::-;1772:63;;1728:117;1884:2;1910:53;1955:7;1946:6;1935:9;1931:22;1910:53;:::i;:::-;1900:63;;1855:118;2012:2;2038:53;2083:7;2074:6;2063:9;2059:22;2038:53;:::i;:::-;2028:63;;1983:118;1656:452;;;;;:::o;2114:407::-;2182:6;2190;2239:2;2227:9;2218:7;2214:23;2210:32;2207:2;;;2255:1;2252;2245:12;2207:2;2298:1;2323:53;2368:7;2359:6;2348:9;2344:22;2323:53;:::i;:::-;2313:63;;2269:117;2425:2;2451:53;2496:7;2487:6;2476:9;2472:22;2451:53;:::i;:::-;2441:63;;2396:118;2197:324;;;;;:::o;2527:256::-;2583:6;2632:2;2620:9;2611:7;2607:23;2603:32;2600:2;;;2648:1;2645;2638:12;2600:2;2691:1;2716:50;2758:7;2749:6;2738:9;2734:22;2716:50;:::i;:::-;2706:60;;2662:114;2590:193;;;;:::o;2789:262::-;2848:6;2897:2;2885:9;2876:7;2872:23;2868:32;2865:2;;;2913:1;2910;2903:12;2865:2;2956:1;2981:53;3026:7;3017:6;3006:9;3002:22;2981:53;:::i;:::-;2971:63;;2927:117;2855:196;;;;:::o;3057:407::-;3125:6;3133;3182:2;3170:9;3161:7;3157:23;3153:32;3150:2;;;3198:1;3195;3188:12;3150:2;3241:1;3266:53;3311:7;3302:6;3291:9;3287:22;3266:53;:::i;:::-;3256:63;;3212:117;3368:2;3394:53;3439:7;3430:6;3419:9;3415:22;3394:53;:::i;:::-;3384:63;;3339:118;3140:324;;;;;:::o;3470:179::-;3539:10;3560:46;3602:3;3594:6;3560:46;:::i;:::-;3638:4;3633:3;3629:14;3615:28;;3550:99;;;;:::o;3655:142::-;3758:32;3784:5;3758:32;:::i;:::-;3753:3;3746:45;3736:61;;:::o;3803:108::-;3880:24;3898:5;3880:24;:::i;:::-;3875:3;3868:37;3858:53;;:::o;3917:118::-;4004:24;4022:5;4004:24;:::i;:::-;3999:3;3992:37;3982:53;;:::o;4071:732::-;4190:3;4219:54;4267:5;4219:54;:::i;:::-;4289:86;4368:6;4363:3;4289:86;:::i;:::-;4282:93;;4399:56;4449:5;4399:56;:::i;:::-;4478:7;4509:1;4494:284;4519:6;4516:1;4513:13;4494:284;;;4595:6;4589:13;4622:63;4681:3;4666:13;4622:63;:::i;:::-;4615:70;;4708:60;4761:6;4708:60;:::i;:::-;4698:70;;4554:224;4541:1;4538;4534:9;4529:14;;4494:284;;;4498:14;4794:3;4787:10;;4195:608;;;;;;;:::o;4809:109::-;4890:21;4905:5;4890:21;:::i;:::-;4885:3;4878:34;4868:50;;:::o;4924:183::-;5037:63;5094:5;5037:63;:::i;:::-;5032:3;5025:76;5015:92;;:::o;5113:147::-;5208:45;5247:5;5208:45;:::i;:::-;5203:3;5196:58;5186:74;;:::o;5266:364::-;5354:3;5382:39;5415:5;5382:39;:::i;:::-;5437:71;5501:6;5496:3;5437:71;:::i;:::-;5430:78;;5517:52;5562:6;5557:3;5550:4;5543:5;5539:16;5517:52;:::i;:::-;5594:29;5616:6;5594:29;:::i;:::-;5589:3;5585:39;5578:46;;5358:272;;;;;:::o;5636:366::-;5778:3;5799:67;5863:2;5858:3;5799:67;:::i;:::-;5792:74;;5875:93;5964:3;5875:93;:::i;:::-;5993:2;5988:3;5984:12;5977:19;;5782:220;;;:::o;6008:366::-;6150:3;6171:67;6235:2;6230:3;6171:67;:::i;:::-;6164:74;;6247:93;6336:3;6247:93;:::i;:::-;6365:2;6360:3;6356:12;6349:19;;6154:220;;;:::o;6380:366::-;6522:3;6543:67;6607:2;6602:3;6543:67;:::i;:::-;6536:74;;6619:93;6708:3;6619:93;:::i;:::-;6737:2;6732:3;6728:12;6721:19;;6526:220;;;:::o;6752:366::-;6894:3;6915:67;6979:2;6974:3;6915:67;:::i;:::-;6908:74;;6991:93;7080:3;6991:93;:::i;:::-;7109:2;7104:3;7100:12;7093:19;;6898:220;;;:::o;7124:366::-;7266:3;7287:67;7351:2;7346:3;7287:67;:::i;:::-;7280:74;;7363:93;7452:3;7363:93;:::i;:::-;7481:2;7476:3;7472:12;7465:19;;7270:220;;;:::o;7496:366::-;7638:3;7659:67;7723:2;7718:3;7659:67;:::i;:::-;7652:74;;7735:93;7824:3;7735:93;:::i;:::-;7853:2;7848:3;7844:12;7837:19;;7642:220;;;:::o;7868:366::-;8010:3;8031:67;8095:2;8090:3;8031:67;:::i;:::-;8024:74;;8107:93;8196:3;8107:93;:::i;:::-;8225:2;8220:3;8216:12;8209:19;;8014:220;;;:::o;8240:366::-;8382:3;8403:67;8467:2;8462:3;8403:67;:::i;:::-;8396:74;;8479:93;8568:3;8479:93;:::i;:::-;8597:2;8592:3;8588:12;8581:19;;8386:220;;;:::o;8612:366::-;8754:3;8775:67;8839:2;8834:3;8775:67;:::i;:::-;8768:74;;8851:93;8940:3;8851:93;:::i;:::-;8969:2;8964:3;8960:12;8953:19;;8758:220;;;:::o;8984:366::-;9126:3;9147:67;9211:2;9206:3;9147:67;:::i;:::-;9140:74;;9223:93;9312:3;9223:93;:::i;:::-;9341:2;9336:3;9332:12;9325:19;;9130:220;;;:::o;9356:366::-;9498:3;9519:67;9583:2;9578:3;9519:67;:::i;:::-;9512:74;;9595:93;9684:3;9595:93;:::i;:::-;9713:2;9708:3;9704:12;9697:19;;9502:220;;;:::o;9728:398::-;9887:3;9908:83;9989:1;9984:3;9908:83;:::i;:::-;9901:90;;10000:93;10089:3;10000:93;:::i;:::-;10118:1;10113:3;10109:11;10102:18;;9891:235;;;:::o;10132:366::-;10274:3;10295:67;10359:2;10354:3;10295:67;:::i;:::-;10288:74;;10371:93;10460:3;10371:93;:::i;:::-;10489:2;10484:3;10480:12;10473:19;;10278:220;;;:::o;10504:366::-;10646:3;10667:67;10731:2;10726:3;10667:67;:::i;:::-;10660:74;;10743:93;10832:3;10743:93;:::i;:::-;10861:2;10856:3;10852:12;10845:19;;10650:220;;;:::o;10876:366::-;11018:3;11039:67;11103:2;11098:3;11039:67;:::i;:::-;11032:74;;11115:93;11204:3;11115:93;:::i;:::-;11233:2;11228:3;11224:12;11217:19;;11022:220;;;:::o;11248:366::-;11390:3;11411:67;11475:2;11470:3;11411:67;:::i;:::-;11404:74;;11487:93;11576:3;11487:93;:::i;:::-;11605:2;11600:3;11596:12;11589:19;;11394:220;;;:::o;11620:118::-;11707:24;11725:5;11707:24;:::i;:::-;11702:3;11695:37;11685:53;;:::o;11744:112::-;11827:22;11843:5;11827:22;:::i;:::-;11822:3;11815:35;11805:51;;:::o;11862:379::-;12046:3;12068:147;12211:3;12068:147;:::i;:::-;12061:154;;12232:3;12225:10;;12050:191;;;:::o;12247:222::-;12340:4;12378:2;12367:9;12363:18;12355:26;;12391:71;12459:1;12448:9;12444:17;12435:6;12391:71;:::i;:::-;12345:124;;;;:::o;12475:254::-;12584:4;12622:2;12611:9;12607:18;12599:26;;12635:87;12719:1;12708:9;12704:17;12695:6;12635:87;:::i;:::-;12589:140;;;;:::o;12735:332::-;12856:4;12894:2;12883:9;12879:18;12871:26;;12907:71;12975:1;12964:9;12960:17;12951:6;12907:71;:::i;:::-;12988:72;13056:2;13045:9;13041:18;13032:6;12988:72;:::i;:::-;12861:206;;;;;:::o;13073:210::-;13160:4;13198:2;13187:9;13183:18;13175:26;;13211:65;13273:1;13262:9;13258:17;13249:6;13211:65;:::i;:::-;13165:118;;;;:::o;13289:274::-;13408:4;13446:2;13435:9;13431:18;13423:26;;13459:97;13553:1;13542:9;13538:17;13529:6;13459:97;:::i;:::-;13413:150;;;;:::o;13569:313::-;13682:4;13720:2;13709:9;13705:18;13697:26;;13769:9;13763:4;13759:20;13755:1;13744:9;13740:17;13733:47;13797:78;13870:4;13861:6;13797:78;:::i;:::-;13789:86;;13687:195;;;;:::o;13888:419::-;14054:4;14092:2;14081:9;14077:18;14069:26;;14141:9;14135:4;14131:20;14127:1;14116:9;14112:17;14105:47;14169:131;14295:4;14169:131;:::i;:::-;14161:139;;14059:248;;;:::o;14313:419::-;14479:4;14517:2;14506:9;14502:18;14494:26;;14566:9;14560:4;14556:20;14552:1;14541:9;14537:17;14530:47;14594:131;14720:4;14594:131;:::i;:::-;14586:139;;14484:248;;;:::o;14738:419::-;14904:4;14942:2;14931:9;14927:18;14919:26;;14991:9;14985:4;14981:20;14977:1;14966:9;14962:17;14955:47;15019:131;15145:4;15019:131;:::i;:::-;15011:139;;14909:248;;;:::o;15163:419::-;15329:4;15367:2;15356:9;15352:18;15344:26;;15416:9;15410:4;15406:20;15402:1;15391:9;15387:17;15380:47;15444:131;15570:4;15444:131;:::i;:::-;15436:139;;15334:248;;;:::o;15588:419::-;15754:4;15792:2;15781:9;15777:18;15769:26;;15841:9;15835:4;15831:20;15827:1;15816:9;15812:17;15805:47;15869:131;15995:4;15869:131;:::i;:::-;15861:139;;15759:248;;;:::o;16013:419::-;16179:4;16217:2;16206:9;16202:18;16194:26;;16266:9;16260:4;16256:20;16252:1;16241:9;16237:17;16230:47;16294:131;16420:4;16294:131;:::i;:::-;16286:139;;16184:248;;;:::o;16438:419::-;16604:4;16642:2;16631:9;16627:18;16619:26;;16691:9;16685:4;16681:20;16677:1;16666:9;16662:17;16655:47;16719:131;16845:4;16719:131;:::i;:::-;16711:139;;16609:248;;;:::o;16863:419::-;17029:4;17067:2;17056:9;17052:18;17044:26;;17116:9;17110:4;17106:20;17102:1;17091:9;17087:17;17080:47;17144:131;17270:4;17144:131;:::i;:::-;17136:139;;17034:248;;;:::o;17288:419::-;17454:4;17492:2;17481:9;17477:18;17469:26;;17541:9;17535:4;17531:20;17527:1;17516:9;17512:17;17505:47;17569:131;17695:4;17569:131;:::i;:::-;17561:139;;17459:248;;;:::o;17713:419::-;17879:4;17917:2;17906:9;17902:18;17894:26;;17966:9;17960:4;17956:20;17952:1;17941:9;17937:17;17930:47;17994:131;18120:4;17994:131;:::i;:::-;17986:139;;17884:248;;;:::o;18138:419::-;18304:4;18342:2;18331:9;18327:18;18319:26;;18391:9;18385:4;18381:20;18377:1;18366:9;18362:17;18355:47;18419:131;18545:4;18419:131;:::i;:::-;18411:139;;18309:248;;;:::o;18563:419::-;18729:4;18767:2;18756:9;18752:18;18744:26;;18816:9;18810:4;18806:20;18802:1;18791:9;18787:17;18780:47;18844:131;18970:4;18844:131;:::i;:::-;18836:139;;18734:248;;;:::o;18988:419::-;19154:4;19192:2;19181:9;19177:18;19169:26;;19241:9;19235:4;19231:20;19227:1;19216:9;19212:17;19205:47;19269:131;19395:4;19269:131;:::i;:::-;19261:139;;19159:248;;;:::o;19413:419::-;19579:4;19617:2;19606:9;19602:18;19594:26;;19666:9;19660:4;19656:20;19652:1;19641:9;19637:17;19630:47;19694:131;19820:4;19694:131;:::i;:::-;19686:139;;19584:248;;;:::o;19838:419::-;20004:4;20042:2;20031:9;20027:18;20019:26;;20091:9;20085:4;20081:20;20077:1;20066:9;20062:17;20055:47;20119:131;20245:4;20119:131;:::i;:::-;20111:139;;20009:248;;;:::o;20263:222::-;20356:4;20394:2;20383:9;20379:18;20371:26;;20407:71;20475:1;20464:9;20460:17;20451:6;20407:71;:::i;:::-;20361:124;;;;:::o;20491:483::-;20662:4;20700:2;20689:9;20685:18;20677:26;;20713:71;20781:1;20770:9;20766:17;20757:6;20713:71;:::i;:::-;20831:9;20825:4;20821:20;20816:2;20805:9;20801:18;20794:48;20859:108;20962:4;20953:6;20859:108;:::i;:::-;20851:116;;20667:307;;;;;:::o;20980:831::-;21243:4;21281:3;21270:9;21266:19;21258:27;;21295:71;21363:1;21352:9;21348:17;21339:6;21295:71;:::i;:::-;21376:80;21452:2;21441:9;21437:18;21428:6;21376:80;:::i;:::-;21503:9;21497:4;21493:20;21488:2;21477:9;21473:18;21466:48;21531:108;21634:4;21625:6;21531:108;:::i;:::-;21523:116;;21649:72;21717:2;21706:9;21702:18;21693:6;21649:72;:::i;:::-;21731:73;21799:3;21788:9;21784:19;21775:6;21731:73;:::i;:::-;21248:563;;;;;;;;:::o;21817:214::-;21906:4;21944:2;21933:9;21929:18;21921:26;;21957:67;22021:1;22010:9;22006:17;21997:6;21957:67;:::i;:::-;21911:120;;;;:::o;22037:132::-;22104:4;22127:3;22119:11;;22157:4;22152:3;22148:14;22140:22;;22109:60;;;:::o;22175:114::-;22242:6;22276:5;22270:12;22260:22;;22249:40;;;:::o;22295:99::-;22347:6;22381:5;22375:12;22365:22;;22354:40;;;:::o;22400:113::-;22470:4;22502;22497:3;22493:14;22485:22;;22475:38;;;:::o;22519:184::-;22618:11;22652:6;22647:3;22640:19;22692:4;22687:3;22683:14;22668:29;;22630:73;;;;:::o;22709:147::-;22810:11;22847:3;22832:18;;22822:34;;;;:::o;22862:169::-;22946:11;22980:6;22975:3;22968:19;23020:4;23015:3;23011:14;22996:29;;22958:73;;;;:::o;23037:305::-;23077:3;23096:20;23114:1;23096:20;:::i;:::-;23091:25;;23130:20;23148:1;23130:20;:::i;:::-;23125:25;;23284:1;23216:66;23212:74;23209:1;23206:81;23203:2;;;23290:18;;:::i;:::-;23203:2;23334:1;23331;23327:9;23320:16;;23081:261;;;;:::o;23348:185::-;23388:1;23405:20;23423:1;23405:20;:::i;:::-;23400:25;;23439:20;23457:1;23439:20;:::i;:::-;23434:25;;23478:1;23468:2;;23483:18;;:::i;:::-;23468:2;23525:1;23522;23518:9;23513:14;;23390:143;;;;:::o;23539:848::-;23600:5;23607:4;23631:6;23622:15;;23655:5;23646:14;;23669:712;23690:1;23680:8;23677:15;23669:712;;;23785:4;23780:3;23776:14;23770:4;23767:24;23764:2;;;23794:18;;:::i;:::-;23764:2;23844:1;23834:8;23830:16;23827:2;;;24259:4;24252:5;24248:16;24239:25;;23827:2;24309:4;24303;24299:15;24291:23;;24339:32;24362:8;24339:32;:::i;:::-;24327:44;;23669:712;;;23612:775;;;;;;;:::o;24393:281::-;24451:5;24475:23;24493:4;24475:23;:::i;:::-;24467:31;;24519:25;24535:8;24519:25;:::i;:::-;24507:37;;24563:104;24600:66;24590:8;24584:4;24563:104;:::i;:::-;24554:113;;24457:217;;;;:::o;24680:1073::-;24734:5;24925:8;24915:2;;24946:1;24937:10;;24948:5;;24915:2;24974:4;24964:2;;24991:1;24982:10;;24993:5;;24964:2;25060:4;25108:1;25103:27;;;;25144:1;25139:191;;;;25053:277;;25103:27;25121:1;25112:10;;25123:5;;;25139:191;25184:3;25174:8;25171:17;25168:2;;;25191:18;;:::i;:::-;25168:2;25240:8;25237:1;25233:16;25224:25;;25275:3;25268:5;25265:14;25262:2;;;25282:18;;:::i;:::-;25262:2;25315:5;;;25053:277;;25439:2;25429:8;25426:16;25420:3;25414:4;25411:13;25407:36;25389:2;25379:8;25376:16;25371:2;25365:4;25362:12;25358:35;25342:111;25339:2;;;25495:8;25489:4;25485:19;25476:28;;25530:3;25523:5;25520:14;25517:2;;;25537:18;;:::i;:::-;25517:2;25570:5;;25339:2;25610:42;25648:3;25638:8;25632:4;25629:1;25610:42;:::i;:::-;25595:57;;;;25684:4;25679:3;25675:14;25668:5;25665:25;25662:2;;;25693:18;;:::i;:::-;25662:2;25742:4;25735:5;25731:16;25722:25;;24740:1013;;;;;;:::o;25759:348::-;25799:7;25822:20;25840:1;25822:20;:::i;:::-;25817:25;;25856:20;25874:1;25856:20;:::i;:::-;25851:25;;26044:1;25976:66;25972:74;25969:1;25966:81;25961:1;25954:9;25947:17;25943:105;25940:2;;;26051:18;;:::i;:::-;25940:2;26099:1;26096;26092:9;26081:20;;25807:300;;;;:::o;26113:191::-;26153:4;26173:20;26191:1;26173:20;:::i;:::-;26168:25;;26207:20;26225:1;26207:20;:::i;:::-;26202:25;;26246:1;26243;26240:8;26237:2;;;26251:18;;:::i;:::-;26237:2;26296:1;26293;26289:9;26281:17;;26158:146;;;;:::o;26310:96::-;26347:7;26376:24;26394:5;26376:24;:::i;:::-;26365:35;;26355:51;;;:::o;26412:104::-;26457:7;26486:24;26504:5;26486:24;:::i;:::-;26475:35;;26465:51;;;:::o;26522:90::-;26556:7;26599:5;26592:13;26585:21;26574:32;;26564:48;;;:::o;26618:126::-;26655:7;26695:42;26688:5;26684:54;26673:65;;26663:81;;;:::o;26750:77::-;26787:7;26816:5;26805:16;;26795:32;;;:::o;26833:86::-;26868:7;26908:4;26901:5;26897:16;26886:27;;26876:43;;;:::o;26925:178::-;27001:9;27034:63;27091:5;27034:63;:::i;:::-;27021:76;;27011:92;;;:::o;27109:139::-;27185:9;27218:24;27236:5;27218:24;:::i;:::-;27205:37;;27195:53;;;:::o;27254:121::-;27312:9;27345:24;27363:5;27345:24;:::i;:::-;27332:37;;27322:53;;;:::o;27381:307::-;27449:1;27459:113;27473:6;27470:1;27467:13;27459:113;;;27558:1;27553:3;27549:11;27543:18;27539:1;27534:3;27530:11;27523:39;27495:2;27492:1;27488:10;27483:15;;27459:113;;;27590:6;27587:1;27584:13;27581:2;;;27670:1;27661:6;27656:3;27652:16;27645:27;27581:2;27430:258;;;;:::o;27694:233::-;27733:3;27756:24;27774:5;27756:24;:::i;:::-;27747:33;;27802:66;27795:5;27792:77;27789:2;;;27872:18;;:::i;:::-;27789:2;27919:1;27912:5;27908:13;27901:20;;27737:190;;;:::o;27933:180::-;27981:77;27978:1;27971:88;28078:4;28075:1;28068:15;28102:4;28099:1;28092:15;28119:180;28167:77;28164:1;28157:88;28264:4;28261:1;28254:15;28288:4;28285:1;28278:15;28305:102;28346:6;28397:2;28393:7;28388:2;28381:5;28377:14;28373:28;28363:38;;28353:54;;;:::o;28413:102::-;28455:8;28502:5;28499:1;28495:13;28474:34;;28464:51;;;:::o;28521:222::-;28661:34;28657:1;28649:6;28645:14;28638:58;28730:5;28725:2;28717:6;28713:15;28706:30;28627:116;:::o;28749:225::-;28889:34;28885:1;28877:6;28873:14;28866:58;28958:8;28953:2;28945:6;28941:15;28934:33;28855:119;:::o;28980:221::-;29120:34;29116:1;29108:6;29104:14;29097:58;29189:4;29184:2;29176:6;29172:15;29165:29;29086:115;:::o;29207:180::-;29347:32;29343:1;29335:6;29331:14;29324:56;29313:74;:::o;29393:231::-;29533:34;29529:1;29521:6;29517:14;29510:58;29602:14;29597:2;29589:6;29585:15;29578:39;29499:125;:::o;29630:182::-;29770:34;29766:1;29758:6;29754:14;29747:58;29736:76;:::o;29818:228::-;29958:34;29954:1;29946:6;29942:14;29935:58;30027:11;30022:2;30014:6;30010:15;30003:36;29924:122;:::o;30052:176::-;30192:28;30188:1;30180:6;30176:14;30169:52;30158:70;:::o;30234:178::-;30374:30;30370:1;30362:6;30358:14;30351:54;30340:72;:::o;30418:224::-;30558:34;30554:1;30546:6;30542:14;30535:58;30627:7;30622:2;30614:6;30610:15;30603:32;30524:118;:::o;30648:163::-;30788:15;30784:1;30776:6;30772:14;30765:39;30754:57;:::o;30817:114::-;30923:8;:::o;30937:223::-;31077:34;31073:1;31065:6;31061:14;31054:58;31146:6;31141:2;31133:6;31129:15;31122:31;31043:117;:::o;31166:166::-;31306:18;31302:1;31294:6;31290:14;31283:42;31272:60;:::o;31338:174::-;31478:26;31474:1;31466:6;31462:14;31455:50;31444:68;:::o;31518:172::-;31658:24;31654:1;31646:6;31642:14;31635:48;31624:66;:::o;31696:122::-;31769:24;31787:5;31769:24;:::i;:::-;31762:5;31759:35;31749:2;;31808:1;31805;31798:12;31749:2;31739:79;:::o;31824:116::-;31894:21;31909:5;31894:21;:::i;:::-;31887:5;31884:32;31874:2;;31930:1;31927;31920:12;31874:2;31864:76;:::o;31946:122::-;32019:24;32037:5;32019:24;:::i;:::-;32012:5;32009:35;31999:2;;32058:1;32055;32048:12;31999:2;31989:79;:::o

Swarm Source

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