Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
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.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x679705C6...6B488e10b The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Animal
Compiler Version
v0.8.26+commit.8a97fa7a
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.13;import {ERC20} from "solmate/tokens/ERC20.sol";import {LibString} from "solady/utils/LibString.sol";import "./Constants.sol";import {IERC7572} from "./IERC7572.sol";import {AnimalFactory} from "./AnimalFactory.sol";/// @title Animal/// @notice ERC20 token for AnimalFactorycontract Animal is ERC20, IERC7572 {using LibString for address;AnimalFactory internal factory;address public uniPool;string internal _contractURI;constructor(string memory _name, string memory _symbol, uint256 _supply) ERC20(_name, _symbol, 18) {_mint(msg.sender, _supply);factory = AnimalFactory(msg.sender);}function setUniPool(address uniPool_) external {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0-onlypragma solidity >=0.8.0;/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation./// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.abstract contract ERC20 {/*//////////////////////////////////////////////////////////////EVENTS//////////////////////////////////////////////////////////////*/event Transfer(address indexed from, address indexed to, uint256 amount);event Approval(address indexed owner, address indexed spender, uint256 amount);/*//////////////////////////////////////////////////////////////METADATA STORAGE//////////////////////////////////////////////////////////////*/string public name;string public symbol;uint8 public immutable decimals;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.4;/// @notice Library for converting numbers into strings and other string operations./// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibString.sol)/// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/LibString.sol)////// @dev Note:/// For performance and bytecode compactness, most of the string operations are restricted to/// byte strings (7-bit ASCII), except where otherwise specified./// Usage of byte string operations on charsets with runes spanning two or more bytes/// can lead to undefined behavior.library LibString {/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* CUSTOM ERRORS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*//// @dev The length of the output is too small to contain all the hex digits.error HexLengthInsufficient();/// @dev The length of the string is more than 32 bytes.error TooBigForSmallString();/// @dev The input string must be a 7-bit ASCII.error StringNot7BitASCII();
12345// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.25;uint24 constant UNI_FEE = 10000; // 1% swap feeint24 constant UNI_TICK_SPACING = 200;
12345678// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.13;interface IERC7572 {function contractURI() external view returns (string memory);event ContractURIUpdated();}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.25;import {Owned} from "solmate/auth/Owned.sol";import {Bytes32AddressLib} from "solmate/utils/Bytes32AddressLib.sol";import {SafeTransferLib} from "solady/utils/SafeTransferLib.sol";import {FixedPointMathLib} from "solady/utils/FixedPointMathLib.sol";import {IUniswapV3Pool} from "v3-core/interfaces/IUniswapV3Pool.sol";import {IUniswapV3Factory} from "v3-core/interfaces/IUniswapV3Factory.sol";import {INonfungiblePositionManager} from "v3-periphery/interfaces/INonfungiblePositionManager.sol";import "./Math.sol";import "./Constants.sol";import "./TransferETH.sol";import {PreDEX} from "./PreDEX.sol";import {Animal} from "./Animal.sol";import {LiquidityLocker} from "./LiquidityLocker.sol";/// @title AnimalFactory/// @notice Factory for deploying ERC20 tokens and initializing Uniswap V3 liquiditycontract AnimalFactory is PreDEX, Owned {using Bytes32AddressLib for *;using FixedPointMathLib for *;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0-onlypragma solidity >=0.8.0;/// @notice Simple single owner authorization mixin./// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol)abstract contract Owned {/*//////////////////////////////////////////////////////////////EVENTS//////////////////////////////////////////////////////////////*/event OwnershipTransferred(address indexed user, address indexed newOwner);/*//////////////////////////////////////////////////////////////OWNERSHIP STORAGE//////////////////////////////////////////////////////////////*/address public owner;modifier onlyOwner() virtual {require(msg.sender == owner, "UNAUTHORIZED");_;}/*//////////////////////////////////////////////////////////////CONSTRUCTOR
1234567891011121314// SPDX-License-Identifier: AGPL-3.0-onlypragma solidity >=0.8.0;/// @notice Library for converting between addresses and bytes32 values./// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/Bytes32AddressLib.sol)library Bytes32AddressLib {function fromLast20Bytes(bytes32 bytesValue) internal pure returns (address) {return address(uint160(uint256(bytesValue)));}function fillLast12Bytes(address addressValue) internal pure returns (bytes32) {return bytes32(bytes20(addressValue));}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.4;/// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values./// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/SafeTransferLib.sol)/// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol)/// @author Permit2 operations from (https://github.com/Uniswap/permit2/blob/main/src/libraries/Permit2Lib.sol)////// @dev Note:/// - For ETH transfers, please use `forceSafeTransferETH` for DoS protection./// - For ERC20s, this implementation won't check that a token has code,/// responsibility is delegated to the caller.library SafeTransferLib {/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* CUSTOM ERRORS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*//// @dev The ETH transfer has failed.error ETHTransferFailed();/// @dev The ERC20 `transferFrom` has failed.error TransferFromFailed();/// @dev The ERC20 `transfer` has failed.error TransferFailed();
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.4;/// @notice Arithmetic library with operations for fixed-point numbers./// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/FixedPointMathLib.sol)/// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/FixedPointMathLib.sol)library FixedPointMathLib {/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* CUSTOM ERRORS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*//// @dev The operation failed, as the output exceeds the maximum value of uint256.error ExpOverflow();/// @dev The operation failed, as the output exceeds the maximum value of uint256.error FactorialOverflow();/// @dev The operation failed, due to an overflow.error RPowOverflow();/// @dev The mantissa is too big to fit.error MantissaOverflow();/// @dev The operation failed, due to an multiplication overflow.error MulWadFailed();
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;import {IUniswapV3PoolImmutables} from './pool/IUniswapV3PoolImmutables.sol';import {IUniswapV3PoolState} from './pool/IUniswapV3PoolState.sol';import {IUniswapV3PoolDerivedState} from './pool/IUniswapV3PoolDerivedState.sol';import {IUniswapV3PoolActions} from './pool/IUniswapV3PoolActions.sol';import {IUniswapV3PoolOwnerActions} from './pool/IUniswapV3PoolOwnerActions.sol';import {IUniswapV3PoolErrors} from './pool/IUniswapV3PoolErrors.sol';import {IUniswapV3PoolEvents} from './pool/IUniswapV3PoolEvents.sol';/// @title The interface for a Uniswap V3 Pool/// @notice A Uniswap 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 IUniswapV3Pool isIUniswapV3PoolImmutables,IUniswapV3PoolState,IUniswapV3PoolDerivedState,IUniswapV3PoolActions,IUniswapV3PoolOwnerActions,IUniswapV3PoolErrors,IUniswapV3PoolEvents{}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title The interface for the Uniswap V3 Factory/// @notice The Uniswap V3 Factory facilitates creation of Uniswap V3 pools and control over the protocol feesinterface IUniswapV3Factory {/// @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);/// @notice Emitted when a pool is created/// @param token0 The first token of the pool by address sort order/// @param token1 The second token of the pool by address sort order/// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip/// @param tickSpacing The minimum number of ticks between initialized ticks/// @param pool The address of the created poolevent PoolCreated(address indexed token0,address indexed token1,uint24 indexed fee,int24 tickSpacing,address pool);/// @notice Emitted when a new fee amount is enabled for pool creation via the factory
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';import './IPoolInitializer.sol';import './IERC721Permit.sol';import './IPeripheryPayments.sol';import './IPeripheryImmutableState.sol';import '../libraries/PoolAddress.sol';/// @title Non-fungible token for positions/// @notice Wraps Uniswap V3 positions in a non-fungible token interface which allows for them to be transferred/// and authorized.interface INonfungiblePositionManager isIPoolInitializer,IPeripheryPayments,IPeripheryImmutableState,IERC721Metadata,IERC721Enumerable,IERC721Permit{/// @notice Emitted when liquidity is increased for a position NFT/// @dev Also emitted when a token is minted
123456789101112131415161718// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.25;import {TickMath} from "v3-core/libraries/TickMath.sol";/// @notice Given a tickSpacing, compute the minimum usable tickfunction minUsableTick(int24 tickSpacing) pure returns (int24) {unchecked {return (TickMath.MIN_TICK / tickSpacing) * tickSpacing;}}/// @notice Given a tickSpacing, compute the maximum usable tickfunction maxUsableTick(int24 tickSpacing) pure returns (int24) {unchecked {return (TickMath.MAX_TICK / tickSpacing) * tickSpacing;}}
12345678// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.25;/// @dev Best practice for transfering ETH on zksync.function transferETH(address to, uint256 amount) {(bool success,) = to.call{value: amount}("");require(success, "ETH");}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.25;import {SafeCastLib} from "solady/utils/SafeCastLib.sol";import {FixedPointMathLib} from "solady/utils/FixedPointMathLib.sol";import {TickMath} from "v3-core/libraries/TickMath.sol";import {LiquidityAmounts} from "v3-periphery/libraries/LiquidityAmounts.sol";import "./Math.sol";import "./Constants.sol";import "./TransferETH.sol";import {Animal} from "./Animal.sol";abstract contract PreDEX {using SafeCastLib for *;using FixedPointMathLib for *;/// @dev MARKET_CAP = K * MAX_CIRC_SUPPLY^2 / 1e36/// K = MARKET_CAP * 1e36 / MAX_CIRC_SUPPLY^2/// pricePerToken = K * circulatingSupply / 1e18/// MAX_ETH_RESERVE = 1\2 * K * MAX_CIRC_SUPPLY^2 / 1e36 = 1/2 * MARKET_CAPuint256 public constant MARKET_CAP = 10 ether;uint256 public constant MAX_CIRC_SUPPLY = 671887912732175134283881197; // generated via script/BinarySearchSupply.s.soluint256 public constant K = MARKET_CAP * 1e36 / (MAX_CIRC_SUPPLY ** 2); // bonding curve multiplier, 18 decimals
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.25;import "solmate/tokens/ERC721.sol";import {Owned} from "solmate/auth/Owned.sol";import {SafeTransferLib} from "solady/utils/SafeTransferLib.sol";import {FixedPointMathLib} from "solady/utils/FixedPointMathLib.sol";import {INonfungiblePositionManager} from "v3-periphery/interfaces/INonfungiblePositionManager.sol";/// @title LiquidityLocker/// @notice Locks Uniswap V3 liquidity positions while retaining the right to claim fees/// @author zefram.ethcontract LiquidityLocker is Owned, ERC721TokenReceiver {using SafeTransferLib for *;using FixedPointMathLib for *;INonfungiblePositionManager public immutable positionManager;address public protocolFeeRecipient;uint96 public protocolFeeWad;mapping(uint256 id => address) public deployerOf;mapping(uint256 id => address) public token0Of;mapping(uint256 id => address) public token1Of;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Pool state that never changes/// @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same valuesinterface IUniswapV3PoolImmutables {/// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory 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 pool's fee in hundredths of a bip, i.e. 1e-6/// @return The feefunction fee() external view returns (uint24);/// @notice The pool tick spacing/// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive/// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, .../// This value is an int24 to avoid casting even though it is always positive.
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 IUniswapV3PoolState {/// @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/// @return 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./// @return observationIndex The index of the last oracle observation that was written,/// @return observationCardinality The current maximum number of observations stored in the pool,/// @return observationCardinalityNext The next maximum number of observations, to be updated when the observation./// @return feeProtocol The protocol fee for both tokens of the pool./// Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0/// is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee./// unlocked Whether the pool is currently locked to reentrancyfunction slot0()externalviewreturns (uint160 sqrtPriceX96,int24 tick,
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 IUniswapV3PoolDerivedState {/// @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 Permissionless pool actions/// @notice Contains pool methods that can be called by anyoneinterface IUniswapV3PoolActions {/// @notice Sets the initial price for the pool/// @dev Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value/// @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96function initialize(uint160 sqrtPriceX96) external;/// @notice Adds liquidity for the given recipient/tickLower/tickUpper position/// @dev The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback/// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends/// on tickLower, tickUpper, the amount of liquidity, and the current price./// @param recipient The address for which the liquidity will be created/// @param tickLower The lower tick of the position in which to add liquidity/// @param tickUpper The upper tick of the position in which to add liquidity/// @param amount The amount of liquidity to mint/// @param data Any data that should be passed through to the callback/// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback/// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callbackfunction mint(address recipient,int24 tickLower,int24 tickUpper,
1234567891011121314151617181920212223// 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 IUniswapV3PoolOwnerActions {/// @notice Set the denominator of the protocol's % share of the fees/// @param feeProtocol0 new protocol fee for token0 of the pool/// @param feeProtocol1 new protocol fee for token1 of the poolfunction setFeeProtocol(uint8 feeProtocol0, uint8 feeProtocol1) external;/// @notice Collect the protocol fee accrued to the pool/// @param recipient The address to which collected protocol fees should be sent/// @param amount0Requested The maximum amount of token0 to send, can be 0 to collect fees in only token1/// @param amount1Requested The maximum amount of token1 to send, can be 0 to collect fees in only token0/// @return amount0 The protocol fee collected in token0/// @return amount1 The protocol fee collected in token1function collectProtocol(address recipient,uint128 amount0Requested,uint128 amount1Requested) external returns (uint128 amount0, uint128 amount1);}
12345678910111213141516171819// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Errors emitted by a pool/// @notice Contains all events emitted by the poolinterface IUniswapV3PoolErrors {error LOK();error TLU();error TLM();error TUM();error AI();error M0();error M1();error AS();error IIA();error L();error F0();error F1();}
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 IUniswapV3PoolEvents {/// @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,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.20;import {IERC721} from "../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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)pragma solidity ^0.8.20;import {IERC721} from "../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);/*** @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.
12345678910111213141516171819202122// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;/// @title Creates and initializes V3 Pools/// @notice Provides a method for creating and initializing a pool, if necessary, for bundling with other methods that/// require the pool to exist.interface IPoolInitializer {/// @notice Creates a new pool if it does not exist, then initializes if not initialized/// @dev This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool/// @param token0 The contract address of token0 of the pool/// @param token1 The contract address of token1 of the pool/// @param fee The fee amount of the v3 pool for the specified token pair/// @param sqrtPriceX96 The initial square root price of the pool as a Q64.96 value/// @return pool Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessaryfunction createAndInitializePoolIfNecessary(address token0,address token1,uint24 fee,uint160 sqrtPriceX96) external payable returns (address pool);}
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,
1234567891011121314151617181920212223242526// 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
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 Uniswap V3 factoryfunction factory() external view returns (address);/// @return Returns the address of WETH9function WETH9() external view returns (address);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Provides functions for deriving a pool address from the factory, tokens, and the feelibrary PoolAddress {bytes32 internal constant POOL_INIT_CODE_HASH = 0xa598dd2fba360510c5a8f02f44423a4468e902df5857dbce3ca162a43a3a31ff;/// @notice The identifying key of the poolstruct PoolKey {address token0;address token1;uint24 fee;}/// @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 fee The fee level of the pool/// @return Poolkey The pool details with ordered token0 and token1 assignmentsfunction getPoolKey(address tokenA,address tokenB,uint24 fee) internal pure returns (PoolKey memory) {if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA);return PoolKey({token0: tokenA, token1: tokenB, fee: fee});
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity ^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 {error T();error R();/// @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) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.4;/// @notice Safe integer casting library that reverts on overflow./// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/SafeCastLib.sol)/// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeCast.sol)/// @dev Optimized for runtime gas for very high number of optimizer runs (i.e. >= 1000000).library SafeCastLib {/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* CUSTOM ERRORS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/error Overflow();/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* UNSIGNED INTEGER SAFE CASTING OPERATIONS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/function toUint8(uint256 x) internal pure returns (uint8) {if (x >= 1 << 8) _revertOverflow();return uint8(x);}function toUint16(uint256 x) internal pure returns (uint16) {if (x >= 1 << 16) _revertOverflow();return uint16(x);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;import '@uniswap/v3-core/contracts/libraries/FullMath.sol';import '@uniswap/v3-core/contracts/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
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0-onlypragma solidity >=0.8.0;/// @notice Modern, minimalist, and gas efficient ERC-721 implementation./// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC721.sol)abstract contract ERC721 {/*//////////////////////////////////////////////////////////////EVENTS//////////////////////////////////////////////////////////////*/event Transfer(address indexed from, address indexed to, uint256 indexed id);event Approval(address indexed owner, address indexed spender, uint256 indexed id);event ApprovalForAll(address indexed owner, address indexed operator, bool approved);/*//////////////////////////////////////////////////////////////METADATA STORAGE/LOGIC//////////////////////////////////////////////////////////////*/string public name;string public symbol;function tokenURI(uint256 id) public view virtual returns (string memory);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)pragma solidity ^0.8.20;import {IERC165} from "../../utils/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.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) {unchecked {// 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 product
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;}
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)pragma solidity ^0.8.20;/*** @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{"viaIR": false,"codegen": "yul","remappings": ["@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","@uniswap/v3-core/contracts/=lib/v3-core/contracts/","create3-factory/=lib/create3-factory/","ds-test/=lib/forge-std/lib/ds-test/src/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","forge-std/=lib/forge-std/src/","multicaller/=lib/multicaller/src/","openzeppelin-contracts/=lib/openzeppelin-contracts/","solady/=lib/solady/src/","solmate/=lib/solmate/src/","v3-core/=lib/v3-core/contracts/","v3-periphery/=lib/v3-periphery/contracts/"],"evmVersion": "cancun","outputSelection": {"*": {"*": ["abi","metadata"],"": ["ast"
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uniPool_","type":"address"}],"name":"setUniPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Deployed Bytecode
0x0002000000000002000800000000000200010000000103550000006003100270000002840330019700000001002001900000005c0000c13d0000008002000039000000400020043f000000040030008c0000007d0000413d000000000401043b000000e004400270000002980040009c0000007f0000213d000002a40040009c000000c60000213d000002aa0040009c0000011c0000213d000002ad0040009c000001b90000613d000002ae0040009c0000007d0000c13d000000440030008c0000007d0000413d0000000002000416000000000002004b0000007d0000c13d0000000402100370000000000202043b000600000002001d000002b30020009c0000007d0000213d0000002401100370000000000101043b000500000001001d0000000001000411000000000010043f0000000401000039000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b0000000502000029000000000021041b000000400100043d0000000000210435000002840010009c000002840100804100000040011002100000000002000414000002840020009c0000028402008041000000c002200210000000000112019f0000028b011001c70000800d020000390000000303000039000002c504000041000000000500041100000006060000290a0d0a030000040f00000001002001900000007d0000613d000000400100043d00000001020000390000000000210435000002840010009c00000284010080410000004001100210000002d0011001c700000a0e0001042e000000e004000039000000400040043f0000000002000416000000000002004b0000007d0000c13d0000001f023000390000028502200197000000e002200039000000400020043f0000001f0530018f0000028606300198000000e0026000390000006e0000613d000000000701034f000000007807043c0000000004840436000000000024004b0000006a0000c13d000000000005004b0000007b0000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600030008c000000ad0000813d000000000100001900000a0f00010430000002990040009c000000dd0000213d0000029f0040009c000001410000213d000002a20040009c000001d60000613d000002a30040009c0000007d0000c13d000000240030008c0000007d0000413d0000000002000416000000000002004b0000007d0000c13d0000000402100370000000000202043b000002870020009c0000007d0000213d0000002304200039000000000034004b0000007d0000813d000500040020003d0000000501100360000000000101043b000600000001001d000002870010009c0000007d0000213d0000002402200039000400000002001d0000000601200029000000000031004b0000007d0000213d0000000601000039000000000201041a000002cc01000041000000800010043f0000000001000410000000840010043f0000000001000414000002b302200197000000040020008c000003e70000c13d0000000003000031000000200030008c000000200400003900000000040340190000040b0000013d000000e00500043d000002870050009c0000007d0000213d0000001f01500039000000000031004b000000000200001900000288020080410000028801100197000000000001004b00000000040000190000028804004041000002880010009c000000000402c019000000000004004b0000007d0000c13d000000e0015000390000000004010433000002870040009c000001610000a13d000002c601000041000000000010043f0000004101000039000000040010043f000002c70100004100000a0f00010430000002a50040009c0000018a0000213d000002a80040009c000001e60000613d000002a90040009c0000007d0000c13d0000000001000416000000000001004b0000007d0000c13d0000000001000412000800000001001d000700000000003d000080050100003900000044030000390000000004000415000000080440008a0000000504400210000002d1020000410a0d09e50000040f000000ff0110018f000000800010043f000002bc0100004100000a0e0001042e0000029a0040009c0000019a0000213d0000029d0040009c000001f80000613d0000029e0040009c0000007d0000c13d000000e40030008c0000007d0000413d0000000002000416000000000002004b0000007d0000c13d0000000402100370000000000202043b000600000002001d000002b30020009c0000007d0000213d0000002402100370000000000202043b000500000002001d000002b30020009c0000007d0000213d0000006402100370000000000202043b000400000002001d0000004402100370000000000202043b000300000002001d0000008401100370000000000101043b000200000001001d000000ff0010008c0000007d0000213d000002bd0100004100000000001004430000000001000414000002840010009c0000028401008041000000c0011002100000028f011001c70000800b020000390a0d0a080000040f00000001002001900000084c0000613d000000000101043b000000040010006b000004f70000813d000000400100043d0000004402100039000002c8030000410000000000320435000000240210003900000017030000390000000000320435000002c3020000410000000000210435000000040210003900000020030000390000000000320435000002840010009c00000284010080410000004001100210000002c4011001c700000a0f00010430000002ab0040009c000002010000613d000002ac0040009c0000007d0000c13d000000640030008c0000007d0000413d0000000002000416000000000002004b0000007d0000c13d0000000402100370000000000202043b000600000002001d000002b30020009c0000007d0000213d0000002402100370000000000202043b000500000002001d000002b30020009c0000007d0000213d0000004401100370000000000101043b000400000001001d0000000601000039000000000201041a000002c901000041000000800010043f0000000001000410000000840010043f0000000001000414000002b302200197000000040020008c000003240000c13d0000000003000031000000200030008c00000020040000390000000004034019000003480000013d000002a00040009c000002090000613d000002a10040009c0000007d0000c13d000000440030008c0000007d0000413d0000000002000416000000000002004b0000007d0000c13d0000000402100370000000000202043b000600000002001d000002b30020009c0000007d0000213d0000002401100370000000000101043b000500000001001d0000000601000039000000000201041a000002c901000041000000800010043f0000000001000410000000840010043f0000000001000414000002b302200197000000040020008c000002b70000c13d0000000003000031000000200030008c00000020040000390000000004034019000002db0000013d0000001f01400039000002d4011001970000003f01100039000002d401100197000000400600043d0000000001160019000000000061004b00000000020000390000000102004039000002870010009c000000c00000213d0000000100200190000000c00000c13d000000e002300039000000400010043f000600000006001d000000000146043600000100055000390000000006540019000000000026004b0000007d0000213d000002d4074001970000001f0640018f000000000015004b000002430000813d000000000007004b000001860000613d00000000096500190000000008610019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000001800000c13d000000000006004b000002590000613d00000000080100190000024f0000013d000002a60040009c0000021d0000613d000002a70040009c0000007d0000c13d000000240030008c0000007d0000413d0000000002000416000000000002004b0000007d0000c13d0000000401100370000000000101043b000002b30010009c0000007d0000213d000000000010043f0000000301000039000001e10000013d0000029b0040009c000002280000613d0000029c0040009c0000007d0000c13d0000000004000416000000000004004b0000007d0000c13d0000000806000039000000000506041a000000010750019000000001045002700000007f0440618f0000001f0040008c00000000080000390000000108002039000000000885013f0000000100800190000002170000c13d000000000004004b000003050000c13d0000000602000039000000000202041a000002b204000041000000800040043f0000000004000414000002b302200197000000040020008c000003660000c13d000000000131034f0000000003000031000003700000013d0000000001000416000000000001004b0000007d0000c13d000000000200041a000000010320019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f0000000100400190000002170000c13d000000800010043f000000000003004b000002a10000613d000000000000043f000000000001004b0000029f0000613d0000028a030000410000000004000019000000000503041a000000a002400039000000000052043500000001033000390000002004400039000000000014004b000001ce0000413d000002a60000013d000000240030008c0000007d0000413d0000000002000416000000000002004b0000007d0000c13d0000000401100370000000000101043b000002b30010009c0000007d0000213d000000000010043f0000000501000039000000200010043f000000400200003900000000010000190a0d09d00000040f000002050000013d000000240030008c0000007d0000413d0000000002000416000000000002004b0000007d0000c13d0000000401100370000000000101043b000002b30010009c0000007d0000213d0000000702000039000000000302041a000002b3003001980000031a0000c13d0000029603300197000000000113019f000000000012041b000000000100001900000a0e0001042e0000000001000416000000000001004b0000007d0000c13d0000000701000039000000000101041a000002b301100197000000800010043f000002bc0100004100000a0e0001042e0000000001000416000000000001004b0000007d0000c13d0000000201000039000000000101041a000000800010043f000002bc0100004100000a0e0001042e0000000001000416000000000001004b0000007d0000c13d0000000103000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000002990000613d000002c601000041000000000010043f0000002201000039000000040010043f000002c70100004100000a0f000104300000000001000416000000000001004b0000007d0000c13d0a0d09280000040f000000400200043d0000000000120435000002840020009c00000284020080410000004001200210000002d0011001c700000a0e0001042e000000440030008c0000007d0000413d0000000002000416000000000002004b0000007d0000c13d0000000402100370000000000202043b000002b30020009c0000007d0000213d0000002401100370000000000101043b000600000001001d000002b30010009c0000007d0000213d000000000020043f0000000401000039000000200010043f000000400200003900000000010000190a0d09d00000040f0000000602000029000000000020043f000000200010043f000000000100001900000040020000390a0d09d00000040f000002050000013d0000000008710019000000000007004b0000024c0000613d0000000009050019000000000a010019000000009b090434000000000aba043600000000008a004b000002480000c13d000000000006004b000002590000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f000000000058043500000000044100190000000000040435000001000400043d000002870040009c0000007d0000213d0000001f05400039000000000035004b000000000300001900000288030080410000028805500197000000000005004b00000000060000190000028806004041000002880050009c000000000603c019000000000006004b0000007d0000c13d000000e0034000390000000003030433000002870030009c000000c00000213d0000001f05300039000002d4055001970000003f05500039000002d405500197000000400700043d0000000005570019000000000075004b00000000060000390000000106004039000002870050009c000000c00000213d0000000100600190000000c00000c13d000000400050043f000400000007001d0000000005370436000500000005001d00000100044000390000000005430019000000000025004b0000007d0000213d000002d4053001970000001f0230018f000000050a0000290000000000a4004b000004ac0000813d000000000005004b000002940000613d000000000724001900000000062a0019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c0000028e0000c13d000000000002004b0000000607000029000004c30000613d00000000060a0019000004b90000013d000000800010043f000000000004004b000002a10000613d000000000030043f000000000001004b000003cb0000c13d0000008002000039000002a60000013d000002d502200197000000a00020043f000000000001004b000000a0020000390000008002006039000000600220008a00000080010000390a0d08e10000040f000000400100043d000600000001001d00000080020000390a0d08f30000040f00000006020000290000000001210049000002840010009c00000284010080410000006001100210000002840020009c00000284020080410000004002200210000000000121019f00000a0e0001042e000002840010009c0000028401008041000000c001100210000002ca011001c70a0d0a080000040f00000060031002700000028403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000002cb0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000002c70000c13d000000000006004b000002d80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000003d50000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c0000007d0000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b0000007d0000c13d000000000003004b000002ee0000c13d0000000703000039000000000303041a000000060330014f000002b3003001980000035b0000613d0000000001000411000000000010043f0000000301000039000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b000000000201041a000000050220006c000005e00000813d000002c601000041000000000010043f0000001101000039000000040010043f000002c70100004100000a0f00010430000000800040043f000000000007004b000003e10000613d000000000060043f000002af0100004100000000050000190000000003050019000000000501041a000000a006300039000000000056043500000001011000390000002005300039000000000045004b0000030b0000413d000002b00130009a000002b10010009c000000c00000413d0000005f01300039000002d4011001970000008001100039000003e40000013d000002c301000041000000800010043f0000002001000039000000840010043f0000000201000039000000a40010043f000002d201000041000000c40010043f000002d30100004100000a0f00010430000002840010009c0000028401008041000000c001100210000002ca011001c70a0d0a080000040f00000060031002700000028403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000003380000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000003340000c13d000000000006004b000003450000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000043c0000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c0000007d0000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b0000007d0000c13d000000000003004b000004540000c13d0000000703000039000000000303041a000000050330014f000002b300300198000004540000c13d000002c303000041000000000031043500000084032001bf00000020040000390000000000430435000000c403200039000002cb040000410000000000430435000000a40220003900000002030000390000060c0000013d000002840040009c0000028404008041000000c001400210000002b4011001c70a0d0a080000040f0000006003100270000002840030019d00000284033001970000000100200190000004480000613d000002d4043001980000001f0530018f00000080024000390000037a0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000003760000c13d000000000005004b000003870000613d000000000141034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000001f01300039000002d404100197000002b50040009c000000c00000213d0000008001400039000600000001001d000000400010043f000002b60030009c0000007d0000213d000000200030008c0000007d0000413d000000800200043d000002870020009c0000007d0000213d00000080033000390000009f01200039000000000031004b0000000005000019000002880500804100000288063001970000028801100197000000000761013f000000000061004b00000000010000190000028801004041000002880070009c000000000105c019000000000001004b0000007d0000c13d00000080012000390000000001010433000002870010009c000000c00000213d0000001f05100039000002d4055001970000003f05500039000002d4055001970000000605500029000002870050009c000000c00000213d000000400050043f00000006050000290000000000150435000000a0022000390000000005210019000000000035004b0000007d0000213d000002d4051001970000001f0310018f000500a00040003d000000050020006c000006ab0000813d000000000005004b000003c70000613d00000000063200190000000504300029000000200440008a000000200660008a0000000007540019000000000856001900000000080804330000000000870435000000200550008c000003c10000c13d000000000003004b000006c10000613d0000000504000029000006b70000013d0000028d030000410000000004000019000000000503041a000000a002400039000000000052043500000001033000390000002004400039000000000014004b000003cd0000413d000002a60000013d0000001f0530018f0000028606300198000000400200043d0000000004620019000005cd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000003dc0000c13d000005cd0000013d000002d501500197000000a00010043f000000c001000039000600000001001d000000400010043f000002ac0000013d000002840010009c0000028401008041000000c001100210000002ca011001c70a0d0a080000040f00000060031002700000028403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000003fb0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000003f70000c13d000000000006004b000004080000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000005c20000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c0000007d0000413d000000800300043d000002b30030009c0000007d0000213d0000000004000411000000000034004b000006020000c13d0000000801000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000002170000c13d000000200020008c000004330000413d00000006040000290000001f034000390000000503300270000002ce0330009a000000200040008c000002af030040410000001f022000390000000502200270000002ce0220009a000000000023004b000004330000813d000000000003041b0000000103300039000000000023004b0000042f0000413d00000006020000290000001f0020008c0000063c0000a13d000000200200008a0000000603200180000007780000c13d000002af020000410000000004000019000007840000013d0000001f0530018f0000028606300198000000400200043d0000000004620019000005cd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000004430000c13d000005cd0000013d0000001f0530018f0000028606300198000000400200043d0000000004620019000005cd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000044f0000c13d000005cd0000013d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b0000000002000411000002b302200197000300000002001d000000000020043f000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b000000000101041a000002d60010009c0000061c0000c13d0000000601000029000000000010043f0000000301000039000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b000000000201041a000000040220006c000002ff0000413d000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000002840010009c000002840100804100000040011002100000000002000414000002840020009c0000028402008041000000c002200210000000000112019f0000028b011001c70000800d0200003900000003030000390000029504000041000000060500002900000005060000290a0d0a030000040f0000000100200190000000540000c13d0000007d0000013d00000000065a0019000000000005004b000004b50000613d000000000704001900000000080a001900000000790704340000000008980436000000000068004b000004b10000c13d000000000002004b0000000607000029000004c30000613d00000000045400190000000302200210000000000506043300000000052501cf000000000525022f00000000040404330000010002200089000000000424022f00000000022401cf000000000252019f000000000026043500000000023a001900000000000204350000000005070433000002870050009c000000c00000213d000000000200041a000000010420019000000001032002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000024004b000002170000c13d000000200030008c000004e20000413d0000001f025000390000000502200270000002890220009a000000200050008c0000028a02004041000000000000043f0000001f033000390000000503300270000002890330009a000000000032004b000004e20000813d000000000002041b0000000102200039000000000032004b000004de0000413d000001200200043d000200000002001d000300000005001d0000001f0050008c000006100000a13d000000000000043f0000000001000414000002840010009c0000028401008041000000c0011002100000028b011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000200200008a0000000302200180000000000101043b0000064b0000c13d0000002003000039000006580000013d0a0d09280000040f0000000602000029000000000020043f0000000502000039000000200020043f000100000001001d0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b000000000201041a0000000103200039000000000031041b000000400100043d000000c00310003900000004040000290000000000430435000000a0031000390000000000230435000000800210003900000003030000290000000000320435000000600210003900000005030000290000000000320435000000400210003900000006030000290000000000320435000000c0020000390000000002210436000002be030000410000000000320435000002bf0010009c000000c00000213d000000e003100039000000400030043f000002840020009c000002840200804100000040022002100000000001010433000002840010009c00000284010080410000006001100210000000000121019f0000000002000414000002840020009c0000028402008041000000c002200210000000000112019f00000290011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000201043b000000400100043d000000420310003900000000002304350000002002100039000002c003000041000000000032043500000022031000390000000104000029000000000043043500000042030000390000000000310435000002b50010009c000000c00000213d0000008003100039000000400030043f000002840020009c000002840200804100000040022002100000000001010433000002840010009c00000284010080410000006001100210000000000121019f0000000002000414000002840020009c0000028402008041000000c002200210000000000112019f00000290011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d0000000202000029000000ff0220018f000000000101043b000000400300043d0000002004300039000000000024043500000000001304350000000101000367000000a402100370000000000202043b00000040043000390000000000240435000000c401100370000000000101043b00000060023000390000000000120435000002840030009c00000284030080410000004001300210000000000000043f0000000002000414000002840020009c0000028402008041000000c002200210000000000112019f000002c1011001c700000001020000390a0d0a080000040f00000060031002700000028403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000057f0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000057b0000c13d000000000005004b0000058c0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f0000000100200190000007f70000613d000000000100043d000002b301100198000008da0000613d000000060010006c000008da0000c13d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b0000000302000029000000000021041b000000400100043d0000000000210435000002840010009c000002840100804100000040011002100000000002000414000002840020009c0000028402008041000000c002200210000000000112019f0000028b011001c70000800d020000390000000303000039000002c504000041000000060500002900000005060000290000079c0000013d0000001f0530018f0000028606300198000000400200043d0000000004620019000005cd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000005c90000c13d000000000005004b000005da0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000002840020009c00000284020080410000004002200210000000000112019f00000a0f00010430000000000021041b0000000601000029000000000010043f0000000301000039000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d0000000000310435000002840010009c000002840100804100000040011002100000000002000414000002840020009c0000028402008041000000c002200210000000000112019f0000028b011001c70000800d02000039000000030300003900000295040000410000004f0000013d000002c303000041000000000031043500000084032001bf00000020040000390000000000430435000000c403200039000002cd040000410000000000430435000000a402200039000000040300003900000000003204350000004001100210000002c4011001c700000a0f00010430000000030000006b0000000002000019000006140000613d000000000201043300000003040000290000000301400210000002d60110027f000002d601100167000000000112016f0000000102400210000000000121019f000006660000013d0002000400100074000002ff0000413d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b0000000202000029000000000021041b000004740000013d000000060000006b0000000002000019000006430000613d000000050200002900000020022000390000000102200367000000000202043b00000006050000290000000303500210000002d60330027f000002d603300167000000000232016f0000000103500210000000000232019f000007930000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000006510000c13d000000030020006c000006630000813d00000003020000290000000302200210000000f80220018f000002d60220027f000002d60220016700000006033000290000000003030433000000000223016f000000000021041b0000000301000029000000010110021000000001011001bf000000000010041b00000004010000290000000001010433000600000001001d000002870010009c000000c00000213d0000000101000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000002170000c13d000000200010008c0000068a0000413d0000000102000039000000000020043f00000006030000290000001f0230003900000005022002700000028c0220009a000000200030008c0000028d020040410000001f0110003900000005011002700000028c0110009a000000000012004b0000068a0000813d000000000002041b0000000102200039000000000012004b000006860000413d00000006010000290000001f0010008c0000069e0000a13d0000000101000039000000000010043f0000000001000414000002840010009c0000028401008041000000c0011002100000028b011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000200200008a0000000602200180000000000101043b000008030000c13d0000002003000039000008100000013d000000060000006b0000000001000019000006a30000613d0000000501000029000000000101043300000006040000290000000302400210000002d60220027f000002d602200167000000000121016f0000000102400210000000000121019f0000081e0000013d0000000504500029000000000005004b000006b40000613d0000000006020019000000050700002900000000680604340000000007870436000000000047004b000006b00000c13d000000000003004b000006c10000613d00000000025200190000000303300210000000000504043300000000053501cf000000000535022f00000000020204330000010003300089000000000232022f00000000023201cf000000000252019f000000000024043500000005011000290000000000010435000000400900043d0000008001900039000000400010043f000002b7010000410000000f0010043f0000000201900039000000280200003900000000002104350000004a029000390000000000020435000000000200041000000060022002100000000003000019000000030430021000000000044201cf0000000105300210000000000595001900000023065000390000000007060433000002b807700197000000f8084002700000000f0880018f0000000008080433000000f808800210000000000787019f00000000007604350000002205500039000000fc044002700000000004040433000000f8044002100000000006050433000002b806600197000000000446019f00000000004504350000000103300039000000140030008c000006d00000c13d00000000020104330000307803000039000000000031043500000002012000390000000001190436000400000001001d000300000009001d0000002201900039000002840010009c000200000001001d000002840100804100000040011002100000000002000414000002840020009c0000028402008041000000c002200210000000000121019f000002b9011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b000000f802100270000000880220018f000002ba022000d1000000000020043f000000f002100270000000880220018f000002ba022000d1000000020020043f000000e802100270000000880220018f000002ba022000d1000000040020043f000000e002100270000000880220018f000002ba022000d1000000060020043f000000d802100270000000880220018f000002ba022000d1000000080020043f000000d002100270000000880220018f000002ba022000d10000000a0020043f000000c802100270000000880220018f000002ba022000d10000000c0020043f000000c002100270000000880220018f000002ba022000d10000000e0020043f000000b802100270000000880220018f000002ba022000d1000000100020043f000000b002100270000000880220018f000002ba022000d1000000120020043f000000a802100270000000880220018f000002ba022000d1000000140020043f000000a002100270000000880220018f000002ba022000d1000000160020043f0000009802100270000000880220018f000002ba022000d1000000180020043f0000009002100270000000880220018f000002ba022000d10000001a0020043f0000008802100270000000880220018f000002ba022000d10000001c0020043f0000008002100270000000880220018f000002ba022000d10000001e0020043f0000007802100270000000880220018f000002ba022000d1000000200020043f0000007002100270000000880220018f000002ba022000d1000000220020043f0000006802100270000000880220018f000002ba022000d1000000240020043f0000006001100270000000880110018f000002ba011000d1000000260010043f00000002030000290000000001030433000000000200043d000000000212016f0000000102200270000002bb02200197000000000112013f0000000000130435000000030100002900000042011000390000000002010433000000200300043d000000000323016f0000000103300270000002bb03300197000000000223013f000000000021043500000006010000290000000001010433000002d4051001970000001f0410018f000000400200043d0000002003200039000000050030006b000007a10000813d000000000005004b000007740000613d00000005074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c0000076e0000c13d000000000004004b000007b80000613d0000000006030019000007ad0000013d000002af020000410000000105000367000000000400001900000004070000290000000006740019000000000665034f000000000606043b000000000062041b00000001022000390000002004400039000000000034004b0000077c0000413d000000060030006c000007900000813d00000006030000290000000303300210000000f80330018f000002d60330027f000002d60330016700000004044000290000000104400367000000000404043b000000000334016f000000000032041b0000000602000029000000010220021000000001022001bf000000000021041b0000000001000414000002840010009c0000028401008041000000c00110021000000290011001c70000800d020000390000000103000039000002cf040000410a0d0a030000040f00000001002001900000007d0000613d000000000100001900000a0e0001042e0000000006530019000000000005004b000007aa0000613d0000000507000029000000000803001900000000790704340000000008980436000000000068004b000007a60000c13d000000000004004b000007b80000613d000500050050002d0000000304400210000000000506043300000000054501cf000000000545022f000000050700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000000001130019000000000001043500000003030000290000000003030433000002d4053001970000001f0430018f000000040010006b000007d00000813d000000000005004b000007cc0000613d00000004074000290000000006410019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000007c60000c13d000000000004004b000007e70000613d0000000006010019000007dc0000013d0000000006510019000000000005004b000007d90000613d0000000407000029000000000801001900000000790704340000000008980436000000000068004b000007d50000c13d000000000004004b000007e70000613d000400040050002d0000000304400210000000000506043300000000054501cf000000000545022f000000040700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f0000000000460435000000000113001900000000000104350000000001210049000000200310008a00000000003204350000001f01100039000002d4031001970000000001230019000000000031004b00000000030000390000000103004039000002870010009c000000c00000213d0000000100300190000003e40000613d000000c00000013d0000001f0530018f0000028606300198000000400200043d0000000004620019000005cd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007fe0000c13d000005cd0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000040600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000008090000c13d000000060020006c0000081b0000813d00000006020000290000000302200210000000f80220018f000002d60220027f000002d60220016700000004033000290000000003030433000000000223016f000000000021041b0000000601000029000000010110021000000001011001bf0000000102000039000000000012041b0000001201000039000000800010043f0000028e0100004100000000001004430000000001000414000002840010009c0000028401008041000000c0011002100000028f011001c70000800b020000390a0d0a080000040f00000001002001900000084c0000613d000000000101043b000600000001001d000000a00010043f000000000400041a000000010540019000000001034002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000114013f0000000100100190000002170000c13d000000400100043d0000000002310436000000000005004b0000084d0000613d000000000000043f000000000003004b0000000004000019000008520000613d0000028a0500004100000000040000190000000006240019000000000705041a000000000076043500000001055000390000002004400039000000000034004b000008440000413d000008520000013d000000000001042f000002d5044001970000000000420435000000000003004b000000200400003900000000040060390000003f03400039000002d4043001970000000003140019000000000043004b00000000040000390000000104004039000002870030009c000000c00000213d0000000100400190000000c00000c13d000000400030043f000002840020009c000002840200804100000040022002100000000001010433000002840010009c00000284010080410000006001100210000000000121019f0000000002000414000002840020009c0000028402008041000000c002200210000000000112019f00000290011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000201043b000000400100043d000000a0031000390000000004000410000000000043043500000080031000390000000604000029000000000043043500000060031000390000029104000041000000000043043500000040031000390000000000230435000000200210003900000292030000410000000000320435000000a0030000390000000000310435000002930010009c000000c00000213d000000c003100039000000400030043f000002840020009c000002840200804100000040022002100000000001010433000002840010009c00000284010080410000006001100210000000000121019f0000000002000414000002840020009c0000028402008041000000c002200210000000000112019f00000290011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b000000c00010043f0000000201000039000000000201041a000000020020002a000002ff0000413d0000000202200029000000000021041b0000000001000411000000000010043f0000000301000039000000200010043f0000000001000414000002840010009c0000028401008041000000c00110021000000294011001c700008010020000390a0d0a080000040f00000001002001900000007d0000613d000000000101043b000000000201041a00000002030000290000000002320019000000000021041b000000400100043d0000000000310435000002840010009c000002840100804100000040011002100000000002000414000002840020009c0000028402008041000000c002200210000000000112019f0000028b011001c70000800d0200003900000003030000390000029504000041000000000500001900000000060004110a0d0a030000040f00000001002001900000007d0000613d0000000601000039000000000201041a00000296022001970000000003000411000000000232019f000000000021041b000000800100043d000001400000044300000160001004430000002001000039000000a00200043d0000018000100443000001a0002004430000004002000039000000c00300043d000001c000200443000001e000300443000001000010044300000003010000390000012000100443000002970100004100000a0e0001042e000000400100043d0000004402100039000002c203000041000000000032043500000024021000390000000e03000039000001110000013d0000001f02200039000002d4022001970000000001120019000000000021004b00000000020000390000000102004039000002870010009c000008ed0000213d0000000100200190000008ed0000c13d000000400010043f000000000001042d000002c601000041000000000010043f0000004101000039000000040010043f000002c70100004100000a0f000104300000002003000039000000000331043600000000420204340000000000230435000002d4062001970000001f0520018f0000004001100039000000000014004b0000090c0000813d000000000006004b000009080000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000009020000c13d000000000005004b000009220000613d0000000007010019000009180000013d0000000007610019000000000006004b000009150000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000009110000c13d000000000005004b000009220000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000421001900000000000404350000001f02200039000002d4022001970000000001210019000000000001042d0002000000000002000002d101000041000000000010044300000000010004120000000400100443000000200100003900000024001004430000000001000414000002840010009c0000028401008041000000c001100210000002d7011001c700008005020000390a0d0a080000040f0000000100200190000009570000613d000000000101043b000200000001001d0000028e0100004100000000001004430000000001000414000002840010009c0000028401008041000000c0011002100000028f011001c70000800b020000390a0d0a080000040f0000000100200190000009570000613d000000000601043b000000020060006c000009580000c13d000002d101000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000002840010009c0000028401008041000000c001100210000002d7011001c700008005020000390a0d0a080000040f0000000100200190000009bf0000c13d000000000001042f000000000400041a000000010540019000000001034002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000015004b000009c90000c13d000000400100043d0000000002310436000000000005004b000100000006001d000009730000613d000000000000043f000000000003004b000009790000613d0000028a0500004100000000040000190000000006420019000000000705041a000000000076043500000001055000390000002004400039000000000034004b0000096b0000413d0000097a0000013d000002d5044001970000000000420435000000000003004b000000200400003900000000040060390000097a0000013d00000000040000190000003f03400039000002d4043001970000000003140019000000000043004b00000000040000390000000104004039000002870030009c000009c10000213d0000000100400190000009c10000c13d000000400030043f000002840020009c000002840200804100000040022002100000000001010433000002840010009c00000284010080410000006001100210000000000121019f0000000002000414000002840020009c0000028402008041000000c002200210000000000112019f00000290011001c700008010020000390a0d0a080000040f0000000100200190000009c70000613d000000000201043b000000400100043d000000a0031000390000000004000410000000000043043500000080031000390000000104000029000000000043043500000060031000390000029104000041000000000043043500000040031000390000000000230435000000200210003900000292030000410000000000320435000000a0030000390000000000310435000002930010009c000009c10000213d000000c003100039000000400030043f000002840020009c000002840200804100000040022002100000000001010433000002840010009c00000284010080410000006001100210000000000121019f0000000002000414000002840020009c0000028402008041000000c002200210000000000112019f00000290011001c700008010020000390a0d0a080000040f0000000100200190000009c70000613d000000000101043b000000000001042d000002c601000041000000000010043f0000004101000039000000040010043f000002c70100004100000a0f00010430000000000100001900000a0f00010430000002c601000041000000000010043f0000002201000039000000040010043f000002c70100004100000a0f00010430000000000001042f000002840010009c00000284010080410000004001100210000002840020009c00000284020080410000006002200210000000000112019f0000000002000414000002840020009c0000028402008041000000c002200210000000000112019f00000290011001c700008010020000390a0d0a080000040f0000000100200190000009e30000613d000000000101043b000000000001042d000000000100001900000a0f0001043000000000050100190000000000200443000000050030008c000009f30000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b000009eb0000413d000002840030009c000002840300804100000060013002100000000002000414000002840020009c0000028402008041000000c002200210000000000112019f000002d8011001c700000000020500190a0d0a080000040f000000010020019000000a020000613d000000000101043b000000000001042d000000000001042f00000a06002104210000000102000039000000000001042d0000000002000019000000000001042d00000a0b002104230000000102000039000000000001042d0000000002000019000000000001042d00000a0d0000043200000a0e0001042e00000a0f0001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000d6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56302000000000000000000000000000000000000200000000000000000000000004ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30ab10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf69a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b02000002000000000000000000000000000000040000000000000000000000000200000000000000000000000000000000000000000000000000000000000000c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc68b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f000000000000000000000000000000000000000000000000ffffffffffffff3f0200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efffffffffffffffffffffffff00000000000000000000000000000000000000000000000200000000000000000000000000000100000001000000000000000000000000000000000000000000000000000000000000000000000000007ecebdff00000000000000000000000000000000000000000000000000000000d3681b9400000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000d3681b9500000000000000000000000000000000000000000000000000000000d505accf0000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000007ecebe0000000000000000000000000000000000000000000000000000000000938e3d7b000000000000000000000000000000000000000000000000000000002e46e1fc000000000000000000000000000000000000000000000000000000003644e514000000000000000000000000000000000000000000000000000000003644e5150000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000002e46e1fd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3000000000000000000000000000000000000000000000000ffffffffffffff21ffffffffffffffffffffffffffffffffffffffffffffffff00000000000000803f970d9300000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000004000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000003031323334353637383961626364656600ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0200000000000000000000000000000000000028000000000000000000000000008800000000000000000000000000000000000000000000000000000000000020202020202020202020202020202020202020202020202020202020202020200000000000000000000000000000000000000020000000800000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391326e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9000000000000000000000000000000000000000000000000ffffffffffffff1f19010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000494e56414c49445f5349474e455200000000000000000000000000000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9254e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000005045524d49545f444541444c494e455f45585049524544000000000000000000fa1653bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000008000000000000000004e47000000000000000000000000000000000000000000000000000000000000416dc7320000000000000000000000000000000000000000000000000000000041555448000000000000000000000000000000000000000000000000000000000c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911da5d4097edda6d87cb9329af83fb3712ef77eeb13738ffe43cc35a4ce305ad9620000000000000000000000000000000000000020000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e41530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000800000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff020000020000000000000000000000000000004400000000000000000000000002000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084fc4113f219638173dece6d45217c846deb25620233d6418cea6f30f750a1e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.