Overview
TokenID
2770
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
NonfungiblePositionManager
Compiler Version
v0.7.6+commit.7338295f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import "contracts/core/interfaces/ICLPool.sol";import "contracts/core/libraries/FixedPoint128.sol";import "contracts/core/libraries/FullMath.sol";import "./interfaces/INonfungiblePositionManager.sol";import "./interfaces/INonfungibleTokenPositionDescriptor.sol";import "./libraries/PositionKey.sol";import "./libraries/PoolAddress.sol";import "./base/LiquidityManagement.sol";import "./base/PeripheryImmutableState.sol";import "./base/Multicall.sol";import "./base/ERC721Permit.sol";import "./base/PeripheryValidation.sol";import "./base/SelfPermit.sol";/// @title NFT positions/// @notice Wraps CL positions in the ERC721 non-fungible token interfacecontract NonfungiblePositionManager isINonfungiblePositionManager,Multicall,ERC721Permit,PeripheryImmutableState,
1234567891011121314// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Callback for ICLPoolActions#mint/// @notice Any contract that calls ICLPoolActions#mint must implement this interfaceinterface ICLMintCallback {/// @notice Called to `msg.sender` after minting liquidity to a position from ICLPool#mint./// @dev In the implementation you must pay the pool tokens owed for the minted liquidity./// The caller of this method must be checked to be a CLPool deployed by the canonical CLFactory./// @param amount0Owed The amount of token0 due to the pool for the minted liquidity/// @param amount1Owed The amount of token1 due to the pool for the minted liquidity/// @param data Any data passed through by the caller via the ICLPoolActions#mint callfunction uniswapV3MintCallback(uint256 amount0Owed, uint256 amount1Owed, bytes calldata data) external;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;import {IVoter} from "contracts/core/interfaces/IVoter.sol";import {IFactoryRegistry} from "contracts/core/interfaces/IFactoryRegistry.sol";/// @title The interface for the CL Factory/// @notice The CL Factory facilitates creation of CL pools and control over the protocol feesinterface ICLFactory {/// @notice Emitted when the owner of the factory is changed/// @param oldOwner The owner before the owner was changed/// @param newOwner The owner after the owner was changedevent OwnerChanged(address indexed oldOwner, address indexed newOwner);event VoterChanged(address indexed oldVoter, address indexed newVoter);/// @notice Emitted when the swapFeeManager of the factory is changed/// @param oldFeeManager The swapFeeManager before the swapFeeManager was changed/// @param newFeeManager The swapFeeManager after the swapFeeManager was changedevent SwapFeeManagerChanged(address indexed oldFeeManager, address indexed newFeeManager);/// @notice Emitted when the swapFeeModule of the factory is changed/// @param oldFeeModule The swapFeeModule before the swapFeeModule was changed/// @param newFeeModule The swapFeeModule after the swapFeeModule was changedevent SwapFeeModuleChanged(address indexed oldFeeModule, address indexed newFeeModule);
12345678910111213141516171819202122// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;import "./pool/ICLPoolConstants.sol";import "./pool/ICLPoolState.sol";import "./pool/ICLPoolDerivedState.sol";import "./pool/ICLPoolActions.sol";import "./pool/ICLPoolOwnerActions.sol";import "./pool/ICLPoolEvents.sol";/// @title The interface for a CL Pool/// @notice A CL pool facilitates swapping and automated market making between any two assets that strictly conform/// to the ERC20 specification/// @dev The pool interface is broken up into many smaller piecesinterface ICLPool isICLPoolConstants,ICLPoolState,ICLPoolDerivedState,ICLPoolActions,ICLPoolEvents,ICLPoolOwnerActions{}
123456789101112// SPDX-License-Identifier: MITpragma solidity =0.7.6;interface IFactoryRegistry {function approve(address poolFactory, address votingRewardsFactory, address gaugeFactory) external;function isPoolFactoryApproved(address poolFactory) external returns (bool);function factoriesToPoolFactory(address poolFactory)externalreturns (address votingRewardsFactory, address gaugeFactory);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity =0.7.6;pragma abicoder v2;import {IVotingEscrow} from "contracts/core/interfaces/IVotingEscrow.sol";import {IFactoryRegistry} from "contracts/core/interfaces/IFactoryRegistry.sol";interface IVoter {function ve() external view returns (IVotingEscrow);function vote(uint256 _tokenId, address[] calldata _poolVote, uint256[] calldata _weights) external;function gauges(address _pool) external view returns (address);function gaugeToFees(address _gauge) external view returns (address);function gaugeToBribes(address _gauge) external view returns (address);function createGauge(address _poolFactory, address _pool) external returns (address);function distribute(address gauge) external;function factoryRegistry() external view returns (IFactoryRegistry);/// @dev Utility to distribute to gauges of pools in array./// @param _gauges Array of gauges to distribute to.
123456789101112// SPDX-License-Identifier: MITpragma solidity =0.7.6;interface IVotingEscrow {function team() external returns (address);/// @notice Deposit `_value` tokens for `msg.sender` and lock for `_lockDuration`/// @param _value Amount to deposit/// @param _lockDuration Number of seconds to lock tokens for (rounded down to nearest week)/// @return TokenId of created veNFTfunction createLock(uint256 _value, uint256 _lockDuration) external returns (uint256);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Permissionless pool actions/// @notice Contains pool methods that can be called by anyoneinterface ICLPoolActions {/// @notice Initialize function used in proxy deployment/// @dev Can be called once only/// Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value/// @dev not locked because it initializes unlocked/// @param _factory The CL factory contract address/// @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 _tickSpacing The pool tick spacing/// @param _sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96function initialize(address _factory,address _token0,address _token1,int24 _tickSpacing,uint160 _sqrtPriceX96) external;/// @notice Initialize gauge and nft manager/// @dev Callable only once, by the gauge factory/// @param _gauge The gauge corresponding to this pool
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Pool state that never changes/// @notice These parameters are not defined as immutable (due to proxy pattern) but are effectively immutable./// @notice i.e., the methods will always return the same valuesinterface ICLPoolConstants {/// @notice The contract that deployed the pool, which must adhere to the ICLFactory interface/// @return The contract addressfunction factory() external view returns (address);/// @notice The first of the two tokens of the pool, sorted by address/// @return The token contract addressfunction token0() external view returns (address);/// @notice The second of the two tokens of the pool, sorted by address/// @return The token contract addressfunction token1() external view returns (address);/// @notice The gauge corresponding to this pool/// @return The gauge contract addressfunction gauge() external view returns (address);/// @notice The nft manager/// @return The nft manager contract addressfunction nft() external view returns (address);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Pool state that is not stored/// @notice Contains view functions to provide information about the pool that is computed rather than stored on the/// blockchain. The functions here may have variable gas costs.interface ICLPoolDerivedState {/// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp/// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing/// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick,/// you must call it with secondsAgos = [3600, 0]./// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in/// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio./// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned/// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp/// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block/// timestampfunction observe(uint32[] calldata secondsAgos)externalviewreturns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s);/// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range/// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed./// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first/// snapshot is taken and the second snapshot is taken.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Events emitted by a pool/// @notice Contains all events emitted by the poolinterface ICLPoolEvents {/// @notice Emitted exactly once by a pool when #initialize is first called on the pool/// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize/// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96/// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the poolevent Initialize(uint160 sqrtPriceX96, int24 tick);/// @notice Emitted when liquidity is minted for a given position/// @param sender The address that minted the liquidity/// @param owner The owner of the position and recipient of any minted liquidity/// @param tickLower The lower tick of the position/// @param tickUpper The upper tick of the position/// @param amount The amount of liquidity minted to the position range/// @param amount0 How much token0 was required for the minted liquidity/// @param amount1 How much token1 was required for the minted liquidityevent Mint(address sender,address indexed owner,int24 indexed tickLower,int24 indexed tickUpper,uint128 amount,
1234567891011// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Permissioned pool actions/// @notice Contains pool methods that may only be called by the factory ownerinterface ICLPoolOwnerActions {/// @notice Collect the gauge fee accrued to the pool/// @return amount0 The gauge fee collected in token0/// @return amount1 The gauge fee collected in token1function collectFees() external returns (uint128 amount0, uint128 amount1);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Pool state that can change/// @notice These methods compose the pool's state, and can change with any frequency including multiple times/// per transactioninterface ICLPoolState {/// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas/// when accessed externally./// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value/// tick The current tick of the pool, i.e. according to the last tick transition that was run./// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick/// boundary./// observationIndex The index of the last oracle observation that was written,/// observationCardinality The current maximum number of observations stored in the pool,/// observationCardinalityNext The next maximum number of observations, to be updated when the observation./// unlocked Whether the pool is currently locked to reentrancyfunction slot0()externalviewreturns (uint160 sqrtPriceX96,int24 tick,uint16 observationIndex,uint16 observationCardinality,uint16 observationCardinalityNext,
12345678// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.4.0;/// @title FixedPoint128/// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format)library FixedPoint128 {uint256 internal constant Q128 = 0x100000000000000000000000000000000;}
12345678910// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.4.0;/// @title FixedPoint96/// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format)/// @dev Used in SqrtPriceMath.sollibrary FixedPoint96 {uint8 internal constant RESOLUTION = 96;uint256 internal constant Q96 = 0x1000000000000000000000000;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.4.0 <0.8.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; // Least significant 256 bits of the productuint256 prod1; // Most significant 256 bits of the productassembly {let mm := mulmod(a, b, not(0))prod0 := mul(a, b)prod1 := sub(sub(mm, prod0), lt(mm, prod0))}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0 <0.8.0;/// @title Math library for computing sqrt prices from ticks and vice versa/// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports/// prices between 2**-128 and 2**128library TickMath {/// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128int24 internal constant MIN_TICK = -887272;/// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128int24 internal constant MAX_TICK = -MIN_TICK;/// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK)uint160 internal constant MIN_SQRT_RATIO = 4295128739;/// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK)uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342;/// @notice Calculates sqrt(1.0001^tick) * 2^96/// @dev Throws if |tick| > max tick/// @param tick The input tick for the above formula/// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the ratio of the two assets (token1/token0)/// at the given tickfunction getSqrtRatioAtTick(int24 tick) internal pure returns (uint160 sqrtPriceX96) {uint256 absTick = tick < 0 ? uint256(-int256(tick)) : uint256(int256(tick));require(absTick <= uint256(MAX_TICK), "T");
123456789101112// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;/// @title Function for getting block timestamp/// @dev Base contract that is overridden for testsabstract contract BlockTimestamp {/// @dev Method that exists purely to be overridden for tests/// @return The current block timestampfunction _blockTimestamp() internal view virtual returns (uint256) {return block.timestamp;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;import "@openzeppelin/contracts/token/ERC721/ERC721.sol";import "@openzeppelin/contracts/utils/Address.sol";import "../libraries/ChainId.sol";import "../interfaces/external/IERC1271.sol";import "../interfaces/IERC721Permit.sol";import "./BlockTimestamp.sol";/// @title ERC721 with permit/// @notice Nonfungible tokens that support an approve via signature, i.e. permitabstract contract ERC721Permit is BlockTimestamp, ERC721, IERC721Permit {/// @dev Gets the current nonce for a token ID and then increments it, returning the original valuefunction _getAndIncrementNonce(uint256 tokenId) internal virtual returns (uint256);/// @dev The hash of the name used in the permit signature verificationbytes32 private immutable nameHash;/// @dev The hash of the version string used in the permit signature verificationbytes32 private immutable versionHash;/// @notice Computes the nameHash and versionHashconstructor(string memory name_, string memory symbol_, string memory version_) ERC721(name_, symbol_) {nameHash = keccak256(bytes(name_));
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import "contracts/core/interfaces/ICLFactory.sol";import "contracts/core/interfaces/callback/ICLMintCallback.sol";import "contracts/core/libraries/TickMath.sol";import "../libraries/PoolAddress.sol";import "../libraries/CallbackValidation.sol";import "../libraries/LiquidityAmounts.sol";import "./PeripheryPayments.sol";import "./PeripheryImmutableState.sol";/// @title Liquidity management functions/// @notice Internal functions for safely managing liquidity in CLabstract contract LiquidityManagement is ICLMintCallback, PeripheryImmutableState, PeripheryPayments {struct MintCallbackData {PoolAddress.PoolKey poolKey;address payer;}/// @inheritdoc ICLMintCallbackfunction uniswapV3MintCallback(uint256 amount0Owed, uint256 amount1Owed, bytes calldata data) external override {MintCallbackData memory decoded = abi.decode(data, (MintCallbackData));
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import "../interfaces/IMulticall.sol";/// @title Multicall/// @notice Enables calling multiple methods in a single call to the contractabstract contract Multicall is IMulticall {/// @inheritdoc IMulticallfunction multicall(bytes[] calldata data) public payable override returns (bytes[] memory results) {results = new bytes[](data.length);for (uint256 i = 0; i < data.length; i++) {(bool success, bytes memory result) = address(this).delegatecall(data[i]);if (!success) {// Next 5 lines from https://ethereum.stackexchange.com/a/83577if (result.length < 68) revert();assembly {result := add(result, 0x04)}revert(abi.decode(result, (string)));}results[i] = result;}
123456789101112131415161718// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;import "../interfaces/IPeripheryImmutableState.sol";/// @title Immutable state/// @notice Immutable state used by periphery contractsabstract contract PeripheryImmutableState is IPeripheryImmutableState {/// @inheritdoc IPeripheryImmutableStateaddress public immutable override factory;/// @inheritdoc IPeripheryImmutableStateaddress public immutable override WETH9;constructor(address _factory, address _WETH9) {factory = _factory;WETH9 = _WETH9;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "../interfaces/IPeripheryPayments.sol";import "../interfaces/external/IWETH9.sol";import "../libraries/TransferHelper.sol";import "./PeripheryImmutableState.sol";import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";abstract contract PeripheryPayments is IPeripheryPayments, PeripheryImmutableState, ReentrancyGuard {receive() external payable {require(msg.sender == WETH9, "NW9");}/// @inheritdoc IPeripheryPaymentsfunction unwrapWETH9(uint256 amountMinimum, address recipient) public payable override nonReentrant {uint256 balanceWETH9 = IWETH9(WETH9).balanceOf(address(this));require(balanceWETH9 >= amountMinimum, "IW"); // insufficient wethif (balanceWETH9 > 0) {IWETH9(WETH9).withdraw(balanceWETH9);
1234567891011// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;import "./BlockTimestamp.sol";abstract contract PeripheryValidation is BlockTimestamp {modifier checkDeadline(uint256 deadline) {require(_blockTimestamp() <= deadline);_;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/drafts/IERC20Permit.sol";import "../interfaces/ISelfPermit.sol";import "../interfaces/external/IERC20PermitAllowed.sol";/// @title Self Permit/// @notice Functionality to call permit on any EIP-2612-compliant token for use in the route/// @dev These functions are expected to be embedded in multicalls to allow EOAs to approve a contract and call a function/// that requires an approval in a single transaction.abstract contract SelfPermit is ISelfPermit {/// @inheritdoc ISelfPermitfunction selfPermit(address token, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s)publicpayableoverride{IERC20Permit(token).permit(msg.sender, address(this), value, deadline, v, r, s);}/// @inheritdoc ISelfPermitfunction selfPermitIfNecessary(address token, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s)external
12345678910111213141516// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Interface for verifying contract-based account signatures/// @notice Interface that verifies provided signature for the data/// @dev Interface defined by EIP-1271interface IERC1271 {/// @notice Returns whether the provided signature is valid for the provided data/// @dev MUST return the bytes4 magic value 0x1626ba7e when function passes./// MUST NOT modify state (using STATICCALL for solc < 0.5, view modifier for solc > 0.5)./// MUST allow external calls./// @param hash Hash of the data to be signed/// @param signature Signature byte array associated with _data/// @return magicValue The bytes4 magic value 0x1626ba7efunction isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Interface for permit/// @notice Interface used by DAI/CHAI for permitinterface IERC20PermitAllowed {/// @notice Approve the spender to spend some tokens via the holder signature/// @dev This is the permit interface used by DAI and CHAI/// @param holder The address of the token holder, the token owner/// @param spender The address of the token spender/// @param nonce The holder's nonce, increases at each call to permit/// @param expiry The timestamp at which the permit is no longer valid/// @param allowed Boolean that sets approval amount, true for type(uint256).max and false for 0/// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`/// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`/// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`function permit(address holder,address spender,uint256 nonce,uint256 expiry,bool allowed,uint8 v,bytes32 r,bytes32 s) external;
12345678910111213// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;import "@openzeppelin/contracts/token/ERC20/IERC20.sol";/// @title Interface for WETH9interface IWETH9 is IERC20 {/// @notice Deposit ether to get wrapped etherfunction deposit() external payable;/// @notice Withdraw wrapped ether to get etherfunction withdraw(uint256) external;}
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity >=0.7.5;/// @title EIP-721 Metadata Update Extensioninterface IERC4906 {/// @dev This event emits when the metadata of a token is changed./// So that the third-party platforms such as NFT market could/// timely update the images and related attributes of the NFT.event MetadataUpdate(uint256 _tokenId);/// @dev This event emits when the metadata of a range of tokens is changed./// So that the third-party platforms such as NFT market could/// timely update the images and related attributes of the NFTs.event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;import "@openzeppelin/contracts/token/ERC721/IERC721.sol";/// @title ERC721 with permit/// @notice Extension to ERC721 that includes a permit function for signature based approvalsinterface IERC721Permit is IERC721 {/// @notice The permit typehash used in the permit signature/// @return The typehash for the permitfunction PERMIT_TYPEHASH() external pure returns (bytes32);/// @notice The domain separator used in the permit signature/// @return The domain seperator used in encoding of permit signaturefunction DOMAIN_SEPARATOR() external view returns (bytes32);/// @notice Approve of a specific token ID for spending by spender via signature/// @param spender The account that is being approved/// @param tokenId The ID of the token that is being approved for spending/// @param deadline The deadline timestamp by which the call must be mined for the approve to work/// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`/// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`/// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`function permit(address spender, uint256 tokenId, uint256 deadline, uint8 v, bytes32 r, bytes32 s)externalpayable;
12345678910111213// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;/// @title Multicall interface/// @notice Enables calling multiple methods in a single call to the contractinterface IMulticall {/// @notice Call multiple functions in the current contract and return the data from all of them if they all succeed/// @dev The `msg.value` should not be trusted for any method callable from multicall./// @param data The encoded function data for each of the calls to make to this contract/// @return results The results from each of the calls passed in via datafunction multicall(bytes[] calldata data) external payable returns (bytes[] memory results);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;import "@openzeppelin/contracts/token/ERC721/IERC721Metadata.sol";import "@openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol";import "./IERC721Permit.sol";import "./IERC4906.sol";import "./IPeripheryPayments.sol";import "./IPeripheryImmutableState.sol";import "../libraries/PoolAddress.sol";/// @title Non-fungible token for positions/// @notice Wraps CL positions in a non-fungible token interface which allows for them to be transferred/// and authorized.interface INonfungiblePositionManager isIPeripheryPayments,IPeripheryImmutableState,IERC721Metadata,IERC721Enumerable,IERC721Permit,IERC4906{/// @notice Emitted when liquidity is increased for a position NFT/// @dev Also emitted when a token is minted
1234567891011121314151617// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;import "./INonfungiblePositionManager.sol";/// @title Describes position NFT tokens via URIinterface INonfungibleTokenPositionDescriptor {/// @notice Produces the URI describing a particular token ID for a position manager/// @dev Note this URI may be a data: URI with the JSON contents directly inlined/// @param positionManager The position manager for which to describe the token/// @param tokenId The ID of the token for which to produce a description, which may not be valid/// @return The URI of the ERC721-compliant metadatafunction tokenURI(INonfungiblePositionManager positionManager, uint256 tokenId)externalviewreturns (string memory);}
123456789101112// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Immutable state/// @notice Functions that return immutable state of the routerinterface IPeripheryImmutableState {/// @return Returns the address of the CL factoryfunction factory() external view returns (address);/// @return Returns the address of WETH9function WETH9() external view returns (address);}
123456789101112131415161718192021222324// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;/// @title Periphery Payments/// @notice Functions to ease deposits and withdrawals of ETHinterface IPeripheryPayments {/// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH./// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users./// @param amountMinimum The minimum amount of WETH9 to unwrap/// @param recipient The address receiving ETHfunction unwrapWETH9(uint256 amountMinimum, address recipient) external payable;/// @notice Refunds any ETH balance held by this contract to the `msg.sender`/// @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps/// that use ether for the input amountfunction refundETH() external payable;/// @notice Transfers the full amount of a token held by this contract to recipient/// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users/// @param token The contract address of the token which will be transferred to `recipient`/// @param amountMinimum The minimum amount of token required for a transfer/// @param recipient The destination address of the tokenfunction sweepToken(address token, uint256 amountMinimum, address recipient) external payable;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;/// @title Self Permit/// @notice Functionality to call permit on any EIP-2612-compliant token for use in the routeinterface ISelfPermit {/// @notice Permits this contract to spend a given token from `msg.sender`/// @dev The `owner` is always msg.sender and the `spender` is always address(this)./// @param token The address of the token spent/// @param value The amount that can be spent of token/// @param deadline A timestamp, the current blocktime must be less than or equal to this timestamp/// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`/// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`/// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`function selfPermit(address token, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s)externalpayable;/// @notice Permits this contract to spend a given token from `msg.sender`/// @dev The `owner` is always msg.sender and the `spender` is always address(this)./// Can be used instead of #selfPermit to prevent calls from failing due to a frontrun of a call to #selfPermit/// @param token The address of the token spent/// @param value The amount that can be spent of token/// @param deadline A timestamp, the current blocktime must be less than or equal to this timestamp/// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`/// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;import "contracts/core/interfaces/ICLPool.sol";import "./PoolAddress.sol";/// @notice Provides validation for callbacks from CL Poolslibrary CallbackValidation {/// @notice Returns the address of a valid CL Pool/// @param factory The contract address of the CL factory/// @param tokenA The contract address of either token0 or token1/// @param tokenB The contract address of the other token/// @param tickSpacing The tick spacing for the pool/// @return pool The V3 pool contract addressfunction verifyCallback(address factory, address tokenA, address tokenB, int24 tickSpacing)internalviewreturns (ICLPool pool){return verifyCallback(factory, PoolAddress.getPoolKey(tokenA, tokenB, tickSpacing));}/// @notice Returns the address of a valid CL Pool/// @param factory The contract address of the CL factory/// @param poolKey The identifying key of the V3 pool/// @return pool The V3 pool contract address
12345678910111213// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.0;/// @title Function for getting the current chain IDlibrary ChainId {/// @dev Gets the current chain ID/// @return chainId The current chain IDfunction get() internal pure returns (uint256 chainId) {assembly {chainId := chainid()}}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;import "contracts/core/libraries/FullMath.sol";import "contracts/core/libraries/FixedPoint96.sol";/// @title Liquidity amount functions/// @notice Provides functions for computing liquidity amounts from token amounts and priceslibrary LiquidityAmounts {/// @notice Downcasts uint256 to uint128/// @param x The uint258 to be downcasted/// @return y The passed value, downcasted to uint128function toUint128(uint256 x) private pure returns (uint128 y) {require((y = uint128(x)) == x);}/// @notice Computes the amount of liquidity received for a given amount of token0 and price range/// @dev Calculates amount0 * (sqrt(upper) * sqrt(lower)) / (sqrt(upper) - sqrt(lower))/// @param sqrtRatioAX96 A sqrt price representing the first tick boundary/// @param sqrtRatioBX96 A sqrt price representing the second tick boundary/// @param amount0 The amount0 being sent in/// @return liquidity The amount of returned liquidityfunction getLiquidityForAmount0(uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint256 amount0)internalpurereturns (uint128 liquidity)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;import "contracts/core/interfaces/ICLFactory.sol";import "@openzeppelin/contracts/proxy/Clones.sol";/// @title Provides functions for deriving a pool address from the factory, tokens, and the feelibrary PoolAddress {/// @notice The identifying key of the poolstruct PoolKey {address token0;address token1;int24 tickSpacing;}/// @notice Returns PoolKey: the ordered tokens with the matched fee levels/// @param tokenA The first token of a pool, unsorted/// @param tokenB The second token of a pool, unsorted/// @param tickSpacing The tick spacing of the pool/// @return Poolkey The pool details with ordered token0 and token1 assignmentsfunction getPoolKey(address tokenA, address tokenB, int24 tickSpacing) internal pure returns (PoolKey memory) {if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA);return PoolKey({token0: tokenA, token1: tokenB, tickSpacing: tickSpacing});}/// @notice Deterministically computes the pool address given the factory and PoolKey
123456789// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;library PositionKey {/// @dev Returns the key of the position in the core libraryfunction compute(address owner, int24 tickLower, int24 tickUpper) internal pure returns (bytes32) {return keccak256(abi.encodePacked(owner, tickLower, tickUpper));}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.6.0;import "@openzeppelin/contracts/token/ERC20/IERC20.sol";library TransferHelper {/// @notice Transfers tokens from the targeted address to the given destination/// @notice Errors with 'STF' if transfer fails/// @param token The contract address of the token to be transferred/// @param from The originating address from which the tokens will be transferred/// @param to The destination address of the transfer/// @param value The amount to be transferredfunction safeTransferFrom(address token, address from, address to, uint256 value) internal {(bool success, bytes memory data) =token.call(abi.encodeWithSelector(IERC20.transferFrom.selector, from, to, value));require(success && (data.length == 0 || abi.decode(data, (bool))), "STF");}/// @notice Transfers tokens from msg.sender to a recipient/// @dev Errors with ST if transfer fails/// @param token The contract address of the token which will be transferred/// @param to The recipient of the transfer/// @param value The value of the transferfunction safeTransfer(address token, address to, uint256 value) internal {(bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.transfer.selector, to, value));require(success && (data.length == 0 || abi.decode(data, (bool))), "ST");
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;/*** @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.*/interface IERC20Permit {/*** @dev Sets `value` as the allowance of `spender` over `owner`'s tokens,* given `owner`'s signed approval.** IMPORTANT: The same issues {IERC20-approve} has related to transaction* ordering also apply here.** Emits an {Approval} event.** Requirements:** - `spender` cannot be the zero address.* - `deadline` must be a timestamp in the future.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;import "./IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts may inherit from this and call {_registerInterface} to declare* their support of an interface.*/abstract contract ERC165 is IERC165 {/** bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7*/bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;/*** @dev Mapping of interface ids to whether or not it's supported.*/mapping(bytes4 => bool) private _supportedInterfaces;constructor () {// Derived contracts need only register support for their own interfaces,// we register support for ERC165 itself here
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma solidity ^0.7.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;/*** @dev Wrappers over Solidity's arithmetic operations with added overflow* checks.** Arithmetic operations in Solidity wrap on overflow. This can easily result* in bugs, because programmers usually assume that an overflow raises an* error, which is the standard behavior in high level programming languages.* `SafeMath` restores this intuition by reverting the transaction when an* operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeMath {/*** @dev Returns the addition of two unsigned integers, with an overflow flag.** _Available since v3.4._*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {uint256 c = a + b;if (c < a) return (false, 0);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;/*** @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for* deploying minimal proxy contracts, also known as "clones".** > To simply and cheaply clone contract functionality in an immutable way, this standard specifies* > a minimal bytecode implementation that delegates all calls to a known, fixed address.** The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2`* (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the* deterministic method.** _Available since v3.4._*/library Clones {/*** @dev Deploys and returns the address of a clone that mimics the behaviour of `master`.** This function uses the create opcode, which should never revert.*/function clone(address master) internal returns (address instance) {// solhint-disable-next-line no-inline-assemblyassembly {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);/*** @dev Returns the amount of tokens owned by `account`.*/function balanceOf(address account) external view returns (uint256);/*** @dev Moves `amount` tokens from the caller's account to `recipient`.** Returns a boolean value indicating whether the operation succeeded.** Emits a {Transfer} event.*/function transfer(address recipient, uint256 amount) external returns (bool);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;import "../../utils/Context.sol";import "./IERC721.sol";import "./IERC721Metadata.sol";import "./IERC721Enumerable.sol";import "./IERC721Receiver.sol";import "../../introspection/ERC165.sol";import "../../math/SafeMath.sol";import "../../utils/Address.sol";import "../../utils/EnumerableSet.sol";import "../../utils/EnumerableMap.sol";import "../../utils/Strings.sol";/*** @title ERC721 Non-Fungible Token Standard basic implementation* @dev see https://eips.ethereum.org/EIPS/eip-721*/contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {using SafeMath for uint256;using Address for address;using EnumerableSet for EnumerableSet.UintSet;using EnumerableMap for EnumerableMap.UintToAddressMap;using Strings for uint256;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;import "../../introspection/IERC165.sol";/*** @dev Required interface of an ERC721 compliant contract.*/interface IERC721 is IERC165 {/*** @dev Emitted when `tokenId` token is transferred from `from` to `to`.*/event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.*/event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.*/event ApprovalForAll(address indexed owner, address indexed operator, bool approved);/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;import "./IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional enumeration extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Enumerable is IERC721 {/*** @dev Returns the total amount of tokens stored by the contract.*/function totalSupply() external view returns (uint256);/*** @dev Returns a token ID owned by `owner` at a given `index` of its token list.* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.*/function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);/*** @dev Returns a token ID at a given `index` of all the tokens stored by the contract.* Use along with {totalSupply} to enumerate all tokens.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;import "./IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional metadata extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Metadata is IERC721 {/*** @dev Returns the token collection name.*/function name() external view returns (string memory);/*** @dev Returns the token collection symbol.*/function symbol() external view returns (string memory);/*** @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.*/function tokenURI(uint256 tokenId) external view returns (string memory);
123456789101112131415161718192021// SPDX-License-Identifier: MITpragma solidity ^0.7.0;/*** @title ERC721 token receiver interface* @dev Interface for any contract that wants to support safeTransfers* from ERC721 asset contracts.*/interface IERC721Receiver {/*** @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}* by `operator` from `from`, this function is called.** It must return its Solidity selector to confirm the token transfer.* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.** The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.*/function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*/function isContract(address account) internal view returns (bool) {
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;/** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with GSN 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 payable) {return msg.sender;}function _msgData() internal view virtual returns (bytes memory) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;/*** @dev Library for managing an enumerable variant of Solidity's* https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]* type.** Maps have the following properties:** - Entries are added, removed, and checked for existence in constant time* (O(1)).* - Entries are enumerated in O(n). No guarantees are made on the ordering.** ```* contract Example {* // Add the library methods* using EnumerableMap for EnumerableMap.UintToAddressMap;** // Declare a set state variable* EnumerableMap.UintToAddressMap private myMap;* }* ```** As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;/*** @dev Library for managing* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive* types.** Sets have the following properties:** - Elements are added, removed, and checked for existence in constant time* (O(1)).* - Elements are enumerated in O(n). No guarantees are made on the ordering.** ```* contract Example {* // Add the library methods* using EnumerableSet for EnumerableSet.AddressSet;** // Declare a set state variable* EnumerableSet.AddressSet private mySet;* }* ```** As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;/*** @dev Contract module that helps prevent reentrant calls to a function.** Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier* available, which can be applied to functions to make sure there are no nested* (reentrant) calls to them.** Note that because there is a single `nonReentrant` guard, functions marked as* `nonReentrant` may not call one another. This can be worked around by making* those functions `private`, and then adding `external` `nonReentrant` entry* points to them.** TIP: If you would like to learn more about reentrancy and alternative ways* to protect against it, check out our blog post* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].*/abstract contract ReentrancyGuard {// Booleans are more expensive than uint256 or any type that takes up a full// word because each write operation emits an extra SLOAD to first read the// slot's contents, replace the bits taken up by the boolean, and then write// back. This is the compiler's defense against contract upgrades and// pointer aliasing, and it cannot be disabled.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;/*** @dev String operations.*/library Strings {/*** @dev Converts a `uint256` to its ASCII `string` representation.*/function toString(uint256 value) internal pure returns (string memory) {// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;}bytes memory buffer = new bytes(digits);uint256 index = digits - 1;
1234567891011121314151617181920212223242526{"optimizer": {"enabled": true,"runs": 200},"metadata": {"bytecodeHash": "none","useLiteralContent": true},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"remappings": ["@nomad-xyz/=lib/ExcessivelySafeCall/","@openzeppelin/=lib/openzeppelin-contracts/","@uniswap/=lib/solidity-lib/","ExcessivelySafeCall/=lib/ExcessivelySafeCall/src/",
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_factory","type":"address"},{"internalType":"address","name":"_WETH9","type":"address"},{"internalType":"address","name":"_tokenDescriptor","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Collect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint128","name":"liquidity","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"DecreaseLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint128","name":"liquidity","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"IncreaseLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenDescriptor","type":"address"}],"name":"TokenDescriptorChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"TransferOwnership","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH9","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint128","name":"amount0Max","type":"uint128"},{"internalType":"uint128","name":"amount1Max","type":"uint128"}],"internalType":"struct INonfungiblePositionManager.CollectParams","name":"params","type":"tuple"}],"name":"collect","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint256","name":"amount0Min","type":"uint256"},{"internalType":"uint256","name":"amount1Min","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct INonfungiblePositionManager.DecreaseLiquidityParams","name":"params","type":"tuple"}],"name":"decreaseLiquidity","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount0Desired","type":"uint256"},{"internalType":"uint256","name":"amount1Desired","type":"uint256"},{"internalType":"uint256","name":"amount0Min","type":"uint256"},{"internalType":"uint256","name":"amount1Min","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct INonfungiblePositionManager.IncreaseLiquidityParams","name":"params","type":"tuple"}],"name":"increaseLiquidity","outputs":[{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"int24","name":"tickSpacing","type":"int24"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint256","name":"amount0Desired","type":"uint256"},{"internalType":"uint256","name":"amount1Desired","type":"uint256"},{"internalType":"uint256","name":"amount0Min","type":"uint256"},{"internalType":"uint256","name":"amount1Min","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"}],"internalType":"struct INonfungiblePositionManager.MintParams","name":"params","type":"tuple"}],"name":"mint","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","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":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"positions","outputs":[{"internalType":"uint96","name":"nonce","type":"uint96"},{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"int24","name":"tickSpacing","type":"int24"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint256","name":"feeGrowthInside0LastX128","type":"uint256"},{"internalType":"uint256","name":"feeGrowthInside1LastX128","type":"uint256"},{"internalType":"uint128","name":"tokensOwed0","type":"uint128"},{"internalType":"uint128","name":"tokensOwed1","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","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":"selfPermit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"selfPermitAllowed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"selfPermitAllowedIfNecessary","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","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":"selfPermitIfNecessary","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenDescriptor","type":"address"}],"name":"setTokenDescriptor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amountMinimum","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"sweepToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenDescriptor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Owed","type":"uint256"},{"internalType":"uint256","name":"amount1Owed","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"uniswapV3MintCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountMinimum","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"unwrapWETH9","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610100604052600e80546001600160b01b0319166001176001600160b01b0316600160b01b1790553480156200003457600080fd5b50604051620064183803806200641883398101604081905262000057916200034b565b84848383604051806040016040528060018152602001603160f81b81525082826200008f6301ffc9a760e01b6200016260201b60201c565b8151620000a4906006906020850190620001e7565b508051620000ba906007906020840190620001e7565b50620000cd6380ac58cd60e01b62000162565b620000df635b5e139f60e01b62000162565b620000f163780e9d6360e01b62000162565b50508251602093840120608052805192019190912060a052506001600160601b0319606092831b811660c052911b1660e05250506001600a55600f80546001600160a01b03199081163317909155601080546001600160a01b03939093169290911691909117905550620003eb9050565b6001600160e01b03198082161415620001c2576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200021f57600085556200026a565b82601f106200023a57805160ff19168380011785556200026a565b828001600101855582156200026a579182015b828111156200026a5782518255916020019190600101906200024d565b50620002789291506200027c565b5090565b5b808211156200027857600081556001016200027d565b80516001600160a01b0381168114620002ab57600080fd5b919050565b600082601f830112620002c1578081fd5b81516001600160401b0380821115620002d657fe5b6040516020601f8401601f1916820181018381118382101715620002f657fe5b60405283825285840181018710156200030d578485fd5b8492505b8383101562000330578583018101518284018201529182019162000311565b838311156200034157848185840101525b5095945050505050565b600080600080600060a0868803121562000363578081fd5b6200036e8662000293565b94506200037e6020870162000293565b93506200038e6040870162000293565b60608701519093506001600160401b0380821115620003ab578283fd5b620003b989838a01620002b0565b93506080880151915080821115620003cf578283fd5b50620003de88828901620002b0565b9150509295509295909350565b60805160a05160c05160601c60e05160601c615fb5620004636000398061025a52806117f752806118ae528061194052806140a752806140ed5280614161525080610a2a52806110d5528061237e52806124be5280612ab05280612b815280612ebf52508061158e52508061156d5250615fb56000f3fe60806040526004361061024a5760003560e01c80636352211e11610139578063b5007d1f116100b6578063c87b56dd1161007a578063c87b56dd146106a0578063d3487997146106c0578063df2ab5bb146106e0578063e985e9c5146106f3578063f3995c6714610713578063fc6f786514610726576102b4565b8063b5007d1f14610615578063b6dc7ea314610638578063b88d4fde14610658578063c2e3140a14610678578063c45a01551461068b576102b4565b806395d89b41116100fd57806395d89b411461057557806399fbab881461058a578063a22cb465146105c2578063a4a78f0c146105e2578063ac9650d8146105f5576102b4565b80636352211e146104f85780636c0360eb1461051857806370a082311461052d5780637ac2ff7b1461054d5780638da5cb5b14610560576102b4565b80632f745c59116101c75780634659a4941161018b5780634659a4941461048857806349404b7c1461049b5780634aa4a4fc146104ae5780634f6ccce7146104c35780635a9d7a68146104e3576102b4565b80632f745c591461040b57806330adf81f1461042b5780633644e5151461044057806342842e0e1461045557806342966c6814610475576102b4565b806312210e8a1161020e57806312210e8a1461037f57806313af40351461038757806318160ddd146103a7578063219f5d17146103c957806323b872dd146103eb576102b4565b806301ffc9a7146102b957806306fdde03146102ef578063081812fc14610311578063095ea7b31461033e5780630c49ccbe1461035e576102b4565b366102b457336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146102b2576040805162461bcd60e51b81526020600482015260036024820152624e573960e81b604482015290519081900360640190fd5b005b600080fd5b3480156102c557600080fd5b506102d96102d43660046154d0565b610739565b6040516102e69190615a52565b60405180910390f35b3480156102fb57600080fd5b5061030461075c565b6040516102e69190615ae7565b34801561031d57600080fd5b5061033161032c3660046157a1565b6107f2565b6040516102e691906158c4565b34801561034a57600080fd5b506102b2610359366004615395565b610845565b61037161036c366004615595565b61091b565b6040516102e6929190615ad9565b6102b2610f4f565b34801561039357600080fd5b506102b26103a2366004615211565b610fc3565b3480156103b357600080fd5b506103bc611037565b6040516102e69190615a5d565b6103dc6103d73660046155a6565b611048565b6040516102e693929190615be1565b3480156103f757600080fd5b506102b2610406366004615281565b6114a2565b34801561041757600080fd5b506103bc610426366004615395565b6114f9565b34801561043757600080fd5b506103bc611524565b34801561044c57600080fd5b506103bc611548565b34801561046157600080fd5b506102b2610470366004615281565b611606565b6102b26104833660046157a1565b611621565b6102b2610496366004615401565b6116dd565b6102b26104a93660046157b9565b611777565b3480156104ba57600080fd5b5061033161193e565b3480156104cf57600080fd5b506103bc6104de3660046157a1565b611962565b3480156104ef57600080fd5b50610331611978565b34801561050457600080fd5b506103316105133660046157a1565b611987565b34801561052457600080fd5b506103046119af565b34801561053957600080fd5b506103bc610548366004615211565b6119b4565b6102b261055b366004615401565b611a1c565b34801561056c57600080fd5b50610331611ddb565b34801561058157600080fd5b50610304611dea565b34801561059657600080fd5b506105aa6105a53660046157a1565b611e4b565b6040516102e69c9b9a99989796959493929190615c26565b3480156105ce57600080fd5b506102b26105dd366004615368565b612056565b6102b26105f0366004615401565b61215b565b610608610603366004615461565b6121f4565b6040516102e691906159f2565b610628610623366004615668565b612334565b6040516102e69493929190615c02565b34801561064457600080fd5b506102b2610653366004615211565b612908565b34801561066457600080fd5b506102b26106733660046152c1565b6129c1565b6102b2610686366004615401565b612a1f565b34801561069757600080fd5b50610331612aae565b3480156106ac57600080fd5b506103046106bb3660046157a1565b612ad2565b3480156106cc57600080fd5b506102b26106db366004615800565b612b6c565b6102b26106ee3660046153c0565b612bea565b3480156106ff57600080fd5b506102d961070e366004615249565b612d15565b6102b2610721366004615401565b612d43565b61037161073436600461557e565b612db5565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b60006107fd8261359f565b6108225760405162461bcd60e51b815260040161081990615b87565b60405180910390fd5b506000908152600d6020526040902054600160601b90046001600160a01b031690565b600061085082611987565b9050806001600160a01b0316836001600160a01b031614156108a35760405162461bcd60e51b8152600401808060200182810382526021815260200180615f576021913960400191505060405180910390fd5b806001600160a01b03166108b56135ac565b6001600160a01b031614806108d157506108d18161070e6135ac565b61090c5760405162461bcd60e51b8152600401808060200182810382526038815260200180615e816038913960400191505060405180910390fd5b61091683836135b0565b505050565b600080823561092a3382613626565b61093357600080fd5b8360800135806109416136ca565b111561094c57600080fd5b600061095e604087016020880161567a565b6001600160801b03161161097157600080fd5b84356000908152600d602090815260409182902060018101549092600160801b9091046001600160801b0316916109ac91890190890161567a565b6001600160801b0316816001600160801b031610156109ca57600080fd5b6001808301546001600160501b03166000908152600c60209081526040808320815160608101835281546001600160a01b039081168252919095015490811692850192909252600160a01b909104600290810b810b900b90830152610a4f7f0000000000000000000000000000000000000000000000000000000000000000836136ce565b90506000816001600160a01b031663a6f19c846040518163ffffffff1660e01b815260040160206040518083038186803b158015610a8c57600080fd5b505afa158015610aa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac4919061522d565b905060006001600160a01b038216610adc8c35611987565b6001600160a01b031614905080610bac57826001600160a01b031663a34123a787600101600a9054906101000a900460020b88600101600d9054906101000a900460020b8e6020016020810190610b33919061567a565b6040518463ffffffff1660e01b8152600401610b5193929190615a7f565b6040805180830381600087803b158015610b6a57600080fd5b505af1158015610b7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba291906157dd565b909a509850610c69565b826001600160a01b0316636f89244c87600101600a9054906101000a900460020b88600101600d9054906101000a900460020b8e6020016020810190610bf2919061567a565b866040518563ffffffff1660e01b8152600401610c129493929190615aa5565b6040805180830381600087803b158015610c2b57600080fd5b505af1158015610c3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6391906157dd565b909a5098505b8a604001358a10158015610c8157508a606001358910155b610c9d5760405162461bcd60e51b815260040161081990615b16565b6000610ccf82610cad5730610caf565b835b6001890154600160501b8104600290810b91600160681b9004900b6137b0565b9050600080856001600160a01b031663514ea4bf846040518263ffffffff1660e01b8152600401610d009190615a5d565b60a06040518083038186803b158015610d1857600080fd5b505afa158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5091906156c4565b505092509250508c8960040160008282829054906101000a90046001600160801b03160192506101000a8154816001600160801b0302191690836001600160801b031602179055508b8960040160108282829054906101000a90046001600160801b03160192506101000a8154816001600160801b0302191690836001600160801b0316021790555083610e6357610dfc89600201548303896001600160801b0316600160801b61380a565b60048a0180546001600160801b0380821690930183166001600160801b031990911617905560038a0154610e3a91908303908a16600160801b61380a565b60048a0180546001600160801b03600160801b8083048216909401811690930292169190911790555b8189600201819055508089600301819055508d6020016020810190610e88919061567a565b88038960010160106101000a8154816001600160801b0302191690836001600160801b031602179055507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce78e60000135604051610ee59190615a5d565b60405180910390a18d600001357f26f6a048ee9138f2c0ce266f322cb99228e8d619ae2bff30c67f8dcf9d2377b48f6020016020810190610f26919061567a565b8f8f604051610f3793929190615be1565b60405180910390a25050505050505050505050915091565b6002600a541415610fa7576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600a554715610fbc57610fbc33476138b9565b6001600a55565b600f546001600160a01b03163314610fda57600080fd5b6001600160a01b038116610fed57600080fd5b600f80546001600160a01b0319166001600160a01b0383169081179091556040517fcfaaa26691e16e66e73290fc725eee1a6b4e0e693a1640484937aac25ffb55a490600090a250565b600061104360026139a8565b905090565b60008060008360a001358061105b6136ca565b111561106657600080fd5b84356000908152600d602090815260408083206001808201546001600160501b03168552600c8452828520835160608101855281546001600160a01b039081168252919092015490811694820194909452600160a01b909304600290810b810b900b91830191909152916110fa7f0000000000000000000000000000000000000000000000000000000000000000836136ce565b90506000816001600160a01b031663a6f19c846040518163ffffffff1660e01b815260040160206040518083038186803b15801561113757600080fd5b505afa15801561114b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116f919061522d565b905060006001600160a01b0382166111878b35611987565b6001600160a01b031614905080156111c157336001600160a01b038316146111c15760405162461bcd60e51b815260040161081990615b6b565b61125f604051806101200160405280856001600160a01b03168152602001868152602001836111f057306111f2565b845b6001600160a01b0316815260200187600101600a9054906101000a900460020b60020b815260200187600101600d9054906101000a900460020b60020b81526020018c6020013581526020018c6040013581526020018c6060013581526020018c608001358152506139b3565b919a50985096506000611298826112765730611278565b835b6001880154600160501b8104600290810b91600160681b9004900b6137b0565b9050600080856001600160a01b031663514ea4bf846040518263ffffffff1660e01b81526004016112c99190615a5d565b60a06040518083038186803b1580156112e157600080fd5b505afa1580156112f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131991906156c4565b50509250925050836113be576002880154600189015461134e918403906001600160801b03600160801b91829004169061380a565b6004890180546001600160801b0380821690930183166001600160801b0319909116179055600389015460018a01546113959291840391600160801b91829004169061380a565b6004890180546001600160801b03600160801b8083048216909401811690930292169190911790555b8188600201819055508088600301819055508b8860010160108282829054906101000a90046001600160801b03160192506101000a8154816001600160801b0302191690836001600160801b03160217905550611419610f4f565b6040517ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79061144a908f3590615a5d565b60405180910390a18c600001357f3067048beee31b25b2f1681f88dac838c8bba36af25bfb2b7cf7473a5847e35f8d8d8d60405161148a93929190615be1565b60405180910390a25050505050505050509193909250565b6114b36114ad6135ac565b82613626565b6114ee5760405162461bcd60e51b8152600401808060200182810382526031815260200180615f786031913960400191505060405180910390fd5b610916838383613b89565b6001600160a01b038216600090815260016020526040812061151b9083613cd5565b90505b92915050565b7f49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad81565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006115b5613ce1565b3060405160200180868152602001858152602001848152602001838152602001826001600160a01b031681526020019550505050505060405160208183030381529060405280519060200120905090565b610916838383604051806020016040528060008152506129c1565b8061162c3382613626565b61163557600080fd5b6000828152600d602052604090206001810154600160801b90046001600160801b0316158015611670575060048101546001600160801b0316155b801561168e57506004810154600160801b90046001600160801b0316155b6116aa5760405162461bcd60e51b815260040161081990615b32565b6000838152600d602052604081208181556001810182905560028101829055600381018290556004015561091683613ce5565b604080516323f2ebc360e21b815233600482015230602482015260448101879052606481018690526001608482015260ff851660a482015260c4810184905260e4810183905290516001600160a01b03881691638fcbaf0c9161010480830192600092919082900301818387803b15801561175757600080fd5b505af115801561176b573d6000803e3d6000fd5b50505050505050505050565b6002600a5414156117cf576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600a55604080516370a0823160e01b815230600482015290516000916001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916370a0823191602480820192602092909190829003018186803b15801561183e57600080fd5b505afa158015611852573d6000803e3d6000fd5b505050506040513d602081101561186857600080fd5b50519050828110156118a6576040805162461bcd60e51b8152602060048201526002602482015261495760f01b604482015290519081900360640190fd5b8015611934577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561191257600080fd5b505af1158015611926573d6000803e3d6000fd5b5050505061193482826138b9565b50506001600a5550565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080611970600284613db2565b509392505050565b6010546001600160a01b031681565b600061151e82604051806060016040528060298152602001615ee36029913960029190613dd0565b606090565b60006001600160a01b0382166119fb5760405162461bcd60e51b815260040180806020018281038252602a815260200180615eb9602a913960400191505060405180910390fd5b6001600160a01b038216600090815260016020526040902061151e906139a8565b83611a256136ca565b1115611a5d576040805162461bcd60e51b8152602060048201526002602482015261504560f01b604482015290519081900360640190fd5b6000611a67611548565b7f49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad8888611a9381613ddd565b604080516020808201969096526001600160a01b03909416848201526060840192909252608083015260a08083018a90528151808403909101815260c08301825280519084012061190160f01b60e084015260e283019490945261010280830194909452805180830390940184526101229091019052815191012090506000611b1b87611987565b9050806001600160a01b0316886001600160a01b03161415611b6a576040805162461bcd60e51b815260206004820152600360248201526241434f60e81b604482015290519081900360640190fd5b611b7381613e17565b15611cd1576040805160208082018790528183018690526001600160f81b031960f889901b1660608301528251604181840301815260618301808552630b135d3f60e11b90526065830186815260858401948552815160a585015281516001600160a01b03871695631626ba7e958995919260c59091019185019080838360005b83811015611c0c578181015183820152602001611bf4565b50505050905090810190601f168015611c395780820380516001836020036101000a031916815260200191505b50935050505060206040518083038186803b158015611c5757600080fd5b505afa158015611c6b573d6000803e3d6000fd5b505050506040513d6020811015611c8157600080fd5b50516001600160e01b031916630b135d3f60e11b14611ccc576040805162461bcd60e51b8152602060048201526002602482015261554160f01b604482015290519081900360640190fd5b611dc7565b600060018387878760405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015611d2d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611d7a576040805162461bcd60e51b8152602060048201526002602482015261495360f01b604482015290519081900360640190fd5b816001600160a01b0316816001600160a01b031614611dc5576040805162461bcd60e51b8152602060048201526002602482015261554160f01b604482015290519081900360640190fd5b505b611dd188886135b0565b5050505050505050565b600f546001600160a01b031681565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107e85780601f106107bd576101008083540402835291602001916107e8565b6000818152600d6020908152604080832081516101408101835281546001600160601b03811682526001600160a01b03600160601b909104169381019390935260018101546001600160501b038116928401839052600160501b8104600290810b810b810b6060860152600160681b8204810b810b810b60808601526001600160801b03600160801b92839004811660a08701529083015460c0860152600383015460e086015260049092015480831661010086015204166101208301528291829182918291829182918291829182918291829190611f3c5760405162461bcd60e51b815260040161081990615afa565b6000600c600083604001516001600160501b03166001600160501b031681526020019081526020016000206040518060600160405290816000820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016001820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016001820160149054906101000a900460020b60020b60020b81525050905081600001518260200151826000015183602001518460400151866060015187608001518860a001518960c001518a60e001518b61010001518c61012001519d509d509d509d509d509d509d509d509d509d509d509d50505091939597999b5091939597999b565b61205e6135ac565b6001600160a01b0316826001600160a01b031614156120c4576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600560006120d16135ac565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556121156135ac565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60408051636eb1769f60e11b81523360048201523060248201529051600019916001600160a01b0389169163dd62ed3e91604480820192602092909190829003018186803b1580156121ac57600080fd5b505afa1580156121c0573d6000803e3d6000fd5b505050506040513d60208110156121d657600080fd5b505110156121ec576121ec8686868686866116dd565b505050505050565b60608167ffffffffffffffff8111801561220d57600080fd5b5060405190808252806020026020018201604052801561224157816020015b606081526020019060019003908161222c5790505b50905060005b8281101561232d576000803086868581811061225f57fe5b90506020028101906122719190615cb8565b60405161227f9291906158b4565b600060405180830381855af49150503d80600081146122ba576040519150601f19603f3d011682016040523d82523d6000602084013e6122bf565b606091505b50915091508161230b576044815110156122d857600080fd5b600481019050808060200190518101906122f29190615514565b60405162461bcd60e51b81526004016108199190615ae7565b8084848151811061231857fe5b60209081029190910101525050600101612247565b5092915050565b600080600080846101400135806123496136ca565b111561235457600080fd5b61236661018087016101608801615211565b6001600160a01b031615612455576001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663232aa5ac6123b06020890189615211565b6123c060408a0160208b01615211565b6123d060608b0160408c016154f8565b6123e26101808c016101608d01615211565b6040518563ffffffff1660e01b815260040161240194939291906158d8565b602060405180830381600087803b15801561241b57600080fd5b505af115801561242f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612453919061522d565b505b60408051606081019091526000908061247160208a018a615211565b6001600160a01b031681526020018860200160208101906124929190615211565b6001600160a01b031681526020016124b060608a0160408b016154f8565b60020b9052905060006124e37f0000000000000000000000000000000000000000000000000000000000000000836136ce565b9050612577604051806101200160405280836001600160a01b03168152602001848152602001306001600160a01b031681526020018a606001602081019061252b91906154f8565b60020b815260200161254360a08c0160808d016154f8565b60020b81526020018a60a0013581526020018a60c0013581526020018a60e0013581526020018a61010001358152506139b3565b919750955093506125c16125936101408a016101208b01615211565b600e80546001600160b01b0319811660016001600160b01b0392831690810190921617909155985088613e1d565b60006125ec306125d760808c0160608d016154f8565b6125e760a08d0160808e016154f8565b6137b0565b9050600080836001600160a01b031663514ea4bf846040518263ffffffff1660e01b815260040161261d9190615a5d565b60a06040518083038186803b15801561263557600080fd5b505afa158015612649573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061266d91906156c4565b5050925092505060006126808587613f4b565b905060405180610140016040528060006001600160601b0316815260200160006001600160a01b03168152602001826001600160501b031681526020018d60600160208101906126d091906154f8565b60020b81526020018d60800160208101906126eb91906154f8565b60020b81526020018b6001600160801b0316815260200184815260200183815260200160006001600160801b0316815260200160006001600160801b0316815250600d60008d815260200190815260200160002060008201518160000160006101000a8154816001600160601b0302191690836001600160601b03160217905550602082015181600001600c6101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160010160006101000a8154816001600160501b0302191690836001600160501b03160217905550606082015181600101600a6101000a81548162ffffff021916908360020b62ffffff160217905550608082015181600101600d6101000a81548162ffffff021916908360020b62ffffff16021790555060a08201518160010160106101000a8154816001600160801b0302191690836001600160801b0316021790555060c0820151816002015560e082015181600301556101008201518160040160006101000a8154816001600160801b0302191690836001600160801b031602179055506101208201518160040160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506128be610f4f565b8a7f3067048beee31b25b2f1681f88dac838c8bba36af25bfb2b7cf7473a5847e35f8b8b8b6040516128f293929190615be1565b60405180910390a2505050505050509193509193565b600f546001600160a01b0316331461291f57600080fd5b6001600160a01b03811661293257600080fd5b601080546001600160a01b0319166001600160a01b0383161790556040517f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c906129829060009060001990615ad9565b60405180910390a16040516001600160a01b038216907f9a72f60932a1a6a1e1ceaa7a7dc51efcfe37685b729d8a680ab939f4612455a690600090a250565b6129d26129cc6135ac565b83613626565b612a0d5760405162461bcd60e51b8152600401808060200182810382526031815260200180615f786031913960400191505060405180910390fd5b612a1984848484614030565b50505050565b60408051636eb1769f60e11b8152336004820152306024820152905186916001600160a01b0389169163dd62ed3e91604480820192602092909190829003018186803b158015612a6e57600080fd5b505afa158015612a82573d6000803e3d6000fd5b505050506040513d6020811015612a9857600080fd5b505110156121ec576121ec868686868686612d43565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060612add8261359f565b612ae657600080fd5b60105460405163e9dc637560e01b81526001600160a01b039091169063e9dc637590612b189030908690600401615a66565b60006040518083038186803b158015612b3057600080fd5b505afa158015612b44573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261151e9190810190615514565b6000612b7a828401846155b7565b9050612baa7f00000000000000000000000000000000000000000000000000000000000000008260000151614082565b508415612bc5578051516020820151612bc5919033886140a5565b8315612be357612be3816000015160200151826020015133876140a5565b5050505050565b6002600a541415612c42576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600a55604080516370a0823160e01b815230600482015290516000916001600160a01b038616916370a0823191602480820192602092909190829003018186803b158015612c9157600080fd5b505afa158015612ca5573d6000803e3d6000fd5b505050506040513d6020811015612cbb57600080fd5b5051905082811015612cf9576040805162461bcd60e51b8152602060048201526002602482015261125560f21b604482015290519081900360640190fd5b8015612d0a57612d0a848383614235565b50506001600a555050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6040805163d505accf60e01b8152336004820152306024820152604481018790526064810186905260ff8516608482015260a4810184905260c4810183905290516001600160a01b0388169163d505accf9160e480830192600092919082900301818387803b15801561175757600080fd5b6000808235612dc43382613626565b612dcd57600080fd5b6000612ddf606086016040870161567a565b6001600160801b03161180612e0c57506000612e01608086016060870161567a565b6001600160801b0316115b612e1557600080fd5b600080612e286040870160208801615211565b6001600160a01b031614612e4b57612e466040860160208701615211565b612e4d565b305b85356000908152600d602090815260408083206001808201546001600160501b03168552600c8452828520835160608101855281546001600160a01b039081168252919092015490811694820194909452600160a01b909304600290810b810b900b9183019190915292935090612ee47f0000000000000000000000000000000000000000000000000000000000000000836136ce565b600480850154604080516329bc672160e21b815290519394506001600160801b0380831694600160801b90930416926000926001600160a01b0387169263a6f19c849281810192602092909190829003018186803b158015612f4557600080fd5b505afa158015612f59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f7d919061522d565b905060006001600160a01b038216612f958d35611987565b60018901546001600160a01b0391909116919091149150600160801b90046001600160801b0316156132d6576000808261317d57600189015460405163a34123a760e01b81526001600160a01b0389169163a34123a79161301391600160501b8104600290810b92600160681b909204900b90600090600401615a7f565b6040805180830381600087803b15801561302c57600080fd5b505af1158015613040573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061306491906157dd565b505060018901546001600160a01b0388169063514ea4bf9061309d903090600160501b8104600290810b91600160681b9004900b6137b0565b6040518263ffffffff1660e01b81526004016130b99190615a5d565b60a06040518083038186803b1580156130d157600080fd5b505afa1580156130e5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061310991906156c4565b505060028c015460018d015492955090935061313b92508403906001600160801b03600160801b91829004169061380a565b86019550613174896003015482038a60010160109054906101000a90046001600160801b03166001600160801b0316600160801b61380a565b850194506132c8565b6001890154604051631be2491360e21b81526001600160a01b03891691636f89244c916131c991600160501b8104600290810b92600160681b909204900b906000908a90600401615aa5565b6040805180830381600087803b1580156131e257600080fd5b505af11580156131f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061321a91906157dd565b505060018901546001600160a01b0388169063514ea4bf90613253908790600160501b8104600290810b91600160681b9004900b6137b0565b6040518263ffffffff1660e01b815260040161326f9190615a5d565b60a06040518083038186803b15801561328757600080fd5b505afa15801561329b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132bf91906156c4565b50919450925050505b600289019190915560038801555b600080856001600160801b03168e60400160208101906132f6919061567a565b6001600160801b03161161331c578d6040016020810190613317919061567a565b61331e565b855b856001600160801b03168f606001602081019061333b919061567a565b6001600160801b031611613361578e606001602081019061335c919061567a565b613363565b855b915091508261341e5760018901546040516309e3d67b60e31b81526001600160a01b03891691634f1eb3d8916133b8918e91600160501b8204600290810b92600160681b9004900b9088908890600401615948565b6040805180830381600087803b1580156133d157600080fd5b505af11580156133e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134099190615696565b6001600160801b039182169e50169b506134ce565b6001890154604051630c4ce0dd60e21b81526001600160a01b0389169163313383749161346c918e91600160501b8204600290810b92600160681b9004900b90889088908c90600401615985565b6040805180830381600087803b15801561348557600080fd5b505af1158015613499573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134bd9190615696565b6001600160801b039182169e50169b505b8186038186038a60040160008c60040160108491906101000a8154816001600160801b0302191690836001600160801b031602179055508391906101000a8154816001600160801b0302191690836001600160801b0316021790555050507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce78e6000013560405161355f9190615a5d565b60405180910390a18d600001357f40d0efd1a53d60ecbf40971b9daf7dc90178c3aadc7aab1765632738fa8b8f018b8484604051610f37939291906159c8565b600061151e60028361437c565b3390565b6000818152600d6020526040902080546001600160601b0316600160601b6001600160a01b0385169081029190911790915581906135ed82611987565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006136318261359f565b61366c5760405162461bcd60e51b815260040180806020018281038252602c815260200180615e55602c913960400191505060405180910390fd5b600061367783611987565b9050806001600160a01b0316846001600160a01b031614806136b25750836001600160a01b03166136a7846107f2565b6001600160a01b0316145b806136c257506136c28185612d15565b949350505050565b4290565b600081602001516001600160a01b031682600001516001600160a01b0316106136f657600080fd5b61151b836001600160a01b031663cefa77996040518163ffffffff1660e01b815260040160206040518083038186803b15801561373257600080fd5b505afa158015613746573d6000803e3d6000fd5b505050506040513d602081101561375c57600080fd5b5051835160208581015160408088015181516001600160a01b0395861681860152949092168482015260029190910b6060808501919091528151808503909101815260809093019052815191012085614388565b604080516bffffffffffffffffffffffff19606086901b16602080830191909152600285810b60e890811b60348501529085900b901b60378301528251601a818403018152603a90920190925280519101205b9392505050565b6000808060001985870986860292508281109083900303905080613840576000841161383557600080fd5b508290049050613803565b80841161384c57600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b602083106139055780518252601f1990920191602091820191016138e6565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613967576040519150601f19603f3d011682016040523d82523d6000602084013e61396c565b606091505b5050905080610916576040805162461bcd60e51b815260206004820152600360248201526253544560e81b604482015290519081900360640190fd5b600061151e826143e6565b600080600080846000015190506000816001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160c06040518083038186803b1580156139fb57600080fd5b505afa158015613a0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a339190615725565b505050505090506000613a4987606001516143ea565b90506000613a5a88608001516143ea565b9050613a718383838b60a001518c60c0015161471c565b9650505050806001600160a01b0316633c8a7d8d8660400151876060015188608001518860405180604001604052808c602001518152602001336001600160a01b0316815250604051602001613ac79190615ba3565b6040516020818303038152906040526040518663ffffffff1660e01b8152600401613af6959493929190615906565b6040805180830381600087803b158015613b0f57600080fd5b505af1158015613b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b4791906157dd565b60e087015191945092508310801590613b6557508461010001518210155b613b815760405162461bcd60e51b815260040161081990615b4e565b509193909250565b826001600160a01b0316613b9c82611987565b6001600160a01b031614613be15760405162461bcd60e51b8152600401808060200182810382526029815260200180615f2e6029913960400191505060405180910390fd5b6001600160a01b038216613c265760405162461bcd60e51b8152600401808060200182810382526024815260200180615e0b6024913960400191505060405180910390fd5b613c31838383610916565b613c3c6000826135b0565b6001600160a01b0383166000908152600160205260409020613c5e90826147e0565b506001600160a01b0382166000908152600160205260409020613c8190826147ec565b50613c8e600282846147f8565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061151b838361480e565b4690565b6000613cf082611987565b9050613cfe81600084610916565b613d096000836135b0565b6000828152600860205260409020546002600019610100600184161502019091160415613d47576000828152600860205260408120613d4791615194565b6001600160a01b0381166000908152600160205260409020613d6990836147e0565b50613d75600283614872565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000808080613dc1868661487e565b909450925050505b9250929050565b60006136c28484846148f9565b6000908152600d6020526040902080546bffffffffffffffffffffffff19811660016001600160601b039283169081019092161790915590565b3b151590565b6001600160a01b038216613e78576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b613e818161359f565b15613ed3576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b613edf60008383610916565b6001600160a01b0382166000908152600160205260409020613f0190826147ec565b50613f0e600282846147f8565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0382166000908152600b60205260409020546001600160501b03168061151e5750600e805460016001600160501b03600160b01b8084048216838101909216026001600160b01b03909316929092179092556001600160a01b038085166000908152600b60209081526040808320805469ffffffffffffffffffff191686179055848352600c825291829020865181549085166001600160a01b031991821617825591870151950180549287015160020b62ffffff16600160a01b0262ffffff60a01b19969094169290911691909117939093161790915592915050565b61403b848484613b89565b614047848484846149c3565b612a195760405162461bcd60e51b8152600401808060200182810382526032815260200180615dd96032913960400191505060405180910390fd5b600061408e83836136ce565b9050336001600160a01b0382161461151e57600080fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161480156140e65750804710155b15614208577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561414657600080fd5b505af115801561415a573d6000803e3d6000fd5b50505050507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156141d657600080fd5b505af11580156141ea573d6000803e3d6000fd5b505050506040513d602081101561420057600080fd5b50612a199050565b6001600160a01b03831630141561422957614224848383614235565b612a19565b612a1984848484614b2b565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1781529251825160009485949389169392918291908083835b602083106142b15780518252601f199092019160209182019101614292565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614313576040519150601f19603f3d011682016040523d82523d6000602084013e614318565b606091505b5091509150818015614346575080511580614346575080806020019051602081101561434357600080fd5b50515b612be3576040805162461bcd60e51b815260206004820152600260248201526114d560f21b604482015290519081900360640190fd5b600061151b8383614c7b565b604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b8152606093841b60148201526f5af43d82803e903d91602b57fd5bf3ff60801b6028820152921b6038830152604c8201526037808220606c830152605591012090565b5490565b60008060008360020b12614401578260020b614409565b8260020b6000035b9050620d89e8811115614447576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b60006001821661445b57600160801b61446d565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff16905060028216156144a1576ffff97272373d413259a46990580e213a0260801c5b60048216156144c0576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b60088216156144df576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b60108216156144fe576fffcb9843d60f6159c9db58835c9266440260801c5b602082161561451d576fff973b41fa98c081472e6896dfb254c00260801c5b604082161561453c576fff2ea16466c96a3843ec78b326b528610260801c5b608082161561455b576ffe5dee046a99a2a811c461f1969c30530260801c5b61010082161561457b576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b61020082161561459b576ff987a7253ac413176f2b074cf7815e540260801c5b6104008216156145bb576ff3392b0822b70005940c7a398e4b70f30260801c5b6108008216156145db576fe7159475a2c29b7443b29c7fa6e889d90260801c5b6110008216156145fb576fd097f3bdfd2022b8845ad8f792aa58250260801c5b61200082161561461b576fa9f746462d870fdf8a65dc1f90e061e50260801c5b61400082161561463b576f70d869a156d2a1b890bb3df62baf32f70260801c5b61800082161561465b576f31be135f97d08fd981231505542fcfa60260801c5b6201000082161561467c576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b6202000082161561469c576e5d6af8dedb81196699c329225ee6040260801c5b620400008216156146bb576d2216e584f5fa1ea926041bedfe980260801c5b620800008216156146d8576b048a170391f7dc42444e8fa20260801c5b60008460020b13156146f35780600019816146ef57fe5b0490505b64010000000081061561470757600161470a565b60005b60ff16602082901c0192505050919050565b6000836001600160a01b0316856001600160a01b0316111561473c579293925b846001600160a01b0316866001600160a01b03161161476757614760858585614c93565b90506147d7565b836001600160a01b0316866001600160a01b031610156147c957600061478e878686614c93565b9050600061479d878986614cf6565b9050806001600160801b0316826001600160801b0316106147be57806147c0565b815b925050506147d7565b6147d4858584614cf6565b90505b95945050505050565b600061151b8383614d33565b600061151b8383614df9565b60006136c284846001600160a01b038516614e43565b815460009082106148505760405162461bcd60e51b8152600401808060200182810382526022815260200180615db76022913960400191505060405180910390fd5b82600001828154811061485f57fe5b9060005260206000200154905092915050565b600061151b8383614eda565b8154600090819083106148c25760405162461bcd60e51b8152600401808060200182810382526022815260200180615f0c6022913960400191505060405180910390fd5b60008460000184815481106148d357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816149945760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614959578181015183820152602001614941565b50505050905090810190601f1680156149865780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106149a757fe5b9060005260206000209060020201600101549150509392505050565b60006149d7846001600160a01b0316613e17565b6149e3575060016136c2565b6000614af1630a85bd0160e11b6149f86135ac565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614a5f578181015183820152602001614a47565b50505050905090810190601f168015614a8c5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001615dd9603291396001600160a01b0388169190614fae565b90506000818060200190516020811015614b0a57600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b178152925182516000948594938a169392918291908083835b60208310614baf5780518252601f199092019160209182019101614b90565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614c11576040519150601f19603f3d011682016040523d82523d6000602084013e614c16565b606091505b5091509150818015614c44575080511580614c445750808060200190516020811015614c4157600080fd5b50515b6121ec576040805162461bcd60e51b815260206004820152600360248201526229aa2360e91b604482015290519081900360640190fd5b60009081526001919091016020526040902054151590565b6000826001600160a01b0316846001600160a01b03161115614cb3579192915b6000614cd6856001600160a01b0316856001600160a01b0316600160601b61380a565b90506147d7614cf184838888036001600160a01b031661380a565b614fbd565b6000826001600160a01b0316846001600160a01b03161115614d16579192915b6136c2614cf183600160601b8787036001600160a01b031661380a565b60008181526001830160205260408120548015614def5783546000198083019190810190600090879083908110614d6657fe5b9060005260206000200154905080876000018481548110614d8357fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080614db357fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061151e565b600091505061151e565b6000614e058383614c7b565b614e3b5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561151e565b50600061151e565b600082815260018401602052604081205480614ea8575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055613803565b82856000016001830381548110614ebb57fe5b9060005260206000209060020201600101819055506000915050613803565b60008181526001830160205260408120548015614def5783546000198083019190810190600090879083908110614f0d57fe5b9060005260206000209060020201905080876000018481548110614f2d57fe5b600091825260208083208454600290930201918255600193840154918401919091558354825289830190526040902090840190558654879080614f6c57fe5b600082815260208082206002600019909401938402018281556001908101839055929093558881528982019092526040822091909155945061151e9350505050565b60606136c28484600085614fd3565b806001600160801b038116811461075757600080fd5b6060824710156150145760405162461bcd60e51b8152600401808060200182810382526026815260200180615e2f6026913960400191505060405180910390fd5b61501d85613e17565b61506e576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106150ac5780518252601f19909201916020918201910161508d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461510e576040519150601f19603f3d011682016040523d82523d6000602084013e615113565b606091505b509150915061512382828661512e565b979650505050505050565b6060831561513d575081613803565b82511561514d5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315614959578181015183820152602001614941565b50805460018160011615610100020316600290046000825580601f106151ba57506151d8565b601f0160209004906000526020600020908101906151d891906151db565b50565b5b808211156151f057600081556001016151dc565b5090565b803561075781615d6f565b805161ffff8116811461075757600080fd5b600060208284031215615222578081fd5b813561380381615d6f565b60006020828403121561523e578081fd5b815161380381615d6f565b6000806040838503121561525b578081fd5b823561526681615d6f565b9150602083013561527681615d6f565b809150509250929050565b600080600060608486031215615295578081fd5b83356152a081615d6f565b925060208401356152b081615d6f565b929592945050506040919091013590565b600080600080608085870312156152d6578182fd5b84356152e181615d6f565b935060208501356152f181615d6f565b925060408501359150606085013567ffffffffffffffff811115615313578182fd5b8501601f81018713615323578182fd5b803561533661533182615d21565b615cfd565b81815288602083850101111561534a578384fd5b81602084016020830137908101602001929092525092959194509250565b6000806040838503121561537a578182fd5b823561538581615d6f565b9150602083013561527681615d84565b600080604083850312156153a7578182fd5b82356153b281615d6f565b946020939093013593505050565b6000806000606084860312156153d4578081fd5b83356153df81615d6f565b92506020840135915060408401356153f681615d6f565b809150509250925092565b60008060008060008060c08789031215615419578384fd5b863561542481615d6f565b95506020870135945060408701359350606087013560ff81168114615447578283fd5b9598949750929560808101359460a0909101359350915050565b60008060208385031215615473578182fd5b823567ffffffffffffffff8082111561548a578384fd5b818501915085601f83011261549d578384fd5b8135818111156154ab578485fd5b86602080830285010111156154be578485fd5b60209290920196919550909350505050565b6000602082840312156154e1578081fd5b81356001600160e01b031981168114613803578182fd5b600060208284031215615509578081fd5b813561380381615d92565b600060208284031215615525578081fd5b815167ffffffffffffffff81111561553b578182fd5b8201601f8101841361554b578182fd5b805161555961533182615d21565b81815285602083850101111561556d578384fd5b6147d7826020830160208601615d43565b60006080828403121561558f578081fd5b50919050565b600060a0828403121561558f578081fd5b600060c0828403121561558f578081fd5b600081830360808112156155c9578182fd5b6040516040810167ffffffffffffffff82821081831117156155e757fe5b8160405260608412156155f8578485fd5b60a083019350818410818511171561560c57fe5b50826040528435925061561e83615d6f565b91825260208401359161563083615d6f565b8260608301526040850135925061564683615d92565b60808201839052815261565b606085016151f4565b6020820152949350505050565b6000610180828403121561558f578081fd5b60006020828403121561568b578081fd5b813561380381615da1565b600080604083850312156156a8578182fd5b82516156b381615da1565b602084015190925061527681615da1565b600080600080600060a086880312156156db578283fd5b85516156e681615da1565b809550506020860151935060408601519250606086015161570681615da1565b608087015190925061571781615da1565b809150509295509295909350565b60008060008060008060c0878903121561573d578384fd5b865161574881615d6f565b602088015190965061575981615d92565b9450615767604088016151ff565b9350615775606088016151ff565b9250615783608088016151ff565b915060a087015161579381615d84565b809150509295509295509295565b6000602082840312156157b2578081fd5b5035919050565b600080604083850312156157cb578182fd5b82359150602083013561527681615d6f565b600080604083850312156157ef578182fd5b505080516020909101519092909150565b60008060008060608587031215615815578182fd5b8435935060208501359250604085013567ffffffffffffffff8082111561583a578384fd5b818701915087601f83011261584d578384fd5b81358181111561585b578485fd5b88602082850101111561586c578485fd5b95989497505060200194505050565b60008151808452615893816020860160208601615d43565b601f01601f19169290920160200192915050565b6001600160801b03169052565b6000828483379101908152919050565b6001600160a01b0391909116815260200190565b6001600160a01b039485168152928416602084015260029190910b6040830152909116606082015260800190565b600060018060a01b03871682528560020b60208301528460020b60408301526001600160801b038416606083015260a0608083015261512360a083018461587b565b6001600160a01b03959095168552600293840b60208601529190920b60408401526001600160801b03918216606084015216608082015260a00190565b6001600160a01b039687168152600295860b60208201529390940b60408401526001600160801b039182166060840152166080820152911660a082015260c00190565b6001600160a01b039390931683526001600160801b03918216602084015216604082015260600190565b6000602080830181845280855180835260408601915060408482028701019250838701855b82811015615a4557603f19888603018452615a3385835161587b565b94509285019290850190600101615a17565b5092979650505050505050565b901515815260200190565b90815260200190565b6001600160a01b03929092168252602082015260400190565b600293840b81529190920b60208201526001600160801b03909116604082015260600190565b600294850b81529290930b60208301526001600160801b031660408201526001600160a01b03909116606082015260800190565b918252602082015260400190565b60006020825261151b602083018461587b565b602080825260029082015261125160f21b604082015260600190565b602080825260029082015261505360f01b604082015260600190565b6020808252600290820152614e4360f01b604082015260600190565b60208082526003908201526250534360e81b604082015260600190565b6020808252600290820152614e4760f01b604082015260600190565b6020808252600290820152614e4560f01b604082015260600190565b815180516001600160a01b03908116835260208083015182168185015260409283015160020b92840192909252920151909116606082015260800190565b6001600160801b039390931683526020830191909152604082015260600190565b9384526001600160801b039290921660208401526040830152606082015260800190565b6001600160601b038d1681526001600160a01b038c811660208301528b811660408301528a166060820152600289810b608083015288810b60a083015287900b60c08201526101808101615c7d60e08301886158a7565b8561010083015284610120830152615c996101408301856158a7565b615ca76101608301846158a7565b9d9c50505050505050505050505050565b6000808335601e19843603018112615cce578283fd5b83018035915067ffffffffffffffff821115615ce8578283fd5b602001915036819003821315613dc957600080fd5b60405181810167ffffffffffffffff81118282101715615d1957fe5b604052919050565b600067ffffffffffffffff821115615d3557fe5b50601f01601f191660200190565b60005b83811015615d5e578181015183820152602001615d46565b83811115612a195750506000910152565b6001600160a01b03811681146151d857600080fd5b80151581146151d857600080fd5b8060020b81146151d857600080fd5b6001600160801b03811681146151d857600080fdfe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a164736f6c6343000706000a000000000000000000000000d78a40ca54090f4178c9c9212c78e9e0c2722231000000000000000000000000420000000000000000000000000000000000000600000000000000000000000063f510879ece26ae072d11f328c5e53b5413def800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f506f736974696f6e204e465420763100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434c2d504f530000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061024a5760003560e01c80636352211e11610139578063b5007d1f116100b6578063c87b56dd1161007a578063c87b56dd146106a0578063d3487997146106c0578063df2ab5bb146106e0578063e985e9c5146106f3578063f3995c6714610713578063fc6f786514610726576102b4565b8063b5007d1f14610615578063b6dc7ea314610638578063b88d4fde14610658578063c2e3140a14610678578063c45a01551461068b576102b4565b806395d89b41116100fd57806395d89b411461057557806399fbab881461058a578063a22cb465146105c2578063a4a78f0c146105e2578063ac9650d8146105f5576102b4565b80636352211e146104f85780636c0360eb1461051857806370a082311461052d5780637ac2ff7b1461054d5780638da5cb5b14610560576102b4565b80632f745c59116101c75780634659a4941161018b5780634659a4941461048857806349404b7c1461049b5780634aa4a4fc146104ae5780634f6ccce7146104c35780635a9d7a68146104e3576102b4565b80632f745c591461040b57806330adf81f1461042b5780633644e5151461044057806342842e0e1461045557806342966c6814610475576102b4565b806312210e8a1161020e57806312210e8a1461037f57806313af40351461038757806318160ddd146103a7578063219f5d17146103c957806323b872dd146103eb576102b4565b806301ffc9a7146102b957806306fdde03146102ef578063081812fc14610311578063095ea7b31461033e5780630c49ccbe1461035e576102b4565b366102b457336001600160a01b037f000000000000000000000000420000000000000000000000000000000000000616146102b2576040805162461bcd60e51b81526020600482015260036024820152624e573960e81b604482015290519081900360640190fd5b005b600080fd5b3480156102c557600080fd5b506102d96102d43660046154d0565b610739565b6040516102e69190615a52565b60405180910390f35b3480156102fb57600080fd5b5061030461075c565b6040516102e69190615ae7565b34801561031d57600080fd5b5061033161032c3660046157a1565b6107f2565b6040516102e691906158c4565b34801561034a57600080fd5b506102b2610359366004615395565b610845565b61037161036c366004615595565b61091b565b6040516102e6929190615ad9565b6102b2610f4f565b34801561039357600080fd5b506102b26103a2366004615211565b610fc3565b3480156103b357600080fd5b506103bc611037565b6040516102e69190615a5d565b6103dc6103d73660046155a6565b611048565b6040516102e693929190615be1565b3480156103f757600080fd5b506102b2610406366004615281565b6114a2565b34801561041757600080fd5b506103bc610426366004615395565b6114f9565b34801561043757600080fd5b506103bc611524565b34801561044c57600080fd5b506103bc611548565b34801561046157600080fd5b506102b2610470366004615281565b611606565b6102b26104833660046157a1565b611621565b6102b2610496366004615401565b6116dd565b6102b26104a93660046157b9565b611777565b3480156104ba57600080fd5b5061033161193e565b3480156104cf57600080fd5b506103bc6104de3660046157a1565b611962565b3480156104ef57600080fd5b50610331611978565b34801561050457600080fd5b506103316105133660046157a1565b611987565b34801561052457600080fd5b506103046119af565b34801561053957600080fd5b506103bc610548366004615211565b6119b4565b6102b261055b366004615401565b611a1c565b34801561056c57600080fd5b50610331611ddb565b34801561058157600080fd5b50610304611dea565b34801561059657600080fd5b506105aa6105a53660046157a1565b611e4b565b6040516102e69c9b9a99989796959493929190615c26565b3480156105ce57600080fd5b506102b26105dd366004615368565b612056565b6102b26105f0366004615401565b61215b565b610608610603366004615461565b6121f4565b6040516102e691906159f2565b610628610623366004615668565b612334565b6040516102e69493929190615c02565b34801561064457600080fd5b506102b2610653366004615211565b612908565b34801561066457600080fd5b506102b26106733660046152c1565b6129c1565b6102b2610686366004615401565b612a1f565b34801561069757600080fd5b50610331612aae565b3480156106ac57600080fd5b506103046106bb3660046157a1565b612ad2565b3480156106cc57600080fd5b506102b26106db366004615800565b612b6c565b6102b26106ee3660046153c0565b612bea565b3480156106ff57600080fd5b506102d961070e366004615249565b612d15565b6102b2610721366004615401565b612d43565b61037161073436600461557e565b612db5565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b60006107fd8261359f565b6108225760405162461bcd60e51b815260040161081990615b87565b60405180910390fd5b506000908152600d6020526040902054600160601b90046001600160a01b031690565b600061085082611987565b9050806001600160a01b0316836001600160a01b031614156108a35760405162461bcd60e51b8152600401808060200182810382526021815260200180615f576021913960400191505060405180910390fd5b806001600160a01b03166108b56135ac565b6001600160a01b031614806108d157506108d18161070e6135ac565b61090c5760405162461bcd60e51b8152600401808060200182810382526038815260200180615e816038913960400191505060405180910390fd5b61091683836135b0565b505050565b600080823561092a3382613626565b61093357600080fd5b8360800135806109416136ca565b111561094c57600080fd5b600061095e604087016020880161567a565b6001600160801b03161161097157600080fd5b84356000908152600d602090815260409182902060018101549092600160801b9091046001600160801b0316916109ac91890190890161567a565b6001600160801b0316816001600160801b031610156109ca57600080fd5b6001808301546001600160501b03166000908152600c60209081526040808320815160608101835281546001600160a01b039081168252919095015490811692850192909252600160a01b909104600290810b810b900b90830152610a4f7f000000000000000000000000d78a40ca54090f4178c9c9212c78e9e0c2722231836136ce565b90506000816001600160a01b031663a6f19c846040518163ffffffff1660e01b815260040160206040518083038186803b158015610a8c57600080fd5b505afa158015610aa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac4919061522d565b905060006001600160a01b038216610adc8c35611987565b6001600160a01b031614905080610bac57826001600160a01b031663a34123a787600101600a9054906101000a900460020b88600101600d9054906101000a900460020b8e6020016020810190610b33919061567a565b6040518463ffffffff1660e01b8152600401610b5193929190615a7f565b6040805180830381600087803b158015610b6a57600080fd5b505af1158015610b7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba291906157dd565b909a509850610c69565b826001600160a01b0316636f89244c87600101600a9054906101000a900460020b88600101600d9054906101000a900460020b8e6020016020810190610bf2919061567a565b866040518563ffffffff1660e01b8152600401610c129493929190615aa5565b6040805180830381600087803b158015610c2b57600080fd5b505af1158015610c3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6391906157dd565b909a5098505b8a604001358a10158015610c8157508a606001358910155b610c9d5760405162461bcd60e51b815260040161081990615b16565b6000610ccf82610cad5730610caf565b835b6001890154600160501b8104600290810b91600160681b9004900b6137b0565b9050600080856001600160a01b031663514ea4bf846040518263ffffffff1660e01b8152600401610d009190615a5d565b60a06040518083038186803b158015610d1857600080fd5b505afa158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5091906156c4565b505092509250508c8960040160008282829054906101000a90046001600160801b03160192506101000a8154816001600160801b0302191690836001600160801b031602179055508b8960040160108282829054906101000a90046001600160801b03160192506101000a8154816001600160801b0302191690836001600160801b0316021790555083610e6357610dfc89600201548303896001600160801b0316600160801b61380a565b60048a0180546001600160801b0380821690930183166001600160801b031990911617905560038a0154610e3a91908303908a16600160801b61380a565b60048a0180546001600160801b03600160801b8083048216909401811690930292169190911790555b8189600201819055508089600301819055508d6020016020810190610e88919061567a565b88038960010160106101000a8154816001600160801b0302191690836001600160801b031602179055507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce78e60000135604051610ee59190615a5d565b60405180910390a18d600001357f26f6a048ee9138f2c0ce266f322cb99228e8d619ae2bff30c67f8dcf9d2377b48f6020016020810190610f26919061567a565b8f8f604051610f3793929190615be1565b60405180910390a25050505050505050505050915091565b6002600a541415610fa7576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600a554715610fbc57610fbc33476138b9565b6001600a55565b600f546001600160a01b03163314610fda57600080fd5b6001600160a01b038116610fed57600080fd5b600f80546001600160a01b0319166001600160a01b0383169081179091556040517fcfaaa26691e16e66e73290fc725eee1a6b4e0e693a1640484937aac25ffb55a490600090a250565b600061104360026139a8565b905090565b60008060008360a001358061105b6136ca565b111561106657600080fd5b84356000908152600d602090815260408083206001808201546001600160501b03168552600c8452828520835160608101855281546001600160a01b039081168252919092015490811694820194909452600160a01b909304600290810b810b900b91830191909152916110fa7f000000000000000000000000d78a40ca54090f4178c9c9212c78e9e0c2722231836136ce565b90506000816001600160a01b031663a6f19c846040518163ffffffff1660e01b815260040160206040518083038186803b15801561113757600080fd5b505afa15801561114b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116f919061522d565b905060006001600160a01b0382166111878b35611987565b6001600160a01b031614905080156111c157336001600160a01b038316146111c15760405162461bcd60e51b815260040161081990615b6b565b61125f604051806101200160405280856001600160a01b03168152602001868152602001836111f057306111f2565b845b6001600160a01b0316815260200187600101600a9054906101000a900460020b60020b815260200187600101600d9054906101000a900460020b60020b81526020018c6020013581526020018c6040013581526020018c6060013581526020018c608001358152506139b3565b919a50985096506000611298826112765730611278565b835b6001880154600160501b8104600290810b91600160681b9004900b6137b0565b9050600080856001600160a01b031663514ea4bf846040518263ffffffff1660e01b81526004016112c99190615a5d565b60a06040518083038186803b1580156112e157600080fd5b505afa1580156112f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131991906156c4565b50509250925050836113be576002880154600189015461134e918403906001600160801b03600160801b91829004169061380a565b6004890180546001600160801b0380821690930183166001600160801b0319909116179055600389015460018a01546113959291840391600160801b91829004169061380a565b6004890180546001600160801b03600160801b8083048216909401811690930292169190911790555b8188600201819055508088600301819055508b8860010160108282829054906101000a90046001600160801b03160192506101000a8154816001600160801b0302191690836001600160801b03160217905550611419610f4f565b6040517ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79061144a908f3590615a5d565b60405180910390a18c600001357f3067048beee31b25b2f1681f88dac838c8bba36af25bfb2b7cf7473a5847e35f8d8d8d60405161148a93929190615be1565b60405180910390a25050505050505050509193909250565b6114b36114ad6135ac565b82613626565b6114ee5760405162461bcd60e51b8152600401808060200182810382526031815260200180615f786031913960400191505060405180910390fd5b610916838383613b89565b6001600160a01b038216600090815260016020526040812061151b9083613cd5565b90505b92915050565b7f49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad81565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f427deb456ad87263f2d4d684c82b5bad463c938d7087bde7ebb7831d3e5e66847fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66115b5613ce1565b3060405160200180868152602001858152602001848152602001838152602001826001600160a01b031681526020019550505050505060405160208183030381529060405280519060200120905090565b610916838383604051806020016040528060008152506129c1565b8061162c3382613626565b61163557600080fd5b6000828152600d602052604090206001810154600160801b90046001600160801b0316158015611670575060048101546001600160801b0316155b801561168e57506004810154600160801b90046001600160801b0316155b6116aa5760405162461bcd60e51b815260040161081990615b32565b6000838152600d602052604081208181556001810182905560028101829055600381018290556004015561091683613ce5565b604080516323f2ebc360e21b815233600482015230602482015260448101879052606481018690526001608482015260ff851660a482015260c4810184905260e4810183905290516001600160a01b03881691638fcbaf0c9161010480830192600092919082900301818387803b15801561175757600080fd5b505af115801561176b573d6000803e3d6000fd5b50505050505050505050565b6002600a5414156117cf576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600a55604080516370a0823160e01b815230600482015290516000916001600160a01b037f000000000000000000000000420000000000000000000000000000000000000616916370a0823191602480820192602092909190829003018186803b15801561183e57600080fd5b505afa158015611852573d6000803e3d6000fd5b505050506040513d602081101561186857600080fd5b50519050828110156118a6576040805162461bcd60e51b8152602060048201526002602482015261495760f01b604482015290519081900360640190fd5b8015611934577f00000000000000000000000042000000000000000000000000000000000000066001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561191257600080fd5b505af1158015611926573d6000803e3d6000fd5b5050505061193482826138b9565b50506001600a5550565b7f000000000000000000000000420000000000000000000000000000000000000681565b600080611970600284613db2565b509392505050565b6010546001600160a01b031681565b600061151e82604051806060016040528060298152602001615ee36029913960029190613dd0565b606090565b60006001600160a01b0382166119fb5760405162461bcd60e51b815260040180806020018281038252602a815260200180615eb9602a913960400191505060405180910390fd5b6001600160a01b038216600090815260016020526040902061151e906139a8565b83611a256136ca565b1115611a5d576040805162461bcd60e51b8152602060048201526002602482015261504560f01b604482015290519081900360640190fd5b6000611a67611548565b7f49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad8888611a9381613ddd565b604080516020808201969096526001600160a01b03909416848201526060840192909252608083015260a08083018a90528151808403909101815260c08301825280519084012061190160f01b60e084015260e283019490945261010280830194909452805180830390940184526101229091019052815191012090506000611b1b87611987565b9050806001600160a01b0316886001600160a01b03161415611b6a576040805162461bcd60e51b815260206004820152600360248201526241434f60e81b604482015290519081900360640190fd5b611b7381613e17565b15611cd1576040805160208082018790528183018690526001600160f81b031960f889901b1660608301528251604181840301815260618301808552630b135d3f60e11b90526065830186815260858401948552815160a585015281516001600160a01b03871695631626ba7e958995919260c59091019185019080838360005b83811015611c0c578181015183820152602001611bf4565b50505050905090810190601f168015611c395780820380516001836020036101000a031916815260200191505b50935050505060206040518083038186803b158015611c5757600080fd5b505afa158015611c6b573d6000803e3d6000fd5b505050506040513d6020811015611c8157600080fd5b50516001600160e01b031916630b135d3f60e11b14611ccc576040805162461bcd60e51b8152602060048201526002602482015261554160f01b604482015290519081900360640190fd5b611dc7565b600060018387878760405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015611d2d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611d7a576040805162461bcd60e51b8152602060048201526002602482015261495360f01b604482015290519081900360640190fd5b816001600160a01b0316816001600160a01b031614611dc5576040805162461bcd60e51b8152602060048201526002602482015261554160f01b604482015290519081900360640190fd5b505b611dd188886135b0565b5050505050505050565b600f546001600160a01b031681565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107e85780601f106107bd576101008083540402835291602001916107e8565b6000818152600d6020908152604080832081516101408101835281546001600160601b03811682526001600160a01b03600160601b909104169381019390935260018101546001600160501b038116928401839052600160501b8104600290810b810b810b6060860152600160681b8204810b810b810b60808601526001600160801b03600160801b92839004811660a08701529083015460c0860152600383015460e086015260049092015480831661010086015204166101208301528291829182918291829182918291829182918291829190611f3c5760405162461bcd60e51b815260040161081990615afa565b6000600c600083604001516001600160501b03166001600160501b031681526020019081526020016000206040518060600160405290816000820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016001820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016001820160149054906101000a900460020b60020b60020b81525050905081600001518260200151826000015183602001518460400151866060015187608001518860a001518960c001518a60e001518b61010001518c61012001519d509d509d509d509d509d509d509d509d509d509d509d50505091939597999b5091939597999b565b61205e6135ac565b6001600160a01b0316826001600160a01b031614156120c4576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600560006120d16135ac565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556121156135ac565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60408051636eb1769f60e11b81523360048201523060248201529051600019916001600160a01b0389169163dd62ed3e91604480820192602092909190829003018186803b1580156121ac57600080fd5b505afa1580156121c0573d6000803e3d6000fd5b505050506040513d60208110156121d657600080fd5b505110156121ec576121ec8686868686866116dd565b505050505050565b60608167ffffffffffffffff8111801561220d57600080fd5b5060405190808252806020026020018201604052801561224157816020015b606081526020019060019003908161222c5790505b50905060005b8281101561232d576000803086868581811061225f57fe5b90506020028101906122719190615cb8565b60405161227f9291906158b4565b600060405180830381855af49150503d80600081146122ba576040519150601f19603f3d011682016040523d82523d6000602084013e6122bf565b606091505b50915091508161230b576044815110156122d857600080fd5b600481019050808060200190518101906122f29190615514565b60405162461bcd60e51b81526004016108199190615ae7565b8084848151811061231857fe5b60209081029190910101525050600101612247565b5092915050565b600080600080846101400135806123496136ca565b111561235457600080fd5b61236661018087016101608801615211565b6001600160a01b031615612455576001600160a01b037f000000000000000000000000d78a40ca54090f4178c9c9212c78e9e0c27222311663232aa5ac6123b06020890189615211565b6123c060408a0160208b01615211565b6123d060608b0160408c016154f8565b6123e26101808c016101608d01615211565b6040518563ffffffff1660e01b815260040161240194939291906158d8565b602060405180830381600087803b15801561241b57600080fd5b505af115801561242f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612453919061522d565b505b60408051606081019091526000908061247160208a018a615211565b6001600160a01b031681526020018860200160208101906124929190615211565b6001600160a01b031681526020016124b060608a0160408b016154f8565b60020b9052905060006124e37f000000000000000000000000d78a40ca54090f4178c9c9212c78e9e0c2722231836136ce565b9050612577604051806101200160405280836001600160a01b03168152602001848152602001306001600160a01b031681526020018a606001602081019061252b91906154f8565b60020b815260200161254360a08c0160808d016154f8565b60020b81526020018a60a0013581526020018a60c0013581526020018a60e0013581526020018a61010001358152506139b3565b919750955093506125c16125936101408a016101208b01615211565b600e80546001600160b01b0319811660016001600160b01b0392831690810190921617909155985088613e1d565b60006125ec306125d760808c0160608d016154f8565b6125e760a08d0160808e016154f8565b6137b0565b9050600080836001600160a01b031663514ea4bf846040518263ffffffff1660e01b815260040161261d9190615a5d565b60a06040518083038186803b15801561263557600080fd5b505afa158015612649573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061266d91906156c4565b5050925092505060006126808587613f4b565b905060405180610140016040528060006001600160601b0316815260200160006001600160a01b03168152602001826001600160501b031681526020018d60600160208101906126d091906154f8565b60020b81526020018d60800160208101906126eb91906154f8565b60020b81526020018b6001600160801b0316815260200184815260200183815260200160006001600160801b0316815260200160006001600160801b0316815250600d60008d815260200190815260200160002060008201518160000160006101000a8154816001600160601b0302191690836001600160601b03160217905550602082015181600001600c6101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160010160006101000a8154816001600160501b0302191690836001600160501b03160217905550606082015181600101600a6101000a81548162ffffff021916908360020b62ffffff160217905550608082015181600101600d6101000a81548162ffffff021916908360020b62ffffff16021790555060a08201518160010160106101000a8154816001600160801b0302191690836001600160801b0316021790555060c0820151816002015560e082015181600301556101008201518160040160006101000a8154816001600160801b0302191690836001600160801b031602179055506101208201518160040160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506128be610f4f565b8a7f3067048beee31b25b2f1681f88dac838c8bba36af25bfb2b7cf7473a5847e35f8b8b8b6040516128f293929190615be1565b60405180910390a2505050505050509193509193565b600f546001600160a01b0316331461291f57600080fd5b6001600160a01b03811661293257600080fd5b601080546001600160a01b0319166001600160a01b0383161790556040517f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c906129829060009060001990615ad9565b60405180910390a16040516001600160a01b038216907f9a72f60932a1a6a1e1ceaa7a7dc51efcfe37685b729d8a680ab939f4612455a690600090a250565b6129d26129cc6135ac565b83613626565b612a0d5760405162461bcd60e51b8152600401808060200182810382526031815260200180615f786031913960400191505060405180910390fd5b612a1984848484614030565b50505050565b60408051636eb1769f60e11b8152336004820152306024820152905186916001600160a01b0389169163dd62ed3e91604480820192602092909190829003018186803b158015612a6e57600080fd5b505afa158015612a82573d6000803e3d6000fd5b505050506040513d6020811015612a9857600080fd5b505110156121ec576121ec868686868686612d43565b7f000000000000000000000000d78a40ca54090f4178c9c9212c78e9e0c272223181565b6060612add8261359f565b612ae657600080fd5b60105460405163e9dc637560e01b81526001600160a01b039091169063e9dc637590612b189030908690600401615a66565b60006040518083038186803b158015612b3057600080fd5b505afa158015612b44573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261151e9190810190615514565b6000612b7a828401846155b7565b9050612baa7f000000000000000000000000d78a40ca54090f4178c9c9212c78e9e0c27222318260000151614082565b508415612bc5578051516020820151612bc5919033886140a5565b8315612be357612be3816000015160200151826020015133876140a5565b5050505050565b6002600a541415612c42576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600a55604080516370a0823160e01b815230600482015290516000916001600160a01b038616916370a0823191602480820192602092909190829003018186803b158015612c9157600080fd5b505afa158015612ca5573d6000803e3d6000fd5b505050506040513d6020811015612cbb57600080fd5b5051905082811015612cf9576040805162461bcd60e51b8152602060048201526002602482015261125560f21b604482015290519081900360640190fd5b8015612d0a57612d0a848383614235565b50506001600a555050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6040805163d505accf60e01b8152336004820152306024820152604481018790526064810186905260ff8516608482015260a4810184905260c4810183905290516001600160a01b0388169163d505accf9160e480830192600092919082900301818387803b15801561175757600080fd5b6000808235612dc43382613626565b612dcd57600080fd5b6000612ddf606086016040870161567a565b6001600160801b03161180612e0c57506000612e01608086016060870161567a565b6001600160801b0316115b612e1557600080fd5b600080612e286040870160208801615211565b6001600160a01b031614612e4b57612e466040860160208701615211565b612e4d565b305b85356000908152600d602090815260408083206001808201546001600160501b03168552600c8452828520835160608101855281546001600160a01b039081168252919092015490811694820194909452600160a01b909304600290810b810b900b9183019190915292935090612ee47f000000000000000000000000d78a40ca54090f4178c9c9212c78e9e0c2722231836136ce565b600480850154604080516329bc672160e21b815290519394506001600160801b0380831694600160801b90930416926000926001600160a01b0387169263a6f19c849281810192602092909190829003018186803b158015612f4557600080fd5b505afa158015612f59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f7d919061522d565b905060006001600160a01b038216612f958d35611987565b60018901546001600160a01b0391909116919091149150600160801b90046001600160801b0316156132d6576000808261317d57600189015460405163a34123a760e01b81526001600160a01b0389169163a34123a79161301391600160501b8104600290810b92600160681b909204900b90600090600401615a7f565b6040805180830381600087803b15801561302c57600080fd5b505af1158015613040573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061306491906157dd565b505060018901546001600160a01b0388169063514ea4bf9061309d903090600160501b8104600290810b91600160681b9004900b6137b0565b6040518263ffffffff1660e01b81526004016130b99190615a5d565b60a06040518083038186803b1580156130d157600080fd5b505afa1580156130e5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061310991906156c4565b505060028c015460018d015492955090935061313b92508403906001600160801b03600160801b91829004169061380a565b86019550613174896003015482038a60010160109054906101000a90046001600160801b03166001600160801b0316600160801b61380a565b850194506132c8565b6001890154604051631be2491360e21b81526001600160a01b03891691636f89244c916131c991600160501b8104600290810b92600160681b909204900b906000908a90600401615aa5565b6040805180830381600087803b1580156131e257600080fd5b505af11580156131f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061321a91906157dd565b505060018901546001600160a01b0388169063514ea4bf90613253908790600160501b8104600290810b91600160681b9004900b6137b0565b6040518263ffffffff1660e01b815260040161326f9190615a5d565b60a06040518083038186803b15801561328757600080fd5b505afa15801561329b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132bf91906156c4565b50919450925050505b600289019190915560038801555b600080856001600160801b03168e60400160208101906132f6919061567a565b6001600160801b03161161331c578d6040016020810190613317919061567a565b61331e565b855b856001600160801b03168f606001602081019061333b919061567a565b6001600160801b031611613361578e606001602081019061335c919061567a565b613363565b855b915091508261341e5760018901546040516309e3d67b60e31b81526001600160a01b03891691634f1eb3d8916133b8918e91600160501b8204600290810b92600160681b9004900b9088908890600401615948565b6040805180830381600087803b1580156133d157600080fd5b505af11580156133e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134099190615696565b6001600160801b039182169e50169b506134ce565b6001890154604051630c4ce0dd60e21b81526001600160a01b0389169163313383749161346c918e91600160501b8204600290810b92600160681b9004900b90889088908c90600401615985565b6040805180830381600087803b15801561348557600080fd5b505af1158015613499573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134bd9190615696565b6001600160801b039182169e50169b505b8186038186038a60040160008c60040160108491906101000a8154816001600160801b0302191690836001600160801b031602179055508391906101000a8154816001600160801b0302191690836001600160801b0316021790555050507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce78e6000013560405161355f9190615a5d565b60405180910390a18d600001357f40d0efd1a53d60ecbf40971b9daf7dc90178c3aadc7aab1765632738fa8b8f018b8484604051610f37939291906159c8565b600061151e60028361437c565b3390565b6000818152600d6020526040902080546001600160601b0316600160601b6001600160a01b0385169081029190911790915581906135ed82611987565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006136318261359f565b61366c5760405162461bcd60e51b815260040180806020018281038252602c815260200180615e55602c913960400191505060405180910390fd5b600061367783611987565b9050806001600160a01b0316846001600160a01b031614806136b25750836001600160a01b03166136a7846107f2565b6001600160a01b0316145b806136c257506136c28185612d15565b949350505050565b4290565b600081602001516001600160a01b031682600001516001600160a01b0316106136f657600080fd5b61151b836001600160a01b031663cefa77996040518163ffffffff1660e01b815260040160206040518083038186803b15801561373257600080fd5b505afa158015613746573d6000803e3d6000fd5b505050506040513d602081101561375c57600080fd5b5051835160208581015160408088015181516001600160a01b0395861681860152949092168482015260029190910b6060808501919091528151808503909101815260809093019052815191012085614388565b604080516bffffffffffffffffffffffff19606086901b16602080830191909152600285810b60e890811b60348501529085900b901b60378301528251601a818403018152603a90920190925280519101205b9392505050565b6000808060001985870986860292508281109083900303905080613840576000841161383557600080fd5b508290049050613803565b80841161384c57600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b602083106139055780518252601f1990920191602091820191016138e6565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613967576040519150601f19603f3d011682016040523d82523d6000602084013e61396c565b606091505b5050905080610916576040805162461bcd60e51b815260206004820152600360248201526253544560e81b604482015290519081900360640190fd5b600061151e826143e6565b600080600080846000015190506000816001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160c06040518083038186803b1580156139fb57600080fd5b505afa158015613a0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a339190615725565b505050505090506000613a4987606001516143ea565b90506000613a5a88608001516143ea565b9050613a718383838b60a001518c60c0015161471c565b9650505050806001600160a01b0316633c8a7d8d8660400151876060015188608001518860405180604001604052808c602001518152602001336001600160a01b0316815250604051602001613ac79190615ba3565b6040516020818303038152906040526040518663ffffffff1660e01b8152600401613af6959493929190615906565b6040805180830381600087803b158015613b0f57600080fd5b505af1158015613b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b4791906157dd565b60e087015191945092508310801590613b6557508461010001518210155b613b815760405162461bcd60e51b815260040161081990615b4e565b509193909250565b826001600160a01b0316613b9c82611987565b6001600160a01b031614613be15760405162461bcd60e51b8152600401808060200182810382526029815260200180615f2e6029913960400191505060405180910390fd5b6001600160a01b038216613c265760405162461bcd60e51b8152600401808060200182810382526024815260200180615e0b6024913960400191505060405180910390fd5b613c31838383610916565b613c3c6000826135b0565b6001600160a01b0383166000908152600160205260409020613c5e90826147e0565b506001600160a01b0382166000908152600160205260409020613c8190826147ec565b50613c8e600282846147f8565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061151b838361480e565b4690565b6000613cf082611987565b9050613cfe81600084610916565b613d096000836135b0565b6000828152600860205260409020546002600019610100600184161502019091160415613d47576000828152600860205260408120613d4791615194565b6001600160a01b0381166000908152600160205260409020613d6990836147e0565b50613d75600283614872565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000808080613dc1868661487e565b909450925050505b9250929050565b60006136c28484846148f9565b6000908152600d6020526040902080546bffffffffffffffffffffffff19811660016001600160601b039283169081019092161790915590565b3b151590565b6001600160a01b038216613e78576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b613e818161359f565b15613ed3576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b613edf60008383610916565b6001600160a01b0382166000908152600160205260409020613f0190826147ec565b50613f0e600282846147f8565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0382166000908152600b60205260409020546001600160501b03168061151e5750600e805460016001600160501b03600160b01b8084048216838101909216026001600160b01b03909316929092179092556001600160a01b038085166000908152600b60209081526040808320805469ffffffffffffffffffff191686179055848352600c825291829020865181549085166001600160a01b031991821617825591870151950180549287015160020b62ffffff16600160a01b0262ffffff60a01b19969094169290911691909117939093161790915592915050565b61403b848484613b89565b614047848484846149c3565b612a195760405162461bcd60e51b8152600401808060200182810382526032815260200180615dd96032913960400191505060405180910390fd5b600061408e83836136ce565b9050336001600160a01b0382161461151e57600080fd5b7f00000000000000000000000042000000000000000000000000000000000000066001600160a01b0316846001600160a01b03161480156140e65750804710155b15614208577f00000000000000000000000042000000000000000000000000000000000000066001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561414657600080fd5b505af115801561415a573d6000803e3d6000fd5b50505050507f00000000000000000000000042000000000000000000000000000000000000066001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156141d657600080fd5b505af11580156141ea573d6000803e3d6000fd5b505050506040513d602081101561420057600080fd5b50612a199050565b6001600160a01b03831630141561422957614224848383614235565b612a19565b612a1984848484614b2b565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1781529251825160009485949389169392918291908083835b602083106142b15780518252601f199092019160209182019101614292565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614313576040519150601f19603f3d011682016040523d82523d6000602084013e614318565b606091505b5091509150818015614346575080511580614346575080806020019051602081101561434357600080fd5b50515b612be3576040805162461bcd60e51b815260206004820152600260248201526114d560f21b604482015290519081900360640190fd5b600061151b8383614c7b565b604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b8152606093841b60148201526f5af43d82803e903d91602b57fd5bf3ff60801b6028820152921b6038830152604c8201526037808220606c830152605591012090565b5490565b60008060008360020b12614401578260020b614409565b8260020b6000035b9050620d89e8811115614447576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b60006001821661445b57600160801b61446d565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff16905060028216156144a1576ffff97272373d413259a46990580e213a0260801c5b60048216156144c0576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b60088216156144df576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b60108216156144fe576fffcb9843d60f6159c9db58835c9266440260801c5b602082161561451d576fff973b41fa98c081472e6896dfb254c00260801c5b604082161561453c576fff2ea16466c96a3843ec78b326b528610260801c5b608082161561455b576ffe5dee046a99a2a811c461f1969c30530260801c5b61010082161561457b576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b61020082161561459b576ff987a7253ac413176f2b074cf7815e540260801c5b6104008216156145bb576ff3392b0822b70005940c7a398e4b70f30260801c5b6108008216156145db576fe7159475a2c29b7443b29c7fa6e889d90260801c5b6110008216156145fb576fd097f3bdfd2022b8845ad8f792aa58250260801c5b61200082161561461b576fa9f746462d870fdf8a65dc1f90e061e50260801c5b61400082161561463b576f70d869a156d2a1b890bb3df62baf32f70260801c5b61800082161561465b576f31be135f97d08fd981231505542fcfa60260801c5b6201000082161561467c576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b6202000082161561469c576e5d6af8dedb81196699c329225ee6040260801c5b620400008216156146bb576d2216e584f5fa1ea926041bedfe980260801c5b620800008216156146d8576b048a170391f7dc42444e8fa20260801c5b60008460020b13156146f35780600019816146ef57fe5b0490505b64010000000081061561470757600161470a565b60005b60ff16602082901c0192505050919050565b6000836001600160a01b0316856001600160a01b0316111561473c579293925b846001600160a01b0316866001600160a01b03161161476757614760858585614c93565b90506147d7565b836001600160a01b0316866001600160a01b031610156147c957600061478e878686614c93565b9050600061479d878986614cf6565b9050806001600160801b0316826001600160801b0316106147be57806147c0565b815b925050506147d7565b6147d4858584614cf6565b90505b95945050505050565b600061151b8383614d33565b600061151b8383614df9565b60006136c284846001600160a01b038516614e43565b815460009082106148505760405162461bcd60e51b8152600401808060200182810382526022815260200180615db76022913960400191505060405180910390fd5b82600001828154811061485f57fe5b9060005260206000200154905092915050565b600061151b8383614eda565b8154600090819083106148c25760405162461bcd60e51b8152600401808060200182810382526022815260200180615f0c6022913960400191505060405180910390fd5b60008460000184815481106148d357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816149945760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614959578181015183820152602001614941565b50505050905090810190601f1680156149865780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106149a757fe5b9060005260206000209060020201600101549150509392505050565b60006149d7846001600160a01b0316613e17565b6149e3575060016136c2565b6000614af1630a85bd0160e11b6149f86135ac565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614a5f578181015183820152602001614a47565b50505050905090810190601f168015614a8c5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001615dd9603291396001600160a01b0388169190614fae565b90506000818060200190516020811015614b0a57600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b178152925182516000948594938a169392918291908083835b60208310614baf5780518252601f199092019160209182019101614b90565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614c11576040519150601f19603f3d011682016040523d82523d6000602084013e614c16565b606091505b5091509150818015614c44575080511580614c445750808060200190516020811015614c4157600080fd5b50515b6121ec576040805162461bcd60e51b815260206004820152600360248201526229aa2360e91b604482015290519081900360640190fd5b60009081526001919091016020526040902054151590565b6000826001600160a01b0316846001600160a01b03161115614cb3579192915b6000614cd6856001600160a01b0316856001600160a01b0316600160601b61380a565b90506147d7614cf184838888036001600160a01b031661380a565b614fbd565b6000826001600160a01b0316846001600160a01b03161115614d16579192915b6136c2614cf183600160601b8787036001600160a01b031661380a565b60008181526001830160205260408120548015614def5783546000198083019190810190600090879083908110614d6657fe5b9060005260206000200154905080876000018481548110614d8357fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080614db357fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061151e565b600091505061151e565b6000614e058383614c7b565b614e3b5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561151e565b50600061151e565b600082815260018401602052604081205480614ea8575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055613803565b82856000016001830381548110614ebb57fe5b9060005260206000209060020201600101819055506000915050613803565b60008181526001830160205260408120548015614def5783546000198083019190810190600090879083908110614f0d57fe5b9060005260206000209060020201905080876000018481548110614f2d57fe5b600091825260208083208454600290930201918255600193840154918401919091558354825289830190526040902090840190558654879080614f6c57fe5b600082815260208082206002600019909401938402018281556001908101839055929093558881528982019092526040822091909155945061151e9350505050565b60606136c28484600085614fd3565b806001600160801b038116811461075757600080fd5b6060824710156150145760405162461bcd60e51b8152600401808060200182810382526026815260200180615e2f6026913960400191505060405180910390fd5b61501d85613e17565b61506e576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106150ac5780518252601f19909201916020918201910161508d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461510e576040519150601f19603f3d011682016040523d82523d6000602084013e615113565b606091505b509150915061512382828661512e565b979650505050505050565b6060831561513d575081613803565b82511561514d5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315614959578181015183820152602001614941565b50805460018160011615610100020316600290046000825580601f106151ba57506151d8565b601f0160209004906000526020600020908101906151d891906151db565b50565b5b808211156151f057600081556001016151dc565b5090565b803561075781615d6f565b805161ffff8116811461075757600080fd5b600060208284031215615222578081fd5b813561380381615d6f565b60006020828403121561523e578081fd5b815161380381615d6f565b6000806040838503121561525b578081fd5b823561526681615d6f565b9150602083013561527681615d6f565b809150509250929050565b600080600060608486031215615295578081fd5b83356152a081615d6f565b925060208401356152b081615d6f565b929592945050506040919091013590565b600080600080608085870312156152d6578182fd5b84356152e181615d6f565b935060208501356152f181615d6f565b925060408501359150606085013567ffffffffffffffff811115615313578182fd5b8501601f81018713615323578182fd5b803561533661533182615d21565b615cfd565b81815288602083850101111561534a578384fd5b81602084016020830137908101602001929092525092959194509250565b6000806040838503121561537a578182fd5b823561538581615d6f565b9150602083013561527681615d84565b600080604083850312156153a7578182fd5b82356153b281615d6f565b946020939093013593505050565b6000806000606084860312156153d4578081fd5b83356153df81615d6f565b92506020840135915060408401356153f681615d6f565b809150509250925092565b60008060008060008060c08789031215615419578384fd5b863561542481615d6f565b95506020870135945060408701359350606087013560ff81168114615447578283fd5b9598949750929560808101359460a0909101359350915050565b60008060208385031215615473578182fd5b823567ffffffffffffffff8082111561548a578384fd5b818501915085601f83011261549d578384fd5b8135818111156154ab578485fd5b86602080830285010111156154be578485fd5b60209290920196919550909350505050565b6000602082840312156154e1578081fd5b81356001600160e01b031981168114613803578182fd5b600060208284031215615509578081fd5b813561380381615d92565b600060208284031215615525578081fd5b815167ffffffffffffffff81111561553b578182fd5b8201601f8101841361554b578182fd5b805161555961533182615d21565b81815285602083850101111561556d578384fd5b6147d7826020830160208601615d43565b60006080828403121561558f578081fd5b50919050565b600060a0828403121561558f578081fd5b600060c0828403121561558f578081fd5b600081830360808112156155c9578182fd5b6040516040810167ffffffffffffffff82821081831117156155e757fe5b8160405260608412156155f8578485fd5b60a083019350818410818511171561560c57fe5b50826040528435925061561e83615d6f565b91825260208401359161563083615d6f565b8260608301526040850135925061564683615d92565b60808201839052815261565b606085016151f4565b6020820152949350505050565b6000610180828403121561558f578081fd5b60006020828403121561568b578081fd5b813561380381615da1565b600080604083850312156156a8578182fd5b82516156b381615da1565b602084015190925061527681615da1565b600080600080600060a086880312156156db578283fd5b85516156e681615da1565b809550506020860151935060408601519250606086015161570681615da1565b608087015190925061571781615da1565b809150509295509295909350565b60008060008060008060c0878903121561573d578384fd5b865161574881615d6f565b602088015190965061575981615d92565b9450615767604088016151ff565b9350615775606088016151ff565b9250615783608088016151ff565b915060a087015161579381615d84565b809150509295509295509295565b6000602082840312156157b2578081fd5b5035919050565b600080604083850312156157cb578182fd5b82359150602083013561527681615d6f565b600080604083850312156157ef578182fd5b505080516020909101519092909150565b60008060008060608587031215615815578182fd5b8435935060208501359250604085013567ffffffffffffffff8082111561583a578384fd5b818701915087601f83011261584d578384fd5b81358181111561585b578485fd5b88602082850101111561586c578485fd5b95989497505060200194505050565b60008151808452615893816020860160208601615d43565b601f01601f19169290920160200192915050565b6001600160801b03169052565b6000828483379101908152919050565b6001600160a01b0391909116815260200190565b6001600160a01b039485168152928416602084015260029190910b6040830152909116606082015260800190565b600060018060a01b03871682528560020b60208301528460020b60408301526001600160801b038416606083015260a0608083015261512360a083018461587b565b6001600160a01b03959095168552600293840b60208601529190920b60408401526001600160801b03918216606084015216608082015260a00190565b6001600160a01b039687168152600295860b60208201529390940b60408401526001600160801b039182166060840152166080820152911660a082015260c00190565b6001600160a01b039390931683526001600160801b03918216602084015216604082015260600190565b6000602080830181845280855180835260408601915060408482028701019250838701855b82811015615a4557603f19888603018452615a3385835161587b565b94509285019290850190600101615a17565b5092979650505050505050565b901515815260200190565b90815260200190565b6001600160a01b03929092168252602082015260400190565b600293840b81529190920b60208201526001600160801b03909116604082015260600190565b600294850b81529290930b60208301526001600160801b031660408201526001600160a01b03909116606082015260800190565b918252602082015260400190565b60006020825261151b602083018461587b565b602080825260029082015261125160f21b604082015260600190565b602080825260029082015261505360f01b604082015260600190565b6020808252600290820152614e4360f01b604082015260600190565b60208082526003908201526250534360e81b604082015260600190565b6020808252600290820152614e4760f01b604082015260600190565b6020808252600290820152614e4560f01b604082015260600190565b815180516001600160a01b03908116835260208083015182168185015260409283015160020b92840192909252920151909116606082015260800190565b6001600160801b039390931683526020830191909152604082015260600190565b9384526001600160801b039290921660208401526040830152606082015260800190565b6001600160601b038d1681526001600160a01b038c811660208301528b811660408301528a166060820152600289810b608083015288810b60a083015287900b60c08201526101808101615c7d60e08301886158a7565b8561010083015284610120830152615c996101408301856158a7565b615ca76101608301846158a7565b9d9c50505050505050505050505050565b6000808335601e19843603018112615cce578283fd5b83018035915067ffffffffffffffff821115615ce8578283fd5b602001915036819003821315613dc957600080fd5b60405181810167ffffffffffffffff81118282101715615d1957fe5b604052919050565b600067ffffffffffffffff821115615d3557fe5b50601f01601f191660200190565b60005b83811015615d5e578181015183820152602001615d46565b83811115612a195750506000910152565b6001600160a01b03811681146151d857600080fd5b80151581146151d857600080fd5b8060020b81146151d857600080fd5b6001600160801b03811681146151d857600080fdfe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a164736f6c6343000706000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d78a40ca54090f4178c9c9212c78e9e0c2722231000000000000000000000000420000000000000000000000000000000000000600000000000000000000000063f510879ece26ae072d11f328c5e53b5413def800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f506f736974696f6e204e465420763100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434c2d504f530000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _factory (address): 0xD78a40cA54090f4178c9c9212c78e9E0C2722231
Arg [1] : _WETH9 (address): 0x4200000000000000000000000000000000000006
Arg [2] : _tokenDescriptor (address): 0x63f510879ecE26Ae072d11f328C5E53B5413def8
Arg [3] : name (string): Position NFT v1
Arg [4] : symbol (string): CL-POS
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000d78a40ca54090f4178c9c9212c78e9e0c2722231
Arg [1] : 0000000000000000000000004200000000000000000000000000000000000006
Arg [2] : 00000000000000000000000063f510879ece26ae072d11f328c5e53b5413def8
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 506f736974696f6e204e46542076310000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 434c2d504f530000000000000000000000000000000000000000000000000000
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.