Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- AlgebraFactory
- Optimization enabled
- true
- Compiler version
- v0.7.6+commit.7338295f
- Optimization runs
- 0
- EVM Version
- default
- Verified at
- 2024-03-11T10:35:57.799286Z
Constructor Arguments
0x0000000000000000000000005822a45b05d08028baa3d19626870076d26bc460000000000000000000000000be56e9aa7792b2f1f4132631b7a0e1927090d78a
Arg [0] (address) : 0x5822a45b05d08028baa3d19626870076d26bc460
Arg [1] (address) : 0xbe56e9aa7792b2f1f4132631b7a0e1927090d78a
contracts/AlgebraFactory.sol
// SPDX-License-Identifier: BUSL-1.1pragma solidity =0.7.6;pragma abicoder v2;import './interfaces/IAlgebraFactory.sol';import './interfaces/IAlgebraPoolDeployer.sol';import './interfaces/IDataStorageOperator.sol';import './libraries/AdaptiveFee.sol';import './DataStorageOperator.sol';/// @title Algebra factory/// @notice Is used to deploy pools and its dataStorages/// @dev Version: Algebra V1.9-directional-feecontract AlgebraFactory is IAlgebraFactory {/// @inheritdoc IAlgebraFactoryaddress public override owner;/// @inheritdoc IAlgebraFactoryaddress public immutable override poolDeployer;/// @inheritdoc IAlgebraFactoryuint8 public override defaultCommunityFee;/// @inheritdoc IAlgebraFactoryaddress public override farmingAddress;/// @inheritdoc IAlgebraFactoryaddress public override vaultAddress;// values of constants for sigmoids in fee calculation formulaAdaptiveFee.Configuration public baseFeeConfiguration =AdaptiveFee.Configuration(3000 - Constants.BASE_FEE, // alpha115000 - 3000, // alpha2360, // beta160000, // beta259, // gamma18500, // gamma20, // volumeBeta10, // volumeGammaConstants.BASE_FEE // baseFee
contracts/libraries/Constants.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;library Constants {uint8 internal constant RESOLUTION = 96;uint256 internal constant Q96 = 0x1000000000000000000000000;uint256 internal constant Q128 = 0x100000000000000000000000000000000;// fee value in hundredths of a bip, i.e. 1e-6uint16 internal constant BASE_FEE = 100;int24 internal constant MAX_TICK_SPACING = 500;// max(uint128) / (MAX_TICK - MIN_TICK)uint128 internal constant MAX_LIQUIDITY_PER_TICK = 191757638537527648490752896198553;uint32 internal constant MAX_LIQUIDITY_COOLDOWN = 1 days;uint8 internal constant MAX_COMMUNITY_FEE = 250;uint256 internal constant COMMUNITY_FEE_DENOMINATOR = 1000;}
contracts/libraries/DataStorage.sol
// SPDX-License-Identifier: BUSL-1.1pragma solidity =0.7.6;import './FullMath.sol';/// @title DataStorage/// @notice Provides price, liquidity, volatility data useful for a wide variety of system designs/// @dev Instances of stored dataStorage data, "timepoints", are collected in the dataStorage array/// Timepoints are overwritten when the full length of the dataStorage array is populated./// The most recent timepoint is available by passing 0 to getSingleTimepoint()library DataStorage {uint32 public constant WINDOW = 1 days;uint256 private constant UINT16_MODULO = 65536;struct Timepoint {bool initialized; // whether or not the timepoint is initializeduint32 blockTimestamp; // the block timestamp of the timepointint56 tickCumulative; // the tick accumulator, i.e. tick * time elapsed since the pool was first initializeduint160 secondsPerLiquidityCumulative; // the seconds per liquidity since the pool was first initializeduint88 volatilityCumulative; // the volatility accumulator; overflow after ~34800 years is desired :)int24 averageTick; // average tick at this blockTimestampuint144 volumePerLiquidityCumulative; // the gmean(volumes)/liquidity accumulator}/// @notice Calculates volatility between two sequential timepoints with resampling to 1 sec frequency/// @param dt Timedelta between timepoints, must be within uint32 range/// @param tick0 The tick at the left timepoint, must be within int24 range/// @param tick1 The tick at the right timepoint, must be within int24 range/// @param avgTick0 The average tick at the left timepoint, must be within int24 range/// @param avgTick1 The average tick at the right timepoint, must be within int24 range/// @return volatility The volatility between two sequential timepoints/// If the requirements for the parameters are met, it always fits 88 bitsfunction _volatilityOnRange(int256 dt,int256 tick0,int256 tick1,int256 avgTick0,int256 avgTick1) internal pure returns (uint256 volatility) {// On the time interval from the previous timepoint to the current// we can represent tick and average tick change as two straight lines:// tick = k*t + b, where k and b are some constants
contracts/libraries/FullMath.sol
// SPDX-License-Identifier: MITpragma solidity ^0.4.0 || ^0.5.0 || ^0.6.0 || ^0.7.0;/// @title Contains 512-bit math functions/// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision/// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bitslibrary FullMath {/// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0/// @param a The multiplicand/// @param b The multiplier/// @param denominator The divisor/// @return result The 256-bit result/// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldivfunction mulDiv(uint256 a,uint256 b,uint256 denominator) internal pure returns (uint256 result) {// 512-bit multiply [prod1 prod0] = a * b// Compute the product mod 2**256 and mod 2**256 - 1// then 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 + prod0uint256 prod0 = a * b; // Least significant 256 bits of the productuint256 prod1; // Most significant 256 bits of the productassembly {let mm := mulmod(a, b, not(0))prod1 := sub(sub(mm, prod0), lt(mm, prod0))}// Make sure the result is less than 2**256.// Also prevents denominator == 0require(denominator > prod1);// Handle non-overflow cases, 256 by 256 divisionif (prod1 == 0) {assembly {result := div(prod0, denominator)}return result;}
contracts/libraries/AdaptiveFee.sol
// SPDX-License-Identifier: BUSL-1.1pragma solidity =0.7.6;import './Constants.sol';/// @title AdaptiveFee/// @notice Calculates fee based on combination of sigmoidslibrary AdaptiveFee {// alpha1 + alpha2 + baseFee must be <= type(uint16).maxstruct Configuration {uint16 alpha1; // max value of the first sigmoiduint16 alpha2; // max value of the second sigmoiduint32 beta1; // shift along the x-axis for the first sigmoiduint32 beta2; // shift along the x-axis for the second sigmoiduint16 gamma1; // horizontal stretch factor for the first sigmoiduint16 gamma2; // horizontal stretch factor for the second sigmoiduint32 volumeBeta; // shift along the x-axis for the outer volume-sigmoiduint16 volumeGamma; // horizontal stretch factor the outer volume-sigmoiduint16 baseFee; // minimum possible fee}/// @notice Calculates fee based on formula:/// baseFee + sigmoidVolume(sigmoid1(volatility, volumePerLiquidity) + sigmoid2(volatility, volumePerLiquidity))/// maximum value capped by baseFee + alpha1 + alpha2function getFee(uint88 volatility,uint256 volumePerLiquidity,Configuration memory config) internal pure returns (uint16 fee) {uint256 sumOfSigmoids = sigmoid(volatility, config.gamma1, config.alpha1, config.beta1) +sigmoid(volatility, config.gamma2, config.alpha2, config.beta2);if (sumOfSigmoids > type(uint16).max) {// should be impossible, just in casesumOfSigmoids = type(uint16).max;}return uint16(config.baseFee + sigmoid(volumePerLiquidity, config.volumeGamma, uint16(sumOfSigmoids), config.volumeBeta)); // safe since alpha1 + alpha2 + baseFee _must_ be <= type(uint16).max}/// @notice calculates α / (1 + e^( (β-x) / γ))
contracts/DataStorageOperator.sol
// SPDX-License-Identifier: BUSL-1.1pragma solidity =0.7.6;pragma abicoder v2;import './interfaces/IAlgebraFactory.sol';import './interfaces/IDataStorageOperator.sol';import './libraries/DataStorage.sol';import './libraries/Sqrt.sol';import './libraries/AdaptiveFee.sol';import './libraries/Constants.sol';/// @title Algebra timepoints data operator/// @notice This contract stores timepoints and calculates adaptive fee and statistical averagescontract DataStorageOperator is IDataStorageOperator {uint256 constant UINT16_MODULO = 65536;uint128 constant MAX_VOLUME_PER_LIQUIDITY = 100000 << 64; // maximum meaningful ratio of volume to liquidityusing DataStorage for DataStorage.Timepoint[UINT16_MODULO];DataStorage.Timepoint[UINT16_MODULO] public override timepoints;AdaptiveFee.Configuration public feeConfigZto;AdaptiveFee.Configuration public feeConfigOtz;address private immutable pool;address private immutable factory;modifier onlyPool() {require(msg.sender == pool, 'only pool can call this');_;}constructor(address _pool) {factory = msg.sender;pool = _pool;}/// @inheritdoc IDataStorageOperatorfunction initialize(uint32 time, int24 tick) external override onlyPool {
contracts/interfaces/IAlgebraFactory.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/*** @title The interface for the Algebra Factory* @dev Credit to Uniswap Labs under GPL-2.0-or-later license:* https://github.com/Uniswap/v3-core/tree/main/contracts/interfaces*/interface IAlgebraFactory {/*** @notice Emitted when the owner of the factory is changed* @param newOwner The owner after the owner was changed*/event Owner(address indexed newOwner);/*** @notice Emitted when the vault address is changed* @param newVaultAddress The vault address after the address was changed*/event VaultAddress(address indexed newVaultAddress);/*** @notice Emitted when a pool is created* @param token0 The first token of the pool by address sort order* @param token1 The second token of the pool by address sort order* @param pool The address of the created pool*/event Pool(address indexed token0, address indexed token1, address pool);/*** @notice Emitted when the farming address is changed* @param newFarmingAddress The farming address after the address was changed*/event FarmingAddress(address indexed newFarmingAddress);/*** @notice Emitted when the default community fee is changed* @param newDefaultCommunityFee The new default community fee value*/event DefaultCommunityFee(uint8 newDefaultCommunityFee);
contracts/interfaces/IAlgebraPoolDeployer.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/*** @title An interface for a contract that is capable of deploying Algebra Pools* @notice A contract that constructs a pool must implement this to pass arguments to the pool* @dev This is used to avoid having constructor arguments in the pool contract, which results in the init code hash* of the pool being constant allowing the CREATE2 address of the pool to be cheaply computed on-chain.* Credit to Uniswap Labs under GPL-2.0-or-later license:* https://github.com/Uniswap/v3-core/tree/main/contracts/interfaces*/interface IAlgebraPoolDeployer {/*** @notice Emitted when the factory address is changed* @param factory The factory address after the address was changed*/event Factory(address indexed factory);/*** @notice Get the parameters to be used in constructing the pool, set transiently during pool creation.* @dev Called by the pool constructor to fetch the parameters of the pool* Returns dataStorage The pools associated dataStorage* Returns factory The factory address* Returns token0 The first token of the pool by address sort order* Returns token1 The second token of the pool by address sort order*/function parameters() external view returns (address dataStorage, address factory, address token0, address token1);/*** @dev Deploys a pool with the given parameters by transiently setting the parameters storage slot and then* clearing it after deploying the pool.* @param dataStorage The pools associated dataStorage* @param factory The contract address of the Algebra factory* @param token0 The first token of the pool by address sort order* @param token1 The second token of the pool by address sort order* @return pool The deployed pool's address*/function deploy(address dataStorage, address factory, address token0, address token1) external returns (address pool);/*** @dev Sets the factory address to the poolDeployer for permissioned actions
contracts/interfaces/IDataStorageOperator.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;pragma abicoder v2;import '../libraries/AdaptiveFee.sol';interface IDataStorageOperator {event FeeConfiguration(bool zto, AdaptiveFee.Configuration feeConfig);/*** @notice Returns data belonging to a certain timepoint* @param index The index of timepoint in the array* @dev There is more convenient function to fetch a timepoint: getTimepoints(). Which requires not an index but seconds* @return initialized Whether the timepoint has been initialized and the values are safe to use,* blockTimestamp The timestamp of the observation,* tickCumulative The tick multiplied by seconds elapsed for the life of the pool as of the timepoint timestamp,* secondsPerLiquidityCumulative The seconds per in range liquidity for the life of the pool as of the timepoint timestamp,* volatilityCumulative Cumulative standard deviation for the life of the pool as of the timepoint timestamp,* averageTick Time-weighted average tick,* volumePerLiquidityCumulative Cumulative swap volume per liquidity for the life of the pool as of the timepoint timestamp*/function timepoints(uint256 index)externalviewreturns (bool initialized,uint32 blockTimestamp,int56 tickCumulative,uint160 secondsPerLiquidityCumulative,uint88 volatilityCumulative,int24 averageTick,uint144 volumePerLiquidityCumulative);/// @notice Initialize the dataStorage array by writing the first slot. Called once for the lifecycle of the timepoints array/// @param time The time of the dataStorage initialization, via block.timestamp truncated to uint32/// @param tick Initial tickfunction initialize(uint32 time, int24 tick) external;/// @dev Reverts if an timepoint at or before the desired timepoint timestamp does not exist./// 0 may be passed as `secondsAgo' to return the current cumulative values.
contracts/libraries/Sqrt.sol
// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.5.0 || ^0.6.0 || ^0.7.0 || ^0.8.0;library Sqrt {/// @notice Gets the square root of the absolute value of the parameterfunction sqrtAbs(int256 _x) internal pure returns (uint256 result) {// get abs valueint256 mask = _x >> (256 - 1);uint256 x = uint256((_x ^ mask) - mask);if (x == 0) result = 0;else {uint256 xx = x;uint256 r = 1;if (xx >= 0x100000000000000000000000000000000) {xx >>= 128;r <<= 64;}if (xx >= 0x10000000000000000) {xx >>= 64;r <<= 32;}if (xx >= 0x100000000) {xx >>= 32;r <<= 16;}if (xx >= 0x10000) {xx >>= 16;r <<= 8;}if (xx >= 0x100) {xx >>= 8;r <<= 4;}if (xx >= 0x10) {xx >>= 4;r <<= 2;}if (xx >= 0x8) {r <<= 1;}r = (r + x / r) >> 1;
Compiler Settings
{"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers"]}},"optimizer":{"runs":0,"enabled":true},"metadata":{"bytecodeHash":"none"},"libraries":{}}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_poolDeployer","internalType":"address"},{"type":"address","name":"_vaultAddress","internalType":"address"}]},{"type":"event","name":"DefaultCommunityFee","inputs":[{"type":"uint8","name":"newDefaultCommunityFee","internalType":"uint8","indexed":false}],"anonymous":false},{"type":"event","name":"FarmingAddress","inputs":[{"type":"address","name":"newFarmingAddress","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"FeeConfiguration","inputs":[{"type":"uint16","name":"alpha1","internalType":"uint16","indexed":false},{"type":"uint16","name":"alpha2","internalType":"uint16","indexed":false},{"type":"uint32","name":"beta1","internalType":"uint32","indexed":false},{"type":"uint32","name":"beta2","internalType":"uint32","indexed":false},{"type":"uint16","name":"gamma1","internalType":"uint16","indexed":false},{"type":"uint16","name":"gamma2","internalType":"uint16","indexed":false},{"type":"uint32","name":"volumeBeta","internalType":"uint32","indexed":false},{"type":"uint16","name":"volumeGamma","internalType":"uint16","indexed":false},{"type":"uint16","name":"baseFee","internalType":"uint16","indexed":false}],"anonymous":false},{"type":"event","name":"Owner","inputs":[{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Pool","inputs":[{"type":"address","name":"token0","internalType":"address","indexed":true},{"type":"address","name":"token1","internalType":"address","indexed":true},{"type":"address","name":"pool","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"VaultAddress","inputs":[{"type":"address","name":"newVaultAddress","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint16","name":"alpha1","internalType":"uint16"},{"type":"uint16","name":"alpha2","internalType":"uint16"},{"type":"uint32","name":"beta1","internalType":"uint32"},{"type":"uint32","name":"beta2","internalType":"uint32"},{"type":"uint16","name":"gamma1","internalType":"uint16"},{"type":"uint16","name":"gamma2","internalType":"uint16"},{"type":"uint32","name":"volumeBeta","internalType":"uint32"},{"type":"uint16","name":"volumeGamma","internalType":"uint16"},{"type":"uint16","name":"baseFee","internalType":"uint16"}],"name":"baseFeeConfiguration","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"address","name":"pool","internalType":"address"}],"name":"createPool","inputs":[{"type":"address","name":"tokenA","internalType":"address"},{"type":"address","name":"tokenB","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"defaultCommunityFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"farmingAddress","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"poolByPair","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"poolDeployer","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseFeeConfiguration","inputs":[{"type":"uint16","name":"alpha1","internalType":"uint16"},{"type":"uint16","name":"alpha2","internalType":"uint16"},{"type":"uint32","name":"beta1","internalType":"uint32"},{"type":"uint32","name":"beta2","internalType":"uint32"},{"type":"uint16","name":"gamma1","internalType":"uint16"},{"type":"uint16","name":"gamma2","internalType":"uint16"},{"type":"uint32","name":"volumeBeta","internalType":"uint32"},{"type":"uint16","name":"volumeGamma","internalType":"uint16"},{"type":"uint16","name":"baseFee","internalType":"uint16"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setDefaultCommunityFee","inputs":[{"type":"uint8","name":"newDefaultCommunityFee","internalType":"uint8"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setFarmingAddress","inputs":[{"type":"address","name":"_farmingAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setOwner","inputs":[{"type":"address","name":"_owner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setVaultAddress","inputs":[{"type":"address","name":"_vaultAddress","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"vaultAddress","inputs":[]}]
Contract Creation Code
0x6101c0604052610b5460a0819052612ee060c05261016860e05261ea6061010052603b6101205261213461014052600061016052600a6101805260646101a0526003805461ffff191690911763ffff00001916632ee000001763ffffffff60201b1916650168000000001763ffffffff60401b191669ea6000000000000000001761ffff60601b19166c3b0000000000000000000000001761ffff60701b191661084d60721b1765ffffffffffff60801b1916600560a11b1761ffff60b01b1916601960b21b1790553480156100d457600080fd5b506040516138aa3803806138aa8339810160408190526100f391610182565b600080546001600160a01b03191633908117825560405190917fa5e220c2c27d986cc8efeafa8f34ba6ea6bf96a34e146b29b6bdd8587771b13091a260609190911b6001600160601b031916608052600280546001600160a01b0319166001600160a01b039092169190911790556101b4565b80516001600160a01b038116811461017d57600080fd5b919050565b60008060408385031215610194578182fd5b61019d83610166565b91506101ab60208401610166565b90509250929050565b60805160601c6136cf6101db6000398061023d52806108fb5280610a2b52506136cf6000f3fe608060405234801561001057600080fd5b50600436106100af5760003560e01c806313af4035146100b45780632f8a39dd146100c95780633119049a146100e7578063371e3521146100fc578063430bf08a1461010f5780635d6d7e931461011757806385535cc51461012a5780638a2ade581461013d5780638da5cb5b146101455780639832853a1461014d578063b001f6181461016a578063d9a641e11461017d578063e343361514610190575b600080fd5b6100c76100c2366004610afc565b6101a3565b005b6100d161022b565b6040516100de9190610e44565b60405180910390f35b6100ef61023b565b6040516100de9190610c80565b6100c761010a366004610c1a565b61025f565b6100ef6102f6565b6100c7610125366004610b73565b610305565b6100c7610138366004610afc565b61059b565b6100ef610623565b6100ef610632565b610155610641565b6040516100de99989796959493929190610def565b6100c7610178366004610afc565b6106a1565b6100ef61018b366004610b3b565b610729565b6100ef61019e366004610b3b565b61074f565b6000546001600160a01b031633146101ba57600080fd5b6000546001600160a01b03828116911614156101d557600080fd5b6040516001600160a01b038216907fa5e220c2c27d986cc8efeafa8f34ba6ea6bf96a34e146b29b6bdd8587771b13090600090a2600080546001600160a01b0319166001600160a01b0392909216919091179055565b600054600160a01b900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b0316331461027657600080fd5b60fa60ff8216111561028757600080fd5b60005460ff828116600160a01b9092041614156102a357600080fd5b6000805460ff60a01b1916600160a01b60ff8416021790556040517f88cb5103fd9d88d417e72dc496030c71c65d1500548a9e9530e7d812b6a35558906102eb908390610e44565b60405180910390a150565b6002546001600160a01b031681565b6000546001600160a01b0316331461031c57600080fd5b61ffff898116898216018282160111156103515760405162461bcd60e51b815260040161034890610dc5565b60405180910390fd5b61ffff851615801590610367575061ffff841615155b8015610376575061ffff821615155b6103925760405162461bcd60e51b815260040161034890610d99565b6040518061012001604052808a61ffff1681526020018961ffff1681526020018863ffffffff1681526020018763ffffffff1681526020018661ffff1681526020018561ffff1681526020018463ffffffff1681526020018361ffff1681526020018261ffff16815250600360008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160086101000a81548163ffffffff021916908363ffffffff160217905550608082015181600001600c6101000a81548161ffff021916908361ffff16021790555060a082015181600001600e6101000a81548161ffff021916908361ffff16021790555060c08201518160000160106101000a81548163ffffffff021916908363ffffffff16021790555060e08201518160000160146101000a81548161ffff021916908361ffff1602179055506101008201518160000160166101000a81548161ffff021916908361ffff1602179055509050507f4035ab409f15e202f9f114632e1fb14a0552325955722be18503403e7f98730c89898989898989898960405161058899989796959493929190610def565b60405180910390a1505050505050505050565b6000546001600160a01b031633146105b257600080fd5b6002546001600160a01b03828116911614156105cd57600080fd5b6040516001600160a01b038216907fb9c265ae4414f501736ec5d4961edc3309e4385eb2ff3feeecb30fb36621dd8390600090a2600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031681565b6000546001600160a01b031681565b60035461ffff8082169162010000810482169163ffffffff600160201b8304811692600160401b8104821692600160601b8204811692600160701b8304821692600160801b810490911691600160a01b8204811691600160b01b90041689565b6000546001600160a01b031633146106b857600080fd5b6001546001600160a01b03828116911614156106d357600080fd5b6040516001600160a01b038216907f56b9e8342f530796ceed0d5529abdcdeae6e4f2ac1dc456ceb73bbda898e0cd390600090a2600180546001600160a01b0319166001600160a01b0392909216919091179055565b60046020908152600092835260408084209091529082529020546001600160a01b031681565b6000816001600160a01b0316836001600160a01b0316141561077057600080fd5b600080836001600160a01b0316856001600160a01b031610610793578385610796565b84845b90925090506001600160a01b0382166107ae57600080fd5b6001600160a01b038281166000908152600460209081526040808320858516845290915290205416156107e057600080fd5b60006107ec8383610a27565b6040516107f890610ac4565b6108029190610c80565b604051809103906000f08015801561081e573d6000803e3d6000fd5b50604051635253311160e01b81529091506001600160a01b0382169063525331119061085290600190600390600401610cd9565b600060405180830381600087803b15801561086c57600080fd5b505af1158015610880573d6000803e3d6000fd5b5050604051635253311160e01b81526001600160a01b0384169250635253311191506108b490600090600390600401610cd9565b600060405180830381600087803b1580156108ce57600080fd5b505af11580156108e2573d6000803e3d6000fd5b5050604051637ec15b9d60e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016925063fd82b73a9150610938908490309088908890600401610cae565b602060405180830381600087803b15801561095257600080fd5b505af1158015610966573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098a9190610b1f565b6001600160a01b03808516600081815260046020818152604080842089871680865290835281852080549789166001600160a01b031998891681179091559383528185208686529092529283902080549095169091179093555192965090917f91ccaa7a278130b65168c3a0c8d3bcae84cf5e43704342bd3ec0b59e59c036db90610a16908890610c80565b60405180910390a350505092915050565b60007f00000000000000000000000000000000000000000000000000000000000000008383604051602001610a5d929190610c94565b60408051601f19818403018152908290528051602091820120610aa5939290917f6c1bebd370ba84753516bc1393c0d0a6c645856da55f5393ac8ab3d6dbc861d39101610c4d565b60408051601f1981840301815291905280516020909101209392505050565b61285880610e6b83390190565b803561ffff81168114610ae357600080fd5b919050565b803563ffffffff81168114610ae357600080fd5b600060208284031215610b0d578081fd5b8135610b1881610e52565b9392505050565b600060208284031215610b30578081fd5b8151610b1881610e52565b60008060408385031215610b4d578081fd5b8235610b5881610e52565b91506020830135610b6881610e52565b809150509250929050565b60008060008060008060008060006101208a8c031215610b91578485fd5b610b9a8a610ad1565b9850610ba860208b01610ad1565b9750610bb660408b01610ae8565b9650610bc460608b01610ae8565b9550610bd260808b01610ad1565b9450610be060a08b01610ad1565b9350610bee60c08b01610ae8565b9250610bfc60e08b01610ad1565b9150610c0b6101008b01610ad1565b90509295985092959850929598565b600060208284031215610c2b578081fd5b813560ff81168114610b18578182fd5b61ffff169052565b63ffffffff169052565b6001600160f81b0319815260609390931b6001600160601b03191660018401526015830191909152603582015260550190565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b03948516815292841660208401529083166040830152909116606082015260800190565b8215158152815461014082019061ffff610cf860208501828416610c3b565b610d0a60408501828460101c16610c3b565b63ffffffff610d2160608601828560201c16610c43565b610d3360808601828560401c16610c43565b610d4560a08601838560601c16610c3b565b610d5760c08601838560701c16610c3b565b610d6960e08601828560801c16610c43565b50610d7d6101008501828460a01c16610c3b565b610d906101208501828460b01c16610c3b565b50509392505050565b602080825260129082015271047616d6d6173206d757374206265203e20360741b604082015260600190565b60208082526010908201526f13585e0819995948195e18d95959195960821b604082015260600190565b61ffff998a168152978916602089015263ffffffff96871660408901529486166060880152928716608087015290861660a086015290921660c084015290831660e08301529091166101008201526101200190565b60ff91909116815260200190565b6001600160a01b0381168114610e6757600080fd5b5056fe60c06040523480156200001157600080fd5b506040516200285838038062002858833981016040819052620000349162000051565b33606090811b60a0521b6001600160601b03191660805262000081565b60006020828403121562000063578081fd5b81516001600160a01b03811681146200007a578182fd5b9392505050565b60805160601c60a05160601c61278f620000c960003980610455528061047e52508061021252806102dd52806103fd52806107af528061097a52806109ed525061278f6000f3fe608060405234801561001057600080fd5b50600436106100a45760003560e01c806314c54079146100a95780631dd486f2146100d557806336e52fee146100f5578063461645bf14610115578063475fb80c1461012a578063525331111461013f57806374eceae614610152578063824e8e871461017857806390577ef614610195578063a80b96a11461019d578063bc2e0181146101be578063fd31e988146101df575b600080fd5b6100bc6100b7366004612148565b610202565b6040516100cc9493929190612412565b60405180910390f35b6100e86100e3366004611f5c565b6102d0565b6040516100cc91906124f8565b610108610103366004611f0e565b610333565b6040516100cc91906124e4565b61011d6103eb565b6040516100cc9190612571565b61013d6101383660046120bd565b6103f2565b005b61013d61014d366004611ec9565b61044a565b610165610160366004611fc4565b610664565b6040516100cc97969594939291906123b9565b6101806106dd565b6040516100cc9998979695949392919061251c565b61018061073f565b6101b06101ab3660046120f1565b6107a1565b6040516100cc929190612507565b6101d16101cc3660046120f1565b61096c565b6040516100cc9291906124cb565b6101f26101ed366004611fdc565b6109dd565b6040516100cc949392919061221c565b6000808080336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146102585760405162461bcd60e51b815260040161024f90612470565b60405180910390fd5b6000600187018161ffff821662010000811061027057fe5b600202015460ff1615610281578091505b6000610292818d8d8d8d888e610a4c565b60408101516060820151608083015160c090930151919f909e506001600160581b039092169c506001600160901b03169a5098505050505050505050565b6000336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461031a5760405162461bcd60e51b815260040161024f90612470565b6103296000878787878761101b565b9695505050505050565b60008061033f836112c9565b610348856112c9565b0290506000600160c01b821061038d576000866001600160801b031611610370576001610372565b855b6001600160801b03166000198161038557fe5b0490506103c0565b6000866001600160801b0316116103a55760016103a7565b855b6001600160801b0316604083901b816103bc57fe5b0490505b610c3560451b81106103db57610c3560451b925050506103e4565b91506103e49050565b9392505050565b6201518090565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461043a5760405162461bcd60e51b815260040161024f90612470565b61044660008383611419565b5050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061052257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156104d557600080fd5b505afa1580156104e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050d9190611ea2565b6001600160a01b0316336001600160a01b0316145b61052b57600080fd5b61ffff61054061012083016101008401611f40565b61ffff166105546040840160208501611f40565b61ffff166105656020850185611f40565b61ffff16010111156105895760405162461bcd60e51b815260040161024f906124a1565b61059960a0820160808301611f40565b61ffff16158015906105bd57506105b660c0820160a08301611f40565b61ffff1615155b80156105dc57506105d5610100820160e08301611f40565b61ffff1615155b6105f85760405162461bcd60e51b815260040161024f90612444565b811561061557806202000061060d82826125a2565b905050610627565b806202000161062482826125a2565b50505b7ffde738fae78aad21a8ad5935e1ff28b89cea38834539a91ae210ba7a22c067a582826040516106589291906122bf565b60405180910390a15050565b60008162010000811061067657600080fd5b600290810291909101805460019091015460ff82169350610100820463ffffffff1692600160281b830460060b92600160601b90046001600160a01b0316916001600160581b03811691600160581b8204900b90600160701b90046001600160901b031687565b620200005461ffff8082169162010000810482169163ffffffff600160201b8304811692600160401b8104821692600160601b8204811692600160701b8304821692600160801b810490911691600160a01b8204811691600160b01b90041689565b620200015461ffff8082169162010000810482169163ffffffff600160201b8304811692600160401b8104821692600160601b8204811692600160701b8304821692600160801b810490911691600160a01b8204811691600160b01b90041689565b600080336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146107ec5760405162461bcd60e51b815260040161024f90612470565b6000806107fc8189898989611478565b915091506108b2600f836001600160581b03168161081657fe5b6040805161012081018252620200005461ffff80821683526201000082048116602084015263ffffffff600160201b8304811694840194909452600160401b820484166060840152600160601b820481166080840152600160701b8204811660a0840152600160801b820490931660c0830152600160a01b8104831660e0830152600160b01b90049091166101008201529190049083906115f7565b935061095f600f6001600160581b0384166040805161012081018252620200015461ffff80821683526201000082048116602084015263ffffffff600160201b8304811694840194909452600160401b820484166060840152600160601b820481166080840152600160701b8204811660a0840152600160801b820490931660c0830152600160a01b8104831660e0830152600160b01b90049091166101008201529190049083906115f7565b9250505094509492505050565b600080336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109b75760405162461bcd60e51b815260040161024f90612470565b6109c5600087878787611478565b6001600160581b039091169250905094509492505050565b6060808080336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610a2a5760405162461bcd60e51b815260040161024f90612470565b610a3960008a8a8a8a8a611689565b929c919b50995090975095505050505050565b610a54611e22565b85870363ffffffff87161580610a915750610a91898661ffff16620100008110610a7a57fe5b6002020154610100900463ffffffff16828a6118bd565b15610c14576000898661ffff16620100008110610aaa57fe5b6040805160e081018252600292830293909301805460ff811615158552610100810463ffffffff90811660208701819052600160281b8304600690810b810b900b94870194909452600160601b9091046001600160a01b031660608601526001909101546001600160581b0381166080860152600160581b8104840b840b90930b60a0850152600160701b9092046001600160901b031660c084015291925083161415610b5a5791506110109050565b6000610b738b8b8a8a8a876020015188604001516118e6565b90508761ffff88811690881614610bf957610b8c611e22565b60008d60018b0361ffff16620100008110610ba357fe5b60020201805463ffffffff610100820481166020808701829052600160281b909304600690810b810b810b6040808901829052948b0151948b0151959650919093039091169203900b81610bf357fe5b05925050505b610c0983858b848a876000611a50565b945050505050611010565b610c29898561ffff16620100008110610a7a57fe5b610c60576040805162461bcd60e51b815260206004820152600360248201526213d31160ea1b604482015290519081900360640190fd5b600080610c708b8b858a8a611b54565b6040518060e00160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160059054906101000a900460060b60060b60060b815260200160008201600c9054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016001820160009054906101000a90046001600160581b03166001600160581b03166001600160581b0316815260200160018201600b9054906101000a900460020b60020b60020b815260200160018201600e9054906101000a90046001600160901b03166001600160901b03166001600160901b03168152505091506040518060e00160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160059054906101000a900460060b60060b60060b815260200160008201600c9054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016001820160009054906101000a90046001600160581b03166001600160581b03166001600160581b0316815260200160018201600b9054906101000a900460020b60020b60020b815260200160018201600e9054906101000a90046001600160901b03166001600160901b03166001600160901b0316815250509150806020015163ffffffff168363ffffffff161415610ebc579250611010915050565b816020015163ffffffff168363ffffffff161461100b5760008260200151826020015103905060008360200151850390508063ffffffff168263ffffffff16856040015185604001510360060b81610f1057fe5b0502846040018181510191509060060b908160060b815250508163ffffffff168163ffffffff1685606001518560600151036001600160a01b03160281610f5357fe5b0484606001818151019150906001600160a01b031690816001600160a01b0316815250508063ffffffff168263ffffffff1685608001518560800151036001600160581b031681610fa057fe5b040284608001818151019150906001600160581b031690816001600160581b0316815250508063ffffffff168263ffffffff168560c001518560c00151036001600160901b031681610fee57fe5b60c0870180516001600160901b0393909204939093020116905250505b509150505b979650505050505050565b600080878761ffff1662010000811061103057fe5b60020201805490915063ffffffff8781166101009092041614156110575786915050610329565b6040805160e081018252825460ff811615158252610100810463ffffffff166020830152600160281b8104600690810b810b900b92820192909252600160601b9091046001600160a01b031660608201526001808301546001600160581b0381166080840152600160581b8104600290810b810b900b60a0840152600160701b90046001600160901b031660c08301528801925060008961ffff85166201000081106110ff57fe5b600202015460ff161561110f5750825b60006111288b8a8a8d86886020015189604001516118e6565b90508761ffff8b8116908416146111995760008c60018d0361ffff1662010000811061115057fe5b6002020180546020870151604088015192935063ffffffff6101008304811693600160281b909304600690810b939285900390911691839003900b8161119257fe5b0593505050505b6111a8848b8b848c878d611a50565b8c8761ffff166201000081106111ba57fe5b825160029182029290920180546020850151604086015160608701516001600160a01b0316600160601b026001600160601b0360069290920b66ffffffffffffff16600160281b02600160281b600160601b031963ffffffff9094166101000264ffffffff001998151560ff1990961695909517979097169390931791909116949094179390931692909217825560808301516001909201805460a085015160c0909501516001600160901b0316600160701b026001600160701b039590930b62ffffff16600160581b0262ffffff60581b196001600160581b039095166001600160581b03199092169190911793909316929092179290921691909117905550505050509695505050505050565b600060ff82901d808318819003806112e45760009250611412565b806001600160801b82106112fd5760809190911c9060401b5b600160401b82106113135760409190911c9060201b5b600160201b82106113295760209190911c9060101b5b62010000821061133e5760109190911c9060081b5b61010082106113525760089190911c9060041b5b601082106113655760049190911c9060021b5b600882106113715760011b5b600181848161137c57fe5b048201901c9050600181848161138e57fe5b048201901c905060018184816113a057fe5b048201901c905060018184816113b257fe5b048201901c905060018184816113c457fe5b048201901c905060018184816113d657fe5b048201901c905060018184816113e857fe5b048201901c905060008184816113fa57fe5b04905080821061140a578061140c565b815b95505050505b5050919050565b825460ff161561142857600080fd5b825463ffffffff9290921661010002600160ff19909316831764ffffffff0019161783559101805462ffffff60581b1916600160581b62ffffff60029490940b9390931692909202919091179055565b6000808087600186018161ffff821662010000811061149357fe5b600202015460ff16156114bc57898161ffff166201000081106114b257fe5b6002020191508092505b60006114ce8b8b60008c8c898d610a4c565b8354909150610100900463ffffffff166114ef816201517f198d018d6118bd565b156115575760006115088d8d620151808e8e8b8f610a4c565b90506201518063ffffffff1681608001518460800151036001600160581b03168161152f57fe5b0460398260c001518560c00151036001600160901b0316901c975097505050505050506115ed565b8063ffffffff168b63ffffffff16146115e75760008460010160009054906101000a90046001600160581b03169050600085600101600e9054906101000a90046001600160901b03169050828d0363ffffffff16828560800151036001600160581b0316816115c257fe5b046039828660c00151036001600160901b0316901c98509850505050505050506115ed565b50505050505b9550959350505050565b600080611621856001600160581b03168460a001518560200151866060015163ffffffff16611c5b565b611648866001600160581b031685608001518660000151876040015163ffffffff16611c5b565b01905061ffff81111561165a575061ffff5b611674848460e00151838660c0015163ffffffff16611c5b565b83610100015161ffff16019150509392505050565b60608060608087516001600160401b03811180156116a657600080fd5b506040519080825280602002602001820160405280156116d0578160200160208202803683370190505b50935087516001600160401b03811180156116ea57600080fd5b50604051908082528060200260200182016040528015611714578160200160208202803683370190505b50925087516001600160401b038111801561172e57600080fd5b50604051908082528060200260200182016040528015611758578160200160208202803683370190505b50915087516001600160401b038111801561177257600080fd5b5060405190808252806020026020018201604052801561179c578160200160208202803683370190505b5090506000600187018b61ffff82166201000081106117b757fe5b600202015460ff16156117c8578091505b6117d0611e22565b60005b8b518110156118ac576117fe8e8e8e84815181106117ed57fe5b60200260200101518e8e898f610a4c565b91508160400151826060015183608001518460c00151816001600160581b03169150806001600160901b031690508b858151811061183857fe5b602002602001018b868151811061184b57fe5b602002602001018b878151811061185e57fe5b602002602001018b888151811061187157fe5b60209081029190910101939093526001600160701b039093169091526001600160a01b039092169052600691820b90910b90526001016117d3565b505050509650965096509692505050565b63ffffffff8082168482168110918416118114156103e457505063ffffffff9081169116111590565b600080888561ffff166201000081106118fb57fe5b6002020154610100900463ffffffff16905060008961ffff871662010000811061192157fe5b6002020154600160281b900460060b9050611943826201517f198b018b6118bd565b15611a095761195885620151808b038b6118bd565b156119c65760018703965060008a8861ffff1662010000811061197757fe5b60020201805490915060ff16611990578860020b6119bb565b805463ffffffff6101008204811688031690600160281b9004600690810b8703900b816119b957fe5b055b60060b935050611a04565b60006119db8b8b620151808c8c8c6000610a4c565b9050620151808a87030163ffffffff168160400151860360060b816119fc57fe5b0560060b9350505b611a43565b8163ffffffff168563ffffffff1614611a385781850363ffffffff1681850360060b81611a3257fe5b05611a3d565b8760020b5b60060b92505b5050979650505050505050565b611a58611e22565b60208801805160018a5263ffffffff89811690925260408a018051918a0392831660028a900b02909101600690810b900b90526001600160801b038516611aa0576001611aa2565b845b6001600160801b031663ffffffff60801b608083901b1681611ac057fe5b0489606001818151019150906001600160a01b031690816001600160a01b031681525050611b078163ffffffff168760020b8960020b8c60a0015160020b8860020b611d05565b60808a018051919091016001600160581b031690525050600291820b90910b60a087015260c0860180516001600160801b03929092169091016001600160901b0316905250929392505050565b60008061ffff8084169082908616821115611b7857620100008661ffff1601611b7e565b8561ffff165b905081810160011c5b898161ffff16620100008110611b9957fe5b60020201805490955060ff811690610100900463ffffffff168115611c4657611bc3818b8d6118bd565b15611c3a578b8360010161ffff16620100008110611bdd57fe5b60020201805490965060ff811690610100900463ffffffff168115611c2357611c078c828f6118bd565b15611c1857505050505050506115ed565b846001019650611c33565b508796506115ed95505050505050565b5050611c41565b6001830393505b611c4d565b8260010194505b50505081810160011c611b87565b600081851115611cb55781850394508361ffff166006028510611c83575061ffff8216611cfd565b600861ffff85160a6000611c98878784611d5a565b9050808201818661ffff160281611cab57fe5b0492505050611cfd565b93810393600661ffff8516028510611ccf57506000611cfd565b600861ffff85160a6000611ce4878784611d5a565b8201905080828661ffff160281611cf757fe5b04925050505b949350505050565b6000828203858503038386038702600180890189026002808b02929092018102916006818c0a81029180870a8502868802850283020190860a8d029091020181611d4b57fe5b059a9950505050505050505050565b808361ffff84168281611d6957fe5b049250828102820191508361ffff168381611d8057fe5b0492508402600281840204820191508361ffff168381611d9c57fe5b0492508402600681840204820191508361ffff168381611db857fe5b0492508402601881840204820191508361ffff168381611dd457fe5b0492508402607881840204820191508361ffff168381611df057fe5b04925084026102d08184020491909101908402619d80818602046113b061ffff86168302040182019150509392505050565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915290565b8035600281900b8114611e7057600080fd5b919050565b80356001600160801b0381168114611e7057600080fd5b8035611e708161275d565b8035611e7081612770565b600060208284031215611eb3578081fd5b81516001600160a01b03811681146103e4578182fd5b600080828403610140811215611edd578182fd5b83358015158114611eec578283fd5b9250610120601f1982011215611f00578182fd5b506020830190509250929050565b600080600060608486031215611f22578081fd5b611f2b84611e75565b95602085013595506040909401359392505050565b600060208284031215611f51578081fd5b81356103e48161275d565b600080600080600060a08688031215611f73578081fd5b8535611f7e8161275d565b94506020860135611f8e81612770565b9350611f9c60408701611e5e565b9250611faa60608701611e75565b9150611fb860808701611e75565b90509295509295909350565b600060208284031215611fd5578081fd5b5035919050565b600080600080600060a08688031215611ff3578081fd5b8535611ffe81612770565b94506020868101356001600160401b038082111561201a578384fd5b818901915089601f83011261202d578384fd5b81358181111561203957fe5b8381026040518582820101818110858211171561205257fe5b604052828152858101935084860182860187018e1015612070578788fd5b8795505b838610156120995761208581611e97565b855260019590950194938601938601612074565b508099505050505050506120af60408701611e5e565b9250611faa60608701611e8c565b600080604083850312156120cf578182fd5b82356120da81612770565b91506120e860208401611e5e565b90509250929050565b60008060008060808587031215612106578384fd5b843561211181612770565b935061211f60208601611e5e565b9250604085013561212f8161275d565b915061213d60608601611e75565b905092959194509250565b600080600080600060a0868803121561215f578081fd5b853561216a81612770565b9450602086013561217a81612770565b935061218860408701611e5e565b92506060860135611faa8161275d565b6000815180845260208085019450808401835b838110156121d05781516001600160701b0316875295820195908201906001016121ab565b509495945050505050565b6000815180845260208085019450808401835b838110156121d0578151875295820195908201906001016121ee565b61ffff169052565b63ffffffff169052565b6080808252855190820181905260009060209060a0840190828901845b8281101561225857815160060b84529284019290840190600101612239565b50505083810382850152865180825287830191830190845b818110156122955783516001600160a01b031683529284019291840191600101612270565b505084810360408601526122a98188612198565b92505050828103606084015261101081856121db565b821515815261014081016122de602083016122d985611e8c565b61220a565b6122ea60208401611e8c565b6122f7604084018261220a565b5061230460408401611e97565b6123116060840182612212565b5061231e60608401611e97565b61232b6080840182612212565b5061233860808401611e8c565b61234560a084018261220a565b5061235260a08401611e8c565b61235f60c084018261220a565b5061236c60c08401611e97565b61237960e0840182612212565b5061238660e08401611e8c565b6101006123958185018361220a565b6123a0818601611e8c565b9150506123b161012084018261220a565b509392505050565b961515875263ffffffff95909516602087015260069390930b60408601526001600160a01b039190911660608501526001600160581b0316608084015260020b60a08301526001600160901b031660c082015260e00190565b60069490940b84526001600160a01b039290921660208401526001600160701b03166040830152606082015260800190565b602080825260129082015271047616d6d6173206d757374206265203e20360741b604082015260600190565b6020808252601790820152766f6e6c7920706f6f6c2063616e2063616c6c207468697360481b604082015260600190565b60208082526010908201526f13585e0819995948195e18d95959195960821b604082015260600190565b6001600160701b03929092168252602082015260400190565b6001600160801b0391909116815260200190565b61ffff91909116815260200190565b61ffff92831681529116602082015260400190565b61ffff998a168152978916602089015263ffffffff96871660408901529486166060880152928716608087015290861660a086015290921660c084015290831660e08301529091166101008201526101200190565b63ffffffff91909116815260200190565b6000813561258f8161275d565b92915050565b6000813561258f81612770565b81356125ad8161275d565b815461ffff191661ffff919091161780825560208301356125cd8161275d565b63ffff00008160101b1663ffff000019831617835550506125f96125f360408401612595565b82612717565b61260e61260860608401612595565b8261273a565b61262361261d60808401612582565b82612678565b61263861263260a08401612582565b82612697565b61264d61264760c08401612595565b826126b6565b61266261265c60e08401612582565b826126d9565b6104466126726101008401612582565b826126f8565b805461ffff60601b191660609290921b61ffff60601b16919091179055565b805461ffff60701b191660709290921b61ffff60701b16919091179055565b805463ffffffff60801b191660809290921b63ffffffff60801b16919091179055565b805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b805463ffffffff60201b191660209290921b63ffffffff60201b16919091179055565b805463ffffffff60401b191660409290921b63ffffffff60401b16919091179055565b61ffff8116811461276d57600080fd5b50565b63ffffffff8116811461276d57600080fdfea164736f6c6343000706000aa164736f6c6343000706000a0000000000000000000000005822a45b05d08028baa3d19626870076d26bc460000000000000000000000000be56e9aa7792b2f1f4132631b7a0e1927090d78a
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106100af5760003560e01c806313af4035146100b45780632f8a39dd146100c95780633119049a146100e7578063371e3521146100fc578063430bf08a1461010f5780635d6d7e931461011757806385535cc51461012a5780638a2ade581461013d5780638da5cb5b146101455780639832853a1461014d578063b001f6181461016a578063d9a641e11461017d578063e343361514610190575b600080fd5b6100c76100c2366004610afc565b6101a3565b005b6100d161022b565b6040516100de9190610e44565b60405180910390f35b6100ef61023b565b6040516100de9190610c80565b6100c761010a366004610c1a565b61025f565b6100ef6102f6565b6100c7610125366004610b73565b610305565b6100c7610138366004610afc565b61059b565b6100ef610623565b6100ef610632565b610155610641565b6040516100de99989796959493929190610def565b6100c7610178366004610afc565b6106a1565b6100ef61018b366004610b3b565b610729565b6100ef61019e366004610b3b565b61074f565b6000546001600160a01b031633146101ba57600080fd5b6000546001600160a01b03828116911614156101d557600080fd5b6040516001600160a01b038216907fa5e220c2c27d986cc8efeafa8f34ba6ea6bf96a34e146b29b6bdd8587771b13090600090a2600080546001600160a01b0319166001600160a01b0392909216919091179055565b600054600160a01b900460ff1681565b7f0000000000000000000000005822a45b05d08028baa3d19626870076d26bc46081565b6000546001600160a01b0316331461027657600080fd5b60fa60ff8216111561028757600080fd5b60005460ff828116600160a01b9092041614156102a357600080fd5b6000805460ff60a01b1916600160a01b60ff8416021790556040517f88cb5103fd9d88d417e72dc496030c71c65d1500548a9e9530e7d812b6a35558906102eb908390610e44565b60405180910390a150565b6002546001600160a01b031681565b6000546001600160a01b0316331461031c57600080fd5b61ffff898116898216018282160111156103515760405162461bcd60e51b815260040161034890610dc5565b60405180910390fd5b61ffff851615801590610367575061ffff841615155b8015610376575061ffff821615155b6103925760405162461bcd60e51b815260040161034890610d99565b6040518061012001604052808a61ffff1681526020018961ffff1681526020018863ffffffff1681526020018763ffffffff1681526020018661ffff1681526020018561ffff1681526020018463ffffffff1681526020018361ffff1681526020018261ffff16815250600360008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160086101000a81548163ffffffff021916908363ffffffff160217905550608082015181600001600c6101000a81548161ffff021916908361ffff16021790555060a082015181600001600e6101000a81548161ffff021916908361ffff16021790555060c08201518160000160106101000a81548163ffffffff021916908363ffffffff16021790555060e08201518160000160146101000a81548161ffff021916908361ffff1602179055506101008201518160000160166101000a81548161ffff021916908361ffff1602179055509050507f4035ab409f15e202f9f114632e1fb14a0552325955722be18503403e7f98730c89898989898989898960405161058899989796959493929190610def565b60405180910390a1505050505050505050565b6000546001600160a01b031633146105b257600080fd5b6002546001600160a01b03828116911614156105cd57600080fd5b6040516001600160a01b038216907fb9c265ae4414f501736ec5d4961edc3309e4385eb2ff3feeecb30fb36621dd8390600090a2600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031681565b6000546001600160a01b031681565b60035461ffff8082169162010000810482169163ffffffff600160201b8304811692600160401b8104821692600160601b8204811692600160701b8304821692600160801b810490911691600160a01b8204811691600160b01b90041689565b6000546001600160a01b031633146106b857600080fd5b6001546001600160a01b03828116911614156106d357600080fd5b6040516001600160a01b038216907f56b9e8342f530796ceed0d5529abdcdeae6e4f2ac1dc456ceb73bbda898e0cd390600090a2600180546001600160a01b0319166001600160a01b0392909216919091179055565b60046020908152600092835260408084209091529082529020546001600160a01b031681565b6000816001600160a01b0316836001600160a01b0316141561077057600080fd5b600080836001600160a01b0316856001600160a01b031610610793578385610796565b84845b90925090506001600160a01b0382166107ae57600080fd5b6001600160a01b038281166000908152600460209081526040808320858516845290915290205416156107e057600080fd5b60006107ec8383610a27565b6040516107f890610ac4565b6108029190610c80565b604051809103906000f08015801561081e573d6000803e3d6000fd5b50604051635253311160e01b81529091506001600160a01b0382169063525331119061085290600190600390600401610cd9565b600060405180830381600087803b15801561086c57600080fd5b505af1158015610880573d6000803e3d6000fd5b5050604051635253311160e01b81526001600160a01b0384169250635253311191506108b490600090600390600401610cd9565b600060405180830381600087803b1580156108ce57600080fd5b505af11580156108e2573d6000803e3d6000fd5b5050604051637ec15b9d60e11b81526001600160a01b037f0000000000000000000000005822a45b05d08028baa3d19626870076d26bc46016925063fd82b73a9150610938908490309088908890600401610cae565b602060405180830381600087803b15801561095257600080fd5b505af1158015610966573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098a9190610b1f565b6001600160a01b03808516600081815260046020818152604080842089871680865290835281852080549789166001600160a01b031998891681179091559383528185208686529092529283902080549095169091179093555192965090917f91ccaa7a278130b65168c3a0c8d3bcae84cf5e43704342bd3ec0b59e59c036db90610a16908890610c80565b60405180910390a350505092915050565b60007f0000000000000000000000005822a45b05d08028baa3d19626870076d26bc4608383604051602001610a5d929190610c94565b60408051601f19818403018152908290528051602091820120610aa5939290917f6c1bebd370ba84753516bc1393c0d0a6c645856da55f5393ac8ab3d6dbc861d39101610c4d565b60408051601f1981840301815291905280516020909101209392505050565b61285880610e6b83390190565b803561ffff81168114610ae357600080fd5b919050565b803563ffffffff81168114610ae357600080fd5b600060208284031215610b0d578081fd5b8135610b1881610e52565b9392505050565b600060208284031215610b30578081fd5b8151610b1881610e52565b60008060408385031215610b4d578081fd5b8235610b5881610e52565b91506020830135610b6881610e52565b809150509250929050565b60008060008060008060008060006101208a8c031215610b91578485fd5b610b9a8a610ad1565b9850610ba860208b01610ad1565b9750610bb660408b01610ae8565b9650610bc460608b01610ae8565b9550610bd260808b01610ad1565b9450610be060a08b01610ad1565b9350610bee60c08b01610ae8565b9250610bfc60e08b01610ad1565b9150610c0b6101008b01610ad1565b90509295985092959850929598565b600060208284031215610c2b578081fd5b813560ff81168114610b18578182fd5b61ffff169052565b63ffffffff169052565b6001600160f81b0319815260609390931b6001600160601b03191660018401526015830191909152603582015260550190565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b03948516815292841660208401529083166040830152909116606082015260800190565b8215158152815461014082019061ffff610cf860208501828416610c3b565b610d0a60408501828460101c16610c3b565b63ffffffff610d2160608601828560201c16610c43565b610d3360808601828560401c16610c43565b610d4560a08601838560601c16610c3b565b610d5760c08601838560701c16610c3b565b610d6960e08601828560801c16610c43565b50610d7d6101008501828460a01c16610c3b565b610d906101208501828460b01c16610c3b565b50509392505050565b602080825260129082015271047616d6d6173206d757374206265203e20360741b604082015260600190565b60208082526010908201526f13585e0819995948195e18d95959195960821b604082015260600190565b61ffff998a168152978916602089015263ffffffff96871660408901529486166060880152928716608087015290861660a086015290921660c084015290831660e08301529091166101008201526101200190565b60ff91909116815260200190565b6001600160a01b0381168114610e6757600080fd5b5056fe60c06040523480156200001157600080fd5b506040516200285838038062002858833981016040819052620000349162000051565b33606090811b60a0521b6001600160601b03191660805262000081565b60006020828403121562000063578081fd5b81516001600160a01b03811681146200007a578182fd5b9392505050565b60805160601c60a05160601c61278f620000c960003980610455528061047e52508061021252806102dd52806103fd52806107af528061097a52806109ed525061278f6000f3fe608060405234801561001057600080fd5b50600436106100a45760003560e01c806314c54079146100a95780631dd486f2146100d557806336e52fee146100f5578063461645bf14610115578063475fb80c1461012a578063525331111461013f57806374eceae614610152578063824e8e871461017857806390577ef614610195578063a80b96a11461019d578063bc2e0181146101be578063fd31e988146101df575b600080fd5b6100bc6100b7366004612148565b610202565b6040516100cc9493929190612412565b60405180910390f35b6100e86100e3366004611f5c565b6102d0565b6040516100cc91906124f8565b610108610103366004611f0e565b610333565b6040516100cc91906124e4565b61011d6103eb565b6040516100cc9190612571565b61013d6101383660046120bd565b6103f2565b005b61013d61014d366004611ec9565b61044a565b610165610160366004611fc4565b610664565b6040516100cc97969594939291906123b9565b6101806106dd565b6040516100cc9998979695949392919061251c565b61018061073f565b6101b06101ab3660046120f1565b6107a1565b6040516100cc929190612507565b6101d16101cc3660046120f1565b61096c565b6040516100cc9291906124cb565b6101f26101ed366004611fdc565b6109dd565b6040516100cc949392919061221c565b6000808080336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146102585760405162461bcd60e51b815260040161024f90612470565b60405180910390fd5b6000600187018161ffff821662010000811061027057fe5b600202015460ff1615610281578091505b6000610292818d8d8d8d888e610a4c565b60408101516060820151608083015160c090930151919f909e506001600160581b039092169c506001600160901b03169a5098505050505050505050565b6000336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461031a5760405162461bcd60e51b815260040161024f90612470565b6103296000878787878761101b565b9695505050505050565b60008061033f836112c9565b610348856112c9565b0290506000600160c01b821061038d576000866001600160801b031611610370576001610372565b855b6001600160801b03166000198161038557fe5b0490506103c0565b6000866001600160801b0316116103a55760016103a7565b855b6001600160801b0316604083901b816103bc57fe5b0490505b610c3560451b81106103db57610c3560451b925050506103e4565b91506103e49050565b9392505050565b6201518090565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461043a5760405162461bcd60e51b815260040161024f90612470565b61044660008383611419565b5050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061052257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156104d557600080fd5b505afa1580156104e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050d9190611ea2565b6001600160a01b0316336001600160a01b0316145b61052b57600080fd5b61ffff61054061012083016101008401611f40565b61ffff166105546040840160208501611f40565b61ffff166105656020850185611f40565b61ffff16010111156105895760405162461bcd60e51b815260040161024f906124a1565b61059960a0820160808301611f40565b61ffff16158015906105bd57506105b660c0820160a08301611f40565b61ffff1615155b80156105dc57506105d5610100820160e08301611f40565b61ffff1615155b6105f85760405162461bcd60e51b815260040161024f90612444565b811561061557806202000061060d82826125a2565b905050610627565b806202000161062482826125a2565b50505b7ffde738fae78aad21a8ad5935e1ff28b89cea38834539a91ae210ba7a22c067a582826040516106589291906122bf565b60405180910390a15050565b60008162010000811061067657600080fd5b600290810291909101805460019091015460ff82169350610100820463ffffffff1692600160281b830460060b92600160601b90046001600160a01b0316916001600160581b03811691600160581b8204900b90600160701b90046001600160901b031687565b620200005461ffff8082169162010000810482169163ffffffff600160201b8304811692600160401b8104821692600160601b8204811692600160701b8304821692600160801b810490911691600160a01b8204811691600160b01b90041689565b620200015461ffff8082169162010000810482169163ffffffff600160201b8304811692600160401b8104821692600160601b8204811692600160701b8304821692600160801b810490911691600160a01b8204811691600160b01b90041689565b600080336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146107ec5760405162461bcd60e51b815260040161024f90612470565b6000806107fc8189898989611478565b915091506108b2600f836001600160581b03168161081657fe5b6040805161012081018252620200005461ffff80821683526201000082048116602084015263ffffffff600160201b8304811694840194909452600160401b820484166060840152600160601b820481166080840152600160701b8204811660a0840152600160801b820490931660c0830152600160a01b8104831660e0830152600160b01b90049091166101008201529190049083906115f7565b935061095f600f6001600160581b0384166040805161012081018252620200015461ffff80821683526201000082048116602084015263ffffffff600160201b8304811694840194909452600160401b820484166060840152600160601b820481166080840152600160701b8204811660a0840152600160801b820490931660c0830152600160a01b8104831660e0830152600160b01b90049091166101008201529190049083906115f7565b9250505094509492505050565b600080336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109b75760405162461bcd60e51b815260040161024f90612470565b6109c5600087878787611478565b6001600160581b039091169250905094509492505050565b6060808080336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610a2a5760405162461bcd60e51b815260040161024f90612470565b610a3960008a8a8a8a8a611689565b929c919b50995090975095505050505050565b610a54611e22565b85870363ffffffff87161580610a915750610a91898661ffff16620100008110610a7a57fe5b6002020154610100900463ffffffff16828a6118bd565b15610c14576000898661ffff16620100008110610aaa57fe5b6040805160e081018252600292830293909301805460ff811615158552610100810463ffffffff90811660208701819052600160281b8304600690810b810b900b94870194909452600160601b9091046001600160a01b031660608601526001909101546001600160581b0381166080860152600160581b8104840b840b90930b60a0850152600160701b9092046001600160901b031660c084015291925083161415610b5a5791506110109050565b6000610b738b8b8a8a8a876020015188604001516118e6565b90508761ffff88811690881614610bf957610b8c611e22565b60008d60018b0361ffff16620100008110610ba357fe5b60020201805463ffffffff610100820481166020808701829052600160281b909304600690810b810b810b6040808901829052948b0151948b0151959650919093039091169203900b81610bf357fe5b05925050505b610c0983858b848a876000611a50565b945050505050611010565b610c29898561ffff16620100008110610a7a57fe5b610c60576040805162461bcd60e51b815260206004820152600360248201526213d31160ea1b604482015290519081900360640190fd5b600080610c708b8b858a8a611b54565b6040518060e00160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160059054906101000a900460060b60060b60060b815260200160008201600c9054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016001820160009054906101000a90046001600160581b03166001600160581b03166001600160581b0316815260200160018201600b9054906101000a900460020b60020b60020b815260200160018201600e9054906101000a90046001600160901b03166001600160901b03166001600160901b03168152505091506040518060e00160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160059054906101000a900460060b60060b60060b815260200160008201600c9054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016001820160009054906101000a90046001600160581b03166001600160581b03166001600160581b0316815260200160018201600b9054906101000a900460020b60020b60020b815260200160018201600e9054906101000a90046001600160901b03166001600160901b03166001600160901b0316815250509150806020015163ffffffff168363ffffffff161415610ebc579250611010915050565b816020015163ffffffff168363ffffffff161461100b5760008260200151826020015103905060008360200151850390508063ffffffff168263ffffffff16856040015185604001510360060b81610f1057fe5b0502846040018181510191509060060b908160060b815250508163ffffffff168163ffffffff1685606001518560600151036001600160a01b03160281610f5357fe5b0484606001818151019150906001600160a01b031690816001600160a01b0316815250508063ffffffff168263ffffffff1685608001518560800151036001600160581b031681610fa057fe5b040284608001818151019150906001600160581b031690816001600160581b0316815250508063ffffffff168263ffffffff168560c001518560c00151036001600160901b031681610fee57fe5b60c0870180516001600160901b0393909204939093020116905250505b509150505b979650505050505050565b600080878761ffff1662010000811061103057fe5b60020201805490915063ffffffff8781166101009092041614156110575786915050610329565b6040805160e081018252825460ff811615158252610100810463ffffffff166020830152600160281b8104600690810b810b900b92820192909252600160601b9091046001600160a01b031660608201526001808301546001600160581b0381166080840152600160581b8104600290810b810b900b60a0840152600160701b90046001600160901b031660c08301528801925060008961ffff85166201000081106110ff57fe5b600202015460ff161561110f5750825b60006111288b8a8a8d86886020015189604001516118e6565b90508761ffff8b8116908416146111995760008c60018d0361ffff1662010000811061115057fe5b6002020180546020870151604088015192935063ffffffff6101008304811693600160281b909304600690810b939285900390911691839003900b8161119257fe5b0593505050505b6111a8848b8b848c878d611a50565b8c8761ffff166201000081106111ba57fe5b825160029182029290920180546020850151604086015160608701516001600160a01b0316600160601b026001600160601b0360069290920b66ffffffffffffff16600160281b02600160281b600160601b031963ffffffff9094166101000264ffffffff001998151560ff1990961695909517979097169390931791909116949094179390931692909217825560808301516001909201805460a085015160c0909501516001600160901b0316600160701b026001600160701b039590930b62ffffff16600160581b0262ffffff60581b196001600160581b039095166001600160581b03199092169190911793909316929092179290921691909117905550505050509695505050505050565b600060ff82901d808318819003806112e45760009250611412565b806001600160801b82106112fd5760809190911c9060401b5b600160401b82106113135760409190911c9060201b5b600160201b82106113295760209190911c9060101b5b62010000821061133e5760109190911c9060081b5b61010082106113525760089190911c9060041b5b601082106113655760049190911c9060021b5b600882106113715760011b5b600181848161137c57fe5b048201901c9050600181848161138e57fe5b048201901c905060018184816113a057fe5b048201901c905060018184816113b257fe5b048201901c905060018184816113c457fe5b048201901c905060018184816113d657fe5b048201901c905060018184816113e857fe5b048201901c905060008184816113fa57fe5b04905080821061140a578061140c565b815b95505050505b5050919050565b825460ff161561142857600080fd5b825463ffffffff9290921661010002600160ff19909316831764ffffffff0019161783559101805462ffffff60581b1916600160581b62ffffff60029490940b9390931692909202919091179055565b6000808087600186018161ffff821662010000811061149357fe5b600202015460ff16156114bc57898161ffff166201000081106114b257fe5b6002020191508092505b60006114ce8b8b60008c8c898d610a4c565b8354909150610100900463ffffffff166114ef816201517f198d018d6118bd565b156115575760006115088d8d620151808e8e8b8f610a4c565b90506201518063ffffffff1681608001518460800151036001600160581b03168161152f57fe5b0460398260c001518560c00151036001600160901b0316901c975097505050505050506115ed565b8063ffffffff168b63ffffffff16146115e75760008460010160009054906101000a90046001600160581b03169050600085600101600e9054906101000a90046001600160901b03169050828d0363ffffffff16828560800151036001600160581b0316816115c257fe5b046039828660c00151036001600160901b0316901c98509850505050505050506115ed565b50505050505b9550959350505050565b600080611621856001600160581b03168460a001518560200151866060015163ffffffff16611c5b565b611648866001600160581b031685608001518660000151876040015163ffffffff16611c5b565b01905061ffff81111561165a575061ffff5b611674848460e00151838660c0015163ffffffff16611c5b565b83610100015161ffff16019150509392505050565b60608060608087516001600160401b03811180156116a657600080fd5b506040519080825280602002602001820160405280156116d0578160200160208202803683370190505b50935087516001600160401b03811180156116ea57600080fd5b50604051908082528060200260200182016040528015611714578160200160208202803683370190505b50925087516001600160401b038111801561172e57600080fd5b50604051908082528060200260200182016040528015611758578160200160208202803683370190505b50915087516001600160401b038111801561177257600080fd5b5060405190808252806020026020018201604052801561179c578160200160208202803683370190505b5090506000600187018b61ffff82166201000081106117b757fe5b600202015460ff16156117c8578091505b6117d0611e22565b60005b8b518110156118ac576117fe8e8e8e84815181106117ed57fe5b60200260200101518e8e898f610a4c565b91508160400151826060015183608001518460c00151816001600160581b03169150806001600160901b031690508b858151811061183857fe5b602002602001018b868151811061184b57fe5b602002602001018b878151811061185e57fe5b602002602001018b888151811061187157fe5b60209081029190910101939093526001600160701b039093169091526001600160a01b039092169052600691820b90910b90526001016117d3565b505050509650965096509692505050565b63ffffffff8082168482168110918416118114156103e457505063ffffffff9081169116111590565b600080888561ffff166201000081106118fb57fe5b6002020154610100900463ffffffff16905060008961ffff871662010000811061192157fe5b6002020154600160281b900460060b9050611943826201517f198b018b6118bd565b15611a095761195885620151808b038b6118bd565b156119c65760018703965060008a8861ffff1662010000811061197757fe5b60020201805490915060ff16611990578860020b6119bb565b805463ffffffff6101008204811688031690600160281b9004600690810b8703900b816119b957fe5b055b60060b935050611a04565b60006119db8b8b620151808c8c8c6000610a4c565b9050620151808a87030163ffffffff168160400151860360060b816119fc57fe5b0560060b9350505b611a43565b8163ffffffff168563ffffffff1614611a385781850363ffffffff1681850360060b81611a3257fe5b05611a3d565b8760020b5b60060b92505b5050979650505050505050565b611a58611e22565b60208801805160018a5263ffffffff89811690925260408a018051918a0392831660028a900b02909101600690810b900b90526001600160801b038516611aa0576001611aa2565b845b6001600160801b031663ffffffff60801b608083901b1681611ac057fe5b0489606001818151019150906001600160a01b031690816001600160a01b031681525050611b078163ffffffff168760020b8960020b8c60a0015160020b8860020b611d05565b60808a018051919091016001600160581b031690525050600291820b90910b60a087015260c0860180516001600160801b03929092169091016001600160901b0316905250929392505050565b60008061ffff8084169082908616821115611b7857620100008661ffff1601611b7e565b8561ffff165b905081810160011c5b898161ffff16620100008110611b9957fe5b60020201805490955060ff811690610100900463ffffffff168115611c4657611bc3818b8d6118bd565b15611c3a578b8360010161ffff16620100008110611bdd57fe5b60020201805490965060ff811690610100900463ffffffff168115611c2357611c078c828f6118bd565b15611c1857505050505050506115ed565b846001019650611c33565b508796506115ed95505050505050565b5050611c41565b6001830393505b611c4d565b8260010194505b50505081810160011c611b87565b600081851115611cb55781850394508361ffff166006028510611c83575061ffff8216611cfd565b600861ffff85160a6000611c98878784611d5a565b9050808201818661ffff160281611cab57fe5b0492505050611cfd565b93810393600661ffff8516028510611ccf57506000611cfd565b600861ffff85160a6000611ce4878784611d5a565b8201905080828661ffff160281611cf757fe5b04925050505b949350505050565b6000828203858503038386038702600180890189026002808b02929092018102916006818c0a81029180870a8502868802850283020190860a8d029091020181611d4b57fe5b059a9950505050505050505050565b808361ffff84168281611d6957fe5b049250828102820191508361ffff168381611d8057fe5b0492508402600281840204820191508361ffff168381611d9c57fe5b0492508402600681840204820191508361ffff168381611db857fe5b0492508402601881840204820191508361ffff168381611dd457fe5b0492508402607881840204820191508361ffff168381611df057fe5b04925084026102d08184020491909101908402619d80818602046113b061ffff86168302040182019150509392505050565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915290565b8035600281900b8114611e7057600080fd5b919050565b80356001600160801b0381168114611e7057600080fd5b8035611e708161275d565b8035611e7081612770565b600060208284031215611eb3578081fd5b81516001600160a01b03811681146103e4578182fd5b600080828403610140811215611edd578182fd5b83358015158114611eec578283fd5b9250610120601f1982011215611f00578182fd5b506020830190509250929050565b600080600060608486031215611f22578081fd5b611f2b84611e75565b95602085013595506040909401359392505050565b600060208284031215611f51578081fd5b81356103e48161275d565b600080600080600060a08688031215611f73578081fd5b8535611f7e8161275d565b94506020860135611f8e81612770565b9350611f9c60408701611e5e565b9250611faa60608701611e75565b9150611fb860808701611e75565b90509295509295909350565b600060208284031215611fd5578081fd5b5035919050565b600080600080600060a08688031215611ff3578081fd5b8535611ffe81612770565b94506020868101356001600160401b038082111561201a578384fd5b818901915089601f83011261202d578384fd5b81358181111561203957fe5b8381026040518582820101818110858211171561205257fe5b604052828152858101935084860182860187018e1015612070578788fd5b8795505b838610156120995761208581611e97565b855260019590950194938601938601612074565b508099505050505050506120af60408701611e5e565b9250611faa60608701611e8c565b600080604083850312156120cf578182fd5b82356120da81612770565b91506120e860208401611e5e565b90509250929050565b60008060008060808587031215612106578384fd5b843561211181612770565b935061211f60208601611e5e565b9250604085013561212f8161275d565b915061213d60608601611e75565b905092959194509250565b600080600080600060a0868803121561215f578081fd5b853561216a81612770565b9450602086013561217a81612770565b935061218860408701611e5e565b92506060860135611faa8161275d565b6000815180845260208085019450808401835b838110156121d05781516001600160701b0316875295820195908201906001016121ab565b509495945050505050565b6000815180845260208085019450808401835b838110156121d0578151875295820195908201906001016121ee565b61ffff169052565b63ffffffff169052565b6080808252855190820181905260009060209060a0840190828901845b8281101561225857815160060b84529284019290840190600101612239565b50505083810382850152865180825287830191830190845b818110156122955783516001600160a01b031683529284019291840191600101612270565b505084810360408601526122a98188612198565b92505050828103606084015261101081856121db565b821515815261014081016122de602083016122d985611e8c565b61220a565b6122ea60208401611e8c565b6122f7604084018261220a565b5061230460408401611e97565b6123116060840182612212565b5061231e60608401611e97565b61232b6080840182612212565b5061233860808401611e8c565b61234560a084018261220a565b5061235260a08401611e8c565b61235f60c084018261220a565b5061236c60c08401611e97565b61237960e0840182612212565b5061238660e08401611e8c565b6101006123958185018361220a565b6123a0818601611e8c565b9150506123b161012084018261220a565b509392505050565b961515875263ffffffff95909516602087015260069390930b60408601526001600160a01b039190911660608501526001600160581b0316608084015260020b60a08301526001600160901b031660c082015260e00190565b60069490940b84526001600160a01b039290921660208401526001600160701b03166040830152606082015260800190565b602080825260129082015271047616d6d6173206d757374206265203e20360741b604082015260600190565b6020808252601790820152766f6e6c7920706f6f6c2063616e2063616c6c207468697360481b604082015260600190565b60208082526010908201526f13585e0819995948195e18d95959195960821b604082015260600190565b6001600160701b03929092168252602082015260400190565b6001600160801b0391909116815260200190565b61ffff91909116815260200190565b61ffff92831681529116602082015260400190565b61ffff998a168152978916602089015263ffffffff96871660408901529486166060880152928716608087015290861660a086015290921660c084015290831660e08301529091166101008201526101200190565b63ffffffff91909116815260200190565b6000813561258f8161275d565b92915050565b6000813561258f81612770565b81356125ad8161275d565b815461ffff191661ffff919091161780825560208301356125cd8161275d565b63ffff00008160101b1663ffff000019831617835550506125f96125f360408401612595565b82612717565b61260e61260860608401612595565b8261273a565b61262361261d60808401612582565b82612678565b61263861263260a08401612582565b82612697565b61264d61264760c08401612595565b826126b6565b61266261265c60e08401612582565b826126d9565b6104466126726101008401612582565b826126f8565b805461ffff60601b191660609290921b61ffff60601b16919091179055565b805461ffff60701b191660709290921b61ffff60701b16919091179055565b805463ffffffff60801b191660809290921b63ffffffff60801b16919091179055565b805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b805463ffffffff60201b191660209290921b63ffffffff60201b16919091179055565b805463ffffffff60401b191660409290921b63ffffffff60401b16919091179055565b61ffff8116811461276d57600080fd5b50565b63ffffffff8116811461276d57600080fdfea164736f6c6343000706000aa164736f6c6343000706000a