ETH Price: $1,785.71 (+5.50%)

Contract

0xD255425F24207E327B4759e5Ab4b4544c0C3B736

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve563738422025-02-21 12:13:4661 days ago1740140026IN
0xD255425F...4c0C3B736
0 ETH0.000005460.04525
Approve529949792025-01-06 3:56:03107 days ago1736135763IN
0xD255425F...4c0C3B736
0 ETH0.000004720.046
Approve510928272024-12-12 5:57:52132 days ago1733983072IN
0xD255425F...4c0C3B736
0 ETH0.000004410.04525
Approve504534352024-12-04 5:38:14140 days ago1733290694IN
0xD255425F...4c0C3B736
0 ETH0.000005870.04525
Approve469795162024-10-20 10:48:50185 days ago1729421330IN
0xD255425F...4c0C3B736
0 ETH0.000007380.0565625
Approve420557492024-08-19 6:46:13247 days ago1724049973IN
0xD255425F...4c0C3B736
0 ETH0.000004590.04525
Approve375785972024-06-26 20:27:32300 days ago1719433652IN
0xD255425F...4c0C3B736
0 ETH0.000002620.025
Approve370341092024-06-20 9:25:57307 days ago1718875557IN
0xD255425F...4c0C3B736
0 ETH0.000002850.025
Approve368724232024-06-18 9:03:14309 days ago1718701394IN
0xD255425F...4c0C3B736
0 ETH0.000003690.025
Approve366412462024-06-15 12:15:47312 days ago1718453747IN
0xD255425F...4c0C3B736
0 ETH0.000002610.025
Approve364294682024-06-12 23:14:14314 days ago1718234054IN
0xD255425F...4c0C3B736
0 ETH0.000004140.025
Approve364237932024-06-12 21:37:03314 days ago1718228223IN
0xD255425F...4c0C3B736
0 ETH0.000004350.025
Approve362620652024-06-10 22:29:33316 days ago1718058573IN
0xD255425F...4c0C3B736
0 ETH0.000002690.025
Approve354173322024-05-31 21:13:33326 days ago1717190013IN
0xD255425F...4c0C3B736
0 ETH0.00000290.025
Approve338951842024-05-13 16:43:32344 days ago1715618612IN
0xD255425F...4c0C3B736
0 ETH0.000005690.025
Approve338151422024-05-12 17:46:53345 days ago1715536013IN
0xD255425F...4c0C3B736
0 ETH0.000003550.025
Approve337958272024-05-12 12:13:47346 days ago1715516027IN
0xD255425F...4c0C3B736
0 ETH0.000003360.025
Approve336163382024-05-10 8:47:37348 days ago1715330857IN
0xD255425F...4c0C3B736
0 ETH0.000003570.025
Approve336054112024-05-10 5:36:10348 days ago1715319370IN
0xD255425F...4c0C3B736
0 ETH0.000003740.025
Approve332412962024-05-05 20:31:17352 days ago1714941077IN
0xD255425F...4c0C3B736
0 ETH0.000003120.025
Approve325431432024-04-27 9:12:38361 days ago1714209158IN
0xD255425F...4c0C3B736
0 ETH0.000003540.025
Approve309824142024-04-08 11:44:51380 days ago1712576691IN
0xD255425F...4c0C3B736
0 ETH0.000007310.025
Approve305393412024-04-03 2:58:19385 days ago1712113099IN
0xD255425F...4c0C3B736
0 ETH0.00001390.025
Approve300888132024-03-28 15:28:05391 days ago1711639685IN
0xD255425F...4c0C3B736
0 ETH0.000023790.025
Approve300354142024-03-27 23:44:26391 days ago1711583066IN
0xD255425F...4c0C3B736
0 ETH0.000004060.025
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xcD52cbc9...0b5a997Df
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Pair

Compiler Version
v0.8.17+commit.8df45f5f

ZkSolc Version
v1.3.5

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at era.zksync.network on 2024-01-04
*/

pragma solidity ^0.8.13;


interface IPairFactory {
    function allPairsLength() external view returns (uint);

    function isPair(address pair) external view returns (bool);

    function voter() external view returns (address);

    function tank() external view returns (address);

    function getInitializable() external view returns (address, address, bool);

    function getFee(bool _stable) external view returns (uint256);

    function isPaused() external view returns (bool);

    function getPair(
        address tokenA,
        address token,
        bool stable
    ) external view returns (address);

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

// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function transfer(address recipient, uint amount) external returns (bool);

    function decimals() external view returns (uint8);

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint amount
    ) external returns (bool);

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

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

    event Transfer(address indexed from, address indexed to, uint value);
    event Approval(address indexed owner, address indexed spender, uint value);
}

interface IPair {
    function metadata()
        external
        view
        returns (
            uint dec0,
            uint dec1,
            uint r0,
            uint r1,
            bool st,
            address t0,
            address t1
        );

    function setExternalBribe(address _externalBribe) external;

    function setHasGauge(bool value) external;

    function tokens() external returns (address, address);

    function transferFrom(
        address src,
        address dst,
        uint amount
    ) external returns (bool);

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

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

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

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

    function getReserves()
        external
        view
        returns (uint _reserve0, uint _reserve1, uint _blockTimestampLast);

    function getAmountOut(uint, address) external view returns (uint);
}

interface IPairCallee {
    function hook(
        address sender,
        uint amount0,
        uint amount1,
        bytes calldata data
    ) external;
}

interface IBribe {
    function _deposit(uint256 amount, uint256 tokenId) external;

    function _withdraw(uint256 amount, uint256 tokenId) external;

    function getRewardForOwner(
        uint256 tokenId,
        address[] memory tokens
    ) external;

    function notifyRewardAmount(address token, uint256 amount) external; //keep same as external bribe

    function left(address token) external view returns (uint256);
}

// The base pair of pools, either stable or volatile
contract Pair is IPair {
    string public name;
    string public symbol;
    uint8 public constant decimals = 18;

    // Used to denote stable or volatile pair, not immutable since construction happens in the initialize method for CREATE2 deterministic addresses
    bool public immutable stable;

    uint public totalSupply = 0;

    mapping(address => mapping(address => uint)) public allowance;
    mapping(address => uint) public balanceOf;

    bytes32 internal DOMAIN_SEPARATOR;
    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 internal constant PERMIT_TYPEHASH =
        0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    mapping(address => uint) public nonces;

    uint internal constant MINIMUM_LIQUIDITY = 10 ** 3;

    address public immutable token0;
    address public immutable token1;
    address immutable factory;
    address public externalBribe;
    address public voter;
    bool public hasGauge;

    // Structure to capture time period obervations every 30 minutes, used for local oracles
    struct Observation {
        uint timestamp;
        uint reserve0Cumulative;
        uint reserve1Cumulative;
    }

    // Capture oracle reading every 30 minutes
    uint constant periodSize = 1800;

    Observation[] public observations;

    uint internal immutable decimals0;
    uint internal immutable decimals1;

    uint public reserve0;
    uint public reserve1;
    uint public blockTimestampLast;

    uint public reserve0CumulativeLast;
    uint public reserve1CumulativeLast;

    event TankFees(address indexed token, uint amount, address tank);
    event GaugeFees(address indexed token, uint amount, address externalBribe);
    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(uint reserve0, uint reserve1);

    event Transfer(address indexed from, address indexed to, uint amount);
    event Approval(address indexed owner, address indexed spender, uint amount);

    event ExternalBribeSet(address indexed externalBribe);
    event HasGaugeSet(bool value);

    constructor() {
        factory = msg.sender;
        voter = IPairFactory(msg.sender).voter();
        (address _token0, address _token1, bool _stable) = IPairFactory(
            msg.sender
        ).getInitializable();
        (token0, token1, stable) = (_token0, _token1, _stable);
        if (_stable) {
            name = string(
                abi.encodePacked(
                    "StableV1 AMM - ",
                    IERC20(_token0).symbol(),
                    "/",
                    IERC20(_token1).symbol()
                )
            );
            symbol = string(
                abi.encodePacked(
                    "sAMM-",
                    IERC20(_token0).symbol(),
                    "/",
                    IERC20(_token1).symbol()
                )
            );
        } else {
            name = string(
                abi.encodePacked(
                    "VolatileV1 AMM - ",
                    IERC20(_token0).symbol(),
                    "/",
                    IERC20(_token1).symbol()
                )
            );
            symbol = string(
                abi.encodePacked(
                    "vAMM-",
                    IERC20(_token0).symbol(),
                    "/",
                    IERC20(_token1).symbol()
                )
            );
        }

        decimals0 = 10 ** IERC20(_token0).decimals();
        decimals1 = 10 ** IERC20(_token1).decimals();

        observations.push(Observation(block.timestamp, 0, 0));
    }

    // simple re-entrancy check
    uint internal _unlocked = 1;
    modifier lock() {
        require(_unlocked == 1);
        _unlocked = 2;
        _;
        _unlocked = 1;
    }

    function _safeApprove(address token, address spender, uint value) internal {
        require(token.code.length > 0);
        (bool success, bytes memory data) = token.call(
            abi.encodeWithSelector(IERC20.approve.selector, spender, value)
        );
        require(success && (data.length == 0 || abi.decode(data, (bool))));
    }

    function tank() public view returns (address) {
        return IPairFactory(factory).tank();
    }

    function setExternalBribe(address _externalBribe) external {
        require(
            externalBribe == address(0),
            "External bribe has already been set."
        );
        require(msg.sender == voter, "Only voter can set external bribe");
        externalBribe = _externalBribe;
        _safeApprove(token0, externalBribe, type(uint).max);
        _safeApprove(token1, externalBribe, type(uint).max);
        emit ExternalBribeSet(_externalBribe);
    }

    function setHasGauge(bool value) external {
        require(msg.sender == voter, "Only voter can set has gauge");
        hasGauge = value;
        emit HasGaugeSet(value);
    }

    function observationLength() external view returns (uint) {
        return observations.length;
    }

    function lastObservation() public view returns (Observation memory) {
        return observations[observations.length - 1];
    }

    function metadata()
        external
        view
        returns (
            uint dec0,
            uint dec1,
            uint r0,
            uint r1,
            bool st,
            address t0,
            address t1
        )
    {
        return (
            decimals0,
            decimals1,
            reserve0,
            reserve1,
            stable,
            token0,
            token1
        );
    }

    function tokens() external view returns (address, address) {
        return (token0, token1);
    }

    function _sendTokenFees(address token, uint amount) internal {
        if (amount != 0) {
            if (hasGauge) {
                IBribe(externalBribe).notifyRewardAmount(token, amount); // transfer fees to exBribes
                emit GaugeFees(token, amount, externalBribe);
            } else {
                address _tank = tank();
                _safeTransfer(token, _tank, amount); // transfer the fees to tank MSig for gaugeless LPs
                emit TankFees(token, amount, _tank);
            }
        }
    }

    function getReserves()
        public
        view
        returns (uint _reserve0, uint _reserve1, uint _blockTimestampLast)
    {
        _reserve0 = reserve0;
        _reserve1 = reserve1;
        _blockTimestampLast = blockTimestampLast;
    }

    // update reserves and, on the first call per block, price accumulators
    function _update(
        uint balance0,
        uint balance1,
        uint _reserve0,
        uint _reserve1
    ) internal {
        uint blockTimestamp = block.timestamp;
        uint timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired
        if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) {
            reserve0CumulativeLast += _reserve0 * timeElapsed;
            reserve1CumulativeLast += _reserve1 * timeElapsed;
        }

        Observation memory _point = lastObservation();
        timeElapsed = blockTimestamp - _point.timestamp; // compare the last observation with current timestamp, if greater than 30 minutes, record a new event
        if (timeElapsed > periodSize) {
            observations.push(
                Observation(
                    blockTimestamp,
                    reserve0CumulativeLast,
                    reserve1CumulativeLast
                )
            );
        }
        reserve0 = balance0;
        reserve1 = balance1;
        blockTimestampLast = blockTimestamp;
        emit Sync(reserve0, reserve1);
    }

    // produces the cumulative price using counterfactuals to save gas and avoid a call to sync.
    function currentCumulativePrices()
        public
        view
        returns (
            uint reserve0Cumulative,
            uint reserve1Cumulative,
            uint blockTimestamp
        )
    {
        blockTimestamp = block.timestamp;
        reserve0Cumulative = reserve0CumulativeLast;
        reserve1Cumulative = reserve1CumulativeLast;

        // if time has elapsed since the last update on the pair, mock the accumulated price values
        (
            uint _reserve0,
            uint _reserve1,
            uint _blockTimestampLast
        ) = getReserves();
        if (_blockTimestampLast != blockTimestamp) {
            // subtraction overflow is desired
            uint timeElapsed = blockTimestamp - _blockTimestampLast;
            reserve0Cumulative += _reserve0 * timeElapsed;
            reserve1Cumulative += _reserve1 * timeElapsed;
        }
    }

    // gives the current twap price measured from amountIn * tokenIn gives amountOut
    function current(
        address tokenIn,
        uint amountIn
    ) external view returns (uint amountOut) {
        Observation memory _observation = lastObservation();
        (
            uint reserve0Cumulative,
            uint reserve1Cumulative,

        ) = currentCumulativePrices();
        if (block.timestamp == _observation.timestamp) {
            _observation = observations[observations.length - 2];
        }

        uint timeElapsed = block.timestamp - _observation.timestamp;
        uint _reserve0 = (reserve0Cumulative -
            _observation.reserve0Cumulative) / timeElapsed;
        uint _reserve1 = (reserve1Cumulative -
            _observation.reserve1Cumulative) / timeElapsed;
        amountOut = _getAmountOut(amountIn, tokenIn, _reserve0, _reserve1);
    }

    // as per `current`, however allows user configured granularity, up to the full window size
    function quote(
        address tokenIn,
        uint amountIn,
        uint granularity
    ) external view returns (uint amountOut) {
        uint[] memory _prices = sample(tokenIn, amountIn, granularity, 1);
        uint priceAverageCumulative;
        for (uint i = 0; i < _prices.length; i++) {
            priceAverageCumulative += _prices[i];
        }
        return priceAverageCumulative / granularity;
    }

    // returns a memory set of twap prices
    function prices(
        address tokenIn,
        uint amountIn,
        uint points
    ) external view returns (uint[] memory) {
        return sample(tokenIn, amountIn, points, 1);
    }

    function sample(
        address tokenIn,
        uint amountIn,
        uint points,
        uint window
    ) public view returns (uint[] memory) {
        uint[] memory _prices = new uint[](points);

        uint length = observations.length - 1;
        uint i = length - (points * window);
        uint nextIndex = 0;
        uint index = 0;

        for (; i < length; i += window) {
            nextIndex = i + window;
            uint timeElapsed = observations[nextIndex].timestamp -
                observations[i].timestamp;
            uint _reserve0 = (observations[nextIndex].reserve0Cumulative -
                observations[i].reserve0Cumulative) / timeElapsed;
            uint _reserve1 = (observations[nextIndex].reserve1Cumulative -
                observations[i].reserve1Cumulative) / timeElapsed;
            _prices[index] = _getAmountOut(
                amountIn,
                tokenIn,
                _reserve0,
                _reserve1
            );
            // index < length; length cannot overflow
            unchecked {
                index = index + 1;
            }
        }
        return _prices;
    }

    // this low-level function should be called by addLiquidity functions in Router.sol, which performs important safety checks
    // standard uniswap v2 implementation
    function mint(address to) external lock returns (uint liquidity) {
        (uint _reserve0, uint _reserve1) = (reserve0, reserve1);
        uint _balance0 = IERC20(token0).balanceOf(address(this));
        uint _balance1 = IERC20(token1).balanceOf(address(this));
        uint _amount0 = _balance0 - _reserve0;
        uint _amount1 = _balance1 - _reserve1;

        uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
        if (_totalSupply == 0) {
            liquidity = Math.sqrt(_amount0 * _amount1) - MINIMUM_LIQUIDITY;
            _mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens
        } else {
            liquidity = Math.min(
                (_amount0 * _totalSupply) / _reserve0,
                (_amount1 * _totalSupply) / _reserve1
            );
        }
        require(liquidity > 0, "ILM"); // Pair: INSUFFICIENT_LIQUIDITY_MINTED
        _mint(to, liquidity);

        _update(_balance0, _balance1, _reserve0, _reserve1);
        emit Mint(msg.sender, _amount0, _amount1);
    }

    // this low-level function should be called from a contract which performs important safety checks
    // standard uniswap v2 implementation
    function burn(
        address to
    ) external lock returns (uint amount0, uint amount1) {
        (uint _reserve0, uint _reserve1) = (reserve0, reserve1);
        (address _token0, address _token1) = (token0, token1);
        uint _balance0 = IERC20(_token0).balanceOf(address(this));
        uint _balance1 = IERC20(_token1).balanceOf(address(this));
        uint _liquidity = balanceOf[address(this)];

        uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
        amount0 = (_liquidity * _balance0) / _totalSupply; // using balances ensures pro-rata distribution
        amount1 = (_liquidity * _balance1) / _totalSupply; // using balances ensures pro-rata distribution
        require(amount0 > 0 && amount1 > 0, "ILB"); // Pair: INSUFFICIENT_LIQUIDITY_BURNED
        _burn(address(this), _liquidity);
        _safeTransfer(_token0, to, amount0);
        _safeTransfer(_token1, to, amount1);
        _balance0 = IERC20(_token0).balanceOf(address(this));
        _balance1 = IERC20(_token1).balanceOf(address(this));

        _update(_balance0, _balance1, _reserve0, _reserve1);
        emit Burn(msg.sender, amount0, amount1, to);
    }

    // this low-level function should be called from a contract which performs important safety checks
    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external lock {
        require(!IPairFactory(factory).isPaused());
        require(amount0Out > 0 || amount1Out > 0, "IOA"); // Pair: INSUFFICIENT_OUTPUT_AMOUNT
        (uint _reserve0, uint _reserve1) = (reserve0, reserve1);
        require(amount0Out < _reserve0 && amount1Out < _reserve1, "IL"); // Pair: INSUFFICIENT_LIQUIDITY

        uint _balance0;
        uint _balance1;
        {
            // scope for _token{0,1}, avoids stack too deep errors
            (address _token0, address _token1) = (token0, token1);
            require(to != _token0 && to != _token1, "IT"); // Pair: INVALID_TO
            if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens
            if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens
            if (data.length > 0)
                IPairCallee(to).hook(msg.sender, amount0Out, amount1Out, data); // callback, used for flash loans
            _balance0 = IERC20(_token0).balanceOf(address(this));
            _balance1 = IERC20(_token1).balanceOf(address(this));
        }
        uint amount0In = _balance0 > _reserve0 - amount0Out
            ? _balance0 - (_reserve0 - amount0Out)
            : 0;
        uint amount1In = _balance1 > _reserve1 - amount1Out
            ? _balance1 - (_reserve1 - amount1Out)
            : 0;
        require(amount0In > 0 || amount1In > 0, "IIA"); // Pair: INSUFFICIENT_INPUT_AMOUNT
        {
            // scope for reserve{0,1}Adjusted, avoids stack too deep errors
            (address _token0, address _token1) = (token0, token1);
            if (amount0In > 0)
                _sendTokenFees(
                    token0,
                    (amount0In * IPairFactory(factory).getFee(stable)) / 10000
                );
            if (amount1In > 0)
                _sendTokenFees(
                    token1,
                    (amount1In * IPairFactory(factory).getFee(stable)) / 10000
                );
            _balance0 = IERC20(_token0).balanceOf(address(this)); // since we removed tokens, we need to reconfirm balances, can also simply use previous balance - amountIn/ 10000, but doing balanceOf again as safety check
            _balance1 = IERC20(_token1).balanceOf(address(this));
            // The curve, either x3y+y3x for stable pools, or x*y for volatile pools
            require(_k(_balance0, _balance1) >= _k(_reserve0, _reserve1), "K"); // Pair: K
        }

        _update(_balance0, _balance1, _reserve0, _reserve1);
        emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to);
    }

    // force balances to match reserves
    function skim(address to) external lock {
        (address _token0, address _token1) = (token0, token1);
        _safeTransfer(
            _token0,
            to,
            IERC20(_token0).balanceOf(address(this)) - (reserve0)
        );
        _safeTransfer(
            _token1,
            to,
            IERC20(_token1).balanceOf(address(this)) - (reserve1)
        );
    }

    // force reserves to match balances
    function sync() external lock {
        _update(
            IERC20(token0).balanceOf(address(this)),
            IERC20(token1).balanceOf(address(this)),
            reserve0,
            reserve1
        );
    }

    function _f(uint x0, uint y) internal pure returns (uint) {
        return
            (x0 * ((((y * y) / 1e18) * y) / 1e18)) /
            1e18 +
            (((((x0 * x0) / 1e18) * x0) / 1e18) * y) /
            1e18;
    }

    function _d(uint x0, uint y) internal pure returns (uint) {
        return
            (3 * x0 * ((y * y) / 1e18)) /
            1e18 +
            ((((x0 * x0) / 1e18) * x0) / 1e18);
    }

    function _get_y(uint x0, uint xy, uint y) internal pure returns (uint) {
        for (uint i = 0; i < 255; i++) {
            uint y_prev = y;
            uint k = _f(x0, y);
            if (k < xy) {
                uint dy = ((xy - k) * 1e18) / _d(x0, y);
                y = y + dy;
            } else {
                uint dy = ((k - xy) * 1e18) / _d(x0, y);
                y = y - dy;
            }
            if (y > y_prev) {
                if (y - y_prev <= 1) {
                    return y;
                }
            } else {
                if (y_prev - y <= 1) {
                    return y;
                }
            }
        }
        return y;
    }

    function getAmountOut(
        uint amountIn,
        address tokenIn
    ) external view returns (uint) {
        (uint _reserve0, uint _reserve1) = (reserve0, reserve1);
        amountIn -= (amountIn * IPairFactory(factory).getFee(stable)) / 10000; // remove fee from amount received
        return _getAmountOut(amountIn, tokenIn, _reserve0, _reserve1);
    }

    function _getAmountOut(
        uint amountIn,
        address tokenIn,
        uint _reserve0,
        uint _reserve1
    ) internal view returns (uint) {
        if (stable) {
            uint xy = _k(_reserve0, _reserve1);
            _reserve0 = (_reserve0 * 1e18) / decimals0;
            _reserve1 = (_reserve1 * 1e18) / decimals1;
            (uint reserveA, uint reserveB) = tokenIn == token0
                ? (_reserve0, _reserve1)
                : (_reserve1, _reserve0);
            amountIn = tokenIn == token0
                ? (amountIn * 1e18) / decimals0
                : (amountIn * 1e18) / decimals1;
            uint y = reserveB - _get_y(amountIn + reserveA, xy, reserveB);
            return (y * (tokenIn == token0 ? decimals1 : decimals0)) / 1e18;
        } else {
            (uint reserveA, uint reserveB) = tokenIn == token0
                ? (_reserve0, _reserve1)
                : (_reserve1, _reserve0);
            return (amountIn * reserveB) / (reserveA + amountIn);
        }
    }

    function _k(uint x, uint y) internal view returns (uint) {
        if (stable) {
            uint _x = (x * 1e18) / decimals0;
            uint _y = (y * 1e18) / decimals1;
            uint _a = (_x * _y) / 1e18;
            uint _b = ((_x * _x) / 1e18 + (_y * _y) / 1e18);
            return (_a * _b) / 1e18; // x3y+y3x >= k
        } else {
            return x * y; // xy >= k
        }
    }

    function _mint(address dst, uint amount) internal {
        totalSupply += amount;
        balanceOf[dst] += amount;
        emit Transfer(address(0), dst, amount);
    }

    function _burn(address dst, uint amount) internal {
        totalSupply -= amount;
        balanceOf[dst] -= amount;
        emit Transfer(dst, address(0), amount);
    }

    function approve(address spender, uint amount) external returns (bool) {
        allowance[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function permit(
        address owner,
        address spender,
        uint value,
        uint deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external {
        require(deadline >= block.timestamp, "Pair: EXPIRED");
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256(
                    "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
                ),
                keccak256(bytes(name)),
                keccak256(bytes("1")),
                block.chainid,
                address(this)
            )
        );
        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                DOMAIN_SEPARATOR,
                keccak256(
                    abi.encode(
                        PERMIT_TYPEHASH,
                        owner,
                        spender,
                        value,
                        nonces[owner]++,
                        deadline
                    )
                )
            )
        );
        address recoveredAddress = ecrecover(digest, v, r, s);
        require(
            recoveredAddress != address(0) && recoveredAddress == owner,
            "Pair: INVALID_SIGNATURE"
        );
        allowance[owner][spender] = value;

        emit Approval(owner, spender, value);
    }

    function transfer(address dst, uint amount) external returns (bool) {
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    function transferFrom(
        address src,
        address dst,
        uint amount
    ) external returns (bool) {
        address spender = msg.sender;
        uint spenderAllowance = allowance[src][spender];

        if (spender != src && spenderAllowance != type(uint).max) {
            uint newAllowance = spenderAllowance - amount;
            allowance[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    function _transferTokens(address src, address dst, uint amount) internal {
        balanceOf[src] -= amount;
        balanceOf[dst] += amount;

        emit Transfer(src, dst, amount);
    }

    function _safeTransfer(address token, address to, uint256 value) internal {
        require(token.code.length > 0);
        (bool success, bytes memory data) = token.call(
            abi.encodeWithSelector(IERC20.transfer.selector, to, value)
        );
        require(success && (data.length == 0 || abi.decode(data, (bool))));
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
 * @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);
    }
}

contract PairFactory is IPairFactory, Ownable {
    bool public isPaused;
    uint256 public stableFee;
    uint256 public volatileFee;
    uint256 public constant MAX_FEE = 50; // 0.5%
    address public voter;
    address public tank;
    address public deployer;

    mapping(address => mapping(address => mapping(bool => address)))
        public getPair;
    address[] public allPairs;
    mapping(address => bool) public isPair; // simplified check if its a pair, given that `stable` flag might not be available in peripherals

    address internal _temp0;
    address internal _temp1;
    bool internal _temp;

    event PairCreated(
        address indexed token0,
        address indexed token1,
        bool stable,
        address pair,
        uint
    );
    event VoterSet(address indexed setter, address indexed voter);
    event TankSet(address indexed setter, address indexed tank);
    event Paused(address indexed pauser, bool paused);

    event FeeSet(address indexed setter, bool stable, uint256 fee);

    constructor() {
        stableFee = 3; // 0.03%
        volatileFee = 25; // 0.25%
        deployer = msg.sender;
    }

    function setVoter(address _voter) external {
        require(voter == address(0), "The voter has already been set.");
        // have to make sure that this can be set to the voter address during init script
        require(msg.sender == deployer, "Not authorised to set voter.");
        voter = _voter;
        emit VoterSet(msg.sender, _voter);
    }

    function setTank(address _tank) external onlyOwner {
        tank = _tank;
        emit TankSet(msg.sender, _tank);
    }

    function allPairsLength() external view returns (uint) {
        return allPairs.length;
    }

    function setPause(bool _state) external onlyOwner {
        isPaused = _state;
        emit Paused(msg.sender, _state);
    }

    function setFee(bool _stable, uint256 _fee) external onlyOwner {
        require(_fee <= MAX_FEE, "fee too high");
        if (_stable) {
            stableFee = _fee;
        } else {
            volatileFee = _fee;
        }
        emit FeeSet(msg.sender, _stable, _fee);
    }

    function getFee(bool _stable) public view returns (uint256) {
        return _stable ? stableFee : volatileFee;
    }

    function getInitializable() external view returns (address, address, bool) {
        return (_temp0, _temp1, _temp);
    }

    function createPair(
        address tokenA,
        address tokenB,
        bool stable
    ) external returns (address pair) {
        require(tokenA != tokenB, "IA"); // Pair: IDENTICAL_ADDRESSES
        (address token0, address token1) = tokenA < tokenB
            ? (tokenA, tokenB)
            : (tokenB, tokenA);
        require(token0 != address(0), "ZA"); // Pair: ZERO_ADDRESS
        require(getPair[token0][token1][stable] == address(0), "PE"); // Pair: PAIR_EXISTS - single check is sufficient
        bytes32 salt = keccak256(abi.encodePacked(token0, token1, stable)); // notice salt includes stable as well, 3 parameters
        (_temp0, _temp1, _temp) = (token0, token1, stable);
        pair = address(new Pair{salt: salt}());
        getPair[token0][token1][stable] = pair;
        getPair[token1][token0][stable] = pair; // populate mapping in the reverse direction
        allPairs.push(pair);
        isPair[pair] = true;
        emit PairCreated(token0, token1, stable, pair, allPairs.length);
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"externalBribe","type":"address"}],"name":"ExternalBribeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"externalBribe","type":"address"}],"name":"GaugeFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"HasGaugeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reserve0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"reserve1","type":"uint256"}],"name":"Sync","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"tank","type":"address"}],"name":"TankFees","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockTimestampLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"}],"name":"current","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentCumulativePrices","outputs":[{"internalType":"uint256","name":"reserve0Cumulative","type":"uint256"},{"internalType":"uint256","name":"reserve1Cumulative","type":"uint256"},{"internalType":"uint256","name":"blockTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"externalBribe","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenIn","type":"address"}],"name":"getAmountOut","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint256","name":"_reserve0","type":"uint256"},{"internalType":"uint256","name":"_reserve1","type":"uint256"},{"internalType":"uint256","name":"_blockTimestampLast","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasGauge","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastObservation","outputs":[{"components":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"reserve0Cumulative","type":"uint256"},{"internalType":"uint256","name":"reserve1Cumulative","type":"uint256"}],"internalType":"struct Pair.Observation","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadata","outputs":[{"internalType":"uint256","name":"dec0","type":"uint256"},{"internalType":"uint256","name":"dec1","type":"uint256"},{"internalType":"uint256","name":"r0","type":"uint256"},{"internalType":"uint256","name":"r1","type":"uint256"},{"internalType":"bool","name":"st","type":"bool"},{"internalType":"address","name":"t0","type":"address"},{"internalType":"address","name":"t1","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"observationLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"observations","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"reserve0Cumulative","type":"uint256"},{"internalType":"uint256","name":"reserve1Cumulative","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"points","type":"uint256"}],"name":"prices","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"granularity","type":"uint256"}],"name":"quote","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserve0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserve0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserve1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserve1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"points","type":"uint256"},{"internalType":"uint256","name":"window","type":"uint256"}],"name":"sample","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_externalBribe","type":"address"}],"name":"setExternalBribe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setHasGauge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Out","type":"uint256"},{"internalType":"uint256","name":"amount1Out","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sync","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tank","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokens","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"voter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

Deployed Bytecode

0x0004000000000002000900000000000200000000030100190000006003300270000007bb0430019700030000004103550002000000010355000007bb0030019d000100000000001f00000001012001900000000c0000c13d1ee5061a0000040f0000014001000039000000400010043f0000000001000416000000000110004c000000540000c13d0000000201000039000000000001041b00000001020000390000000f01000039000900000002001d000000000021041b0000000002000411000000e00020043f000007bc01000041000001400010043f0000000001000414000000040320008c000000470000613d000000040400003900000140030000390000002006000039000800000002001d00000000050300191ee505a70000040f0000000802000029000000000110004c000000470000c13d0000000302000367000000400100043d00000001040000310000001f0340018f0000000504400272000000360000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b0000002e0000413d000000000530004c000000450000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f000000000024043500000001020000311ee506110000040f0000000101000031000000200310008c000000200300003900000000030140190000001f03300039000000600330018f0000014003300039000000400030043f000000200110008c000000540000413d000001400100043d000007bd0310009c000000570000a13d000000000100001900000000020000191ee506110000040f0000000804000039000000000304041a000007be03300197000000000113019f000000000014041b000007bf01000041000000400300043d00000000001304350000000001000414000000040420008c0000006a0000613d00000004040000390000006006000039000800000003001d00000008050000291ee505a70000040f0000000803000029000000000110004c000000270000613d0000000101000031000000600210008c000000600200003900000000020140190000001f02200039000000e00420018f0000000002340019000000000442004b00000000050000190000000105004039000007c00420009c0000021a0000213d00000001045001900000021a0000c13d000000400020043f000000600110008c000000540000413d0000000004030433000007bd0140009c000000540000213d00000020013000390000000005010433000007bd0150009c000000540000213d00000040013000390000000002010433000000000120004c0000000001000019000000010100c039000000000112004b000000540000c13d000000800020043f000800000005001d000000c00050043f000000a00040043f000007c101000041000000400800043d00000000001804350000000001000414000000000220004c0000011d0000c13d000700000004001d000000040240008c000000a00000613d00000004040000390000000702000029000000000308001900000000050800190000000006000019000600000008001d1ee505a70000040f0000000608000029000000000110004c000000270000613d000000030200036700000001010000310000001f0310018f0000000504100272000000ae0000613d000000000500001900000005065002100000000007680019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000000a60000413d000000000530004c000000bd0000613d0000000504400210000000000242034f00000000044800190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000001f02100039000000200500008a000000000352016f0000000002830019000000000332004b00000000030000190000000103004039000007c00420009c0000021a0000213d00000001033001900000021a0000c13d000600000005001d000000400020043f000000000281001900000000010800191ee5182a0000040f000007c102000041000000400800043d0000000000280435000500000001001d00000000010004140000000802000029000000040220008c000000df0000613d00000004040000390000000802000029000000000308001900000000050800190000000006000019000400000008001d1ee505a70000040f0000000408000029000000000110004c000000270000613d000000030200036700000001010000310000001f0310018f0000000504100272000000ed0000613d000000000500001900000005065002100000000007680019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000000e50000413d000000000530004c000000fc0000613d0000000504400210000000000242034f00000000044800190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000001f021000390000000603000029000000000332016f0000000002830019000000000332004b00000000030000190000000103004039000007c00420009c0000021a0000213d00000001033001900000021a0000c13d000000400020043f000000000281001900000000010800191ee5182a0000040f000000400300043d0000002004300039000007c502000041000300000004001d0000000000240435000400000003001d0000003103300039000000050700002900000000020704330000000004000019000000000524004b000001a70000813d00000000053400190000002004400039000000000674001900000000060604330000000000650435000001150000013d000700000004001d000000040240008c0000012a0000613d00000004040000390000000702000029000000000308001900000000050800190000000006000019000600000008001d1ee505a70000040f0000000608000029000000000110004c000000270000613d000000030200036700000001010000310000001f0310018f0000000504100272000001380000613d000000000500001900000005065002100000000007680019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000001300000413d000000000530004c000001470000613d0000000504400210000000000242034f00000000044800190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000001f02100039000000200500008a000000000352016f0000000002830019000000000332004b00000000030000190000000103004039000007c00420009c0000021a0000213d00000001033001900000021a0000c13d000600000005001d000000400020043f000000000281001900000000010800191ee5182a0000040f000007c102000041000000400800043d0000000000280435000500000001001d00000000010004140000000802000029000000040220008c000001690000613d00000004040000390000000802000029000000000308001900000000050800190000000006000019000400000008001d1ee505a70000040f0000000408000029000000000110004c000000270000613d000000030200036700000001010000310000001f0310018f0000000504100272000001770000613d000000000500001900000005065002100000000007680019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b0000016f0000413d000000000530004c000001860000613d0000000504400210000000000242034f00000000044800190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000001f021000390000000603000029000000000332016f0000000002830019000000000332004b00000000030000190000000103004039000007c00420009c0000021a0000213d00000001033001900000021a0000c13d000000400020043f000000000281001900000000010800191ee5182a0000040f000000400300043d0000002004300039000007c202000041000300000004001d0000000000240435000400000003001d0000002f03300039000000050700002900000000020704330000000004000019000000000524004b000001b90000813d000000000534001900000020044000390000000006740019000000000606043300000000006504350000019f0000013d00000000033200190000000000030435000000040300002900000000033200190000003104300039000007c3050000410000000000540435000000320430003900000000030104330000000005000019000000000635004b000001cb0000813d00000000064500190000002005500039000000000715001900000000070704330000000000760435000001b10000013d00000000033200190000000000030435000000040300002900000000033200190000002f04300039000007c3050000410000000000540435000000300430003900000000030104330000000005000019000000000635004b000002040000813d00000000064500190000002005500039000000000715001900000000070704330000000000760435000001c30000013d00000000014300190000000000010435000000000123001900000012021000390000000404000029000000000024043500000051011000390000000602000029000000000221016f0000000001420019000000000221004b00000000020000190000000102004039000007c00310009c0000021a0000213d00000001022001900000021a0000c13d000000400010043f0000000001040433000500000001001d000007c00110009c0000021a0000213d000000000100041a000000010210019000000001011002700000007f0310018f0000000001036019000200000001001d0000001f0110008c00000000010000190000000101002039000000010110018f000000000112004b0000022d0000c13d0000000201000029000000200110008c000002340000413d0000000000000435000000200200003900000000010000191ee505de0000040f00000005030000290000001f023000390000000502200270000000200330008c0000000003020019000000000300401900000002020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000002340000813d000000000001041b0000000101100039000001ff0000013d0000000001430019000000000001043500000000012300190000001002100039000000040400002900000000002404350000004f011000390000000602000029000000000221016f0000000001420019000000000221004b00000000020000190000000102004039000007c00310009c0000021a0000213d00000001022001900000021a0000c13d000000400010043f0000000001040433000500000001001d000007c00110009c000002210000a13d000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f000000000100041a000000010210019000000001021002700000007f0320018f0000000002036019000200000002001d0000001f0220008c00000000020000190000000102002039000000000121013f00000001011001900000024d0000613d000007cb0100004100000000001004350000002201000039000000040010043f000000240200003900000000010000191ee506110000040f00000005020000290000001f0120008c0000000301200210000200000001001d0000027d0000a13d00000000000004350000002002000039000300000002001d00000000010000191ee505de0000040f000000030600002900000006020000290000000503000029000000000223016f00000000030000190000000405000029000000000423004b00000000045600190000028b0000813d0000000004040433000000000041041b000000200330003900000020066000390000000101100039000002440000013d0000000201000029000000200110008c000002640000413d0000000000000435000000200200003900000000010000191ee505de0000040f00000005030000290000001f023000390000000502200270000000200330008c0000000003020019000000000300401900000002020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000002640000813d000000000001041b00000001011000390000025f0000013d00000005020000290000001f0120008c0000000301200210000200000001001d0000032c0000a13d00000000000004350000002002000039000300000002001d00000000010000191ee505de0000040f000000030600002900000006020000290000000503000029000000000223016f00000000030000190000000405000029000000000423004b00000000045600190000033a0000813d0000000004040433000000000041041b000000200330003900000020066000390000000101100039000002740000013d0000000501000029000000000110004c0000000002000019000002830000613d0000000301000029000000000201043300000005010000290000000101100210000000010300008a0000000204000029000000000443022f000000000334013f000000000232016f000002990000013d0000000503000029000000000232004b000002960000813d0000000202000029000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000005020000290000000102200210000000000112019f000000000010041b000007c101000041000000400200043d000500000002001d000000000012043500000000010004140000000702000029000000040220008c000002ab0000613d000000040400003900000007020000290000000503000029000000000503001900000000060000191ee505a70000040f000000000110004c000000270000613d000000030200036700000001080000310000001f0380018f00000005048002720000000501000029000002ba0000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000002b20000413d000000000530004c000002ca0000613d0000000504400210000000000242034f000000050100002900000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000001f028000390000000603000029000000000332016f00000005010000290000000002130019000000000332004b00000000030000190000000103004039000007c00420009c0000021a0000213d00000001033001900000021a0000c13d000000400020043f000000050100002900000000021800191ee5182a0000040f000007c102000041000000400300043d000500000003001d0000000000230435000400000001001d00000000010004140000000802000029000000040220008c000002eb0000613d000000040400003900000008020000290000000503000029000000000503001900000000060000191ee505a70000040f000000000110004c000000270000613d000000030200036700000001080000310000001f0380018f00000005048002720000000501000029000002fa0000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000002f20000413d000000000530004c0000030a0000613d0000000504400210000000000242034f000000050100002900000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000001f028000390000000603000029000000000332016f00000005010000290000000002130019000000000332004b00000000030000190000000103004039000007c00420009c0000021a0000213d00000001033001900000021a0000c13d000000400020043f000000050100002900000000021800191ee5182a0000040f000000400300043d0000002004300039000007c602000041000300000004001d0000000000240435000500000003001d0000002503300039000000040700002900000000020704330000000004000019000000000524004b000003db0000813d00000000053400190000002004400039000000000674001900000000060604330000000000650435000003240000013d0000000501000029000000000110004c0000000002000019000003320000613d0000000301000029000000000201043300000005010000290000000101100210000000010300008a0000000204000029000000000443022f000000000334013f000000000232016f000003480000013d0000000503000029000000000232004b000003450000813d0000000202000029000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000005020000290000000102200210000000000112019f000000000010041b000007c101000041000000400200043d000500000002001d000000000012043500000000010004140000000702000029000000040220008c0000035a0000613d000000040400003900000007020000290000000503000029000000000503001900000000060000191ee505a70000040f000000000110004c000000270000613d000000030200036700000001080000310000001f0380018f00000005048002720000000501000029000003690000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000003610000413d000000000530004c000003790000613d0000000504400210000000000242034f000000050100002900000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000001f028000390000000603000029000000000332016f00000005010000290000000002130019000000000332004b00000000030000190000000103004039000007c00420009c0000021a0000213d00000001033001900000021a0000c13d000000400020043f000000050100002900000000021800191ee5182a0000040f000007c102000041000000400300043d000500000003001d0000000000230435000400000001001d00000000010004140000000802000029000000040220008c0000039a0000613d000000040400003900000008020000290000000503000029000000000503001900000000060000191ee505a70000040f000000000110004c000000270000613d000000030200036700000001080000310000001f0380018f00000005048002720000000501000029000003a90000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000003a10000413d000000000530004c000003b90000613d0000000504400210000000000242034f000000050100002900000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000001f028000390000000603000029000000000332016f00000005010000290000000002130019000000000332004b00000000030000190000000103004039000007c00420009c0000021a0000213d00000001033001900000021a0000c13d000000400020043f000000050100002900000000021800191ee5182a0000040f000000400300043d0000002004300039000007c402000041000300000004001d0000000000240435000500000003001d0000002503300039000000040700002900000000020704330000000004000019000000000524004b000003ed0000813d00000000053400190000002004400039000000000674001900000000060604330000000000650435000003d30000013d00000000033200190000000000030435000000050300002900000000033200190000002504300039000007c3050000410000000000540435000000260430003900000000030104330000000005000019000000000635004b000003ff0000813d00000000064500190000002005500039000000000715001900000000070704330000000000760435000003e50000013d00000000033200190000000000030435000000050300002900000000033200190000002504300039000007c3050000410000000000540435000000260430003900000000030104330000000005000019000000000635004b0000043c0000813d00000000064500190000002005500039000000000715001900000000070704330000000000760435000003f70000013d00000000014300190000000000010435000000000123001900000006021000390000000503000029000000000023043500000045011000390000000602000029000000000221016f0000000001320019000000000221004b00000000020000190000000102004039000007c00310009c0000021a0000213d00000001022001900000021a0000c13d000000400010043f00000005010000290000000001010433000400000001001d000007c00110009c0000021a0000213d0000000101000039000200000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000100000002001d0000001f0220008c00000000020000190000000102002039000000000121013f00000001011001900000022d0000c13d0000000101000029000000200110008c000004780000413d00000001010000390000000000100435000000200200003900000000010000191ee505de0000040f00000004030000290000001f023000390000000502200270000000200330008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000004780000813d000000000001041b0000000101100039000004370000013d00000000014300190000000000010435000000000123001900000006021000390000000503000029000000000023043500000045011000390000000602000029000000000221016f0000000001320019000000000221004b00000000020000190000000102004039000007c00310009c0000021a0000213d00000001022001900000021a0000c13d000000400010043f00000005010000290000000001010433000400000001001d000007c00110009c0000021a0000213d0000000901000029000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000200000002001d0000001f0220008c00000000020000190000000102002039000000000121013f00000001011001900000022d0000c13d0000000201000029000000200110008c000004900000413d00000001010000390000000000100435000000200200003900000000010000191ee505de0000040f00000004030000290000001f023000390000000502200270000000200330008c0000000003020019000000000300401900000002020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000004900000813d000000000001041b0000000101100039000004730000013d00000004010000290000001f0110008c000004a80000a13d000000020100002900000000001004350000002002000039000300000002001d00000000010000191ee505de0000040f000000030600002900000006020000290000000403000029000000000223016f00000000030000190000000505000029000000000423004b0000000004560019000004b70000813d0000000004040433000000000041041b000000200330003900000020066000390000000101100039000004870000013d00000004010000290000001f0110008c000004c60000a13d000000090100002900000000001004350000002002000039000300000002001d00000000010000191ee505de0000040f000000030600002900000006020000290000000403000029000000000223016f00000000030000190000000505000029000000000423004b0000000004560019000004d50000813d0000000004040433000000000041041b0000002003300039000000200660003900000001011000390000049f0000013d0000000401000029000000000110004c0000000001000019000004ae0000613d0000000301000029000000000101043300000004040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000200000002001d000004e50000013d0000000403000029000000000232004b000004c30000813d00000004020000290000000302200210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b00000004010000290000000101100210000004e50000013d0000000401000029000000000110004c0000000001000019000004cc0000613d0000000301000029000000000101043300000004040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000200000002001d000004e50000013d0000000403000029000000000232004b000004e10000813d00000004020000290000000302200210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000040100002900000001011002100000000902000029000200000002001d0000000202000029000000000121019f0000000902000029000000000012041b000007c701000041000000400200043d000900000002001d000000000012043500000000010004140000000702000029000000040220008c000004f90000613d000000040400003900000020060000390000000702000029000000090300002900000000050300191ee505a70000040f000000000110004c000000270000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600320018f00000009020000290000000002230019000000000332004b00000000030000190000000103004039000007c00420009c0000021a0000213d00000001033001900000021a0000c13d000000400020043f000000200110008c0000000803000029000000540000413d00000009010000290000000001010433000000ff0210008c000000540000213d1ee518760000040f000001000010043f000000400200043d000007c701000041000900000002001d000000000012043500000000010004140000000802000029000007bd02200197000000040320008c000005220000613d00000004040000390000002006000039000000090300002900000000050300191ee505a70000040f000000000110004c000000270000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600320018f00000009020000290000000002230019000000000332004b00000000030000190000000103004039000007c00420009c0000021a0000213d00000001033001900000021a0000c13d000000400020043f000000200110008c000000540000413d00000009010000290000000001010433000000ff0210008c000000540000213d1ee518760000040f000001200010043f000000400100043d000900000001001d000007c80110009c0000021a0000213d00000009010000290000006001100039000000400010043f000007c90100004100000000001004390000800b0100003900000004020000391ee505f50000040f000000090200002900000000001204350000004001200039000800000001001d00000000000104350000002001200039000700000001001d00000000000104350000000901000039000000000201041a0000000003020019000007c00220009c0000021a0000213d000500000003001d0000000102300039000000000021041b00000000001004350000002002000039000600000002001d00000000010000191ee505de0000040f000000050200002900000003322000c9000000000121001900000009020000290000000002020433000000000021041b000000070200002900000000020204330000000103100039000000000023041b000000020110003900000008020000290000000002020433000000000021041b000000800100043d00000140000004430000016000100443000000a00100043d00000006030000290000018000300443000001a0001004430000004001000039000000c00200043d000001c000100443000001e0002004430000006001000039000000e00200043d000002000010044300000220002004430000008001000039000001000200043d00000240001004430000026000200443000000a001000039000001200200043d0000028000100443000002a0002004430000010000300443000000060100003900000120001004430000010001000039000001c002000039000007ca030000411ee506070000040f000000000201001900000001010000390000000a03000039000000000420004c000005930000613d00000001042001900000000004030019000000010400603900000000411400a9000000010220027000000000433300a90000058a0000013d000000000001042d000007bb05000041000007bb0630009c00000000030580190000004003300210000007bb0640009c00000000040580190000006004400210000000000334019f000007bb0410009c0000000001058019000000c001100210000000000113019f1ee51edb0000040f00000000030100190000006003300270000107bb0030019d0003000000010355000000010120018f000000000001042d0002000000000002000200000006001d000100000005001d000007bb05000041000007bb0630009c00000000030580190000004003300210000007bb0640009c00000000040580190000006004400210000000000334019f000007bb0410009c0000000001058019000000c001100210000000000113019f1ee51ee00000040f000000010900002900000000030100190000006003300270000007bb033001970000000205000029000000000453004b00000000050340190000001f0450018f0000000505500272000005ca0000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000005c20000413d000000010220018f000000000640004c000005da0000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000001020019000000000001042d000007bb03000041000007bb0410009c00000000010380190000004001100210000007bb0420009c00000000020380190000006002200210000000000112019f0000000002000414000007bb0420009c0000000002038019000000c002200210000000000112019f000007cc011001c700008010020000391ee51ee00000040f0000000102200190000005f20000613d000000000101043b000000000001042d000000000100001900000000020000191ee506110000040f0000000003010019000007bb010000410000000004000414000007bb0540009c0000000001044019000000c00110021000000060022002100000000001120019000007cd0110004100000000020300191ee51ee00000040f0000000102200190000006040000613d000000000101043b000000000001042d000000000100001900000000020000191ee506110000040f000007bb04000041000007bb0510009c000000000104801900000040011002100000000001310019000007bb0320009c00000000020480190000006002200210000000000121001900001ee60001042e000007bb03000041000007bb0420009c0000000002038019000007bb0410009c000000000103801900000040011002100000006002200210000000000112019f00001ee7000104300012000000000002000000800b0000390000004000b0043f0000000001000031000000040110008c00000ee10000413d001200000000001d0000000201000367000000000101043b000000e001100270000007ce0210009c00000000090004120000000003000411000000000a00041000000d3b0000613d000007cf0210009c00000a770000613d000007d00210009c000008870000613d000007d10210009c00000cf50000613d000007d20210009c00000eae0000613d000007d30210009c000006d50000613d000007d40210009c000007860000613d000007d50210009c000007340000613d000007d60210009c0000079e0000613d000007d70210009c000008220000613d000007d80210009c00000c1f0000613d000007d90210009c00000a330000613d000007da0210009c00000c080000613d000007db0210009c00000e4b0000613d000007dc0210009c00000e1b0000613d000007dd0210009c000007ba0000613d000007de0210009c00000ed00000613d000007df0210009c000008f90000613d000007e00210009c000009520000613d000007e10210009c00000e330000613d000007e20210009c00000c8c0000613d000007e30210009c00000aa50000613d000007e40210009c00000ac40000613d000007e50210009c00000db20000613d000007e60210009c00000b610000613d000007e70210009c00000a5c0000613d000007e80210009c000007d30000613d000007e90210009c000009d00000613d000007ea0210009c000008040000613d000007eb0210009c00000b220000613d000007ec0210009c000008a70000613d000007ed0210009c000008440000613d000007ee0210009c00000b820000613d000007ef0210009c000008e10000613d000007f00210009c00000bf00000613d000007f10210009c00000a1b0000613d000007f20210009c00000b400000613d000007f30210009c00000ae30000613d000007f40210009c0000085c0000613d000007f50210009c00000a030000613d000007f60210009c000009610000613d000007f70110009c00000ee10000c13d0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000f01000039001000000001001d000000000101041a000000010110008c00000ee10000c13d00000002010000390000001002000029000000000012041b000007f901000041000000400200043d0000000000120435000e00000002001d0000000401200039000f0000000a001d0000000000a104350000000001000414000d00000001001d000007fa010000410000000000100439001100000009001d000000040090044300000020010000390000002400100443000080050100003900000044020000391ee505f50000040f000007bd02100197000000040120008c00000f320000613d000000240400003900000020060000390000000d010000290000000e0300002900000000050300191ee505a70000040f000000000110004c00000f320000c13d000000120300002900000001040000310000000001340019000000000141004b00000ee10000213d000000400100043d0000001f0240018f00000003033003670000000504400272000006c40000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000006bc0000413d000000000520004c000006d30000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000001020000311ee506110000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000800310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d00000002010003670000000402100370000000000202043b000900000002001d000007bd0220009c00000ee10000213d0000006402100370000000000202043b000800000002001d0000002402100370000000000202043b000700000002001d0000004401100370000000000101043b000007c00210009c000016b50000213d00000005041002100000003f02400039000000200300008a000000000232016f000000400300043d0000000002230019000600000003001d000000000332004b00000000030000190000000103004039000007c00520009c000016b50000213d0000000103300190000016b50000c13d000000400020043f000000060300002900000000001304350000001f0240018f0000002008300039000000000300003100000002033003670000000504400272000007160000613d000000000500001900000005065002100000000007680019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b0000070e0000413d000000000520004c000007250000613d0000000504400210000000000343034f00000000044800190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000400000008001d0000000902000039000000000202041a000000000320004c0000081b0000613d000000010220008a000500000002001d000000080200002900000000321200a9000000000310004c0000120b0000c13d0000000501000029000000000121004b0000081b0000413d000012120000013d00000000050300190000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000200310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d00000004010000390000000201100367000000000101043b0000000003010019000007bd0110009c00000ee10000213d0000000704000039000000000104041a000007bd0210019800000f890000c13d0000000802000039000000000202041a000007bd02200197000000000225004b000010a70000c13d000007be01100197000f00000003001d000000000131019f000000000014041b000007fa01000041000e00000001001d00000000001004390000000400900443000000200100003900000024001004430000800501000039000c00000001001d0000004402000039000d00000002001d001100000009001d001000000004001d1ee505f50000040f0000000f020000291ee5199d0000040f0000000e01000029000000000010043900000011010000290000000400100443000000400100003900000024001004430000000c010000290000000d020000291ee505f50000040f0000001002000029000000000202041a000007bd022001971ee5199d0000040f000007bb010000410000000002000414000007bb0320009c0000000001024019000000c001100210000007cc011001c70000800d0200003900000002030000390000081f040000410000000f050000291ee51edb0000040f000000010120019000000ee10000613d0000000001000019000000000200001900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000201000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d1ee51a3e0000040f000000400400043d000000200540003900000000002504350000004002400039000000000032043500000000001404350000006002000039000000000104001900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000701000039000000000101041a000007bd02100197000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000101000039000f00000001001d000000000101041a001000000001001d000000400200043d001100000002001d1ee518940000040f000000100300002900000011070000290000000000170435000000010230019000000ef50000c13d000001000200008a000000000223016f00000020057000390000000000250435000000000110004c000000200200003900000000020060190000000001250019000000000271004900000000010700191ee518a60000040f000000400100043d001000000001001d00000011020000291ee518ba0000040f00000010030000290000000002310049000000000103001900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d00000000010000311ee518f00000040f001100000003001d1ee51a840000040f000000000301043300000000020000190000000004000019000000000534004b00000ee40000813d000000050540021000000000051500190000000104400039000000200550003900000000050504330000000002250019000000000552004b0000000005000019000000010500403900000001055001900000080e0000613d000007cb0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000191ee506110000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d000000400100043d001000000001001d000007fa01000041000000000010043900000004009004430000002400000443000080050100003900000044020000391ee505f50000040f000000000110004c0000000002000019000000010200c03900000010010000290000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d1ee5190a0000040f000007bd02100197000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000400310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d1ee518820000040f001100000001001d1ee5188b0000040f0000001102000029000007bd0220019700000000002004350000000302000039000000200020043f001000000001001d0000004002000039001100000002001d00000000010000191ee505de0000040f0000001002000029000007bd022001970000000000200435000000200010043f000000000100001900000011020000291ee505de0000040f000000000201041a000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000a01000039000000000201041a0000000b01000039000000000301041a0000000c01000039000000000401041a000000400100043d00000040051000390000000000450435000000200410003900000000003404350000000000210435000000600200003900000000030000191ee506070000040f00000000050300190000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000200310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d00000004010000390000000201100367000000000101043b000000000210004c0000000002000019000000010200c039000000000221004b00000ee10000c13d0000000802000039000000000302041a000007bd04300197000000000445004b00000f9a0000c13d0000080d03300197000000a0041002100000080e04400197000000000334019f000000000032041b000000400200043d0000000000120435000007bb010000410000000003000414000007bb0430009c0000000003018019000007bb0420009c00000000010240190000004001100210000000c002300210000000000112019f00000809011001c70000800d0200003900000001030000390000080f040000411ee51edb0000040f000000010120019000000ee10000613d0000001201000029000000000201001900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000d01000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000400310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d00000004010000390000000201100367000000000101043b001000000001001d000007bd0110009c00000ee10000213d1ee51a0f0000040f001100000001001d1ee51a3e0000040f000007c9030000410000000000300439000e00000001001d000f00000002001d0000800b0100003900000004020000391ee505f50000040f00000011020000290000000002020433000000000121004b0000092a0000c13d0000000e010000290000000f010000290000000901000039000000000101041a000000020210008c0000081b0000413d000000020110008a1ee518e00000040f1ee519f70000040f001100000001001d0000000f010000290000000e01000029000007c90100004100000000001004390000800b0100003900000004020000391ee505f50000040f0000001102000029001100000002001d00000000020204331ee519ec0000040f000000110200002900000020022000390000000002020433000d00000001001d0000000e010000291ee519ec0000040f0000000d020000291ee51a790000040f0000001102000029000000400220003900000024030000390000000203300367000000000303043b001100000003001d0000000002020433000e00000001001d0000000f010000291ee519ec0000040f0000000d020000291ee51a790000040f0000000004010019000000110100002900000010020000290000000e030000291ee51c680000040f000000400300043d00000000001304350000002002000039000000000103001900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d00000000010000311ee518f00000040f1ee51a840000040f0000000002010019000000400100043d001100000001001d1ee518d00000040f00000011030000290000000002310049000000000103001900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000400310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d00000002010003670000000402100370000000000202043b000f00000002001d0000002401100370000000000101043b000e00000001001d000007bd0110009c00000ee10000213d0000000b01000039000000000101041a000900000001001d0000000a01000039000000000101041a000800000001001d000000400200043d001000000002001d000007fb010000410000000000120435000007fa01000041000d00000001001d0000000000100439000000040090044300000024000004430000800501000039000b00000001001d0000004402000039000c00000002001d001100000009001d1ee505f50000040f000000000110004c0000000001000019000000010100c0390000001002000029000000040220003900000000001204350000000001000414000a00000001001d0000000d01000029000000000010043900000011010000290000000400100443000000600100003900000024001004430000000b010000290000000c020000291ee505f50000040f000007bd02100197000000040120008c00000f0f0000613d000000240400003900000020060000390000000a01000029000000100300002900000000050300191ee505a70000040f000000000110004c00000f0f0000c13d000000120300002900000001040000310000000001340019000000000141004b00000ee10000213d000000400100043d0000001f0240018f00000003033003670000000504400272000009bf0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000009b70000413d000000000520004c000009ce0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000001020000311ee506110000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d000000400100043d001000000001001d000007fa01000041000f00000001001d00000000001004390000000400900443000000200100003900000024001004430000800501000039000d00000001001d0000004402000039000e00000002001d001100000009001d1ee505f50000040f000007bd01100197000000100200002900000000001204350000000f010000290000000000100439000000110100002900000004001004430000004001000039001100000001001d00000024001004430000000d010000290000000e020000291ee505f50000040f000007bd03100197000000100100002900000020021000390000000000320435000000110200002900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000901000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000c01000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000200310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d00000004010000390000000201100367000000000101043b0000000902000039000000000302041a000000000331004b00000ee10000813d000000000020043500000003211000c90000081802100041000000000202041a0000081903100041000000000303041a0000081a01100041000000000401041a000000400100043d00000040051000390000000000450435000000200410003900000000003404350000000000210435000000600200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000801000039000000000101041a0000080e011001980000000002000019000000010200c039000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d000000400100043d001100000001001d000000000100041a001000000001001d1ee518940000040f000000100300002900000011070000290000000000170435000000010230019000000f030000c13d000001000200008a000000000223016f00000020037000390000000000230435000000000110004c00000020020000390000000002006019000000200220003900000000010700191ee518a60000040f000000400100043d001000000001001d00000011020000291ee518ba0000040f00000010030000290000000002310049000000000103001900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000200310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d1ee518820000040f000007bd0110019700000000001004350000000401000039000000200010043f000000400200003900000000010000191ee505de0000040f000000000201041a000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000200310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d1ee518820000040f000007bd0110019700000000001004350000000601000039000000200010043f000000400200003900000000010000191ee505de0000040f000000000201041a000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000e00310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d00000002010003670000000402100370000000000202043b001100000002001d000007bd0220009c00000ee10000213d0000002402100370000000000202043b001000000002001d000007bd0220009c00000ee10000213d0000006402100370000000000202043b000e00000002001d0000004402100370000000000202043b000d00000002001d0000008401100370000000000101043b000c00000001001d000000ff0110008c00000ee10000213d000f0000000a001d000007c90100004100000000001004390000800b0100003900000004020000391ee505f50000040f000000400300043d0000000e02000029000000000112004b000010d40000813d00000044013000390000080b02000041000000000021043500000024013000390000000d02000039000000000021043500000808010000410000000000130435000000040130003900000020020000390000000000210435000000640200003900000000010300191ee506110000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000400310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d1ee518820000040f00000024020000390000000202200367000000000302043b000000000201001900000000010004111ee51e460000040f0000000102000039000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d000000400100043d001000000001001d000007fa010000410000000000100439000000040090044300000040010000390000002400100443000080050100003900000044020000391ee505f50000040f000007bd0210019700000010010000290000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d1ee51a0f0000040f0000000002010433000000400300043d0000000000230435000000200210003900000000020204330000002004300039000000000024043500000040011000390000000001010433000000400230003900000000001204350000006002000039000000000103001900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000200310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d00000004010000390000000201100367000000000101043b001000000001001d000007bd0110009c00000ee10000213d0000000f01000039000e00000001001d000000000101041a000000010110008c00000ee10000c13d00000002010000390000000e02000029000000000012041b000007fa01000041000d00000001001d00000000001004390000000400900443000000200100003900000024001004430000800501000039000b00000001001d0000004402000039000c00000002001d001100000009001d000f0000000a001d1ee505f50000040f0000000d0200002900000000002004390000001102000029000000040020044300000040020000390000002400200443001100000001001d0000000b010000290000000c020000291ee505f50000040f000007f902000041000000400300043d000000000023043500000004023000390000000f040000290000000000420435000c00000001001d00000000010004140000001102000029000007bd02200197000000040420008c00000fa80000613d00000024040000390000002006000039000d00000003001d0000000d050000291ee505a70000040f0000000d03000029000000000110004c00000fa80000c13d000000120300002900000001040000310000000001340019000000000141004b00000ee10000213d000000400100043d0000001f0240018f0000000303300367000000050440027200000bdf0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000bd70000413d000000000520004c00000bee0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000001020000311ee506110000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000e01000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d000000400100043d00000012020000390000000000210435000000200200003900000000030000191ee506070000040f001000000003001d0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000600310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d00000002010003670000000402100370000000000202043b001100000002001d000007bd0220009c00000ee10000213d0000002402100370000000000202043b000f00000002001d000007bd0220009c00000ee10000213d0000004401100370000000000101043b000d00000001001d000000110100002900000000001004350000000301000039000c00000001001d000000200010043f0000004002000039000e00000002001d00000000010000191ee505de0000040f00000010020000290000000000200435000000200010043f00000000010000190000000e020000291ee505de0000040f000000000101041a000e00000001001d00000011010000290000001002000029000000000112004b00000c820000613d000000010100008a0000000e02000029000000000112004b00000c820000613d0000000d030000290000000e01000029000000000131004b0000081b0000413d000000110100002900000000001004350000000c01000029000000200010043f0000004002000039000b00000002001d00000000010000191ee505de0000040f00000010020000290000000000200435000000200010043f00000000010000190000000b020000291ee505de0000040f0000000e020000290000000d030000290000000002320049000000000021041b000000400100043d0000000000210435000007bb020000410000000003000414000007bb0430009c0000000003028019000007bb0410009c00000000010280190000004001100210000000c002300210000000000112019f00000809011001c70000800d020000390000080a040000410000000c03000029000000110500002900000010060000291ee51edb0000040f000000010120019000000ee10000613d00000011010000290000000f020000290000000d030000291ee51e460000040f0000000102000039000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000200310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000401000039000e00000001001d0000000201100367000000000101043b001000000001001d000007bd0110009c00000ee10000213d0000000f01000039000d00000001001d000000000101041a000000010110008c00000ee10000c13d00000002020000390000000d01000029000800000002001d000000000021041b0000000b01000039000000000101041a000900000001001d0000000a01000039000000000101041a000a00000001001d000000400200043d000007f9010000410000000000120435000c00000002001d0000000401200039000f0000000a001d0000000000a104350000000001000414000b00000001001d000007fa010000410000000000100439001100000009001d00000004009004430000002001000039000700000001001d0000002400100443000080050100003900000044020000391ee505f50000040f000007bd02100197000000040120008c00000ff90000613d000000240400003900000020060000390000000b010000290000000c0300002900000000050300191ee505a70000040f000000000110004c00000ff90000c13d000000120300002900000001040000310000000001340019000000000141004b00000ee10000213d000000400100043d0000001f0240018f0000000303300367000000050440027200000ce40000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000cdc0000413d000000000520004c00000cf30000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000001020000311ee506110000040f00000000050300190000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000400310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d00000002010003670000000402100370000000000202043b001100000002001d000007bd0220009c00000ee10000213d0000002401100370000000000101043b000e00000001001d001000000005001d00000000005004350000000301000039000f00000001001d000000200010043f0000004002000039000d00000002001d00000000010000191ee505de0000040f00000011020000290000000000200435000000200010043f00000000010000190000000d020000291ee505de0000040f0000000e02000029000000000021041b000000400100043d0000000000210435000007bb020000410000000003000414000007bb0430009c0000000003028019000007bb0410009c00000000010280190000004001100210000000c002300210000000000112019f00000809011001c70000800d020000390000080a040000410000000f03000029000000100500002900000011060000291ee51edb0000040f000000010120019000000ee10000613d000000400100043d00000001020000390000000000210435000000200200003900000000030000191ee506070000040f001000000003001d0000000001000416000000000110004c00000ee10000c13d0000000001000031000000040210008a000007f803000041000000800420008c00000000040000190000000004034019000007f802200197000000000520004c000000000300a019000007f80220009c00000000020400190000000002036019000000000220004c00000ee10000c13d00000002020003670000004403200370000000000303043b000007bd0330009c00000ee10000213d0000006403200370000000000303043b000007c00430009c00000ee10000213d0000002304300039000007f805000041000000000614004b00000000060000190000000006058019000007f807100197000007f804400197000000000874004b0000000005008019000000000474013f000007f80440009c00000000040600190000000004056019000000000440004c00000ee10000c13d0000000404300039000000000242034f000000000202043b000007c00420009c00000ee10000213d00000000022300190000002402200039000000000112004b00000ee10000213d0000000f01000039000e00000001001d000000000101041a000000010110008c00000ee10000c13d000b0000000b001d000f0000000a001d00000002020000390000000e01000029000c00000002001d000000000021041b0000082001000041000000800010043f0000000001000414000d00000001001d000007fa010000410000000000100439001100000009001d00000004009004430000006001000039000a00000001001d0000002400100443000080050100003900000044020000391ee505f50000040f000007bd02100197000000040120008c000012720000613d0000000404000039000000800300003900000020060000390000000d0100002900000000050300191ee505a70000040f000000000110004c000012720000c13d0000000302000367000000400100043d00000001040000310000001f0340018f000000050440027200000da10000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b00000d990000413d000000000530004c00000db00000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f000000000024043500000001020000311ee506110000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000200310008c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000401000039001000000001001d0000000201100367000000000101043b000e00000001001d000007bd0110009c00000ee10000213d0000000f01000039000d00000001001d000000000101041a000000010110008c00000ee10000c13d00000002020000390000000d01000029000a00000002001d000000000021041b0000000b01000039000000000101041a000800000001001d0000000a01000039000000000101041a000700000001001d000000400200043d000007f9010000410000000000120435000c00000002001d0000000401200039000f0000000a001d0000000000a104350000000001000414000b00000001001d000007fa010000410000000000100439001100000009001d00000004009004430000002001000039000900000001001d0000002400100443000080050100003900000044020000391ee505f50000040f000007bd02100197000000040120008c000010500000613d000000240400003900000020060000390000000b010000290000000c0300002900000000050300191ee505a70000040f000000000110004c000010500000c13d000000120300002900000001040000310000000001340019000000000141004b00000ee10000213d000000400100043d0000001f0240018f0000000303300367000000050440027200000e0a0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000e020000413d000000000520004c00000e190000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000001020000311ee506110000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000a01000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000b01000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d0000000a01000039000000000101041a000c00000001001d0000000b01000039000000000101041a000b00000001001d000000400100043d001000000001001d000007fa01000041000f00000001001d000000000010043900000004009004430000002400b004430000800501000039000d00000001001d0000004402000039000e00000002001d001100000009001d1ee505f50000040f000000100200002900000000001204350000000f01000029000000000010043900000011010000290000000400100443000000a00100003900000024001004430000000d010000290000000e020000291ee505f50000040f000000100300002900000060023000390000000b04000029000000000042043500000040023000390000000c040000290000000000420435000000200230003900000000001204350000000f0100002900000000001004390000001101000029000000040010044300000024000004430000000d010000290000000e020000291ee505f50000040f000000000110004c0000000001000019000000010100c0390000001002000029000000800220003900000000001204350000000f01000029000000000010043900000011010000290000000400100443000000200100003900000024001004430000000d010000290000000e020000291ee505f50000040f000007bd011001970000001002000029000000a00220003900000000001204350000000f01000029000000000010043900000011010000290000000400100443000000400100003900000024001004430000000d010000290000000e020000291ee505f50000040f000007bd031001970000001001000029000000c0021000390000000000320435000000e00200003900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000ee10000c13d000000400100043d001000000001001d000007fa01000041000000000010043900000004009004430000002001000039001100000001001d0000002400100443000080050100003900000044020000391ee505f50000040f000007bd0210019700000010010000290000000000210435000000110200002900000000030000191ee506070000040f0000000001000416000000000110004c00000ee10000c13d000000040100008a0000000001100031000007f802000041000000000310004c00000000030000190000000003024019000007f801100197000000000410004c000000000200a019000007f80110009c00000000010300190000000001026019000000000110004c00000eed0000613d000000000100001900000000020000191ee506110000040f000000000102001900000011020000291ee51a790000040f000000400300043d00000000001304350000002002000039000000000103001900000000030000191ee506070000040f0000000801000039000000000101041a000007bd02100197000000400100043d0000000000210435000000200200003900000000030000191ee506070000040f0000000f0200002900000000002004350000081003000041000000200200003900000000040000190000000005470019000000000614004b000007f70000813d0000002005500039000000000603041a00000000006504350000002004400039000000010330003900000efa0000013d000007fc03000041000000200470003900000000000004350000000002000019000000000512004b00000a990000813d0000000005240019000000000603041a00000000006504350000002002200039000000010330003900000f070000013d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600320018f00000010050000290000000002530019000000000332004b00000000030000190000000103004039000007c00420009c0000000004050019000016b50000213d0000000103300190000016b50000c13d000000400020043f000000200110008c00000ee10000413d00000000020404330000000f010000291ee51a2f0000040f000027101210011a0000000f010000291ee519ec0000040f0000000e02000029000000080300002900000009040000291ee51c680000040f000000400300043d00000000001304350000002002000039000000000103001900000000030000191ee506070000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000e050000290000000004520019000000000224004b00000000020000190000000102004039000007c00340009c0000000003050019000016b50000213d0000000102200190000016b50000c13d0000000005030019000d00000004001d000000400040043f000000200110008c00000011020000290000000f0300002900000ee10000413d0000000001050433000e00000001001d000007f9010000410000000d040000290000000000140435000000040140003900000000003104350000000001000414000f00000001001d000007fa010000410000000000100439000000040020044300000040010000390000002400100443000080050100003900000044020000391ee505f50000040f000007bd02100197000000040120008c000010b80000613d000000240400003900000020060000390000000f010000290000000d0300002900000000050300191ee505a70000040f000000000110004c000010b80000c13d000000120300002900000001040000310000000001340019000000000141004b00000ee10000213d000000400100043d0000001f0240018f0000000303300367000000050440027200000f780000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000f700000413d000000000520004c00000f870000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000001020000311ee506110000040f000000400100043d00000064021000390000081b03000041000000000032043500000044021000390000081c0300004100000000003204350000002402100039000000240300003900000000003204350000080802000041000000000021043500000004021000390000002003000039000000000032043500000084020000391ee506110000040f000000400100043d00000044021000390000080c03000041000000000032043500000024021000390000001c0300003900000000003204350000080802000041000000000021043500000004021000390000002003000039000000000032043500000064020000391ee506110000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600420018f0000000002340019000000000442004b00000000050000190000000105004039000007c00420009c000016b50000213d0000000104500190000016b50000c13d000000400020043f000000200110008c00000ee10000413d0000000a01000039000000000101041a0000000002030433000000000312004b0000081b0000413d0000000003120049000000110100002900000010020000291ee51e8b0000040f000007f901000041000000400200043d0000000000120435001100000002001d00000004012000390000000f02000029000000000021043500000000010004140000000c02000029000007bd02200197000000040320008c000012960000613d00000024040000390000002006000039000000110300002900000000050300191ee505a70000040f000000000110004c000012960000c13d000000120300002900000001040000310000000001340019000000000141004b00000ee10000213d000000400100043d0000001f0240018f0000000303300367000000050440027200000fe80000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000fe00000413d000000000520004c00000ff70000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000001020000311ee506110000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000c050000290000000004520019000000000224004b00000000020000190000000102004039000007c00340009c0000000003050019000016b50000213d0000000102200190000016b50000c13d0000000005030019000b00000004001d000000400040043f000000200110008c00000011020000290000000f0300002900000ee10000413d0000000001050433000c00000001001d000007f9010000410000000b040000290000000000140435000000040140003900000000003104350000000001000414000f00000001001d000007fa010000410000000000100439000000040020044300000040010000390000002400100443000080050100003900000044020000391ee505f50000040f000007bd02100197000000040120008c000011a90000613d000000240400003900000020060000390000000f010000290000000b0300002900000000050300191ee505a70000040f000000000110004c000011a90000c13d000000120300002900000001040000310000000001340019000000000141004b00000ee10000213d000000400100043d0000001f0240018f000000030330036700000005044002720000103f0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000010370000413d000000000520004c0000104e0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000001020000311ee506110000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000c050000290000000004520019000000000224004b00000000020000190000000102004039000007c00340009c0000000003050019000016b50000213d0000000102200190000016b50000c13d0000000005030019000b00000004001d000000400040043f000000200110008c00000011020000290000000f0300002900000ee10000413d0000000001050433000600000001001d000007f9010000410000000b040000290000000000140435000000040140003900000000003104350000000001000414000c00000001001d000007fa010000410000000000100439000000040020044300000040010000390000002400100443000080050100003900000044020000391ee505f50000040f000007bd02100197000000040120008c000011e00000613d000000240400003900000020060000390000000c010000290000000b0300002900000000050300191ee505a70000040f000000000110004c000011e00000c13d000000120300002900000001040000310000000001340019000000000141004b00000ee10000213d000000400100043d0000001f0240018f00000003033003670000000504400272000010960000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b0000108e0000413d000000000520004c000010a50000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000001020000311ee506110000040f000000400100043d00000064021000390000081d03000041000000000032043500000044021000390000081e0300004100000000003204350000002402100039000000210300003900000000003204350000080802000041000000000021043500000004021000390000002003000039000000000032043500000084020000391ee506110000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000d030000290000000002320019000007c00320009c000016b50000213d000000400020043f000000200110008c00000ee10000413d0000000b01000039000000000401041a0000000a01000039000000000301041a0000000d0100002900000000020104330000000e010000291ee51b2c0000040f00000001010000390000001002000029000000000012041b0000001201000029000000000201001900000000030000191ee506070000040f000000000100041a000a00000001001d000b00000003001d1ee518940000040f0000000a040000290000000b070000290000000002010019000000000027043500000020017000390000000103400190000012660000c13d000001000300008a000000000334016f0000000000310435000000000220004c00000020020000390000000002006019000000000521001900000000027500490000001f02200039000000200300008a000000000332016f0000000002730019000000000332004b00000000030000190000000103004039000007c00420009c000016b50000213d0000000103300190000016b50000c13d000000400020043f00000000020704331ee505de0000040f000000400200043d000007fd0320009c000016b50000213d0000004003200039000000400030043f0000002003200039000007fe04000041000000000043043500000001030000390000000000320435000000400400043d000b00000004001d0000006002400039000007ff0300004100000000003204350000004002400039000000000012043500000020024000390000080001000041000a00000002001d0000000000120435000008010100004100000000001004390000800b0100003900000004020000391ee505f50000040f0000000b04000029000000a0024000390000000f03000029000000000032043500000080024000390000000000120435000000a00100003900000000001404350000000002040019000008020140009c000016b50000213d000000c001200039000000400010043f00000000020204330000000a010000291ee505de0000040f0000000502000039000f00000001001d000000000012041b0000001101000029000007bd021001970000001201000029001100000002001d00000000002104350000000602000039000000200020043f00000040020000391ee505de0000040f000000000201041a000000010300008a000000000332004b0000081b0000613d0000000103200039000000000031041b000000400400043d000000c0014000390000000e030000290000000000310435000000a001400039000000000021043500000080014000390000000d020000290000000000210435000000400140003900000011020000290000000000210435000000c00100003900000000001404350000001001000029000007bd021001970000006001400039001000000002001d0000000000210435000000200140003900000803020000410000000000210435000b00000004001d000008040240009c000016b50000213d0000000b03000029000000e002300039000e00000002001d000000400020043f00000000020304331ee505de0000040f0000000b0500002900000100035000390000080502000041000000000023043500000102025000390000000f0400002900000000004204350000012202500039000000000012043500000042010000390000000e0400002900000000020400190000000000140435000008060150009c000016b50000213d0000000c01000029000000ff0110018f000f00000001001d0000000b010000290000016001100039000c00000001001d000000400010043f000000000202043300000000010300191ee505de0000040f0000000b0400002900000180024000390000000f0300002900000000003204350000000c030000290000000000130435000000a4010000390000000201100367000000000101043b000001a0024000390000000000120435000001c001400039000000c4020000390000000202200367000000000202043b0000000000210435000000120500002900000000005504350000000001000414000000010200003900000080040000390000002006000039000f00000005001d000e00000006001d1ee505a70000040f000000000110004c000013fa0000c13d00000001040000310000000f010000290000000001140019000000000141004b00000ee10000213d000000400100043d0000001f0240018f0000000f0300002900000003033003670000000504400272000011980000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000011900000413d000000000520004c000011a70000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000001020000311ee506110000040f0000000102000031000000200120008c000000200100003900000000010240190000001f01100039000000600110018f0000000b0300002900000000033100190000001201000029000007c00430009c000016b50000213d000000400030043f000000200220008c00000ee10000413d0000000a020000290000000c03000029000000000223004b0000081b0000413d0000000b0200002900000000030204330000000902000029001100000003001d000000000223004b0000081b0000413d0000000a020000290000000c030000290000000002230049000f00000002001d000000090200002900000011030000290000000002230049000b00000002001d0000000802000029000000000202041a000000000320004c000013c80000c13d0000000a020000290000000c03000029000000000223004b000011d90000613d0000000f040000290000000b0500002900000000324500a900000000434200d9000000000353004b0000081b0000c13d000000000320004c0000153a0000c13d000007cb0200004100000000002104350000001101000039000000040010043f000000120100002900000024020000391ee506110000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000b0300002900000000033200190000001202000029000007c00430009c000016b50000213d000000400030043f000000200110008c0000000f0100002900000ee10000413d0000000b030000290000000003030433000500000003001d00000000001204350000001001000029000000200010043f00000012010000290000004002000039000400000001001d1ee505de0000040f0000000a02000029000000000202041a000c00000002001d000000000301041a000000060100002900000000213100a9000b00000003001d000000000230004c000012c80000c13d0000000c02000029000000000220004c000015880000613d0000000b02000029000000050300002900000000232300a9000600000003001d000300000000001d000012da0000013d00000000311200d90000000803000029000000000131004b0000081b0000c13d0000000501000029000000000121004b0000081b0000413d00000005010000290000000002210049000e00000000001d0000000501000029000000000112004b000012b80000813d00000008010000290000000001120019000000000321004b000000000300001900000001030040390000000103300190001100000002001d0000081b0000c13d001000000001001d1ee518e00000040f000000000101041a000f00000001001d00000011010000291ee518e00000040f0000001002000029000000000101041a0000000f03000029000d00000001001d000000000113004b0000081b0000413d00000000010200191ee518e00000040f0000000101100039000000000101041a000c00000001001d00000011010000291ee518e00000040f00000010030000290000000101100039000000000201041a0000000c01000029000000000121004b0000081b0000413d000b00000002001d00000011010000290000000f010000290000000d02000029000000000121004b0000000001030019000015880000613d1ee518e00000040f0000000201100039000000000101041a000a00000001001d00000011010000291ee518e00000040f000000060200002900000000020204330000000e03000029000000000232004b000012c10000a13d0000000201100039000000000101041a0000000a05000029000000000215004b00000010020000290000000b040000290000081b0000413d0000000f020000290000000d0300002900000000023200490000000c03000029000000000343004900000000432300d9000000000115004900000000142100d9000000070100002900000009020000291ee51c680000040f0000000e0400002900000005024002100000000403000029000000000232001900000000001204350000000104400039000e00000004001d0000001002000029000012150000013d000007fc030000410000001204000029000000000044043500000000054700190000002005500039000000000624004b000010e60000813d000000000603041a000000000065043500000020044000390000000103300039000012690000013d0000000103000031000000200130008c000000200100003900000000010340190000001f01100039000000600210018f00000080012001bf000000400010043f000000200330008c00000ee10000413d000000800300043d000000000330004c00000ee10000c13d00000002030003670000000404300370000000000404043b000d00000004001d000000000440004c00000024043003700000136f0000c13d000000000504043b000000000550004c0000136f0000c13d0000080803000041000000000031043500000084032001bf00000020040000390000000000430435000000c4032000390000082a040000410000000000430435000000a4022000390000000303000039000000000032043500000064020000391ee506110000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600320018f000000110200002900000000050200190000000002230019000000000332004b00000000030000190000000103004039000007c00420009c000016b50000213d0000000103300190000016b50000c13d000000400020043f000000200110008c00000ee10000413d0000000b01000039000000000201041a00000000010504331ee519ec0000040f00000000030100190000000c0100002900000010020000291ee51e8b0000040f00000001010000390000000e02000029000000000012041b0000001201000029000000000201001900000000030000191ee506070000040f000000400100043d001100000001001d00000006020000291ee518d00000040f00000011030000290000000002310049000000000103001900000000030000191ee506070000040f000007cb0100004100000000001004350000003201000039000000040010043f000000240200003900000000010000191ee506110000040f0000000b0200002900000000322100d90000000603000029000000000232004b0000081b0000c13d0000000c02000029000000000220004c000015880000613d0000000c0200002900000000232100d9000300000003001d0000000b04000029000000050500002900000000234500a9000600000003001d00000000324300d9000000000252004b0000081b0000c13d0000000c02000029000000000112004b000013ba0000213d0000000c010000290000000602000029000000000121004b000013ba0000213d0000000c010000290000000b02000029000000000121004b0000081b0000413d0000000c010000290000000b0200002900000000012100490000000a02000029000000000012041b0000000f01000029000000040200002900000000001204350000001001000029000000200010043f00000012010000290000004002000039001000000002001d1ee505de0000040f000000000201041a0000000b03000029000000000332004b0000081b0000413d0000000b030000290000000002320049000000000021041b000000400100043d00000000003104350000001206000029000007bb020000410000000003000414000007bb0430009c0000000003028019000007bb0410009c00000000010280190000004001100210000000c002300210000000000112019f00000809011001c70000800d02000039000000030300003900000811040000410000000f050000291ee51edb0000040f0000000f040000290000000101200190000000110300002900000ee10000613d0000000c01000029000000060200002900000000121200d9000500000002001d000007fa01000041000c00000001001d00000000001004390000000400300443000000090100002900000024001004430000800501000039000a00000001001d0000004402000039000b00000002001d1ee505f50000040f0000000e0200002900000003030000291ee51e8b0000040f0000000c01000029000000000010043900000011010000290000000400100443000000100100002900000024001004430000000a010000290000000b020000291ee505f50000040f0000000e0200002900000005030000291ee51e8b0000040f000007f901000041000000400200043d0000000000120435000600000002001d00000004012000390000000f0200002900000000002104350000000001000414000400000001001d0000000c01000029000000000010043900000011010000290000000400100443000000090100002900000024001004430000000a010000290000000b020000291ee505f50000040f000007bd02100197000000040120008c000015ff0000613d000000240400003900000020060000390000000401000029000000060300002900000000050300191ee505a70000040f000000000110004c000015ff0000c13d000000120300002900000001040000310000000001340019000000000141004b00000ee10000213d000000400100043d0000001f0240018f000000030330036700000005044002720000135e0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000013560000413d000000000520004c0000136d0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000001020000311ee506110000040f0000000b05000039000000000505041a000900000005001d0000000a05000039000000000505041a000800000005001d0000000d06000029000000000556004b000013ad0000813d000000000404043b0000000905000029000000000454004b000013ad0000813d0000004401300370000000000101043b000600000001001d000007fa010000410000000000100439000000110100002900000004001004430000002001000039000700000001001d000000240010044300008005010000390000004402000039000500000002001d1ee505f50000040f0000000602000029000000000121013f000007bd011001980000139f0000613d00000005020000290000000201200367000000000101043b000600000001001d000007fa010000410000000000100439000000110100002900000004001004430000004001000039000400000001001d000000240010044300008005010000391ee505f50000040f0000000602000029000000000121013f000007bd01100198000014280000c13d000000400100043d00000044021000390000082903000041000000000032043500000024021000390000000c0300002900000000003204350000080802000041000000000021043500000004021000390000000703000029000000000032043500000064020000391ee506110000040f0000080803000041000000000031043500000084032001bf00000020040000390000000000430435000000c40320003900000821040000410000000000430435000000a4022000390000000c03000029000000000032043500000064020000391ee506110000040f000000400100043d0000004402100039000008140300004100000000003204350000002402100039000000030300003900000000003204350000080802000041000000000021043500000004021000390000000903000029000000000032043500000064020000391ee506110000040f0000000f0100002900000000311200a90000000a030000290000000c04000029000000000334004b000013d20000613d0000000f0300002900000000433100d9000000000323004b0000081b0000c13d0000000a03000029000000000330004c000015880000613d0000000b0300002900000000433200a900000009040000290000001105000029000000000445004b000013df0000613d0000000b0400002900000000544300d9000000000224004b0000081b0000c13d0000000902000029000000000220004c000015880000613d0000000a0200002900000000212100d9000000090200002900000000322300d9000000000321004b0000000001028019000600000001001d0000000601000029000000000110004c000016560000c13d000000400100043d0000004402100039000008170300004100000000003204350000002402100039000000030300003900000000003204350000080802000041000000000021043500000004021000390000000703000029000000000032043500000064020000391ee506110000040f0000000f010000290000000001010433000007bd011001980000152c0000613d0000001102000029000000000121004b0000152c0000c13d00000011010000290000000f0200002900000000001204350000000301000039000f00000001001d000000200010043f00000012010000290000004002000039000e00000002001d1ee505de0000040f00000010020000290000000000200435000000200010043f00000000010000190000000e020000291ee505de0000040f0000000d02000029000000000021041b000000400100043d0000000000210435000007bb020000410000000003000414000007bb0430009c0000000003028019000007bb0410009c00000000010280190000004001100210000000c002300210000000000121019f00000809011001c70000800d020000390000080a040000410000000f03000029000000110500002900000010060000291ee51edb0000040f0000000101200190000008dd0000c13d00000ee10000013d0000000d01000029000000000110004c0000143a0000613d000007fa0100004100000000001004390000001101000029000000040010044300000007010000290000002400100443000080050100003900000044020000391ee505f50000040f00000002030003670000004402300370000000000202043b0000000403300370000000000303043b1ee51e8b0000040f00000002010003670000002402100370000000000202043b000000000220004c0000144f0000613d000007fa0100004100000000001004390000001101000029000000040010044300000004010000290000002400100443000080050100003900000044020000391ee505f50000040f00000002030003670000004402300370000000000202043b0000002403300370000000000303043b1ee51e8b0000040f00000002010003670000006402100370000000000202043b0000000402200039000000000221034f000000000202043b000000000220004c0000158f0000c13d000000400100043d001000000001001d0000000401100039000d00000001001d000007f901000041000000100200002900000000001204350000000f010000290000000d0200002900000000001204350000000001000414000d00000001001d000007fa0100004100000000001004390000001101000029000000040010044300000007010000290000002400100443000080050100003900000044020000391ee505f50000040f000007bd02100197000000040120008c000014760000613d000000240400003900000020060000390000000d01000029000000100300002900000000050300191ee505a70000040f000000000110004c00000d920000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f00000010030000290000000003320019000000000223004b00000000020000190000000102004039000d00000003001d000007c00330009c000016b50000213d0000000102200190000016b50000c13d0000000d02000029000000400020043f000000200110008c00000011020000290000000f0300002900000ee10000413d00000010010000290000000001010433000c00000001001d000007f9010000410000000d040000290000000000140435000000040140003900000000003104350000000001000414001000000001001d000007fa010000410000000000100439000000040020044300000004010000290000002400100443000080050100003900000044020000391ee505f50000040f000007bd02100197000000040120008c000014a90000613d0000002404000039000000200600003900000010010000290000000d0300002900000000050300191ee505a70000040f000000000110004c00000d920000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000d030000290000000002320019001000000002001d000007c00220009c000016b50000213d0000001002000029000000400020043f000000200110008c00000ee10000413d0000000d010000290000000001010433000d00000001001d00000002020003670000000401200370000000000101043b0000000803000029000000000313004b0000081b0000413d000000080300002900000000011300490000000c040000290000000003140049000000000443004b00000000040000190000000104002039000000000440004c000000000300c019000b00000003001d0000002402200370000000000202043b0000000903000029000000000323004b0000081b0000413d000000090300002900000000022300490000000d03000029000600000002001d0000000002230049000000000332004b00000000030000190000000103002039000000000330004c000000000200c019000500000002001d0000000c02000029000000000112004b00000010010000290000000401100039000c00000001001d000017190000a13d000007fb0100004100000010020000290000000000120435000007fa01000041000300000001001d00000000001004390000001101000029000000040010044300000024000004430000800501000039000200000001001d0000004402000039000100000002001d1ee505f50000040f000000000110004c0000000001000019000000010100c0390000000c0200002900000000001204350000000001000414000c00000001001d00000003010000290000000000100439000000110100002900000004001004430000000a010000290000002400100443000000020100002900000001020000291ee505f50000040f000007bd02100197000000040120008c0000150a0000613d000000240400003900000020060000390000000c01000029000000100300002900000000050300191ee505a70000040f000000000110004c00000d920000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f00000010030000290000000002320019000007c00320009c000016b50000213d000000400020043f000000200110008c000000110200002900000ee10000413d00000010010000290000000001010433001000000001001d000007fa010000410000000000100439000000040020044300000007010000290000002400100443000080050100003900000044020000391ee505f50000040f0000000b04000029000000100500002900000000324500a900000000434200d9000000000353004b0000081b0000c13d000027103220011a1ee51bd70000040f0000171d0000013d000000400100043d0000004402100039000008070300004100000000003204350000002402100039000000170300003900000000003204350000080802000041000000000021043500000004021000390000000e03000029000000000032043500000064020000391ee506110000040f0000008003200270000008150420009c000000000302a019000008150420009c0000000004000019000000800400203900000040054001bf000007c00630009c00000000040520190000004005300270000007c00630009c000000000305201900000020054001bf000007bb0630009c00000000040520190000002005300270000007bb0630009c000000000305201900000010054001bf0000ffff0630008c0000000004052019000000100530027000000000030520190000000805400039000000ff0630008c00000000040520190000000805300270000000000305201900000004054000390000000f0630008c0000000004052019000000040530027000000000030520190000000205400039000000030630008c000000000405201900000002053002700000000003052019000000010330008c0000000003000019000000010300203900000000033400190000000103300270000000000432022f000000010330020f0000000003430019000000020430008c000015880000413d000000010330027000000000543200d90000000003340019000000020430008c000015880000413d000000010330027000000000543200d90000000003340019000000020430008c000015880000413d000000010330027000000000543200d90000000003340019000000020430008c000015880000413d000000010330027000000000543200d90000000003340019000000020430008c000015880000413d000000010330027000000000543200d90000000003340019000000020430008c000015880000413d000000010330027000000000543200d90000000003340019000000020430008c000016e90000813d000007cb0100004100000000001004350000001201000039000000040010043f000000240200003900000000010000191ee506110000040f0000004401100370000000000101043b00000822020000410000000000200439000007bd01100197000000040010044300008002010000390000002402000039000c00000002001d1ee505f50000040f000000000110004c0000000b0300002900000ee10000613d000000400400043d0000082301000041000000000014043500000004024000390000001001000029000d00000002001d000000000012043500000004010000390000000201100367000000000101043b000000240240003900000000001204350000000c010000290000000201100367000000000101043b000000640240003900000000003204350000004402400039000000000012043500000002010003670000006402100370000000000202043b0000000402200039000000000121034f000000000101043b0000008402400039000000000012043500000002010003670000006402100370000000000302043b0000002402300039000000000221034f0000000403300039000000000331034f001000000004001d000000a401400039000000000403043b0000001f0340018f0000000504400272000015cd0000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000015c50000413d000000000530004c000015dc0000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f000000000024043500000002020003670000006403200370000000000303043b0000000403300039000000000232034f000000000202043b00000000012100190000000000010435000000000100041400000002030003670000004402300370000000000202043b000007bd02200197000000040420008c000015f90000613d0000006404300370000000000404043b0000000404400039000000000343034f000000000303043b0000001f03300039000000200400008a000000000343016f000000a404300039000000100300002900000000050300191ee505940000040f000000000110004c00000d920000613d0000001001000029000008240110009c000016b50000813d0000001001000029000000400010043f0000145a0000013d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f00000006030000290000000003320019000000000223004b00000000020000190000000102004039000c00000003001d000007c00330009c000016b50000213d0000000102200190000016b50000c13d0000000c02000029000000400020043f000000200110008c00000011020000290000000f0300002900000ee10000413d00000006010000290000000001010433000b00000001001d000007f9010000410000000c040000290000000000140435000000040140003900000000003104350000000001000414000f00000001001d000007fa010000410000000000100439000000040020044300000010010000290000002400100443000080050100003900000044020000391ee505f50000040f000007bd02100197000000040120008c000016ab0000613d000000240400003900000020060000390000000f010000290000000c0300002900000000050300191ee505a70000040f000000000110004c000016ab0000c13d000000120300002900000001040000310000000001340019000000000141004b00000ee10000213d000000400100043d0000001f0240018f00000003033003670000000504400272000016450000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b0000163d0000413d000000000520004c000016540000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000001020000311ee506110000040f0000000801000029000000000201041a00000006010000290000000001120019000000000221004b0000000002000019000000010200403900000001022001900000081b0000c13d0000000802000029000000000012041b000000100100002900000000001004350000000e01000029000000200010043f000000400200003900000000010000191ee505de0000040f000000000301041a00000006020000290000000002230019000000000332004b0000000003000019000000010300403900000001033001900000081b0000c13d000000000021041b000000400100043d00000006020000290000000000210435000007bb020000410000000003000414000007bb0430009c0000000003028019000007bb0410009c00000000010280190000004001100210000000c002300210000000000112019f00000809011001c70000800d0200003900000003030000390000081104000041000000000500001900000010060000291ee51edb0000040f000000010120019000000ee10000613d0000000c0100002900000011020000290000000a0300002900000009040000291ee51b2c0000040f000000400100043d00000020021000390000000b0300002900000000003204350000000f020000290000000000210435000007bb020000410000000003000414000007bb0430009c0000000003028019000007bb0410009c00000000010280190000004001100210000000c002300210000000000112019f00000812011001c70000800d020000390000000203000039000008160400004100000000050004111ee51edb0000040f000000010120019000000ee10000613d00000001010000390000000d02000029000000000012041b000000400100043d00000006020000290000000000210435000000200200003900000000030000191ee506070000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000c030000290000000002320019000007c00320009c000016bc0000a13d000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f000000400020043f000000200110008c00000ee10000413d0000000c0100002900000000020104330000000b01000029000000070300002900000008040000291ee51b2c0000040f000000400100043d00000020021000390000000503000029000000000032043500000003020000290000000000210435000007bb020000410000000003000414000007bb0430009c0000000003028019000007bb0410009c00000000010280190000004001100210000000c002300210000000000112019f00000812011001c70000800d020000390000000303000039000008130400004100000000050004110000000e060000291ee51edb0000040f000000010120019000000ee10000613d00000001010000390000000d02000029000000000012041b000000400100043d00000020021000390000000503000029000000000032043500000003020000290000000000210435000000400200003900000000030000191ee506070000040f000000010330027000000000423200d9000000000423004b0000000002034019000600000002001d000003e70220008c000011d90000a13d000003e8020000390000000801000029000500000002001d000000000021041b00000000000004350000000e01000029000000200010043f000000400200003900000000010000191ee505de0000040f000000000201041a000003e90300008a000000000332004b0000081b0000213d000003e802200039000000000021041b000000400100043d00000005020000290000000000210435000007bb020000410000000003000414000007bb0430009c0000000003028019000007bb0410009c00000000010280190000004001100210000000c002300210000000000112019f00000809011001c70000800d0200003900000003030000390000081104000041000000000500001900000000060000191ee51edb0000040f0000000601000029000003e80110008a000600000001001d0000000101200190000013e90000c13d00000ee10000013d0000000d010000290000000602000029000000000121004b000017ea0000a13d0000000d010000290000000602000029000000000121004b000017720000a13d000000400200043d001000000002001d000007fb010000410000000000120435000007fa01000041000d00000001001d00000000001004390000001101000029000000040010044300000024000004430000800501000039000c00000001001d0000004402000039000600000002001d1ee505f50000040f000000000110004c0000000001000019000000010100c0390000001002000029000000040220003900000000001204350000000001000414000300000001001d0000000d010000290000000000100439000000110100002900000004001004430000000a0100002900000024001004430000000c0100002900000006020000291ee505f50000040f000007bd02100197000000040120008c0000174c0000613d000000240400003900000020060000390000000301000029000000100300002900000000050300191ee505a70000040f000000000110004c00000d920000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600320018f00000010020000290000000002230019000000000332004b00000000030000190000000103004039000007c00420009c000016b50000213d0000000103300190000016b50000c13d000000400020043f000000200110008c000000110200002900000ee10000413d00000010010000290000000001010433001000000001001d000007fa010000410000000000100439000000040020044300000004010000290000002400100443000080050100003900000044020000391ee505f50000040f0000000504000029000000100500002900000000324500a900000000434200d9000000000353004b0000081b0000c13d000027103220011a1ee51bd70000040f000000400200043d000007f9010000410000000000120435001000000002001d00000004012000390000000f0200002900000000002104350000000001000414000d00000001001d000007fa0100004100000000001004390000001101000029000000040010044300000007010000290000002400100443000080050100003900000044020000391ee505f50000040f000007bd02100197000000040120008c0000178f0000613d000000240400003900000020060000390000000d01000029000000100300002900000000050300191ee505a70000040f000000000110004c00000d920000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f00000010030000290000000003320019000000000223004b00000000020000190000000102004039000d00000003001d000007c00330009c000016b50000213d0000000102200190000016b50000c13d0000000d02000029000000400020043f000000200110008c00000011020000290000000f0300002900000ee10000413d00000010010000290000000001010433000c00000001001d000007f9010000410000000d040000290000000000140435000000040140003900000000003104350000000001000414001000000001001d000007fa01000041000000000010043900000004002004430000000401000029000000240010044300008005010000390000004402000039001100000002001d1ee505f50000040f000007bd02100197000000040120008c000017c30000613d0000002404000039000000200600003900000010010000290000000d0300002900000000050300191ee505a70000040f000000000110004c00000d920000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000d030000290000000002320019000007c00320009c000016b50000213d000000400020043f000000200110008c00000ee10000413d0000000d0100002900000000020104330000000c01000029000f00000002001d1ee51dd20000040f001000000001001d000000080100002900000009020000291ee51dd20000040f0000001002000029000000000112004b000017f90000813d000000400100043d0000004402100039000008280300004100000000003204350000002402100039000000010300003900000000003204350000080802000041000000000021043500000004021000390000000703000029000000000032043500000064020000391ee506110000040f00000010030000290000004401300039000008250200004100000000002104350000002401300039000000030200003900000000002104350000080801000041000000000013043500000007010000290000000c020000290000000000120435000000640200003900000000010300191ee506110000040f0000000c010000290000000f02000029000000080300002900000009040000291ee51b2c0000040f000000400100043d0000002002100039000000050300002900000000003204350000000b02000029000000000021043500000004020000390000000202200367000000000202043b0000004003100039000000000023043500000024020000390000000202200367000000000202043b00000060031000390000000000230435000007bb02000041000007bb0310009c000000000102801900000011030000290000000203300367000000000303043b0000000004000414000007bb0540009c00000000020440190000004001100210000000c002200210000000000112019f00000826011001c7000007bd063001970000800d020000390000000303000039000008270400004100000000050004111ee51edb0000040f000000010120019000000ee10000613d00000001010000390000000e02000029000000000012041b0000000001000019000000000200001900000000030000191ee506070000040f0000000003120049000007f8040000410000001f0530008c00000000050000190000000005042019000007f803300197000000000630004c0000000004008019000007f80330009c00000000030500190000000003046019000000000330004c0000186c0000613d0000000003010433000007c00430009c0000186c0000213d00000000041300190000001f01400039000007f803000041000000000521004b00000000050000190000000005038019000007f801100197000007f806200197000000000761004b0000000003008019000000000161013f000007f80110009c00000000010500190000000001036019000000000110004c0000186c0000c13d0000000003040433000008240130009c0000186f0000813d0000003f01300039000000200500008a000000000551016f000000400100043d0000000005510019000000000615004b00000000060000190000000106004039000007c00750009c0000186f0000213d00000001066001900000186f0000c13d000000400050043f000000000031043500000020044000390000000005340019000000000225004b0000186c0000213d00000020021000390000000005000019000000000635004b000018690000813d00000000062500190000000007540019000000000707043300000000007604350000002005500039000018610000013d00000000023200190000000000020435000000000001042d000000000100001900000000020000191ee506110000040f000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f000000ff0110018f0000004e0210008c0000187b0000813d1ee505870000040f000000000001042d000007cb0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000191ee506110000040f00000004010000390000000201100367000000000101043b0000082b0210009c000018880000813d000000000001042d000000000100001900000000020000191ee506110000040f00000024010000390000000201100367000000000101043b0000082b0210009c000018910000813d000000000001042d000000000100001900000000020000191ee506110000040f000000010210019000000001011002700000007f0310018f00000000010360190000001f0310008c00000000030000190000000103002039000000010330018f000000000232004b0000189f0000c13d000000000001042d000007cb0100004100000000001004350000002201000039000000040010043f000000240200003900000000010000191ee506110000040f0000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b00000000020000190000000102004039000007c00310009c000018b30000213d0000000102200190000018b30000c13d000000400010043f000000000001042d000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f0000002003000039000000000031043500000000030204330000002004100039000000000034043500000040011000390000000004000019000000000534004b000018c90000813d00000000054100190000002004400039000000000624001900000000060604330000000000650435000018c10000013d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d0000002003000039000000000031043500000000030204330000002004100039000000000034043500000040011000390000000004000019000000000534004b000018df0000813d00000020022000390000000005020433000000000051043500000001044000390000002001100039000018d70000013d000000000001042d0000000902000039000000000302041a000000000313004b000018e90000a13d000000000020043500000003211000c900000818011000410000000002000019000000000001042d000007cb0100004100000000001004350000003201000039000000040010043f000000240200003900000000010000191ee506110000040f000000040110008a000007f8020000410000005f0310008c00000000030000190000000003022019000007f801100197000000000410004c0000000002008019000007f80110009c00000000010300190000000001026019000000000110004c000019070000613d00000002030003670000000401300370000000000101043b000007bd0210009c000019070000213d0000002402300370000000000202043b0000004403300370000000000303043b000000000001042d000000000100001900000000020000191ee506110000040f0002000000000002000000400200043d0000082c01000041000200000002001d00000000001204350000000001000414000100000001001d000007fa0100004100000000001004390000000001000412000000040010044300000060010000390000002400100443000080050100003900000044020000391ee505f50000040f000007bd02100197000000040120008c000019250000613d000000040400003900000020060000390000000101000029000000020300002900000000050300191ee505a70000040f000000000110004c000019460000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600320018f00000002050000290000000002530019000000000332004b00000000030000190000000103004039000007c00420009c00000000040500190000193f0000213d00000001033001900000193f0000c13d000000400020043f0000001f0110008c0000193c0000a13d0000000001040433000007bd0210009c0000193c0000213d000000000001042d000000000100001900000000020000191ee506110000040f000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f0000000302000367000000400100043d00000001040000310000001f0340018f0000000504400272000019550000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b0000194d0000413d000000000530004c000019640000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f000000000024043500000001020000311ee506110000040f00000060010000390000000102000032000019950000613d0000003f01200039000000200300008a000000000331016f000000400100043d0000000003310019000000000413004b00000000040000190000000104004039000007c00530009c000019960000213d0000000104400190000019960000c13d000000400030043f00000000002104350000002002100039000000030300036700000001050000310000001f0450018f0000000505500272000019860000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b0000197e0000413d000000000640004c000019950000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000000001042d000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f0002000000000002000200000002001d00000822020000410000000000200439000100000001001d0000000400100443000080020100003900000024020000391ee505f50000040f000000000110004c000019e20000613d000000400500043d0000004401500039000000010300008a000000000031043500000020035000390000082d0100004100000000001304350000000201000029000007bd0110019700000024045000390000000000140435000000440100003900000000001504350000082e0150009c000019e50000813d0000008001500039000000400010043f00000000010004140000000102000029000000040420008c0000000004000019000019c40000613d000000000405043300000000050000191ee505940000040f000000000110004c00000000040000190000000104006039000200000004001d1ee519660000040f00000002020000290000000102200190000019e20000c13d0000000002010433000000000320004c000019e10000613d000007f803000041000000200420008c00000000040000190000000004034019000007f802200197000000000520004c000000000300a019000007f80220009c00000000020400190000000002036019000000000220004c000019e20000c13d00000020011000390000000001010433000000000210004c0000000002000019000000010200c039000000000221004b000019e20000c13d000000000110004c000019e20000613d000000000001042d000000000100001900000000020000191ee506110000040f000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f000000000321004b000019f00000413d0000000001210049000000000001042d000007cb0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000191ee506110000040f0000000002010019000000400100043d0000082f0310009c00001a080000813d0000006003100039000000400030043f000000000302041a00000000003104350000000103200039000000000303041a000000200410003900000000003404350000000202200039000000000202041a00000040031000390000000000230435000000000001042d000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f000000400100043d0000082f0210009c00001a210000813d0000006002100039000000400020043f000000400210003900000000000204350000002002100039000000000002043500000000000104350000000901000039000000000101041a000000000210004c00001a280000613d000000010110008a1ee518e00000040f1ee519f70000040f000000000001042d000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f000007cb0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000191ee506110000040f000000000301001900000000413200a9000000000430004c00001a360000613d00000000433100d9000000000223004b00001a370000c13d000000000001042d000007cb0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000191ee506110000040f000007c90100004100000000001004390000800b0100003900000004020000391ee505f50000040f00000000030100190000000e01000039000000000201041a0000000d01000039000000000101041a0000000c04000039000000000504041a000000000453004b00001a6b0000613d0000000a04000039000000000604041a0000000b04000039000000000404041a000000000753004b00001a720000413d000000000553004900000000875600a9000000000860004c00001a590000613d00000000866700d9000000000656004b00001a720000c13d0000000001170019000000000671004b00000000060000190000000106004039000000010660019000001a720000c13d00000000765400a9000000000740004c00001a6c0000613d00000000474600d90000000002260019000000000462004b00000000040000190000000104004039000000000557004b00001a720000c13d000000010440019000001a720000c13d000000000001042d0000000002260019000000000462004b00000000040000190000000104004039000000010440019000001a6b0000613d000007cb0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000191ee506110000040f000000000320004c00001a7d0000613d00000000212100d9000000000001042d000007cb0100004100000000001004350000001201000039000000040010043f000000240200003900000000010000191ee506110000040f000d000000000002000300000002001d000200000001001d000008240130009c00001b250000813d00000005043002100000003f01400039000000200200008a000000000121016f000000400200043d0000000001120019000400000002001d000000000221004b00000000020000190000000102004039000007c00510009c00001b250000213d000000010220019000001b250000c13d000000400010043f000000040200002900000000003204350000001f0140018f000000200820003900000000020000310000000202200367000000050440027200001aa90000613d000000000500001900000005065002100000000007680019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b00001aa10000413d000000000510004c00001ab80000613d0000000504400210000000000242034f00000000044800190000000301100210000000000504043300000000051501cf000000000515022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000151019f0000000000140435000100000008001d0000000901000039000000000101041a000000000210004c00001b100000613d000000010110008a000500000001001d000000000131004b00001b100000413d00000005010000290000000002310049000a00000000001d0000000501000029000000000112004b00001b0e0000813d0000000101200039000d00000001001d000c00000002001d1ee518e00000040f000000000101041a000b00000001001d0000000c010000291ee518e00000040f000000000101041a0000000b02000029000900000001001d000000000112004b00001b100000413d0000000d010000291ee518e00000040f0000000101100039000000000101041a000800000001001d0000000c010000291ee518e00000040f0000000101100039000000000101041a0000000802000029000700000001001d000000000112004b00001b100000413d0000000c010000290000000d010000290000000b010000290000000902000029000000000121004b00001b170000613d0000000d010000291ee518e00000040f0000000201100039000000000101041a000600000001001d0000000c010000291ee518e00000040f000000040200002900000000020204330000000a03000029000000000232004b00001b1e0000a13d0000000201100039000000000101041a0000000605000029000000000215004b0000000d0200002900001b100000413d0000000b020000290000000903000029000000000232004900000008030000290000000704000029000000000343004900000000432300d9000000000115004900000000142100d9000000030100002900000002020000291ee51c680000040f0000000a0400002900000005024002100000000103000029000000000232001900000000001204350000000104400039000a00000004001d0000000d0200002900001ac40000013d0000000401000029000000000001042d000007cb0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000191ee506110000040f000007cb0100004100000000001004350000001201000039000000040010043f000000240200003900000000010000191ee506110000040f000007cb0100004100000000001004350000003201000039000000040010043f000000240200003900000000010000191ee506110000040f000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f0007000000000002000500000004001d000400000003001d000600000002001d000700000001001d000007c90100004100000000001004390000800b0100003900000004020000391ee505f50000040f0000000c02000039000300000002001d000000000202041a000000000321004b00001bc00000413d000000000321004b000000040400002900001b5f0000613d000000000340004c00001b5f0000613d0000000503000029000000000330004c00001b5f0000613d000000000121004900000000234100a900000000424300d9000000000212004b00001bc00000c13d0000000d02000039000000000402041a0000000003340019000000000443004b00000000040000190000000104004039000000010440019000001bc00000c13d000000000032041b000000050400002900000000324100a900000000434200d9000000000113004b00001bc00000c13d0000000e01000039000000000301041a0000000002230019000000000332004b00000000030000190000000103004039000000010330019000001bc00000c13d000000000021041b000007c90100004100000000001004390000800b0100003900000004020000391ee505f50000040f000500000001001d1ee51a0f0000040f00000005030000290000000001010433000000000213004b00001bc00000413d0000000001130049000007090110008c00001b9c0000413d000000400300043d0000082f0130009c00001bc70000813d0000000d01000039000000000101041a000400000001001d0000000e01000039000000000101041a000200000001001d0000006001300039000000400010043f000007c90100004100000000001004390000800b010000390000000402000039000500000003001d1ee505f50000040f00000005020000290000004003200039000100000003001d0000000204000029000000000043043500000000001204350000002001200039000200000001001d000000040200002900000000002104350000000902000039000000000102041a000007c00310009c00001bc70000213d0000000103100039000000000032041b1ee518e00000040f000000000220004c00001bd10000c13d00000005020000290000000002020433000000000021041b000000020200002900000000020204330000000103100039000000000023041b000000020110003900000001020000290000000002020433000000000021041b0000000a010000390000000702000029000000000021041b0000000b010000390000000602000029000000000021041b000007c90100004100000000001004390000800b0100003900000004020000391ee505f50000040f0000000302000029000000000012041b000000400100043d00000020021000390000000603000029000000000032043500000007020000290000000000210435000007bb020000410000000003000414000007bb0430009c0000000003028019000007bb0410009c00000000010280190000004001100210000000c002300210000000000112019f00000812011001c70000800d02000039000000010300003900000830040000411ee51edb0000040f000000010120019000001bce0000613d000000000001042d000007cb0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000191ee506110000040f000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f000000000100001900000000020000191ee506110000040f000007cb010000410000000000100435000000040000043f000000240200003900000000010000191ee506110000040f0004000000000002000000000320004c00001c1e0000613d000300000001001d000400000002001d0000000801000039000000000101041a0000080e0110019800001c1f0000613d0000000701000039000100000001001d000000000101041a00000822020000410000000000200439000007bd01100197000200000001001d0000000400100443000080020100003900000024020000391ee505f50000040f000000000110004c0000000406000029000000030400002900001c3e0000613d000000400300043d00000831010000410000000000130435000000240230003900000000010004140000000000620435000007bd05400197000000040230003900000000005204350000000202000029000000040420008c00001c050000613d0000004404000039000300000005001d0000000005030019000200000003001d1ee505940000040f000000020300002900000003050000290000000406000029000000000110004c00001c480000613d000008240130009c00001c410000813d000000400030043f0000000101000029000000000101041a000007bd01100197000000200230003900000000001204350000000000630435000007bb010000410000000002000414000007bb0420009c0000000002018019000007bb0430009c00000000010340190000004001100210000000c002200210000000000112019f00000812011001c70000800d02000039000000020300003900000832040000411ee51edb0000040f000000010120019000001c3e0000613d000000000001042d1ee5190a0000040f0000000002010019000200000002001d000000030100002900000004030000291ee51e8b0000040f0000000201000029000007bd01100197000000400200043d0000002003200039000000000013043500000004010000290000000000120435000007bb010000410000000003000414000007bb0430009c0000000003018019000007bb0420009c00000000010240190000004001100210000000c002300210000000000112019f0000000302000029000007bd0520019700000812011001c70000800d02000039000000020300003900000833040000411ee51edb0000040f000000010120019000001c1e0000c13d000000000100001900000000020000191ee506110000040f000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f0000000302000367000000400100043d00000001040000310000001f0340018f000000050440027200001c570000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b00001c4f0000413d000000000530004c00001c660000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f000000000024043500000001020000311ee506110000040f000d000000000002000800000004001d000b00000003001d000700000002001d000d00000001001d000007fa0100004100000000001004390000000001000412000c00000001001d00000004001004430000002400000443000080050100003900000044020000391ee505f50000040f000000000110004c0000000d0100002900001cd20000613d00000007010000290000000b0100002900000008020000291ee51dd20000040f0000000b0400002900000834234000d1000600000003001d000000000240004c0000000c0400002900001c880000613d00000006020000290000000b0300002900000000233200d9000008340230009c00001d990000c13d000900000001001d000007fa010000410000000000100439000000040040044300000080010000390000002400100443000080050100003900000044020000391ee505f50000040f0000000003010019000000000130004c00001da00000613d000000080200002900000834152000d1000000000120004c0000000c0400002900001c9d0000613d000000080100002900000000211500d9000008340110009c00001d990000c13d000b00000005001d000007fa0100004100000000001004390000000400400443000000a001000039000000240010044300008005010000390000004402000039000a00000003001d1ee505f50000040f0000000a03000029000200000001001d000000000110004c00001da00000613d000000060100002900000000123100d9000800000002001d000007fa0100004100000000001004390000000c01000029000000040010044300000020010000390000002400100443000080050100003900000044020000391ee505f50000040f00000002040000290000000b0200002900000000324200d90000000703000029000000000131013f000007bd01100198000100000001001d000000080300002900000000010300190000000001026019000400000001001d000000000102001900000000010360190000000d0500002900000834325000d100001cf60000613d000000000350004c000000000304001900000009050000290000000a0600002900001d000000613d0000000d0300002900000000433200d9000008340330009c000000020300002900001d000000613d00001d990000013d000007fa0100004100000000001004390000000c01000029000000040010044300000020010000390000002400100443000080050100003900000044020000391ee505f50000040f0000000702000029000000000121013f000007bd011001980000000b01000029000000080300002900000000020300190000000002016019000000000301c0190000000d0500002900000000415300a9000000000450004c00001ceb0000613d0000000d0400002900000000544100d9000000000334004b00001d990000c13d0000000d030000290000000003320019000000000223004b00000000020000190000000102004039000000010220019000001d990000c13d000000000230004c00001da00000613d00000000213100d900001d980000013d000000000350004c0000000a060000290000000003060019000000090500002900001d000000613d0000000d0300002900000000433200d9000008340330009c000000000306001900001d990000c13d00000000323200d90000000007120019000000000127004b00000000010000190000000101004039000000010110019000001d990000c13d00000000127700a9000b00000002001d000008341220012a000500000002001d00000000127200a9000600000002001d000008341220012a000300000002001d00000004080000290000000009000019000800000007001d000000fe0190008c00001d870000213d000000000180004c000000000100001900001d230000613d00000000128800a900000000318200d9000000000181004b00001d990000c13d000008340120009c000000000100001900001d230000413d000008341220012a00000000318200a900000000322100d9000000000282004b00001d990000c13d000008341310012a000000000170004c0000000002000019000000000100001900001d430000613d00000000217300a900000000427100d9000000000232004b00001d990000c13d000008342110012a0000000b0200002900000000327200d9000000000272004b00001d990000c13d0000000b02000029000008340220009c000000000200001900001d430000413d0000000502000029000000060300002900000000322300d9000000000272004b00001d990000c13d0000000602000029000008340220009c000000000200001900001d430000413d000000030400002900000000324800a900000000434200d9000000000383004b00001d990000c13d000008343220012a0000000001120019000000000251004b000d00000009001d000c00000008001d00001d620000813d000000000115004900000834231000d1000700000003001d00000000211300d9000008340110009c00001d990000c13d000000000107001900000000020800191ee51da70000040f0000000a06000029000000000210004c00001da00000613d000000070200002900000000121200d90000000c030000290000000001320019000000000221004b000000000200001900000001020040390000000102200190000000090500002900000008070000290000000d0900002900001d790000613d00001d990000013d000000000251004900000834342000d1000000000151004b00001d690000613d00000000212400d9000008340110009c00001d990000c13d000700000004001d000000000107001900000000020800191ee51da70000040f0000000a06000029000000000210004c00001da00000613d000000070200002900000000211200d90000000c03000029000000000213004b000000090500002900000008070000290000000d0900002900001d990000413d0000000001130049000000000231004b00001d800000a13d0000000002310049000000010220008c000000000801001900001d840000213d00001d870000013d0000000002130049000000020220008c000000000801001900001d870000413d0000000109900039000000000801001900001d120000013d0000000401000029000000000181004b00001d990000413d0000000101000029000000000110004c0000000201000029000000000206001900000000020160190000000405000029000000000385004900000000413200a9000000000485004b00001d970000613d00000000433100d9000000000223004b00001d990000c13d000008342110012a000000000001042d000007cb0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000191ee506110000040f000007cb0100004100000000001004350000001201000039000000040010043f000000240200003900000000010000191ee506110000040f00000003431000c9000000035430011a000000000414004b00001dcb0000c13d00000000542200a9000000000520004c00001db10000613d00000000652400d9000000000225004b00001dcb0000c13d000008342440012a00000000523400a9000000000530004c00001db80000613d00000000533200d9000000000343004b00001dcb0000c13d000000000310004c000000000300001900001dc70000613d00000000341100a900000000531400d9000000000313004b00001dcb0000c13d000008340340009c000000000300001900001dc70000413d000008343440012a00000000531400a900000000544300d9000000000114004b00001dcb0000c13d000008342120012a000008343230012a0000000001120019000000000001042d000007cb0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000191ee506110000040f0004000000000002000400000002001d000200000001001d000007fa0100004100000000001004390000000001000412000300000001001d00000004001004430000002400000443000080050100003900000044020000391ee505f50000040f000000000110004c00001e2e0000613d000000020300002900000834123000d1000100000002001d000000000130004c00001de90000613d000000010100002900000000213100d9000008340110009c00001e380000c13d000007fa0100004100000000001004390000000301000029000000040010044300000080010000390000002400100443000080050100003900000044020000391ee505f50000040f0000000004010019000000000140004c00001e3f0000613d000000040200002900000834132000d1000000000120004c00001dfd0000613d000000040100002900000000211300d9000008340110009c00001e380000c13d000200000003001d000007fa01000041000000000010043900000003010000290000000400100443000000a001000039000000240010044300008005010000390000004402000039000400000004001d1ee505f50000040f0000000405000029000000000210004c00001e3f0000613d000000020800002900000000321800d90000000103000029000000000335004b0000000004000019000000000300001900001e1d0000213d000000010300002900000000355300d900000000435200a900000000645300d9000000000424004b00001e380000c13d000008344330012a00000000645500a900000000765400d9000000000556004b00001e380000c13d00000000652200a9000008346440012a000000000181004b00001e240000213d00000000612500d9000000000121004b00001e380000c13d000008342150012a000000000214001900000000413200a9000000000430004c00001e2c0000613d00000000433100d9000000000223004b00001e380000c13d000008342110012a00001e370000013d0000000203000029000000000130004c000000000100001900001e370000613d000000040400002900000000213400a900000000323100d9000000000242004b00001e380000c13d000000000001042d000007cb0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000191ee506110000040f000007cb0100004100000000001004350000001201000039000000040010043f000000240200003900000000010000191ee506110000040f0004000000000002000400000003001d000300000002001d000007bd01100197000100000001001d00000000001004350000000401000039000200000001001d000000200010043f000000400200003900000000010000191ee505de0000040f000000000201041a0000000403000029000000000332004b00001e810000413d00000004030000290000000002320049000000000021041b0000000301000029000007bd01100197000300000001001d00000000001004350000000201000029000000200010043f000000400200003900000000010000191ee505de0000040f000000000301041a00000004020000290000000002230019000000000332004b00000000030000190000000103004039000000010330019000001e810000c13d000000000021041b000000400100043d00000004020000290000000000210435000007bb020000410000000003000414000007bb0430009c0000000003028019000007bb0410009c00000000010280190000004001100210000000c002300210000000000112019f00000809011001c70000800d0200003900000003030000390000081104000041000000010500002900000003060000291ee51edb0000040f000000010120019000001e880000613d000000000001042d000007cb0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000191ee506110000040f000000000100001900000000020000191ee506110000040f0003000000000002000200000003001d000300000002001d00000822020000410000000000200439000100000001001d0000000400100443000080020100003900000024020000391ee505f50000040f000000000110004c00001ed10000613d000000400500043d0000004401500039000000020200002900000000002104350000002003500039000008350100004100000000001304350000000301000029000007bd0110019700000024045000390000000000140435000000440100003900000000001504350000082e0150009c00001ed40000813d0000008001500039000000400010043f00000000010004140000000102000029000000040420008c000000000400001900001eb30000613d000000000405043300000000050000191ee505940000040f000000000110004c00000000040000190000000104006039000300000004001d1ee519660000040f0000000302000029000000010220019000001ed10000c13d0000000002010433000000000320004c00001ed00000613d000007f803000041000000200420008c00000000040000190000000004034019000007f802200197000000000520004c000000000300a019000007f80220009c00000000020400190000000002036019000000000220004c00001ed10000c13d00000020011000390000000001010433000000000210004c0000000002000019000000010200c039000000000221004b00001ed10000c13d000000000110004c00001ed10000613d000000000001042d000000000100001900000000020000191ee506110000040f000007cb0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000191ee506110000040f00001ede002104210000000102000039000000000001042d000000000200001900001edd0000013d00001ee3002104230000000102000039000000000001042d000000000200001900001ee20000013d00001ee50000043200001ee60001042e00001ee700010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff46c96aac00000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000eb13c4cf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff95d89b4100000000000000000000000000000000000000000000000000000000537461626c65563120414d4d202d2000000000000000000000000000000000002f0000000000000000000000000000000000000000000000000000000000000073414d4d2d000000000000000000000000000000000000000000000000000000566f6c6174696c65563120414d4d202d2000000000000000000000000000000076414d4d2d000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913200000002000000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022c0d9f0000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000000000000000000000000902f1ac00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000dfe16810000000000000000000000000000000000000000000000000000000013345fe10000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000019999566000000000000000000000000000000000000000000000000000000001df8c7170000000000000000000000000000000000000000000000000000000022be3de10000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000252c09d700000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000392f37e900000000000000000000000000000000000000000000000000000000443cb4bc0000000000000000000000000000000000000000000000000000000045a1de790000000000000000000000000000000000000000000000000000000046c96aac00000000000000000000000000000000000000000000000000000000517b3f82000000000000000000000000000000000000000000000000000000005881c475000000000000000000000000000000000000000000000000000000005a76f25e000000000000000000000000000000000000000000000000000000006a6278420000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000007ecebe000000000000000000000000000000000000000000000000000000000089afcb44000000000000000000000000000000000000000000000000000000008a7b8cf20000000000000000000000000000000000000000000000000000000091f36d650000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009d63848a000000000000000000000000000000000000000000000000000000009e8cc04b00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000b22d8fe000000000000000000000000000000000000000000000000000000000b7f01bfc00000000000000000000000000000000000000000000000000000000bc25cf7700000000000000000000000000000000000000000000000000000000bf944dbc00000000000000000000000000000000000000000000000000000000c245febc00000000000000000000000000000000000000000000000000000000c5700a0200000000000000000000000000000000000000000000000000000000d21220a700000000000000000000000000000000000000000000000000000000d505accf00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000ebeb31db00000000000000000000000000000000000000000000000000000000f140a35a00000000000000000000000000000000000000000000000000000000fff6cae9800000000000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e512b45ea00000000000000000000000000000000000000000000000000000000290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563000000000000000000000000000000000000000000000000ffffffffffffffbf3100000000000000000000000000000000000000000000000000000000000000c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc68b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f9a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b000000000000000000000000000000000000000000000000ffffffffffffff3f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9000000000000000000000000000000000000000000000000ffffffffffffff1f1901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fffffffffffffe9f506169723a20494e56414c49445f5349474e415455524500000000000000000008c379a00000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000200000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925506169723a2045585049524544000000000000000000000000000000000000004f6e6c7920766f7465722063616e207365742068617320676175676500000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff0000000000000000000000ff0000000000000000000000000000000000000000352eb552c369d470b6f2286567a9f272a1210ad788562e697f254cad5611f105b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0200000000000000000000000000000000000040000000000000000000000000dccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496494c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f494c4d00000000000000000000000000000000000000000000000000000000006e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7b06e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7b17365742e0000000000000000000000000000000000000000000000000000000045787465726e616c2062726962652068617320616c7265616479206265656e2065000000000000000000000000000000000000000000000000000000000000004f6e6c7920766f7465722063616e207365742065787465726e616c206272696203e9b76bf8c2d2d6948b20459194f64843d25ada1a13e3481bf88399831a0461b187bd2600000000000000000000000000000000000000000000000000000000494c0000000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b839a7bff7900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000049494100000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000080000000000000000000000000d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8224b000000000000000000000000000000000000000000000000000000000000004954000000000000000000000000000000000000000000000000000000000000494f4100000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000b7f01bfc00000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff80000000000000000000000000000000000000000000000000ffffffffffffffa0cf2aa50876cdfbb541206f89af0ee78d44a2abf8d328e37fa4917f982149848ab66503cf00000000000000000000000000000000000000000000000000000000f5b850648f086f3f988a2c06dd4214f39db9fa92ee563e6246c398361d1963ad8a0270441e721adb81a7413f54853fda4aa273f098843d47749905fcf619fbbf0000000000000000000000000000000000000000000000000de0b6b3a7640000a9059cbb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.