More Info
Private Name Tags
ContractCreator
Latest 14 from a total of 14 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Uni Set Liquidit... | 19817180 | 261 days ago | IN | 0 ETH | 0.01691067 | ||||
Uni Remove Liqui... | 19746028 | 271 days ago | IN | 0 ETH | 0.00103134 | ||||
Uni Remove Liqui... | 19746020 | 271 days ago | IN | 0 ETH | 0.00094988 | ||||
Uni Remove Liqui... | 19746010 | 271 days ago | IN | 0 ETH | 0.00097926 | ||||
Uni Remove Liqui... | 19746007 | 271 days ago | IN | 0 ETH | 0.00101849 | ||||
Uni Remove Liqui... | 19745998 | 271 days ago | IN | 0 ETH | 0.0010042 | ||||
Uni Remove Liqui... | 19745992 | 271 days ago | IN | 0 ETH | 0.00098391 | ||||
Uni Add Liquidit... | 19745966 | 271 days ago | IN | 0 ETH | 0.00101127 | ||||
Uni Add Liquidit... | 19745962 | 271 days ago | IN | 0 ETH | 0.0012349 | ||||
Uni Add Liquidit... | 19745944 | 271 days ago | IN | 0 ETH | 0.00109368 | ||||
Uni Add Liquidit... | 19745938 | 271 days ago | IN | 0 ETH | 0.00107833 | ||||
Uni Add Liquidit... | 19745937 | 271 days ago | IN | 0 ETH | 0.00115435 | ||||
Uni Add Liquidit... | 19745883 | 271 days ago | IN | 0 ETH | 0.00163112 | ||||
Uni Set Liquidit... | 19745845 | 271 days ago | IN | 0 ETH | 0.01318166 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MMCNFT
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract MMCNFT is ERC1155, Ownable, ERC1155Burnable, ERC1155Supply, IERC1155Receiver { using SafeERC20 for IERC20; event Received(address, uint); using Strings for uint256; address public uniswapPair; IUniswapV2Router02 public uniswapV2Router; IUniswapV2Factory public uniswapV2Factory; mapping(uint256 => string) private _tokenURIs; constructor(address _router, address _factory) ERC1155("") Ownable(msg.sender) { uniswapV2Router = IUniswapV2Router02(_router); uniswapV2Factory = IUniswapV2Factory(_factory); } // Set liquidity pair address function uniSetLiquidityPair(address _tokenA, address _tokenB) external onlyOwner { // Check if a pairing already exists address existingPair = uniswapV2Factory.getPair(_tokenA, _tokenB); // If the pairing does not exist, create the pairing if (existingPair == address(0)) { address newPair = uniswapV2Factory.createPair(_tokenA, _tokenB); uniswapPair = newPair; } else { // If the pair already exists, you can choose to update uniswapPair or just log that it already exists uniswapPair = existingPair; } } // Add Liquidity function uniAddLiquidity( address _tokenA, address _tokenB, uint256 _amountA, uint256 _amountB, uint256 _minAmountA, uint256 _minAmountB, uint256 slippage ) external onlyOwner { // safeIncreaseAllowance IERC20(_tokenA).safeIncreaseAllowance(address(uniswapV2Router), _amountA); IERC20(_tokenB).safeIncreaseAllowance(address(uniswapV2Router), _amountB); // end date uint256 deadline = block.timestamp + 15 minutes; // Add liquidity uniswapV2Router.addLiquidity( _tokenA, _tokenB, _amountA, _amountB, _minAmountA, // minAmountA _minAmountB, // minAmountB address(this), deadline ); } // Remove Liquidity function uniRemoveLiquidity( address _tokenA, address _tokenB, uint256 _liquidity, uint256 _minAmountA, uint256 _minAmountB ) external onlyOwner { address pairAddress = uniswapV2Factory.getPair(_tokenA, _tokenB); require(pairAddress != address(0), "No pool exists for this token pair"); require(pairAddress == uniswapPair, "Uniswap pair mismatch"); IERC20(pairAddress).safeIncreaseAllowance(address(uniswapV2Router), _liquidity); uint256 deadline = block.timestamp + 15 minutes; // Set deadline // Remove Liquidity uniswapV2Router.removeLiquidity( _tokenA, _tokenB, _liquidity, _minAmountA, _minAmountB, address(this), deadline ); } function setBaseURI(string memory newUri) external onlyOwner { _setURI(newUri); } function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external override returns(bytes4) { return this.onERC1155Received.selector; } function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external override returns(bytes4) { return this.onERC1155BatchReceived.selector; } //Separate settings function setTokenURI(uint256 tokenId, string memory newUri) external onlyOwner { require(bytes(newUri).length > 0, "URI should not be empty"); _tokenURIs[tokenId] = newUri; } // Batch settings function setTokenURIBatch(uint256[] memory tokenIds, string[] memory newUris) external onlyOwner { require(tokenIds.length == newUris.length, "Arrays must have the same length"); for (uint256 i = 0; i < tokenIds.length; i++) { _tokenURIs[tokenIds[i]] = newUris[i]; } } function uri(uint256 tokenId) public view override returns (string memory) { string memory _uri = _tokenURIs[tokenId]; string memory base = super.uri(tokenId); // Get base URI // If a URI is set for a specific tokenId, return it if (bytes(_uri).length > 0) { return string(abi.encodePacked(base, _uri)); } // If no URI is set for a specific tokenId, the base URI and tokenId are returned return string(abi.encodePacked(base, tokenId.toString())); } // Single forge and set url function mint(address account, uint256 id, uint256 amount, string memory tokenUri, bytes memory data) public onlyOwner { require(bytes(tokenUri).length > 0, "URI should not be empty"); _mint(account, id, amount, data); // minting tokens _tokenURIs[id] = tokenUri; } // Batch forge and set url function mintBatchWithUri(address to, uint256[] memory ids, uint256[] memory amounts, string[] memory tokenUris, bytes memory data) public onlyOwner { require(ids.length == amounts.length && ids.length == tokenUris.length, "Arrays must have the same length"); _mintBatch(to, ids, amounts, data); // Minting tokens in batches for (uint256 i = 0; i < ids.length; i++) { _tokenURIs[ids[i]] = tokenUris[i]; } } // The contract sends nft to the specified address function safeTransfer(address to, uint256 tokenId, uint256 amount, bytes memory data) external onlyOwner { safeTransferFrom(msg.sender, to, tokenId, amount, data); } function safeTransferContract(address to, uint256 tokenId, uint256 amount, bytes memory data) external onlyOwner { _safeTransferFrom(address(this), to, tokenId, amount, data); } // Destroy nft function burn(uint256 tokenId, uint256 amount) external onlyOwner { _burn(msg.sender, tokenId, amount); } function _update(address from, address to, uint256[] memory ids, uint256[] memory values) internal override(ERC1155, ERC1155Supply) { super._update(from, to, ids, values); } //Receive erc20 tokens function receiveERC20(IERC20 _token, uint256 amount) external { _token.transferFrom(msg.sender, address(this), amount); } // take over receive() external payable { emit Received(msg.sender, msg.value); // Updated receive() function } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Arrays.sol) pragma solidity ^0.8.20; import {StorageSlot} from "./StorageSlot.sol"; import {Math} from "./math/Math.sol"; /** * @dev Collection of functions related to array types. */ library Arrays { using StorageSlot for bytes32; /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { uint256 low = 0; uint256 high = array.length; if (high == 0) { return 0; } while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds towards zero (it does integer division with truncation). if (unsafeAccess(array, mid).value > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && unsafeAccess(array, low - 1).value == element) { return low - 1; } else { return low; } } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) { bytes32 slot; // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr` // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays. /// @solidity memory-safe-assembly assembly { mstore(0, arr.slot) slot := add(keccak256(0, 0x20), pos) } return slot.getAddressSlot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) { bytes32 slot; // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr` // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays. /// @solidity memory-safe-assembly assembly { mstore(0, arr.slot) slot := add(keccak256(0, 0x20), pos) } return slot.getBytes32Slot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) { bytes32 slot; // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr` // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays. /// @solidity memory-safe-assembly assembly { mstore(0, arr.slot) slot := add(keccak256(0, 0x20), pos) } return slot.getUint256Slot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeMemoryAccess(uint256[] memory arr, uint256 pos) internal pure returns (uint256 res) { assembly { res := mload(add(add(arr, 0x20), mul(pos, 0x20))) } } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeMemoryAccess(address[] memory arr, uint256 pos) internal pure returns (address res) { assembly { res := mload(add(add(arr, 0x20), mul(pos, 0x20))) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @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. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ 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. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.20; import {IERC1155} from "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.20; import {ERC1155} from "../ERC1155.sol"; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. * * NOTE: This contract implies a global limit of 2**256 - 1 to the number of tokens * that can be minted. * * CAUTION: This extension should not be added in an upgrade to an already deployed contract. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 id => uint256) private _totalSupply; uint256 private _totalSupplyAll; /** * @dev Total value of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Total value of tokens. */ function totalSupply() public view virtual returns (uint256) { return _totalSupplyAll; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return totalSupply(id) > 0; } /** * @dev See {ERC1155-_update}. */ function _update( address from, address to, uint256[] memory ids, uint256[] memory values ) internal virtual override { super._update(from, to, ids, values); if (from == address(0)) { uint256 totalMintValue = 0; for (uint256 i = 0; i < ids.length; ++i) { uint256 value = values[i]; // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply[ids[i]] += value; totalMintValue += value; } // Overflow check required: The rest of the code assumes that totalSupplyAll never overflows _totalSupplyAll += totalMintValue; } if (to == address(0)) { uint256 totalBurnValue = 0; for (uint256 i = 0; i < ids.length; ++i) { uint256 value = values[i]; unchecked { // Overflow not possible: values[i] <= balanceOf(from, ids[i]) <= totalSupply(ids[i]) _totalSupply[ids[i]] -= value; // Overflow not possible: sum_i(values[i]) <= sum_i(totalSupply(ids[i])) <= totalSupplyAll totalBurnValue += value; } } unchecked { // Overflow not possible: totalBurnValue = sum_i(values[i]) <= sum_i(totalSupply(ids[i])) <= totalSupplyAll _totalSupplyAll -= totalBurnValue; } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/extensions/ERC1155Burnable.sol) pragma solidity ^0.8.20; import {ERC1155} from "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. */ abstract contract ERC1155Burnable is ERC1155 { function burn(address account, uint256 id, uint256 value) public virtual { if (account != _msgSender() && !isApprovedForAll(account, _msgSender())) { revert ERC1155MissingApprovalForAll(_msgSender(), account); } _burn(account, id, value); } function burnBatch(address account, uint256[] memory ids, uint256[] memory values) public virtual { if (account != _msgSender() && !isApprovedForAll(account, _msgSender())) { revert ERC1155MissingApprovalForAll(_msgSender(), account); } _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Interface that must be implemented by smart contracts in order to receive * ERC-1155 token transfers. */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` amount of tokens of type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the value of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] calldata accounts, uint256[] calldata ids ) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers a `value` amount of tokens of type `id` from `from` to `to`. * * WARNING: This function can potentially allow a reentrancy attack when transferring tokens * to an untrusted contract, when invoking {onERC1155Received} on the receiver. * Ensure to follow the checks-effects-interactions pattern and consider employing * reentrancy guards when interacting with untrusted contracts. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `value` amount. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes calldata data) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * * WARNING: This function can potentially allow a reentrancy attack when transferring tokens * to an untrusted contract, when invoking {onERC1155BatchReceived} on the receiver. * Ensure to follow the checks-effects-interactions pattern and consider employing * reentrancy guards when interacting with untrusted contracts. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `values` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.20; import {IERC1155} from "./IERC1155.sol"; import {IERC1155Receiver} from "./IERC1155Receiver.sol"; import {IERC1155MetadataURI} from "./extensions/IERC1155MetadataURI.sol"; import {Context} from "../../utils/Context.sol"; import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol"; import {Arrays} from "../../utils/Arrays.sol"; import {IERC1155Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 */ abstract contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI, IERC1155Errors { using Arrays for uint256[]; using Arrays for address[]; mapping(uint256 id => mapping(address account => uint256)) private _balances; mapping(address account => mapping(address operator => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256 /* id */) public view virtual returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. */ function balanceOf(address account, uint256 id) public view virtual returns (uint256) { return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] memory accounts, uint256[] memory ids ) public view virtual returns (uint256[] memory) { if (accounts.length != ids.length) { revert ERC1155InvalidArrayLength(ids.length, accounts.length); } uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts.unsafeMemoryAccess(i), ids.unsafeMemoryAccess(i)); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes memory data) public virtual { address sender = _msgSender(); if (from != sender && !isApprovedForAll(from, sender)) { revert ERC1155MissingApprovalForAll(sender, from); } _safeTransferFrom(from, to, id, value, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) public virtual { address sender = _msgSender(); if (from != sender && !isApprovedForAll(from, sender)) { revert ERC1155MissingApprovalForAll(sender, from); } _safeBatchTransferFrom(from, to, ids, values, data); } /** * @dev Transfers a `value` amount of tokens of type `id` from `from` to `to`. Will mint (or burn) if `from` * (or `to`) is the zero address. * * Emits a {TransferSingle} event if the arrays contain one element, and {TransferBatch} otherwise. * * Requirements: * * - If `to` refers to a smart contract, it must implement either {IERC1155Receiver-onERC1155Received} * or {IERC1155Receiver-onERC1155BatchReceived} and return the acceptance magic value. * - `ids` and `values` must have the same length. * * NOTE: The ERC-1155 acceptance check is not performed in this function. See {_updateWithAcceptanceCheck} instead. */ function _update(address from, address to, uint256[] memory ids, uint256[] memory values) internal virtual { if (ids.length != values.length) { revert ERC1155InvalidArrayLength(ids.length, values.length); } address operator = _msgSender(); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids.unsafeMemoryAccess(i); uint256 value = values.unsafeMemoryAccess(i); if (from != address(0)) { uint256 fromBalance = _balances[id][from]; if (fromBalance < value) { revert ERC1155InsufficientBalance(from, fromBalance, value, id); } unchecked { // Overflow not possible: value <= fromBalance _balances[id][from] = fromBalance - value; } } if (to != address(0)) { _balances[id][to] += value; } } if (ids.length == 1) { uint256 id = ids.unsafeMemoryAccess(0); uint256 value = values.unsafeMemoryAccess(0); emit TransferSingle(operator, from, to, id, value); } else { emit TransferBatch(operator, from, to, ids, values); } } /** * @dev Version of {_update} that performs the token acceptance check by calling * {IERC1155Receiver-onERC1155Received} or {IERC1155Receiver-onERC1155BatchReceived} on the receiver address if it * contains code (eg. is a smart contract at the moment of execution). * * IMPORTANT: Overriding this function is discouraged because it poses a reentrancy risk from the receiver. So any * update to the contract state after this function would break the check-effect-interaction pattern. Consider * overriding {_update} instead. */ function _updateWithAcceptanceCheck( address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) internal virtual { _update(from, to, ids, values); if (to != address(0)) { address operator = _msgSender(); if (ids.length == 1) { uint256 id = ids.unsafeMemoryAccess(0); uint256 value = values.unsafeMemoryAccess(0); _doSafeTransferAcceptanceCheck(operator, from, to, id, value, data); } else { _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, values, data); } } } /** * @dev Transfers a `value` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `value` amount. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes memory data) internal { if (to == address(0)) { revert ERC1155InvalidReceiver(address(0)); } if (from == address(0)) { revert ERC1155InvalidSender(address(0)); } (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value); _updateWithAcceptanceCheck(from, to, ids, values, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. * - `ids` and `values` must have the same length. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) internal { if (to == address(0)) { revert ERC1155InvalidReceiver(address(0)); } if (from == address(0)) { revert ERC1155InvalidSender(address(0)); } _updateWithAcceptanceCheck(from, to, ids, values, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the values in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates a `value` amount of tokens of type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint(address to, uint256 id, uint256 value, bytes memory data) internal { if (to == address(0)) { revert ERC1155InvalidReceiver(address(0)); } (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value); _updateWithAcceptanceCheck(address(0), to, ids, values, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `values` must have the same length. * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch(address to, uint256[] memory ids, uint256[] memory values, bytes memory data) internal { if (to == address(0)) { revert ERC1155InvalidReceiver(address(0)); } _updateWithAcceptanceCheck(address(0), to, ids, values, data); } /** * @dev Destroys a `value` amount of tokens of type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `value` amount of tokens of type `id`. */ function _burn(address from, uint256 id, uint256 value) internal { if (from == address(0)) { revert ERC1155InvalidSender(address(0)); } (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value); _updateWithAcceptanceCheck(from, address(0), ids, values, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `value` amount of tokens of type `id`. * - `ids` and `values` must have the same length. */ function _burnBatch(address from, uint256[] memory ids, uint256[] memory values) internal { if (from == address(0)) { revert ERC1155InvalidSender(address(0)); } _updateWithAcceptanceCheck(from, address(0), ids, values, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the zero address. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC1155InvalidOperator(address(0)); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Performs an acceptance check by calling {IERC1155-onERC1155Received} on the `to` address * if it contains code at the moment of execution. */ function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 value, bytes memory data ) private { if (to.code.length > 0) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, value, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { // Tokens rejected revert ERC1155InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { // non-ERC1155Receiver implementer revert ERC1155InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } /** * @dev Performs a batch acceptance check by calling {IERC1155-onERC1155BatchReceived} on the `to` address * if it contains code at the moment of execution. */ function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) private { if (to.code.length > 0) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, values, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { // Tokens rejected revert ERC1155InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { // non-ERC1155Receiver implementer revert ERC1155InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } /** * @dev Creates an array in memory with only one value for each of the elements provided. */ function _asSingletonArrays( uint256 element1, uint256 element2 ) private pure returns (uint256[] memory array1, uint256[] memory array2) { /// @solidity memory-safe-assembly assembly { // Load the free memory pointer array1 := mload(0x40) // Set array length to 1 mstore(array1, 1) // Store the single element at the next word after the length (where content starts) mstore(add(array1, 0x20), element1) // Repeat for next array locating it right after the first array array2 := add(array1, 0x40) mstore(array2, 1) mstore(add(array2, 0x20), element2) // Update the free memory pointer by pointing after the second array mstore(0x40, add(array2, 0x40)) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "shanghai", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_factory","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC1155InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC1155InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"ERC1155InvalidArrayLength","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC1155InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1155InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC1155InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC1155MissingApprovalForAll","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"tokenUri","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"string[]","name":"tokenUris","type":"string[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatchWithUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"receiveERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newUri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"string[]","name":"newUris","type":"string[]"}],"name":"setTokenURIBatch","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenA","type":"address"},{"internalType":"address","name":"_tokenB","type":"address"},{"internalType":"uint256","name":"_amountA","type":"uint256"},{"internalType":"uint256","name":"_amountB","type":"uint256"},{"internalType":"uint256","name":"_minAmountA","type":"uint256"},{"internalType":"uint256","name":"_minAmountB","type":"uint256"},{"internalType":"uint256","name":"slippage","type":"uint256"}],"name":"uniAddLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenA","type":"address"},{"internalType":"address","name":"_tokenB","type":"address"},{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_minAmountA","type":"uint256"},{"internalType":"uint256","name":"_minAmountB","type":"uint256"}],"name":"uniRemoveLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenA","type":"address"},{"internalType":"address","name":"_tokenB","type":"address"}],"name":"uniSetLiquidityPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Factory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801562000010575f80fd5b5060405162005733380380620057338339818101604052810190620000369190620002a2565b3360405180602001604052805f81525062000057816200016560201b60201c565b505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000cb575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000c29190620002f8565b60405180910390fd5b620000dc816200017a60201b60201c565b508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200065b565b806002908162000176919062000577565b5050565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200026c8262000241565b9050919050565b6200027e8162000260565b811462000289575f80fd5b50565b5f815190506200029c8162000273565b92915050565b5f8060408385031215620002bb57620002ba6200023d565b5b5f620002ca858286016200028c565b9250506020620002dd858286016200028c565b9150509250929050565b620002f28162000260565b82525050565b5f6020820190506200030d5f830184620002e7565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200038f57607f821691505b602082108103620003a557620003a46200034a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003cc565b620004158683620003cc565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200045f6200045962000453846200042d565b62000436565b6200042d565b9050919050565b5f819050919050565b6200047a836200043f565b62000492620004898262000466565b848454620003d8565b825550505050565b5f90565b620004a86200049a565b620004b58184846200046f565b505050565b5b81811015620004dc57620004d05f826200049e565b600181019050620004bb565b5050565b601f8211156200052b57620004f581620003ab565b6200050084620003bd565b8101602085101562000510578190505b620005286200051f85620003bd565b830182620004ba565b50505b505050565b5f82821c905092915050565b5f6200054d5f198460080262000530565b1980831691505092915050565b5f6200056783836200053c565b9150826002028217905092915050565b620005828262000313565b67ffffffffffffffff8111156200059e576200059d6200031d565b5b620005aa825462000377565b620005b7828285620004e0565b5f60209050601f831160018114620005ed575f8415620005d8578287015190505b620005e485826200055a565b86555062000653565b601f198416620005fd86620003ab565b5f5b828110156200062657848901518255600182019150602085019450602081019050620005ff565b8683101562000646578489015162000642601f8916826200053c565b8355505b6001600288020188555050505b505050505050565b6150ca80620006695f395ff3fe6080604052600436106101f0575f3560e01c8063715018a61161010c578063bd85b0391161009f578063e985e9c51161006e578063e985e9c514610718578063f23a6e6114610754578063f242432a14610790578063f2fde38b146107b8578063f5298aca146107e057610230565b8063bd85b03914610662578063c816841b1461069e578063cf8ca741146106c8578063d202e327146106f057610230565b8063ae28b68c116100db578063ae28b68c146105ae578063aed4aab6146105d6578063b390c0ab146105fe578063bc197c811461062657610230565b8063715018a61461051e5780638da5cb5b14610534578063a22cb4651461055e578063a4b645eb1461058657610230565b80634bb993511161018457806359d0f7131161015357806359d0f7131461047c5780635d2d837d146104a65780636b20c454146104ce5780636b421a50146104f657610230565b80634bb99351146103b45780634e1273f4146103dc5780634f558e791461041857806355f804b31461045457610230565b80631694505e116101c05780631694505e1461031057806318160ddd1461033a57806327dfd0c4146103645780632eb2c2d61461038c57610230565b8062fdd58e1461023457806301ffc9a7146102705780630e89341c146102ac578063162094c4146102e857610230565b36610230577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051610226929190613296565b60405180910390a1005b5f80fd5b34801561023f575f80fd5b5061025a60048036038101906102559190613322565b610808565b6040516102679190613360565b60405180910390f35b34801561027b575f80fd5b50610296600480360381019061029191906133ce565b61085d565b6040516102a39190613413565b60405180910390f35b3480156102b7575f80fd5b506102d260048036038101906102cd919061342c565b61093e565b6040516102df91906134e1565b60405180910390f35b3480156102f3575f80fd5b5061030e6004803603810190610309919061362d565b610a4f565b005b34801561031b575f80fd5b50610324610abd565b60405161033191906136e2565b60405180910390f35b348015610345575f80fd5b5061034e610ae2565b60405161035b9190613360565b60405180910390f35b34801561036f575f80fd5b5061038a600480360381019061038591906136fb565b610aeb565b005b348015610397575f80fd5b506103b260048036038101906103ad919061389b565b610cef565b005b3480156103bf575f80fd5b506103da60048036038101906103d59190613a44565b610d96565b005b3480156103e7575f80fd5b5061040260048036038101906103fd9190613b7a565b610e58565b60405161040f9190613ca7565b60405180910390f35b348015610423575f80fd5b5061043e6004803603810190610439919061342c565b610f65565b60405161044b9190613413565b60405180910390f35b34801561045f575f80fd5b5061047a60048036038101906104759190613cc7565b610f78565b005b348015610487575f80fd5b50610490610f8c565b60405161049d9190613d2e565b60405180910390f35b3480156104b1575f80fd5b506104cc60048036038101906104c79190613d47565b610fb1565b005b3480156104d9575f80fd5b506104f460048036038101906104ef9190613de4565b611117565b005b348015610501575f80fd5b5061051c60048036038101906105179190613e6c565b6111c3565b005b348015610529575f80fd5b50610532611473565b005b34801561053f575f80fd5b50610548611486565b6040516105559190613ee3565b60405180910390f35b348015610569575f80fd5b50610584600480360381019061057f9190613f26565b6114ae565b005b348015610591575f80fd5b506105ac60048036038101906105a79190613f64565b6114c4565b005b3480156105b9575f80fd5b506105d460048036038101906105cf9190614013565b611541565b005b3480156105e1575f80fd5b506105fc60048036038101906105f791906140ce565b61155c565b005b348015610609575f80fd5b50610624600480360381019061061f919061410c565b6115de565b005b348015610631575f80fd5b5061064c600480360381019061064791906141f8565b6115f5565b60405161065991906142de565b60405180910390f35b34801561066d575f80fd5b506106886004803603810190610683919061342c565b61160c565b6040516106959190613360565b60405180910390f35b3480156106a9575f80fd5b506106b2611626565b6040516106bf9190613ee3565b60405180910390f35b3480156106d3575f80fd5b506106ee60048036038101906106e99190614013565b61164b565b005b3480156106fb575f80fd5b50610716600480360381019061071191906142f7565b611666565b005b348015610723575f80fd5b5061073e600480360381019061073991906136fb565b611744565b60405161074b9190613413565b60405180910390f35b34801561075f575f80fd5b5061077a600480360381019061077591906143de565b6117d2565b60405161078791906142de565b60405180910390f35b34801561079b575f80fd5b506107b660048036038101906107b19190614474565b6117e7565b005b3480156107c3575f80fd5b506107de60048036038101906107d99190614507565b61188e565b005b3480156107eb575f80fd5b5061080660048036038101906108019190614532565b611912565b005b5f805f8381526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f7fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109375750610936826119be565b5b9050919050565b60605f60095f8481526020019081526020015f20805461095d906145af565b80601f0160208091040260200160405190810160405280929190818152602001828054610989906145af565b80156109d45780601f106109ab576101008083540402835291602001916109d4565b820191905f5260205f20905b8154815290600101906020018083116109b757829003601f168201915b505050505090505f6109e584611a27565b90505f82511115610a1b578082604051602001610a03929190614619565b60405160208183030381529060405292505050610a4a565b80610a2585611ab9565b604051602001610a36929190614619565b604051602081830303815290604052925050505b919050565b610a57611b83565b5f815111610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190614686565b60405180910390fd5b8060095f8481526020019081526020015f209081610ab89190614838565b505050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600554905090565b610af3611b83565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e6a4390584846040518363ffffffff1660e01b8152600401610b50929190614907565b602060405180830381865afa158015610b6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b8f9190614942565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca9575f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c6539685856040518363ffffffff1660e01b8152600401610c21929190614907565b6020604051808303815f875af1158015610c3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c619190614942565b90508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050610cea565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b5f610cf8611c0a565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610d3d5750610d3b8682611744565b155b15610d815780866040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610d78929190614907565b60405180910390fd5b610d8e8686868686611c11565b505050505050565b610d9e611b83565b8051825114610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd9906149b7565b60405180910390fd5b5f5b8251811015610e5357818181518110610e0057610dff6149d5565b5b602002602001015160095f858481518110610e1e57610e1d6149d5565b5b602002602001015181526020019081526020015f209081610e3f9190614838565b508080610e4b90614a2f565b915050610de4565b505050565b60608151835114610ea457815183516040517f5b059991000000000000000000000000000000000000000000000000000000008152600401610e9b929190614a76565b60405180910390fd5b5f835167ffffffffffffffff811115610ec057610ebf613509565b5b604051908082528060200260200182016040528015610eee5781602001602082028036833780820191505090505b5090505f5b8451811015610f5a57610f2a610f128287611d0590919063ffffffff16565b610f258387611d1890919063ffffffff16565b610808565b828281518110610f3d57610f3c6149d5565b5b60200260200101818152505080610f5390614a2f565b9050610ef3565b508091505092915050565b5f80610f708361160c565b119050919050565b610f80611b83565b610f8981611d2b565b50565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fb9611b83565b61100560075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16868973ffffffffffffffffffffffffffffffffffffffff16611d3e9092919063ffffffff16565b61105160075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16858873ffffffffffffffffffffffffffffffffffffffff16611d3e9092919063ffffffff16565b5f610384426110609190614a9d565b905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8e3370089898989898930896040518963ffffffff1660e01b81526004016110ca989796959493929190614ad0565b6060604051808303815f875af11580156110e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061110a9190614b60565b5050505050505050505050565b61111f611c0a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611168575061116683611161611c0a565b611744565b155b156111b357611175611c0a565b836040517fe237d9220000000000000000000000000000000000000000000000000000000081526004016111aa929190614907565b60405180910390fd5b6111be838383611dd7565b505050565b6111cb611b83565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e6a4390587876040518363ffffffff1660e01b8152600401611228929190614907565b602060405180830381865afa158015611243573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112679190614942565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90614c20565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90614c88565b60405180910390fd5b6113b260075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16858373ffffffffffffffffffffffffffffffffffffffff16611d3e9092919063ffffffff16565b5f610384426113c19190614a9d565b905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663baa2abde888888888830886040518863ffffffff1660e01b81526004016114299796959493929190614ca6565b60408051808303815f875af1158015611444573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114689190614d13565b505050505050505050565b61147b611b83565b6114845f611e67565b565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114c06114b9611c0a565b8383611f2a565b5050565b6114cc611b83565b5f82511161150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690614686565b60405180910390fd5b61151b85858584612093565b8160095f8681526020019081526020015f2090816115399190614838565b505050505050565b611549611b83565b61155633858585856117e7565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b815260040161159993929190614d51565b6020604051808303815f875af11580156115b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115d99190614d9a565b505050565b6115e6611b83565b6115f1338383612128565b5050565b5f63bc197c8160e01b905098975050505050505050565b5f60045f8381526020019081526020015f20549050919050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611653611b83565b61166030858585856121ca565b50505050565b61166e611b83565b82518451148015611680575081518451145b6116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b6906149b7565b60405180910390fd5b6116cb858585846122d0565b5f5b845181101561173c578281815181106116e9576116e86149d5565b5b602002602001015160095f878481518110611707576117066149d5565b5b602002602001015181526020019081526020015f2090816117289190614838565b50808061173490614a2f565b9150506116cd565b505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f63f23a6e6160e01b90509695505050505050565b5f6117f0611c0a565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415801561183557506118338682611744565b155b156118795780866040517fe237d922000000000000000000000000000000000000000000000000000000008152600401611870929190614907565b60405180910390fd5b61188686868686866121ca565b505050505050565b611896611b83565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611906575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118fd9190613ee3565b60405180910390fd5b61190f81611e67565b50565b61191a611c0a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561196357506119618361195c611c0a565b611744565b155b156119ae57611970611c0a565b836040517fe237d9220000000000000000000000000000000000000000000000000000000081526004016119a5929190614907565b60405180910390fd5b6119b9838383612128565b505050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060028054611a36906145af565b80601f0160208091040260200160405190810160405280929190818152602001828054611a62906145af565b8015611aad5780601f10611a8457610100808354040283529160200191611aad565b820191905f5260205f20905b815481529060010190602001808311611a9057829003601f168201915b50505050509050919050565b60605f6001611ac784612353565b0190505f8167ffffffffffffffff811115611ae557611ae4613509565b5b6040519080825280601f01601f191660200182016040528015611b175781602001600182028036833780820191505090505b5090505f82602001820190505b600115611b78578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b6d57611b6c614dc5565b5b0494505f8503611b24575b819350505050919050565b611b8b611c0a565b73ffffffffffffffffffffffffffffffffffffffff16611ba9611486565b73ffffffffffffffffffffffffffffffffffffffff1614611c0857611bcc611c0a565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611bff9190613ee3565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c81575f6040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401611c789190613ee3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611cf1575f6040517f01a83514000000000000000000000000000000000000000000000000000000008152600401611ce89190613ee3565b60405180910390fd5b611cfe85858585856124a4565b5050505050565b5f60208202602084010151905092915050565b5f60208202602084010151905092915050565b8060029081611d3a9190614838565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401611d7a929190614907565b602060405180830381865afa158015611d95573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611db99190614df2565b9050611dd184848484611dcc9190614a9d565b612550565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e47575f6040517f01a83514000000000000000000000000000000000000000000000000000000008152600401611e3e9190613ee3565b60405180910390fd5b611e62835f848460405180602001604052805f8152506124a4565b505050565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f9a575f6040517fced3e100000000000000000000000000000000000000000000000000000000008152600401611f919190613ee3565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120869190613413565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612103575f6040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016120fa9190613ee3565b60405180910390fd5b5f8061210f858561265d565b915091506121205f878484876124a4565b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612198575f6040517f01a8351400000000000000000000000000000000000000000000000000000000815260040161218f9190613ee3565b60405180910390fd5b5f806121a4848461265d565b915091506121c3855f848460405180602001604052805f8152506124a4565b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361223a575f6040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016122319190613ee3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036122aa575f6040517f01a835140000000000000000000000000000000000000000000000000000000081526004016122a19190613ee3565b60405180910390fd5b5f806122b6858561265d565b915091506122c787878484876124a4565b50505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612340575f6040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016123379190613ee3565b60405180910390fd5b61234d5f858585856124a4565b50505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106123af577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816123a5576123a4614dc5565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123ec576d04ee2d6d415b85acef810000000083816123e2576123e1614dc5565b5b0492506020810190505b662386f26fc10000831061241b57662386f26fc10000838161241157612410614dc5565b5b0492506010810190505b6305f5e1008310612444576305f5e100838161243a57612439614dc5565b5b0492506008810190505b612710831061246957612710838161245f5761245e614dc5565b5b0492506004810190505b6064831061248c576064838161248257612481614dc5565b5b0492506002810190505b600a831061249b576001810190505b80915050919050565b6124b08585858561268d565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612549575f6124ec611c0a565b90506001845103612538575f61250b5f86611d1890919063ffffffff16565b90505f6125215f86611d1890919063ffffffff16565b905061253183898985858961269f565b5050612547565b61254681878787878761284e565b5b505b5050505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663095ea7b38484604051602401612580929190613296565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505090506125ce84826129fd565b6126575761264c848573ffffffffffffffffffffffffffffffffffffffff1663095ea7b3865f604051602401612605929190614e56565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612abc565b6126568482612abc565b5b50505050565b60608060405191506001825283602083015260408201905060018152826020820152604081016040529250929050565b61269984848484612b51565b50505050565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1115612846578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016126ff959493929190614ecf565b6020604051808303815f875af192505050801561273a57506040513d601f19601f820116820180604052508101906127379190614f3b565b60015b6127bb573d805f8114612768576040519150601f19603f3d011682016040523d82523d5f602084013e61276d565b606091505b505f8151036127b357846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016127aa9190613ee3565b60405180910390fd5b805181602001fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461284457846040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161283b9190613ee3565b60405180910390fd5b505b505050505050565b5f8473ffffffffffffffffffffffffffffffffffffffff163b11156129f5578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016128ae959493929190614f66565b6020604051808303815f875af19250505080156128e957506040513d601f19601f820116820180604052508101906128e69190614f3b565b60015b61296a573d805f8114612917576040519150601f19603f3d011682016040523d82523d5f602084013e61291c565b606091505b505f81510361296257846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016129599190613ee3565b60405180910390fd5b805181602001fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129f357846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016129ea9190613ee3565b60405180910390fd5b505b505050505050565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1684604051612a259190615006565b5f604051808303815f865af19150503d805f8114612a5e576040519150601f19603f3d011682016040523d82523d5f602084013e612a63565b606091505b5091509150818015612a9057505f81511480612a8f575080806020019051810190612a8e9190614d9a565b5b5b8015612ab257505f8573ffffffffffffffffffffffffffffffffffffffff163b115b9250505092915050565b5f612ae6828473ffffffffffffffffffffffffffffffffffffffff16612cfa90919063ffffffff16565b90505f815114158015612b0a575080806020019051810190612b089190614d9a565b155b15612b4c57826040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401612b439190613ee3565b60405180910390fd5b505050565b612b5d84848484612d0f565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612c36575f805b8351811015612c1b575f838281518110612bb057612baf6149d5565b5b602002602001015190508060045f878581518110612bd157612bd06149d5565b5b602002602001015181526020019081526020015f205f828254612bf49190614a9d565b925050819055508083612c079190614a9d565b92505080612c1490614a2f565b9050612b93565b508060055f828254612c2d9190614a9d565b92505081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cf4575f805b8351811015612ce2575f838281518110612c8957612c886149d5565b5b602002602001015190508060045f878581518110612caa57612ca96149d5565b5b602002602001015181526020019081526020015f205f828254039250508190555080830192505080612cdb90614a2f565b9050612c6c565b508060055f8282540392505081905550505b50505050565b6060612d0783835f6130a5565b905092915050565b8051825114612d5957815181516040517f5b059991000000000000000000000000000000000000000000000000000000008152600401612d50929190614a76565b60405180910390fd5b5f612d62611c0a565b90505f5b8351811015612f64575f612d838286611d1890919063ffffffff16565b90505f612d998386611d1890919063ffffffff16565b90505f73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614612ebc575f805f8481526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612e6857888183856040517f03dee4c5000000000000000000000000000000000000000000000000000000008152600401612e5f949392919061501c565b60405180910390fd5b8181035f808581526020019081526020015f205f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614612f5157805f808481526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612f499190614a9d565b925050819055505b505080612f5d90614a2f565b9050612d66565b50600183510361301f575f612f825f85611d1890919063ffffffff16565b90505f612f985f85611d1890919063ffffffff16565b90508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051613010929190614a76565b60405180910390a4505061309e565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161309592919061505f565b60405180910390a45b5050505050565b6060814710156130ec57306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016130e39190613ee3565b60405180910390fd5b5f808573ffffffffffffffffffffffffffffffffffffffff1684866040516131149190615006565b5f6040518083038185875af1925050503d805f811461314e576040519150601f19603f3d011682016040523d82523d5f602084013e613153565b606091505b509150915061316386838361316e565b925050509392505050565b6060826131835761317e826131fb565b6131f3565b5f82511480156131a957505f8473ffffffffffffffffffffffffffffffffffffffff163b145b156131eb57836040517f9996b3150000000000000000000000000000000000000000000000000000000081526004016131e29190613ee3565b60405180910390fd5b8190506131f4565b5b9392505050565b5f8151111561320d5780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6132688261323f565b9050919050565b6132788161325e565b82525050565b5f819050919050565b6132908161327e565b82525050565b5f6040820190506132a95f83018561326f565b6132b66020830184613287565b9392505050565b5f604051905090565b5f80fd5b5f80fd5b6132d78161325e565b81146132e1575f80fd5b50565b5f813590506132f2816132ce565b92915050565b6133018161327e565b811461330b575f80fd5b50565b5f8135905061331c816132f8565b92915050565b5f8060408385031215613338576133376132c6565b5b5f613345858286016132e4565b92505060206133568582860161330e565b9150509250929050565b5f6020820190506133735f830184613287565b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133ad81613379565b81146133b7575f80fd5b50565b5f813590506133c8816133a4565b92915050565b5f602082840312156133e3576133e26132c6565b5b5f6133f0848285016133ba565b91505092915050565b5f8115159050919050565b61340d816133f9565b82525050565b5f6020820190506134265f830184613404565b92915050565b5f60208284031215613441576134406132c6565b5b5f61344e8482850161330e565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561348e578082015181840152602081019050613473565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6134b382613457565b6134bd8185613461565b93506134cd818560208601613471565b6134d681613499565b840191505092915050565b5f6020820190508181035f8301526134f981846134a9565b905092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61353f82613499565b810181811067ffffffffffffffff8211171561355e5761355d613509565b5b80604052505050565b5f6135706132bd565b905061357c8282613536565b919050565b5f67ffffffffffffffff82111561359b5761359a613509565b5b6135a482613499565b9050602081019050919050565b828183375f83830152505050565b5f6135d16135cc84613581565b613567565b9050828152602081018484840111156135ed576135ec613505565b5b6135f88482856135b1565b509392505050565b5f82601f83011261361457613613613501565b5b81356136248482602086016135bf565b91505092915050565b5f8060408385031215613643576136426132c6565b5b5f6136508582860161330e565b925050602083013567ffffffffffffffff811115613671576136706132ca565b5b61367d85828601613600565b9150509250929050565b5f819050919050565b5f6136aa6136a56136a08461323f565b613687565b61323f565b9050919050565b5f6136bb82613690565b9050919050565b5f6136cc826136b1565b9050919050565b6136dc816136c2565b82525050565b5f6020820190506136f55f8301846136d3565b92915050565b5f8060408385031215613711576137106132c6565b5b5f61371e858286016132e4565b925050602061372f858286016132e4565b9150509250929050565b5f67ffffffffffffffff82111561375357613752613509565b5b602082029050602081019050919050565b5f80fd5b5f61377a61377584613739565b613567565b9050808382526020820190506020840283018581111561379d5761379c613764565b5b835b818110156137c657806137b2888261330e565b84526020840193505060208101905061379f565b5050509392505050565b5f82601f8301126137e4576137e3613501565b5b81356137f4848260208601613768565b91505092915050565b5f67ffffffffffffffff82111561381757613816613509565b5b61382082613499565b9050602081019050919050565b5f61383f61383a846137fd565b613567565b90508281526020810184848401111561385b5761385a613505565b5b6138668482856135b1565b509392505050565b5f82601f83011261388257613881613501565b5b813561389284826020860161382d565b91505092915050565b5f805f805f60a086880312156138b4576138b36132c6565b5b5f6138c1888289016132e4565b95505060206138d2888289016132e4565b945050604086013567ffffffffffffffff8111156138f3576138f26132ca565b5b6138ff888289016137d0565b935050606086013567ffffffffffffffff8111156139205761391f6132ca565b5b61392c888289016137d0565b925050608086013567ffffffffffffffff81111561394d5761394c6132ca565b5b6139598882890161386e565b9150509295509295909350565b5f67ffffffffffffffff8211156139805761397f613509565b5b602082029050602081019050919050565b5f6139a361399e84613966565b613567565b905080838252602082019050602084028301858111156139c6576139c5613764565b5b835b81811015613a0d57803567ffffffffffffffff8111156139eb576139ea613501565b5b8086016139f88982613600565b855260208501945050506020810190506139c8565b5050509392505050565b5f82601f830112613a2b57613a2a613501565b5b8135613a3b848260208601613991565b91505092915050565b5f8060408385031215613a5a57613a596132c6565b5b5f83013567ffffffffffffffff811115613a7757613a766132ca565b5b613a83858286016137d0565b925050602083013567ffffffffffffffff811115613aa457613aa36132ca565b5b613ab085828601613a17565b9150509250929050565b5f67ffffffffffffffff821115613ad457613ad3613509565b5b602082029050602081019050919050565b5f613af7613af284613aba565b613567565b90508083825260208201905060208402830185811115613b1a57613b19613764565b5b835b81811015613b435780613b2f88826132e4565b845260208401935050602081019050613b1c565b5050509392505050565b5f82601f830112613b6157613b60613501565b5b8135613b71848260208601613ae5565b91505092915050565b5f8060408385031215613b9057613b8f6132c6565b5b5f83013567ffffffffffffffff811115613bad57613bac6132ca565b5b613bb985828601613b4d565b925050602083013567ffffffffffffffff811115613bda57613bd96132ca565b5b613be6858286016137d0565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613c228161327e565b82525050565b5f613c338383613c19565b60208301905092915050565b5f602082019050919050565b5f613c5582613bf0565b613c5f8185613bfa565b9350613c6a83613c0a565b805f5b83811015613c9a578151613c818882613c28565b9750613c8c83613c3f565b925050600181019050613c6d565b5085935050505092915050565b5f6020820190508181035f830152613cbf8184613c4b565b905092915050565b5f60208284031215613cdc57613cdb6132c6565b5b5f82013567ffffffffffffffff811115613cf957613cf86132ca565b5b613d0584828501613600565b91505092915050565b5f613d18826136b1565b9050919050565b613d2881613d0e565b82525050565b5f602082019050613d415f830184613d1f565b92915050565b5f805f805f805f60e0888a031215613d6257613d616132c6565b5b5f613d6f8a828b016132e4565b9750506020613d808a828b016132e4565b9650506040613d918a828b0161330e565b9550506060613da28a828b0161330e565b9450506080613db38a828b0161330e565b93505060a0613dc48a828b0161330e565b92505060c0613dd58a828b0161330e565b91505092959891949750929550565b5f805f60608486031215613dfb57613dfa6132c6565b5b5f613e08868287016132e4565b935050602084013567ffffffffffffffff811115613e2957613e286132ca565b5b613e35868287016137d0565b925050604084013567ffffffffffffffff811115613e5657613e556132ca565b5b613e62868287016137d0565b9150509250925092565b5f805f805f60a08688031215613e8557613e846132c6565b5b5f613e92888289016132e4565b9550506020613ea3888289016132e4565b9450506040613eb48882890161330e565b9350506060613ec58882890161330e565b9250506080613ed68882890161330e565b9150509295509295909350565b5f602082019050613ef65f83018461326f565b92915050565b613f05816133f9565b8114613f0f575f80fd5b50565b5f81359050613f2081613efc565b92915050565b5f8060408385031215613f3c57613f3b6132c6565b5b5f613f49858286016132e4565b9250506020613f5a85828601613f12565b9150509250929050565b5f805f805f60a08688031215613f7d57613f7c6132c6565b5b5f613f8a888289016132e4565b9550506020613f9b8882890161330e565b9450506040613fac8882890161330e565b935050606086013567ffffffffffffffff811115613fcd57613fcc6132ca565b5b613fd988828901613600565b925050608086013567ffffffffffffffff811115613ffa57613ff96132ca565b5b6140068882890161386e565b9150509295509295909350565b5f805f806080858703121561402b5761402a6132c6565b5b5f614038878288016132e4565b94505060206140498782880161330e565b935050604061405a8782880161330e565b925050606085013567ffffffffffffffff81111561407b5761407a6132ca565b5b6140878782880161386e565b91505092959194509250565b5f61409d8261325e565b9050919050565b6140ad81614093565b81146140b7575f80fd5b50565b5f813590506140c8816140a4565b92915050565b5f80604083850312156140e4576140e36132c6565b5b5f6140f1858286016140ba565b92505060206141028582860161330e565b9150509250929050565b5f8060408385031215614122576141216132c6565b5b5f61412f8582860161330e565b92505060206141408582860161330e565b9150509250929050565b5f80fd5b5f8083601f84011261416357614162613501565b5b8235905067ffffffffffffffff8111156141805761417f61414a565b5b60208301915083602082028301111561419c5761419b613764565b5b9250929050565b5f8083601f8401126141b8576141b7613501565b5b8235905067ffffffffffffffff8111156141d5576141d461414a565b5b6020830191508360018202830111156141f1576141f0613764565b5b9250929050565b5f805f805f805f8060a0898b031215614214576142136132c6565b5b5f6142218b828c016132e4565b98505060206142328b828c016132e4565b975050604089013567ffffffffffffffff811115614253576142526132ca565b5b61425f8b828c0161414e565b9650965050606089013567ffffffffffffffff811115614282576142816132ca565b5b61428e8b828c0161414e565b9450945050608089013567ffffffffffffffff8111156142b1576142b06132ca565b5b6142bd8b828c016141a3565b92509250509295985092959890939650565b6142d881613379565b82525050565b5f6020820190506142f15f8301846142cf565b92915050565b5f805f805f60a086880312156143105761430f6132c6565b5b5f61431d888289016132e4565b955050602086013567ffffffffffffffff81111561433e5761433d6132ca565b5b61434a888289016137d0565b945050604086013567ffffffffffffffff81111561436b5761436a6132ca565b5b614377888289016137d0565b935050606086013567ffffffffffffffff811115614398576143976132ca565b5b6143a488828901613a17565b925050608086013567ffffffffffffffff8111156143c5576143c46132ca565b5b6143d18882890161386e565b9150509295509295909350565b5f805f805f8060a087890312156143f8576143f76132c6565b5b5f61440589828a016132e4565b965050602061441689828a016132e4565b955050604061442789828a0161330e565b945050606061443889828a0161330e565b935050608087013567ffffffffffffffff811115614459576144586132ca565b5b61446589828a016141a3565b92509250509295509295509295565b5f805f805f60a0868803121561448d5761448c6132c6565b5b5f61449a888289016132e4565b95505060206144ab888289016132e4565b94505060406144bc8882890161330e565b93505060606144cd8882890161330e565b925050608086013567ffffffffffffffff8111156144ee576144ed6132ca565b5b6144fa8882890161386e565b9150509295509295909350565b5f6020828403121561451c5761451b6132c6565b5b5f614529848285016132e4565b91505092915050565b5f805f60608486031215614549576145486132c6565b5b5f614556868287016132e4565b93505060206145678682870161330e565b92505060406145788682870161330e565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806145c657607f821691505b6020821081036145d9576145d8614582565b5b50919050565b5f81905092915050565b5f6145f382613457565b6145fd81856145df565b935061460d818560208601613471565b80840191505092915050565b5f61462482856145e9565b915061463082846145e9565b91508190509392505050565b7f5552492073686f756c64206e6f7420626520656d7074790000000000000000005f82015250565b5f614670601783613461565b915061467b8261463c565b602082019050919050565b5f6020820190508181035f83015261469d81614664565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026147007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146c5565b61470a86836146c5565b95508019841693508086168417925050509392505050565b5f61473c6147376147328461327e565b613687565b61327e565b9050919050565b5f819050919050565b61475583614722565b61476961476182614743565b8484546146d1565b825550505050565b5f90565b61477d614771565b61478881848461474c565b505050565b5b818110156147ab576147a05f82614775565b60018101905061478e565b5050565b601f8211156147f0576147c1816146a4565b6147ca846146b6565b810160208510156147d9578190505b6147ed6147e5856146b6565b83018261478d565b50505b505050565b5f82821c905092915050565b5f6148105f19846008026147f5565b1980831691505092915050565b5f6148288383614801565b9150826002028217905092915050565b61484182613457565b67ffffffffffffffff81111561485a57614859613509565b5b61486482546145af565b61486f8282856147af565b5f60209050601f8311600181146148a0575f841561488e578287015190505b614898858261481d565b8655506148ff565b601f1984166148ae866146a4565b5f5b828110156148d5578489015182556001820191506020850194506020810190506148b0565b868310156148f257848901516148ee601f891682614801565b8355505b6001600288020188555050505b505050505050565b5f60408201905061491a5f83018561326f565b614927602083018461326f565b9392505050565b5f8151905061493c816132ce565b92915050565b5f60208284031215614957576149566132c6565b5b5f6149648482850161492e565b91505092915050565b7f417272617973206d7573742068617665207468652073616d65206c656e6774685f82015250565b5f6149a1602083613461565b91506149ac8261496d565b602082019050919050565b5f6020820190508181035f8301526149ce81614995565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614a398261327e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614a6b57614a6a614a02565b5b600182019050919050565b5f604082019050614a895f830185613287565b614a966020830184613287565b9392505050565b5f614aa78261327e565b9150614ab28361327e565b9250828201905080821115614aca57614ac9614a02565b5b92915050565b5f61010082019050614ae45f83018b61326f565b614af1602083018a61326f565b614afe6040830189613287565b614b0b6060830188613287565b614b186080830187613287565b614b2560a0830186613287565b614b3260c083018561326f565b614b3f60e0830184613287565b9998505050505050505050565b5f81519050614b5a816132f8565b92915050565b5f805f60608486031215614b7757614b766132c6565b5b5f614b8486828701614b4c565b9350506020614b9586828701614b4c565b9250506040614ba686828701614b4c565b9150509250925092565b7f4e6f20706f6f6c2065786973747320666f72207468697320746f6b656e2070615f8201527f6972000000000000000000000000000000000000000000000000000000000000602082015250565b5f614c0a602283613461565b9150614c1582614bb0565b604082019050919050565b5f6020820190508181035f830152614c3781614bfe565b9050919050565b7f556e69737761702070616972206d69736d6174636800000000000000000000005f82015250565b5f614c72601583613461565b9150614c7d82614c3e565b602082019050919050565b5f6020820190508181035f830152614c9f81614c66565b9050919050565b5f60e082019050614cb95f83018a61326f565b614cc6602083018961326f565b614cd36040830188613287565b614ce06060830187613287565b614ced6080830186613287565b614cfa60a083018561326f565b614d0760c0830184613287565b98975050505050505050565b5f8060408385031215614d2957614d286132c6565b5b5f614d3685828601614b4c565b9250506020614d4785828601614b4c565b9150509250929050565b5f606082019050614d645f83018661326f565b614d71602083018561326f565b614d7e6040830184613287565b949350505050565b5f81519050614d9481613efc565b92915050565b5f60208284031215614daf57614dae6132c6565b5b5f614dbc84828501614d86565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f60208284031215614e0757614e066132c6565b5b5f614e1484828501614b4c565b91505092915050565b5f819050919050565b5f614e40614e3b614e3684614e1d565b613687565b61327e565b9050919050565b614e5081614e26565b82525050565b5f604082019050614e695f83018561326f565b614e766020830184614e47565b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f614ea182614e7d565b614eab8185614e87565b9350614ebb818560208601613471565b614ec481613499565b840191505092915050565b5f60a082019050614ee25f83018861326f565b614eef602083018761326f565b614efc6040830186613287565b614f096060830185613287565b8181036080830152614f1b8184614e97565b90509695505050505050565b5f81519050614f35816133a4565b92915050565b5f60208284031215614f5057614f4f6132c6565b5b5f614f5d84828501614f27565b91505092915050565b5f60a082019050614f795f83018861326f565b614f86602083018761326f565b8181036040830152614f988186613c4b565b90508181036060830152614fac8185613c4b565b90508181036080830152614fc08184614e97565b90509695505050505050565b5f81905092915050565b5f614fe082614e7d565b614fea8185614fcc565b9350614ffa818560208601613471565b80840191505092915050565b5f6150118284614fd6565b915081905092915050565b5f60808201905061502f5f83018761326f565b61503c6020830186613287565b6150496040830185613287565b6150566060830184613287565b95945050505050565b5f6040820190508181035f8301526150778185613c4b565b9050818103602083015261508b8184613c4b565b9050939250505056fea2646970667358221220f0f3b01d0b070745f5949af01df0aa1d08a1bacad60ab6def1fd05e1234f16cb64736f6c634300081400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Deployed Bytecode
0x6080604052600436106101f0575f3560e01c8063715018a61161010c578063bd85b0391161009f578063e985e9c51161006e578063e985e9c514610718578063f23a6e6114610754578063f242432a14610790578063f2fde38b146107b8578063f5298aca146107e057610230565b8063bd85b03914610662578063c816841b1461069e578063cf8ca741146106c8578063d202e327146106f057610230565b8063ae28b68c116100db578063ae28b68c146105ae578063aed4aab6146105d6578063b390c0ab146105fe578063bc197c811461062657610230565b8063715018a61461051e5780638da5cb5b14610534578063a22cb4651461055e578063a4b645eb1461058657610230565b80634bb993511161018457806359d0f7131161015357806359d0f7131461047c5780635d2d837d146104a65780636b20c454146104ce5780636b421a50146104f657610230565b80634bb99351146103b45780634e1273f4146103dc5780634f558e791461041857806355f804b31461045457610230565b80631694505e116101c05780631694505e1461031057806318160ddd1461033a57806327dfd0c4146103645780632eb2c2d61461038c57610230565b8062fdd58e1461023457806301ffc9a7146102705780630e89341c146102ac578063162094c4146102e857610230565b36610230577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051610226929190613296565b60405180910390a1005b5f80fd5b34801561023f575f80fd5b5061025a60048036038101906102559190613322565b610808565b6040516102679190613360565b60405180910390f35b34801561027b575f80fd5b50610296600480360381019061029191906133ce565b61085d565b6040516102a39190613413565b60405180910390f35b3480156102b7575f80fd5b506102d260048036038101906102cd919061342c565b61093e565b6040516102df91906134e1565b60405180910390f35b3480156102f3575f80fd5b5061030e6004803603810190610309919061362d565b610a4f565b005b34801561031b575f80fd5b50610324610abd565b60405161033191906136e2565b60405180910390f35b348015610345575f80fd5b5061034e610ae2565b60405161035b9190613360565b60405180910390f35b34801561036f575f80fd5b5061038a600480360381019061038591906136fb565b610aeb565b005b348015610397575f80fd5b506103b260048036038101906103ad919061389b565b610cef565b005b3480156103bf575f80fd5b506103da60048036038101906103d59190613a44565b610d96565b005b3480156103e7575f80fd5b5061040260048036038101906103fd9190613b7a565b610e58565b60405161040f9190613ca7565b60405180910390f35b348015610423575f80fd5b5061043e6004803603810190610439919061342c565b610f65565b60405161044b9190613413565b60405180910390f35b34801561045f575f80fd5b5061047a60048036038101906104759190613cc7565b610f78565b005b348015610487575f80fd5b50610490610f8c565b60405161049d9190613d2e565b60405180910390f35b3480156104b1575f80fd5b506104cc60048036038101906104c79190613d47565b610fb1565b005b3480156104d9575f80fd5b506104f460048036038101906104ef9190613de4565b611117565b005b348015610501575f80fd5b5061051c60048036038101906105179190613e6c565b6111c3565b005b348015610529575f80fd5b50610532611473565b005b34801561053f575f80fd5b50610548611486565b6040516105559190613ee3565b60405180910390f35b348015610569575f80fd5b50610584600480360381019061057f9190613f26565b6114ae565b005b348015610591575f80fd5b506105ac60048036038101906105a79190613f64565b6114c4565b005b3480156105b9575f80fd5b506105d460048036038101906105cf9190614013565b611541565b005b3480156105e1575f80fd5b506105fc60048036038101906105f791906140ce565b61155c565b005b348015610609575f80fd5b50610624600480360381019061061f919061410c565b6115de565b005b348015610631575f80fd5b5061064c600480360381019061064791906141f8565b6115f5565b60405161065991906142de565b60405180910390f35b34801561066d575f80fd5b506106886004803603810190610683919061342c565b61160c565b6040516106959190613360565b60405180910390f35b3480156106a9575f80fd5b506106b2611626565b6040516106bf9190613ee3565b60405180910390f35b3480156106d3575f80fd5b506106ee60048036038101906106e99190614013565b61164b565b005b3480156106fb575f80fd5b50610716600480360381019061071191906142f7565b611666565b005b348015610723575f80fd5b5061073e600480360381019061073991906136fb565b611744565b60405161074b9190613413565b60405180910390f35b34801561075f575f80fd5b5061077a600480360381019061077591906143de565b6117d2565b60405161078791906142de565b60405180910390f35b34801561079b575f80fd5b506107b660048036038101906107b19190614474565b6117e7565b005b3480156107c3575f80fd5b506107de60048036038101906107d99190614507565b61188e565b005b3480156107eb575f80fd5b5061080660048036038101906108019190614532565b611912565b005b5f805f8381526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f7fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109375750610936826119be565b5b9050919050565b60605f60095f8481526020019081526020015f20805461095d906145af565b80601f0160208091040260200160405190810160405280929190818152602001828054610989906145af565b80156109d45780601f106109ab576101008083540402835291602001916109d4565b820191905f5260205f20905b8154815290600101906020018083116109b757829003601f168201915b505050505090505f6109e584611a27565b90505f82511115610a1b578082604051602001610a03929190614619565b60405160208183030381529060405292505050610a4a565b80610a2585611ab9565b604051602001610a36929190614619565b604051602081830303815290604052925050505b919050565b610a57611b83565b5f815111610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190614686565b60405180910390fd5b8060095f8481526020019081526020015f209081610ab89190614838565b505050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600554905090565b610af3611b83565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e6a4390584846040518363ffffffff1660e01b8152600401610b50929190614907565b602060405180830381865afa158015610b6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b8f9190614942565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca9575f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c6539685856040518363ffffffff1660e01b8152600401610c21929190614907565b6020604051808303815f875af1158015610c3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c619190614942565b90508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050610cea565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b5f610cf8611c0a565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610d3d5750610d3b8682611744565b155b15610d815780866040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610d78929190614907565b60405180910390fd5b610d8e8686868686611c11565b505050505050565b610d9e611b83565b8051825114610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd9906149b7565b60405180910390fd5b5f5b8251811015610e5357818181518110610e0057610dff6149d5565b5b602002602001015160095f858481518110610e1e57610e1d6149d5565b5b602002602001015181526020019081526020015f209081610e3f9190614838565b508080610e4b90614a2f565b915050610de4565b505050565b60608151835114610ea457815183516040517f5b059991000000000000000000000000000000000000000000000000000000008152600401610e9b929190614a76565b60405180910390fd5b5f835167ffffffffffffffff811115610ec057610ebf613509565b5b604051908082528060200260200182016040528015610eee5781602001602082028036833780820191505090505b5090505f5b8451811015610f5a57610f2a610f128287611d0590919063ffffffff16565b610f258387611d1890919063ffffffff16565b610808565b828281518110610f3d57610f3c6149d5565b5b60200260200101818152505080610f5390614a2f565b9050610ef3565b508091505092915050565b5f80610f708361160c565b119050919050565b610f80611b83565b610f8981611d2b565b50565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fb9611b83565b61100560075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16868973ffffffffffffffffffffffffffffffffffffffff16611d3e9092919063ffffffff16565b61105160075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16858873ffffffffffffffffffffffffffffffffffffffff16611d3e9092919063ffffffff16565b5f610384426110609190614a9d565b905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8e3370089898989898930896040518963ffffffff1660e01b81526004016110ca989796959493929190614ad0565b6060604051808303815f875af11580156110e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061110a9190614b60565b5050505050505050505050565b61111f611c0a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611168575061116683611161611c0a565b611744565b155b156111b357611175611c0a565b836040517fe237d9220000000000000000000000000000000000000000000000000000000081526004016111aa929190614907565b60405180910390fd5b6111be838383611dd7565b505050565b6111cb611b83565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e6a4390587876040518363ffffffff1660e01b8152600401611228929190614907565b602060405180830381865afa158015611243573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112679190614942565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90614c20565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90614c88565b60405180910390fd5b6113b260075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16858373ffffffffffffffffffffffffffffffffffffffff16611d3e9092919063ffffffff16565b5f610384426113c19190614a9d565b905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663baa2abde888888888830886040518863ffffffff1660e01b81526004016114299796959493929190614ca6565b60408051808303815f875af1158015611444573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114689190614d13565b505050505050505050565b61147b611b83565b6114845f611e67565b565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114c06114b9611c0a565b8383611f2a565b5050565b6114cc611b83565b5f82511161150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690614686565b60405180910390fd5b61151b85858584612093565b8160095f8681526020019081526020015f2090816115399190614838565b505050505050565b611549611b83565b61155633858585856117e7565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b815260040161159993929190614d51565b6020604051808303815f875af11580156115b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115d99190614d9a565b505050565b6115e6611b83565b6115f1338383612128565b5050565b5f63bc197c8160e01b905098975050505050505050565b5f60045f8381526020019081526020015f20549050919050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611653611b83565b61166030858585856121ca565b50505050565b61166e611b83565b82518451148015611680575081518451145b6116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b6906149b7565b60405180910390fd5b6116cb858585846122d0565b5f5b845181101561173c578281815181106116e9576116e86149d5565b5b602002602001015160095f878481518110611707576117066149d5565b5b602002602001015181526020019081526020015f2090816117289190614838565b50808061173490614a2f565b9150506116cd565b505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f63f23a6e6160e01b90509695505050505050565b5f6117f0611c0a565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415801561183557506118338682611744565b155b156118795780866040517fe237d922000000000000000000000000000000000000000000000000000000008152600401611870929190614907565b60405180910390fd5b61188686868686866121ca565b505050505050565b611896611b83565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611906575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118fd9190613ee3565b60405180910390fd5b61190f81611e67565b50565b61191a611c0a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561196357506119618361195c611c0a565b611744565b155b156119ae57611970611c0a565b836040517fe237d9220000000000000000000000000000000000000000000000000000000081526004016119a5929190614907565b60405180910390fd5b6119b9838383612128565b505050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060028054611a36906145af565b80601f0160208091040260200160405190810160405280929190818152602001828054611a62906145af565b8015611aad5780601f10611a8457610100808354040283529160200191611aad565b820191905f5260205f20905b815481529060010190602001808311611a9057829003601f168201915b50505050509050919050565b60605f6001611ac784612353565b0190505f8167ffffffffffffffff811115611ae557611ae4613509565b5b6040519080825280601f01601f191660200182016040528015611b175781602001600182028036833780820191505090505b5090505f82602001820190505b600115611b78578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b6d57611b6c614dc5565b5b0494505f8503611b24575b819350505050919050565b611b8b611c0a565b73ffffffffffffffffffffffffffffffffffffffff16611ba9611486565b73ffffffffffffffffffffffffffffffffffffffff1614611c0857611bcc611c0a565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611bff9190613ee3565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c81575f6040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401611c789190613ee3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611cf1575f6040517f01a83514000000000000000000000000000000000000000000000000000000008152600401611ce89190613ee3565b60405180910390fd5b611cfe85858585856124a4565b5050505050565b5f60208202602084010151905092915050565b5f60208202602084010151905092915050565b8060029081611d3a9190614838565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401611d7a929190614907565b602060405180830381865afa158015611d95573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611db99190614df2565b9050611dd184848484611dcc9190614a9d565b612550565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e47575f6040517f01a83514000000000000000000000000000000000000000000000000000000008152600401611e3e9190613ee3565b60405180910390fd5b611e62835f848460405180602001604052805f8152506124a4565b505050565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f9a575f6040517fced3e100000000000000000000000000000000000000000000000000000000008152600401611f919190613ee3565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120869190613413565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612103575f6040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016120fa9190613ee3565b60405180910390fd5b5f8061210f858561265d565b915091506121205f878484876124a4565b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612198575f6040517f01a8351400000000000000000000000000000000000000000000000000000000815260040161218f9190613ee3565b60405180910390fd5b5f806121a4848461265d565b915091506121c3855f848460405180602001604052805f8152506124a4565b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361223a575f6040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016122319190613ee3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036122aa575f6040517f01a835140000000000000000000000000000000000000000000000000000000081526004016122a19190613ee3565b60405180910390fd5b5f806122b6858561265d565b915091506122c787878484876124a4565b50505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612340575f6040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016123379190613ee3565b60405180910390fd5b61234d5f858585856124a4565b50505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106123af577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816123a5576123a4614dc5565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123ec576d04ee2d6d415b85acef810000000083816123e2576123e1614dc5565b5b0492506020810190505b662386f26fc10000831061241b57662386f26fc10000838161241157612410614dc5565b5b0492506010810190505b6305f5e1008310612444576305f5e100838161243a57612439614dc5565b5b0492506008810190505b612710831061246957612710838161245f5761245e614dc5565b5b0492506004810190505b6064831061248c576064838161248257612481614dc5565b5b0492506002810190505b600a831061249b576001810190505b80915050919050565b6124b08585858561268d565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612549575f6124ec611c0a565b90506001845103612538575f61250b5f86611d1890919063ffffffff16565b90505f6125215f86611d1890919063ffffffff16565b905061253183898985858961269f565b5050612547565b61254681878787878761284e565b5b505b5050505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663095ea7b38484604051602401612580929190613296565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505090506125ce84826129fd565b6126575761264c848573ffffffffffffffffffffffffffffffffffffffff1663095ea7b3865f604051602401612605929190614e56565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612abc565b6126568482612abc565b5b50505050565b60608060405191506001825283602083015260408201905060018152826020820152604081016040529250929050565b61269984848484612b51565b50505050565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1115612846578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016126ff959493929190614ecf565b6020604051808303815f875af192505050801561273a57506040513d601f19601f820116820180604052508101906127379190614f3b565b60015b6127bb573d805f8114612768576040519150601f19603f3d011682016040523d82523d5f602084013e61276d565b606091505b505f8151036127b357846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016127aa9190613ee3565b60405180910390fd5b805181602001fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461284457846040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161283b9190613ee3565b60405180910390fd5b505b505050505050565b5f8473ffffffffffffffffffffffffffffffffffffffff163b11156129f5578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016128ae959493929190614f66565b6020604051808303815f875af19250505080156128e957506040513d601f19601f820116820180604052508101906128e69190614f3b565b60015b61296a573d805f8114612917576040519150601f19603f3d011682016040523d82523d5f602084013e61291c565b606091505b505f81510361296257846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016129599190613ee3565b60405180910390fd5b805181602001fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129f357846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016129ea9190613ee3565b60405180910390fd5b505b505050505050565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1684604051612a259190615006565b5f604051808303815f865af19150503d805f8114612a5e576040519150601f19603f3d011682016040523d82523d5f602084013e612a63565b606091505b5091509150818015612a9057505f81511480612a8f575080806020019051810190612a8e9190614d9a565b5b5b8015612ab257505f8573ffffffffffffffffffffffffffffffffffffffff163b115b9250505092915050565b5f612ae6828473ffffffffffffffffffffffffffffffffffffffff16612cfa90919063ffffffff16565b90505f815114158015612b0a575080806020019051810190612b089190614d9a565b155b15612b4c57826040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401612b439190613ee3565b60405180910390fd5b505050565b612b5d84848484612d0f565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612c36575f805b8351811015612c1b575f838281518110612bb057612baf6149d5565b5b602002602001015190508060045f878581518110612bd157612bd06149d5565b5b602002602001015181526020019081526020015f205f828254612bf49190614a9d565b925050819055508083612c079190614a9d565b92505080612c1490614a2f565b9050612b93565b508060055f828254612c2d9190614a9d565b92505081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cf4575f805b8351811015612ce2575f838281518110612c8957612c886149d5565b5b602002602001015190508060045f878581518110612caa57612ca96149d5565b5b602002602001015181526020019081526020015f205f828254039250508190555080830192505080612cdb90614a2f565b9050612c6c565b508060055f8282540392505081905550505b50505050565b6060612d0783835f6130a5565b905092915050565b8051825114612d5957815181516040517f5b059991000000000000000000000000000000000000000000000000000000008152600401612d50929190614a76565b60405180910390fd5b5f612d62611c0a565b90505f5b8351811015612f64575f612d838286611d1890919063ffffffff16565b90505f612d998386611d1890919063ffffffff16565b90505f73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614612ebc575f805f8481526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612e6857888183856040517f03dee4c5000000000000000000000000000000000000000000000000000000008152600401612e5f949392919061501c565b60405180910390fd5b8181035f808581526020019081526020015f205f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614612f5157805f808481526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612f499190614a9d565b925050819055505b505080612f5d90614a2f565b9050612d66565b50600183510361301f575f612f825f85611d1890919063ffffffff16565b90505f612f985f85611d1890919063ffffffff16565b90508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051613010929190614a76565b60405180910390a4505061309e565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161309592919061505f565b60405180910390a45b5050505050565b6060814710156130ec57306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016130e39190613ee3565b60405180910390fd5b5f808573ffffffffffffffffffffffffffffffffffffffff1684866040516131149190615006565b5f6040518083038185875af1925050503d805f811461314e576040519150601f19603f3d011682016040523d82523d5f602084013e613153565b606091505b509150915061316386838361316e565b925050509392505050565b6060826131835761317e826131fb565b6131f3565b5f82511480156131a957505f8473ffffffffffffffffffffffffffffffffffffffff163b145b156131eb57836040517f9996b3150000000000000000000000000000000000000000000000000000000081526004016131e29190613ee3565b60405180910390fd5b8190506131f4565b5b9392505050565b5f8151111561320d5780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6132688261323f565b9050919050565b6132788161325e565b82525050565b5f819050919050565b6132908161327e565b82525050565b5f6040820190506132a95f83018561326f565b6132b66020830184613287565b9392505050565b5f604051905090565b5f80fd5b5f80fd5b6132d78161325e565b81146132e1575f80fd5b50565b5f813590506132f2816132ce565b92915050565b6133018161327e565b811461330b575f80fd5b50565b5f8135905061331c816132f8565b92915050565b5f8060408385031215613338576133376132c6565b5b5f613345858286016132e4565b92505060206133568582860161330e565b9150509250929050565b5f6020820190506133735f830184613287565b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133ad81613379565b81146133b7575f80fd5b50565b5f813590506133c8816133a4565b92915050565b5f602082840312156133e3576133e26132c6565b5b5f6133f0848285016133ba565b91505092915050565b5f8115159050919050565b61340d816133f9565b82525050565b5f6020820190506134265f830184613404565b92915050565b5f60208284031215613441576134406132c6565b5b5f61344e8482850161330e565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561348e578082015181840152602081019050613473565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6134b382613457565b6134bd8185613461565b93506134cd818560208601613471565b6134d681613499565b840191505092915050565b5f6020820190508181035f8301526134f981846134a9565b905092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61353f82613499565b810181811067ffffffffffffffff8211171561355e5761355d613509565b5b80604052505050565b5f6135706132bd565b905061357c8282613536565b919050565b5f67ffffffffffffffff82111561359b5761359a613509565b5b6135a482613499565b9050602081019050919050565b828183375f83830152505050565b5f6135d16135cc84613581565b613567565b9050828152602081018484840111156135ed576135ec613505565b5b6135f88482856135b1565b509392505050565b5f82601f83011261361457613613613501565b5b81356136248482602086016135bf565b91505092915050565b5f8060408385031215613643576136426132c6565b5b5f6136508582860161330e565b925050602083013567ffffffffffffffff811115613671576136706132ca565b5b61367d85828601613600565b9150509250929050565b5f819050919050565b5f6136aa6136a56136a08461323f565b613687565b61323f565b9050919050565b5f6136bb82613690565b9050919050565b5f6136cc826136b1565b9050919050565b6136dc816136c2565b82525050565b5f6020820190506136f55f8301846136d3565b92915050565b5f8060408385031215613711576137106132c6565b5b5f61371e858286016132e4565b925050602061372f858286016132e4565b9150509250929050565b5f67ffffffffffffffff82111561375357613752613509565b5b602082029050602081019050919050565b5f80fd5b5f61377a61377584613739565b613567565b9050808382526020820190506020840283018581111561379d5761379c613764565b5b835b818110156137c657806137b2888261330e565b84526020840193505060208101905061379f565b5050509392505050565b5f82601f8301126137e4576137e3613501565b5b81356137f4848260208601613768565b91505092915050565b5f67ffffffffffffffff82111561381757613816613509565b5b61382082613499565b9050602081019050919050565b5f61383f61383a846137fd565b613567565b90508281526020810184848401111561385b5761385a613505565b5b6138668482856135b1565b509392505050565b5f82601f83011261388257613881613501565b5b813561389284826020860161382d565b91505092915050565b5f805f805f60a086880312156138b4576138b36132c6565b5b5f6138c1888289016132e4565b95505060206138d2888289016132e4565b945050604086013567ffffffffffffffff8111156138f3576138f26132ca565b5b6138ff888289016137d0565b935050606086013567ffffffffffffffff8111156139205761391f6132ca565b5b61392c888289016137d0565b925050608086013567ffffffffffffffff81111561394d5761394c6132ca565b5b6139598882890161386e565b9150509295509295909350565b5f67ffffffffffffffff8211156139805761397f613509565b5b602082029050602081019050919050565b5f6139a361399e84613966565b613567565b905080838252602082019050602084028301858111156139c6576139c5613764565b5b835b81811015613a0d57803567ffffffffffffffff8111156139eb576139ea613501565b5b8086016139f88982613600565b855260208501945050506020810190506139c8565b5050509392505050565b5f82601f830112613a2b57613a2a613501565b5b8135613a3b848260208601613991565b91505092915050565b5f8060408385031215613a5a57613a596132c6565b5b5f83013567ffffffffffffffff811115613a7757613a766132ca565b5b613a83858286016137d0565b925050602083013567ffffffffffffffff811115613aa457613aa36132ca565b5b613ab085828601613a17565b9150509250929050565b5f67ffffffffffffffff821115613ad457613ad3613509565b5b602082029050602081019050919050565b5f613af7613af284613aba565b613567565b90508083825260208201905060208402830185811115613b1a57613b19613764565b5b835b81811015613b435780613b2f88826132e4565b845260208401935050602081019050613b1c565b5050509392505050565b5f82601f830112613b6157613b60613501565b5b8135613b71848260208601613ae5565b91505092915050565b5f8060408385031215613b9057613b8f6132c6565b5b5f83013567ffffffffffffffff811115613bad57613bac6132ca565b5b613bb985828601613b4d565b925050602083013567ffffffffffffffff811115613bda57613bd96132ca565b5b613be6858286016137d0565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613c228161327e565b82525050565b5f613c338383613c19565b60208301905092915050565b5f602082019050919050565b5f613c5582613bf0565b613c5f8185613bfa565b9350613c6a83613c0a565b805f5b83811015613c9a578151613c818882613c28565b9750613c8c83613c3f565b925050600181019050613c6d565b5085935050505092915050565b5f6020820190508181035f830152613cbf8184613c4b565b905092915050565b5f60208284031215613cdc57613cdb6132c6565b5b5f82013567ffffffffffffffff811115613cf957613cf86132ca565b5b613d0584828501613600565b91505092915050565b5f613d18826136b1565b9050919050565b613d2881613d0e565b82525050565b5f602082019050613d415f830184613d1f565b92915050565b5f805f805f805f60e0888a031215613d6257613d616132c6565b5b5f613d6f8a828b016132e4565b9750506020613d808a828b016132e4565b9650506040613d918a828b0161330e565b9550506060613da28a828b0161330e565b9450506080613db38a828b0161330e565b93505060a0613dc48a828b0161330e565b92505060c0613dd58a828b0161330e565b91505092959891949750929550565b5f805f60608486031215613dfb57613dfa6132c6565b5b5f613e08868287016132e4565b935050602084013567ffffffffffffffff811115613e2957613e286132ca565b5b613e35868287016137d0565b925050604084013567ffffffffffffffff811115613e5657613e556132ca565b5b613e62868287016137d0565b9150509250925092565b5f805f805f60a08688031215613e8557613e846132c6565b5b5f613e92888289016132e4565b9550506020613ea3888289016132e4565b9450506040613eb48882890161330e565b9350506060613ec58882890161330e565b9250506080613ed68882890161330e565b9150509295509295909350565b5f602082019050613ef65f83018461326f565b92915050565b613f05816133f9565b8114613f0f575f80fd5b50565b5f81359050613f2081613efc565b92915050565b5f8060408385031215613f3c57613f3b6132c6565b5b5f613f49858286016132e4565b9250506020613f5a85828601613f12565b9150509250929050565b5f805f805f60a08688031215613f7d57613f7c6132c6565b5b5f613f8a888289016132e4565b9550506020613f9b8882890161330e565b9450506040613fac8882890161330e565b935050606086013567ffffffffffffffff811115613fcd57613fcc6132ca565b5b613fd988828901613600565b925050608086013567ffffffffffffffff811115613ffa57613ff96132ca565b5b6140068882890161386e565b9150509295509295909350565b5f805f806080858703121561402b5761402a6132c6565b5b5f614038878288016132e4565b94505060206140498782880161330e565b935050604061405a8782880161330e565b925050606085013567ffffffffffffffff81111561407b5761407a6132ca565b5b6140878782880161386e565b91505092959194509250565b5f61409d8261325e565b9050919050565b6140ad81614093565b81146140b7575f80fd5b50565b5f813590506140c8816140a4565b92915050565b5f80604083850312156140e4576140e36132c6565b5b5f6140f1858286016140ba565b92505060206141028582860161330e565b9150509250929050565b5f8060408385031215614122576141216132c6565b5b5f61412f8582860161330e565b92505060206141408582860161330e565b9150509250929050565b5f80fd5b5f8083601f84011261416357614162613501565b5b8235905067ffffffffffffffff8111156141805761417f61414a565b5b60208301915083602082028301111561419c5761419b613764565b5b9250929050565b5f8083601f8401126141b8576141b7613501565b5b8235905067ffffffffffffffff8111156141d5576141d461414a565b5b6020830191508360018202830111156141f1576141f0613764565b5b9250929050565b5f805f805f805f8060a0898b031215614214576142136132c6565b5b5f6142218b828c016132e4565b98505060206142328b828c016132e4565b975050604089013567ffffffffffffffff811115614253576142526132ca565b5b61425f8b828c0161414e565b9650965050606089013567ffffffffffffffff811115614282576142816132ca565b5b61428e8b828c0161414e565b9450945050608089013567ffffffffffffffff8111156142b1576142b06132ca565b5b6142bd8b828c016141a3565b92509250509295985092959890939650565b6142d881613379565b82525050565b5f6020820190506142f15f8301846142cf565b92915050565b5f805f805f60a086880312156143105761430f6132c6565b5b5f61431d888289016132e4565b955050602086013567ffffffffffffffff81111561433e5761433d6132ca565b5b61434a888289016137d0565b945050604086013567ffffffffffffffff81111561436b5761436a6132ca565b5b614377888289016137d0565b935050606086013567ffffffffffffffff811115614398576143976132ca565b5b6143a488828901613a17565b925050608086013567ffffffffffffffff8111156143c5576143c46132ca565b5b6143d18882890161386e565b9150509295509295909350565b5f805f805f8060a087890312156143f8576143f76132c6565b5b5f61440589828a016132e4565b965050602061441689828a016132e4565b955050604061442789828a0161330e565b945050606061443889828a0161330e565b935050608087013567ffffffffffffffff811115614459576144586132ca565b5b61446589828a016141a3565b92509250509295509295509295565b5f805f805f60a0868803121561448d5761448c6132c6565b5b5f61449a888289016132e4565b95505060206144ab888289016132e4565b94505060406144bc8882890161330e565b93505060606144cd8882890161330e565b925050608086013567ffffffffffffffff8111156144ee576144ed6132ca565b5b6144fa8882890161386e565b9150509295509295909350565b5f6020828403121561451c5761451b6132c6565b5b5f614529848285016132e4565b91505092915050565b5f805f60608486031215614549576145486132c6565b5b5f614556868287016132e4565b93505060206145678682870161330e565b92505060406145788682870161330e565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806145c657607f821691505b6020821081036145d9576145d8614582565b5b50919050565b5f81905092915050565b5f6145f382613457565b6145fd81856145df565b935061460d818560208601613471565b80840191505092915050565b5f61462482856145e9565b915061463082846145e9565b91508190509392505050565b7f5552492073686f756c64206e6f7420626520656d7074790000000000000000005f82015250565b5f614670601783613461565b915061467b8261463c565b602082019050919050565b5f6020820190508181035f83015261469d81614664565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026147007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146c5565b61470a86836146c5565b95508019841693508086168417925050509392505050565b5f61473c6147376147328461327e565b613687565b61327e565b9050919050565b5f819050919050565b61475583614722565b61476961476182614743565b8484546146d1565b825550505050565b5f90565b61477d614771565b61478881848461474c565b505050565b5b818110156147ab576147a05f82614775565b60018101905061478e565b5050565b601f8211156147f0576147c1816146a4565b6147ca846146b6565b810160208510156147d9578190505b6147ed6147e5856146b6565b83018261478d565b50505b505050565b5f82821c905092915050565b5f6148105f19846008026147f5565b1980831691505092915050565b5f6148288383614801565b9150826002028217905092915050565b61484182613457565b67ffffffffffffffff81111561485a57614859613509565b5b61486482546145af565b61486f8282856147af565b5f60209050601f8311600181146148a0575f841561488e578287015190505b614898858261481d565b8655506148ff565b601f1984166148ae866146a4565b5f5b828110156148d5578489015182556001820191506020850194506020810190506148b0565b868310156148f257848901516148ee601f891682614801565b8355505b6001600288020188555050505b505050505050565b5f60408201905061491a5f83018561326f565b614927602083018461326f565b9392505050565b5f8151905061493c816132ce565b92915050565b5f60208284031215614957576149566132c6565b5b5f6149648482850161492e565b91505092915050565b7f417272617973206d7573742068617665207468652073616d65206c656e6774685f82015250565b5f6149a1602083613461565b91506149ac8261496d565b602082019050919050565b5f6020820190508181035f8301526149ce81614995565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614a398261327e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614a6b57614a6a614a02565b5b600182019050919050565b5f604082019050614a895f830185613287565b614a966020830184613287565b9392505050565b5f614aa78261327e565b9150614ab28361327e565b9250828201905080821115614aca57614ac9614a02565b5b92915050565b5f61010082019050614ae45f83018b61326f565b614af1602083018a61326f565b614afe6040830189613287565b614b0b6060830188613287565b614b186080830187613287565b614b2560a0830186613287565b614b3260c083018561326f565b614b3f60e0830184613287565b9998505050505050505050565b5f81519050614b5a816132f8565b92915050565b5f805f60608486031215614b7757614b766132c6565b5b5f614b8486828701614b4c565b9350506020614b9586828701614b4c565b9250506040614ba686828701614b4c565b9150509250925092565b7f4e6f20706f6f6c2065786973747320666f72207468697320746f6b656e2070615f8201527f6972000000000000000000000000000000000000000000000000000000000000602082015250565b5f614c0a602283613461565b9150614c1582614bb0565b604082019050919050565b5f6020820190508181035f830152614c3781614bfe565b9050919050565b7f556e69737761702070616972206d69736d6174636800000000000000000000005f82015250565b5f614c72601583613461565b9150614c7d82614c3e565b602082019050919050565b5f6020820190508181035f830152614c9f81614c66565b9050919050565b5f60e082019050614cb95f83018a61326f565b614cc6602083018961326f565b614cd36040830188613287565b614ce06060830187613287565b614ced6080830186613287565b614cfa60a083018561326f565b614d0760c0830184613287565b98975050505050505050565b5f8060408385031215614d2957614d286132c6565b5b5f614d3685828601614b4c565b9250506020614d4785828601614b4c565b9150509250929050565b5f606082019050614d645f83018661326f565b614d71602083018561326f565b614d7e6040830184613287565b949350505050565b5f81519050614d9481613efc565b92915050565b5f60208284031215614daf57614dae6132c6565b5b5f614dbc84828501614d86565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f60208284031215614e0757614e066132c6565b5b5f614e1484828501614b4c565b91505092915050565b5f819050919050565b5f614e40614e3b614e3684614e1d565b613687565b61327e565b9050919050565b614e5081614e26565b82525050565b5f604082019050614e695f83018561326f565b614e766020830184614e47565b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f614ea182614e7d565b614eab8185614e87565b9350614ebb818560208601613471565b614ec481613499565b840191505092915050565b5f60a082019050614ee25f83018861326f565b614eef602083018761326f565b614efc6040830186613287565b614f096060830185613287565b8181036080830152614f1b8184614e97565b90509695505050505050565b5f81519050614f35816133a4565b92915050565b5f60208284031215614f5057614f4f6132c6565b5b5f614f5d84828501614f27565b91505092915050565b5f60a082019050614f795f83018861326f565b614f86602083018761326f565b8181036040830152614f988186613c4b565b90508181036060830152614fac8185613c4b565b90508181036080830152614fc08184614e97565b90509695505050505050565b5f81905092915050565b5f614fe082614e7d565b614fea8185614fcc565b9350614ffa818560208601613471565b80840191505092915050565b5f6150118284614fd6565b915081905092915050565b5f60808201905061502f5f83018761326f565b61503c6020830186613287565b6150496040830185613287565b6150566060830184613287565b95945050505050565b5f6040820190508181035f8301526150778185613c4b565b9050818103602083015261508b8184613c4b565b9050939250505056fea2646970667358221220f0f3b01d0b070745f5949af01df0aa1d08a1bacad60ab6def1fd05e1234f16cb64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _factory (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.