Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 621 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 22298900 | 311 days ago | IN | 0 ETH | 0.00002226 | ||||
| Approve | 20557142 | 554 days ago | IN | 0 ETH | 0.00004501 | ||||
| Approve | 20057370 | 624 days ago | IN | 0 ETH | 0.00013625 | ||||
| Approve | 19830095 | 656 days ago | IN | 0 ETH | 0.00018793 | ||||
| Approve | 19372204 | 720 days ago | IN | 0 ETH | 0.0039807 | ||||
| Approve | 19372064 | 720 days ago | IN | 0 ETH | 0.00335501 | ||||
| Approve | 19351244 | 723 days ago | IN | 0 ETH | 0.00203537 | ||||
| Approve | 19159355 | 750 days ago | IN | 0 ETH | 0.00056316 | ||||
| Approve | 18908906 | 785 days ago | IN | 0 ETH | 0.00031459 | ||||
| Approve | 18675919 | 817 days ago | IN | 0 ETH | 0.00073826 | ||||
| Approve | 18589698 | 829 days ago | IN | 0 ETH | 0.00177333 | ||||
| Approve | 18497514 | 842 days ago | IN | 0 ETH | 0.00158301 | ||||
| Approve | 18401837 | 856 days ago | IN | 0 ETH | 0.00020435 | ||||
| Approve | 18401816 | 856 days ago | IN | 0 ETH | 0.00030496 | ||||
| Approve | 18367591 | 861 days ago | IN | 0 ETH | 0.00033583 | ||||
| Approve | 18344623 | 864 days ago | IN | 0 ETH | 0.00013819 | ||||
| Approve | 18338079 | 865 days ago | IN | 0 ETH | 0.00029795 | ||||
| Approve | 18261322 | 875 days ago | IN | 0 ETH | 0.0002031 | ||||
| Approve | 18216560 | 882 days ago | IN | 0 ETH | 0.00039767 | ||||
| Approve | 18208864 | 883 days ago | IN | 0 ETH | 0.00021822 | ||||
| Approve | 18208850 | 883 days ago | IN | 0 ETH | 0.00033364 | ||||
| Approve | 18208839 | 883 days ago | IN | 0 ETH | 0.00022668 | ||||
| Approve | 18184222 | 886 days ago | IN | 0 ETH | 0.00044338 | ||||
| Approve | 18173602 | 888 days ago | IN | 0 ETH | 0.00019998 | ||||
| Approve | 18128893 | 894 days ago | IN | 0 ETH | 0.00100717 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
WBTC2
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// File: ISwapFactory.sol
pragma solidity ^0.8.4;
interface ISwapFactory {
function createPair(
address tokenA,
address tokenB
) external returns (address pair);
function getPair(
address tokenA,
address tokenB
) external returns (address pair);
}
// File: ISwapRouter.sol
pragma solidity ^0.8.4;
interface ISwapRouter {
function factoryV2() external pure returns (address);
function factory() external pure returns (address);
function WETH() external pure returns (address);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to
) external;
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
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 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);
}
// File: @openzeppelin/contracts/utils/math/SignedMath.sol
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @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);
}
}
}
// File: @openzeppelin/contracts/utils/math/Math.sol
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// 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.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(
uint256 a,
Rounding rounding
) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return
result +
(rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(
uint256 value,
Rounding rounding
) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return
result +
(rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(
uint256 value,
Rounding rounding
) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return
result +
(rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 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 +
(rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @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), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return
string(
abi.encodePacked(
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) {
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] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
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 keccak256(bytes(a)) == keccak256(bytes(b));
}
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
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.
*
* _Available since v3.4._
*/
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.
*
* _Available since v3.4._
*/
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.
*
* _Available since v3.4._
*/
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.
*
* _Available since v3.4._
*/
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 addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with 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;
}
}
pragma solidity ^0.8.0;
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. 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 {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @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 amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) 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 `amount` 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 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` 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 amount
) external returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(
address account
) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(
address to,
uint256 amount
) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(
address owner,
address spender
) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(
address spender,
uint256 amount
) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(
address spender,
uint256 addedValue
) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(
address spender,
uint256 subtractedValue
) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(
currentAllowance >= subtractedValue,
"ERC20: decreased allowance below zero"
);
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(
fromBalance >= amount,
"ERC20: transfer amount exceeds balance"
);
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(
currentAllowance >= amount,
"ERC20: insufficient allowance"
);
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
pragma solidity ^0.8.4;
contract WBTC2 is ERC20, Ownable {
using SafeMath for uint256;
ISwapRouter private uniswapV2Router;
address public uniswapV2Pair;
address public usdt;
address public _devWallet;
mapping(address => bool) private whiteList;
bool private inSwap;
uint256 private initEnd = 7;
uint256 public minSwap;
uint256 private initRate = 20;
uint256 public _taxRate = 1;
uint256 private init = 0;
bool public tradingOpen = false;
constructor() ERC20("Wrapped BTC 2.0", "WBTC2.0") {
_devWallet = msg.sender;
uint256 total = 21000000000000000000000000;
minSwap = ((total * 1) / 10000000);
_mint(msg.sender, total);
whiteList[msg.sender] = true;
initPair();
}
function initPair() internal {
address swap = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
uniswapV2Router = ISwapRouter(swap);
usdt = uniswapV2Router.WETH();
uniswapV2Pair = ISwapFactory(uniswapV2Router.factory()).createPair(
address(this),
usdt
);
ERC20(usdt).approve(address(uniswapV2Router), type(uint256).max);
_approve(address(this), address(uniswapV2Router), type(uint256).max);
_approve(address(this), address(this), type(uint256).max);
_approve(msg.sender, address(uniswapV2Router), type(uint256).max);
}
function decimals() public view virtual override returns (uint8) {
return 18;
}
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(amount > 0, "A0");
require(tradingOpen || whiteList[from], "TC");
if ((from != uniswapV2Pair && to != uniswapV2Pair) || _taxRate == 0) {
_funTransfer(from, to, amount);
return;
}
uint256 taxRate = _taxRate;
if (init >= block.number) {
taxRate = initRate;
}
if (from == uniswapV2Pair) {
super._transfer(from, address(this), amount.mul(taxRate).div(100));
super._transfer(from, to, amount.mul((100 - taxRate)).div(100));
return;
}
if (to == uniswapV2Pair) {
if (whiteList[from]) {
super._transfer(from, to, amount);
return;
}
super._transfer(from, address(this), amount.mul(taxRate).div(100));
uint256 balance = balanceOf(address(this));
if (balance > minSwap) {
if (!inSwap) {
swapUsdt(balance, _devWallet);
}
}
super._transfer(from, to, amount.mul((100 - taxRate)).div(100));
return;
}
}
function _funTransfer(
address sender,
address recipient,
uint256 tAmount
) private {
super._transfer(sender, recipient, tAmount);
}
modifier lockTheSwap() {
inSwap = true;
_;
inSwap = false;
}
function swapUsdt(uint256 _balance, address to) private lockTheSwap {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = usdt;
uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
_balance,
0,
path,
to,
block.timestamp
);
}
function setTaxRate(uint256 _newTaxRate) public onlyOwner {
require(_newTaxRate <= 25);
_taxRate = _newTaxRate;
}
function setDevWallet(address _newW) public onlyOwner {
_devWallet = _newW;
}
function addWhitelist(address _w, bool _set) public onlyOwner {
whiteList[_w] = _set;
}
function setMinSwap(uint256 _minswapThresh) public onlyOwner {
minSwap = _minswapThresh;
}
function openTrading() external onlyOwner {
tradingOpen = true;
init = block.number + initEnd;
}
function errorToken(address _token) external onlyOwner {
ERC20(_token).transfer(
msg.sender,
IERC20(_token).balanceOf(address(this))
);
}
function withdawOwner(uint256 amount) public onlyOwner {
payable(msg.sender).transfer(amount);
}
receive() external payable {}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_w","type":"address"},{"internalType":"bool","name":"_set","type":"bool"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"errorToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newW","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minswapThresh","type":"uint256"}],"name":"setMinSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTaxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040526007600c556014600e556001600f5560006010556000601160006101000a81548160ff0219169083151502179055503480156200004057600080fd5b506040518060400160405280600f81526020017f577261707065642042544320322e3000000000000000000000000000000000008152506040518060400160405280600781526020017f57425443322e30000000000000000000000000000000000000000000000000008152508160039081620000be919062000ce8565b508060049081620000d0919062000ce8565b505050620000f3620000e7620001ea60201b60201c565b620001f260201b60201c565b33600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006a115eec47f6cf7e3500000090506298968060018262000157919062000dfe565b62000163919062000e78565b600d819055506200017b3382620002b860201b60201c565b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001e36200042560201b60201c565b5062001242565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200032a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003219062000f11565b60405180910390fd5b6200033e600083836200089360201b60201c565b806002600082825462000352919062000f33565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000405919062000f7f565b60405180910390a362000421600083836200089860201b60201c565b5050565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000513919062001006565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620005c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005e7919062001006565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200064592919062001049565b6020604051808303816000875af115801562000665573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200068b919062001006565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200076c92919062001076565b6020604051808303816000875af11580156200078c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007b29190620010e0565b506200080830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200089d60201b60201c565b6200083b30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200089d60201b60201c565b6200089033600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200089d60201b60201c565b50565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200090f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009069062001188565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009789062001220565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000a61919062000f7f565b60405180910390a3505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000af057607f821691505b60208210810362000b065762000b0562000aa8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b31565b62000b7c868362000b31565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bc962000bc362000bbd8462000b94565b62000b9e565b62000b94565b9050919050565b6000819050919050565b62000be58362000ba8565b62000bfd62000bf48262000bd0565b84845462000b3e565b825550505050565b600090565b62000c1462000c05565b62000c2181848462000bda565b505050565b5b8181101562000c495762000c3d60008262000c0a565b60018101905062000c27565b5050565b601f82111562000c985762000c628162000b0c565b62000c6d8462000b21565b8101602085101562000c7d578190505b62000c9562000c8c8562000b21565b83018262000c26565b50505b505050565b600082821c905092915050565b600062000cbd6000198460080262000c9d565b1980831691505092915050565b600062000cd8838362000caa565b9150826002028217905092915050565b62000cf38262000a6e565b67ffffffffffffffff81111562000d0f5762000d0e62000a79565b5b62000d1b825462000ad7565b62000d2882828562000c4d565b600060209050601f83116001811462000d60576000841562000d4b578287015190505b62000d57858262000cca565b86555062000dc7565b601f19841662000d708662000b0c565b60005b8281101562000d9a5784890151825560018201915060208501945060208101905062000d73565b8683101562000dba578489015162000db6601f89168262000caa565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e0b8262000b94565b915062000e188362000b94565b925082820262000e288162000b94565b9150828204841483151762000e425762000e4162000dcf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e858262000b94565b915062000e928362000b94565b92508262000ea55762000ea462000e49565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ef9601f8362000eb0565b915062000f068262000ec1565b602082019050919050565b6000602082019050818103600083015262000f2c8162000eea565b9050919050565b600062000f408262000b94565b915062000f4d8362000b94565b925082820190508082111562000f685762000f6762000dcf565b5b92915050565b62000f798162000b94565b82525050565b600060208201905062000f96600083018462000f6e565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fce8262000fa1565b9050919050565b62000fe08162000fc1565b811462000fec57600080fd5b50565b600081519050620010008162000fd5565b92915050565b6000602082840312156200101f576200101e62000f9c565b5b60006200102f8482850162000fef565b91505092915050565b620010438162000fc1565b82525050565b600060408201905062001060600083018562001038565b6200106f602083018462001038565b9392505050565b60006040820190506200108d600083018562001038565b6200109c602083018462000f6e565b9392505050565b60008115159050919050565b620010ba81620010a3565b8114620010c657600080fd5b50565b600081519050620010da81620010af565b92915050565b600060208284031215620010f957620010f862000f9c565b5b60006200110984828501620010c9565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200117060248362000eb0565b91506200117d8262001112565b604082019050919050565b60006020820190508181036000830152620011a38162001161565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006200120860228362000eb0565b91506200121582620011aa565b604082019050919050565b600060208201905081810360008301526200123b81620011f9565b9050919050565b61274980620012526000396000f3fe6080604052600436106101a05760003560e01c806359cd9031116100ec578063a9e282b81161008a578063d992744811610064578063d9927448146105c3578063dd62ed3e146105ec578063f2fde38b14610629578063ffb54a9914610652576101a7565b8063a9e282b81461055a578063c6d69a3014610583578063c9567bf9146105ac576101a7565b80638da5cb5b116100c65780638da5cb5b1461048a57806395d89b41146104b5578063a457c2d7146104e0578063a9059cbb1461051d576101a7565b806359cd90311461040b57806370a0823114610436578063715018a614610473576101a7565b806323b872dd116101595780633714020e116101335780633714020e1461034f57806339509351146103785780634084e0b3146103b557806349bd5a5e146103e0576101a7565b806323b872dd146102bc5780632f48ab7d146102f9578063313ce56714610324576101a7565b806306fdde03146101ac578063095ea7b3146101d757806311a63e171461021457806318160ddd1461023f5780631c6a0c4c1461026a5780631f53ac0214610293576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c161067d565b6040516101ce9190611a4f565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190611b0a565b61070f565b60405161020b9190611b65565b60405180910390f35b34801561022057600080fd5b50610229610732565b6040516102369190611b8f565b60405180910390f35b34801561024b57600080fd5b50610254610758565b6040516102619190611bb9565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190611bd4565b610762565b005b34801561029f57600080fd5b506102ba60048036038101906102b59190611c01565b6107b4565b005b3480156102c857600080fd5b506102e360048036038101906102de9190611c2e565b610800565b6040516102f09190611b65565b60405180910390f35b34801561030557600080fd5b5061030e61082f565b60405161031b9190611b8f565b60405180910390f35b34801561033057600080fd5b50610339610855565b6040516103469190611c9d565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190611ce4565b61085e565b005b34801561038457600080fd5b5061039f600480360381019061039a9190611b0a565b6108c1565b6040516103ac9190611b65565b60405180910390f35b3480156103c157600080fd5b506103ca6108f8565b6040516103d79190611bb9565b60405180910390f35b3480156103ec57600080fd5b506103f56108fe565b6040516104029190611b8f565b60405180910390f35b34801561041757600080fd5b50610420610924565b60405161042d9190611bb9565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190611c01565b61092a565b60405161046a9190611bb9565b60405180910390f35b34801561047f57600080fd5b50610488610972565b005b34801561049657600080fd5b5061049f610986565b6040516104ac9190611b8f565b60405180910390f35b3480156104c157600080fd5b506104ca6109b0565b6040516104d79190611a4f565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190611b0a565b610a42565b6040516105149190611b65565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190611b0a565b610ab9565b6040516105519190611b65565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190611bd4565b610adc565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190611bd4565b610aee565b005b3480156105b857600080fd5b506105c1610b0e565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190611c01565b610b47565b005b3480156105f857600080fd5b50610613600480360381019061060e9190611d24565b610c4a565b6040516106209190611bb9565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190611c01565b610cd1565b005b34801561065e57600080fd5b50610667610d54565b6040516106749190611b65565b60405180910390f35b60606003805461068c90611d93565b80601f01602080910402602001604051908101604052809291908181526020018280546106b890611d93565b80156107055780601f106106da57610100808354040283529160200191610705565b820191906000526020600020905b8154815290600101906020018083116106e857829003601f168201915b5050505050905090565b60008061071a610d67565b9050610727818585610d6f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b61076a610f38565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156107b0573d6000803e3d6000fd5b5050565b6107bc610f38565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061080b610d67565b9050610818858285610fb6565b610823858585611042565b60019150509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b610866610f38565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806108cc610d67565b90506108ed8185856108de8589610c4a565b6108e89190611df3565b610d6f565b600191505092915050565b600f5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61097a610f38565b610984600061145e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109bf90611d93565b80601f01602080910402602001604051908101604052809291908181526020018280546109eb90611d93565b8015610a385780601f10610a0d57610100808354040283529160200191610a38565b820191906000526020600020905b815481529060010190602001808311610a1b57829003601f168201915b5050505050905090565b600080610a4d610d67565b90506000610a5b8286610c4a565b905083811015610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790611e99565b60405180910390fd5b610aad8286868403610d6f565b60019250505092915050565b600080610ac4610d67565b9050610ad1818585611042565b600191505092915050565b610ae4610f38565b80600d8190555050565b610af6610f38565b6019811115610b0457600080fd5b80600f8190555050565b610b16610f38565b6001601160006101000a81548160ff021916908315150217905550600c5443610b3f9190611df3565b601081905550565b610b4f610f38565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ba59190611b8f565b602060405180830381865afa158015610bc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be69190611ece565b6040518363ffffffff1660e01b8152600401610c03929190611efb565b6020604051808303816000875af1158015610c22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c469190611f39565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cd9610f38565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90611fd8565b60405180910390fd5b610d518161145e565b50565b601160009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd59061206a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e44906120fc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f2b9190611bb9565b60405180910390a3505050565b610f40610d67565b73ffffffffffffffffffffffffffffffffffffffff16610f5e610986565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90612168565b60405180910390fd5b565b6000610fc28484610c4a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461103c578181101561102e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611025906121d4565b60405180910390fd5b61103b8484848403610d6f565b5b50505050565b60008111611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90612240565b60405180910390fd5b601160009054906101000a900460ff16806110e95750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f906122ac565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156111d45750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b806111e157506000600f54145b156111f6576111f1838383611524565b611459565b6000600f549050436010541061120c57600e5490505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112d357611291843061128c606461127e868861153490919063ffffffff16565b61154a90919063ffffffff16565b611560565b6112cd84846112c860646112ba8660646112ab91906122cc565b8861153490919063ffffffff16565b61154a90919063ffffffff16565b611560565b50611459565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361145757600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561138b57611385848484611560565b50611459565b6113bb84306113b660646113a8868861153490919063ffffffff16565b61154a90919063ffffffff16565b611560565b60006113c63061092a565b9050600d5481111561141457600b60009054906101000a900460ff166114135761141281600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117d6565b5b5b611450858561144b606461143d87606461142e91906122cc565b8961153490919063ffffffff16565b61154a90919063ffffffff16565b611560565b5050611459565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61152f838383611560565b505050565b600081836115429190612300565b905092915050565b600081836115589190612371565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690612414565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361163e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611635906124a6565b60405180910390fd5b6116498383836119b5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690612538565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117bd9190611bb9565b60405180910390a36117d08484846119ba565b50505050565b6001600b60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561180e5761180d612558565b5b60405190808252806020026020018201604052801561183c5781602001602082028036833780820191505090505b509050308160008151811061185457611853612587565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106118c5576118c4612587565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958460008486426040518663ffffffff1660e01b81526004016119639594939291906126b9565b600060405180830381600087803b15801561197d57600080fd5b505af1158015611991573d6000803e3d6000fd5b50505050506000600b60006101000a81548160ff0219169083151502179055505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119f95780820151818401526020810190506119de565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a21826119bf565b611a2b81856119ca565b9350611a3b8185602086016119db565b611a4481611a05565b840191505092915050565b60006020820190508181036000830152611a698184611a16565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611aa182611a76565b9050919050565b611ab181611a96565b8114611abc57600080fd5b50565b600081359050611ace81611aa8565b92915050565b6000819050919050565b611ae781611ad4565b8114611af257600080fd5b50565b600081359050611b0481611ade565b92915050565b60008060408385031215611b2157611b20611a71565b5b6000611b2f85828601611abf565b9250506020611b4085828601611af5565b9150509250929050565b60008115159050919050565b611b5f81611b4a565b82525050565b6000602082019050611b7a6000830184611b56565b92915050565b611b8981611a96565b82525050565b6000602082019050611ba46000830184611b80565b92915050565b611bb381611ad4565b82525050565b6000602082019050611bce6000830184611baa565b92915050565b600060208284031215611bea57611be9611a71565b5b6000611bf884828501611af5565b91505092915050565b600060208284031215611c1757611c16611a71565b5b6000611c2584828501611abf565b91505092915050565b600080600060608486031215611c4757611c46611a71565b5b6000611c5586828701611abf565b9350506020611c6686828701611abf565b9250506040611c7786828701611af5565b9150509250925092565b600060ff82169050919050565b611c9781611c81565b82525050565b6000602082019050611cb26000830184611c8e565b92915050565b611cc181611b4a565b8114611ccc57600080fd5b50565b600081359050611cde81611cb8565b92915050565b60008060408385031215611cfb57611cfa611a71565b5b6000611d0985828601611abf565b9250506020611d1a85828601611ccf565b9150509250929050565b60008060408385031215611d3b57611d3a611a71565b5b6000611d4985828601611abf565b9250506020611d5a85828601611abf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dab57607f821691505b602082108103611dbe57611dbd611d64565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611dfe82611ad4565b9150611e0983611ad4565b9250828201905080821115611e2157611e20611dc4565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e836025836119ca565b9150611e8e82611e27565b604082019050919050565b60006020820190508181036000830152611eb281611e76565b9050919050565b600081519050611ec881611ade565b92915050565b600060208284031215611ee457611ee3611a71565b5b6000611ef284828501611eb9565b91505092915050565b6000604082019050611f106000830185611b80565b611f1d6020830184611baa565b9392505050565b600081519050611f3381611cb8565b92915050565b600060208284031215611f4f57611f4e611a71565b5b6000611f5d84828501611f24565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611fc26026836119ca565b9150611fcd82611f66565b604082019050919050565b60006020820190508181036000830152611ff181611fb5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120546024836119ca565b915061205f82611ff8565b604082019050919050565b6000602082019050818103600083015261208381612047565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006120e66022836119ca565b91506120f18261208a565b604082019050919050565b60006020820190508181036000830152612115816120d9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006121526020836119ca565b915061215d8261211c565b602082019050919050565b6000602082019050818103600083015261218181612145565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006121be601d836119ca565b91506121c982612188565b602082019050919050565b600060208201905081810360008301526121ed816121b1565b9050919050565b7f4130000000000000000000000000000000000000000000000000000000000000600082015250565b600061222a6002836119ca565b9150612235826121f4565b602082019050919050565b600060208201905081810360008301526122598161221d565b9050919050565b7f5443000000000000000000000000000000000000000000000000000000000000600082015250565b60006122966002836119ca565b91506122a182612260565b602082019050919050565b600060208201905081810360008301526122c581612289565b9050919050565b60006122d782611ad4565b91506122e283611ad4565b92508282039050818111156122fa576122f9611dc4565b5b92915050565b600061230b82611ad4565b915061231683611ad4565b925082820261232481611ad4565b9150828204841483151761233b5761233a611dc4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061237c82611ad4565b915061238783611ad4565b92508261239757612396612342565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123fe6025836119ca565b9150612409826123a2565b604082019050919050565b6000602082019050818103600083015261242d816123f1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006124906023836119ca565b915061249b82612434565b604082019050919050565b600060208201905081810360008301526124bf81612483565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006125226026836119ca565b915061252d826124c6565b604082019050919050565b6000602082019050818103600083015261255181612515565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006125e56125e06125db846125b6565b6125c0565b611ad4565b9050919050565b6125f5816125ca565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61263081611a96565b82525050565b60006126428383612627565b60208301905092915050565b6000602082019050919050565b6000612666826125fb565b6126708185612606565b935061267b83612617565b8060005b838110156126ac5781516126938882612636565b975061269e8361264e565b92505060018101905061267f565b5085935050505092915050565b600060a0820190506126ce6000830188611baa565b6126db60208301876125ec565b81810360408301526126ed818661265b565b90506126fc6060830185611b80565b6127096080830184611baa565b969550505050505056fea26469706673582212208cbf844071bb7a1bd7f4b2d999cad4144cb69a259d3f0c9e0632273a68df872464736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101a05760003560e01c806359cd9031116100ec578063a9e282b81161008a578063d992744811610064578063d9927448146105c3578063dd62ed3e146105ec578063f2fde38b14610629578063ffb54a9914610652576101a7565b8063a9e282b81461055a578063c6d69a3014610583578063c9567bf9146105ac576101a7565b80638da5cb5b116100c65780638da5cb5b1461048a57806395d89b41146104b5578063a457c2d7146104e0578063a9059cbb1461051d576101a7565b806359cd90311461040b57806370a0823114610436578063715018a614610473576101a7565b806323b872dd116101595780633714020e116101335780633714020e1461034f57806339509351146103785780634084e0b3146103b557806349bd5a5e146103e0576101a7565b806323b872dd146102bc5780632f48ab7d146102f9578063313ce56714610324576101a7565b806306fdde03146101ac578063095ea7b3146101d757806311a63e171461021457806318160ddd1461023f5780631c6a0c4c1461026a5780631f53ac0214610293576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c161067d565b6040516101ce9190611a4f565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190611b0a565b61070f565b60405161020b9190611b65565b60405180910390f35b34801561022057600080fd5b50610229610732565b6040516102369190611b8f565b60405180910390f35b34801561024b57600080fd5b50610254610758565b6040516102619190611bb9565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190611bd4565b610762565b005b34801561029f57600080fd5b506102ba60048036038101906102b59190611c01565b6107b4565b005b3480156102c857600080fd5b506102e360048036038101906102de9190611c2e565b610800565b6040516102f09190611b65565b60405180910390f35b34801561030557600080fd5b5061030e61082f565b60405161031b9190611b8f565b60405180910390f35b34801561033057600080fd5b50610339610855565b6040516103469190611c9d565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190611ce4565b61085e565b005b34801561038457600080fd5b5061039f600480360381019061039a9190611b0a565b6108c1565b6040516103ac9190611b65565b60405180910390f35b3480156103c157600080fd5b506103ca6108f8565b6040516103d79190611bb9565b60405180910390f35b3480156103ec57600080fd5b506103f56108fe565b6040516104029190611b8f565b60405180910390f35b34801561041757600080fd5b50610420610924565b60405161042d9190611bb9565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190611c01565b61092a565b60405161046a9190611bb9565b60405180910390f35b34801561047f57600080fd5b50610488610972565b005b34801561049657600080fd5b5061049f610986565b6040516104ac9190611b8f565b60405180910390f35b3480156104c157600080fd5b506104ca6109b0565b6040516104d79190611a4f565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190611b0a565b610a42565b6040516105149190611b65565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190611b0a565b610ab9565b6040516105519190611b65565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190611bd4565b610adc565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190611bd4565b610aee565b005b3480156105b857600080fd5b506105c1610b0e565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190611c01565b610b47565b005b3480156105f857600080fd5b50610613600480360381019061060e9190611d24565b610c4a565b6040516106209190611bb9565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190611c01565b610cd1565b005b34801561065e57600080fd5b50610667610d54565b6040516106749190611b65565b60405180910390f35b60606003805461068c90611d93565b80601f01602080910402602001604051908101604052809291908181526020018280546106b890611d93565b80156107055780601f106106da57610100808354040283529160200191610705565b820191906000526020600020905b8154815290600101906020018083116106e857829003601f168201915b5050505050905090565b60008061071a610d67565b9050610727818585610d6f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b61076a610f38565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156107b0573d6000803e3d6000fd5b5050565b6107bc610f38565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061080b610d67565b9050610818858285610fb6565b610823858585611042565b60019150509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b610866610f38565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806108cc610d67565b90506108ed8185856108de8589610c4a565b6108e89190611df3565b610d6f565b600191505092915050565b600f5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61097a610f38565b610984600061145e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109bf90611d93565b80601f01602080910402602001604051908101604052809291908181526020018280546109eb90611d93565b8015610a385780601f10610a0d57610100808354040283529160200191610a38565b820191906000526020600020905b815481529060010190602001808311610a1b57829003601f168201915b5050505050905090565b600080610a4d610d67565b90506000610a5b8286610c4a565b905083811015610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790611e99565b60405180910390fd5b610aad8286868403610d6f565b60019250505092915050565b600080610ac4610d67565b9050610ad1818585611042565b600191505092915050565b610ae4610f38565b80600d8190555050565b610af6610f38565b6019811115610b0457600080fd5b80600f8190555050565b610b16610f38565b6001601160006101000a81548160ff021916908315150217905550600c5443610b3f9190611df3565b601081905550565b610b4f610f38565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ba59190611b8f565b602060405180830381865afa158015610bc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be69190611ece565b6040518363ffffffff1660e01b8152600401610c03929190611efb565b6020604051808303816000875af1158015610c22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c469190611f39565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cd9610f38565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90611fd8565b60405180910390fd5b610d518161145e565b50565b601160009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd59061206a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e44906120fc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f2b9190611bb9565b60405180910390a3505050565b610f40610d67565b73ffffffffffffffffffffffffffffffffffffffff16610f5e610986565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90612168565b60405180910390fd5b565b6000610fc28484610c4a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461103c578181101561102e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611025906121d4565b60405180910390fd5b61103b8484848403610d6f565b5b50505050565b60008111611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90612240565b60405180910390fd5b601160009054906101000a900460ff16806110e95750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f906122ac565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156111d45750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b806111e157506000600f54145b156111f6576111f1838383611524565b611459565b6000600f549050436010541061120c57600e5490505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112d357611291843061128c606461127e868861153490919063ffffffff16565b61154a90919063ffffffff16565b611560565b6112cd84846112c860646112ba8660646112ab91906122cc565b8861153490919063ffffffff16565b61154a90919063ffffffff16565b611560565b50611459565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361145757600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561138b57611385848484611560565b50611459565b6113bb84306113b660646113a8868861153490919063ffffffff16565b61154a90919063ffffffff16565b611560565b60006113c63061092a565b9050600d5481111561141457600b60009054906101000a900460ff166114135761141281600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117d6565b5b5b611450858561144b606461143d87606461142e91906122cc565b8961153490919063ffffffff16565b61154a90919063ffffffff16565b611560565b5050611459565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61152f838383611560565b505050565b600081836115429190612300565b905092915050565b600081836115589190612371565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690612414565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361163e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611635906124a6565b60405180910390fd5b6116498383836119b5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690612538565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117bd9190611bb9565b60405180910390a36117d08484846119ba565b50505050565b6001600b60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561180e5761180d612558565b5b60405190808252806020026020018201604052801561183c5781602001602082028036833780820191505090505b509050308160008151811061185457611853612587565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106118c5576118c4612587565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958460008486426040518663ffffffff1660e01b81526004016119639594939291906126b9565b600060405180830381600087803b15801561197d57600080fd5b505af1158015611991573d6000803e3d6000fd5b50505050506000600b60006101000a81548160ff0219169083151502179055505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119f95780820151818401526020810190506119de565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a21826119bf565b611a2b81856119ca565b9350611a3b8185602086016119db565b611a4481611a05565b840191505092915050565b60006020820190508181036000830152611a698184611a16565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611aa182611a76565b9050919050565b611ab181611a96565b8114611abc57600080fd5b50565b600081359050611ace81611aa8565b92915050565b6000819050919050565b611ae781611ad4565b8114611af257600080fd5b50565b600081359050611b0481611ade565b92915050565b60008060408385031215611b2157611b20611a71565b5b6000611b2f85828601611abf565b9250506020611b4085828601611af5565b9150509250929050565b60008115159050919050565b611b5f81611b4a565b82525050565b6000602082019050611b7a6000830184611b56565b92915050565b611b8981611a96565b82525050565b6000602082019050611ba46000830184611b80565b92915050565b611bb381611ad4565b82525050565b6000602082019050611bce6000830184611baa565b92915050565b600060208284031215611bea57611be9611a71565b5b6000611bf884828501611af5565b91505092915050565b600060208284031215611c1757611c16611a71565b5b6000611c2584828501611abf565b91505092915050565b600080600060608486031215611c4757611c46611a71565b5b6000611c5586828701611abf565b9350506020611c6686828701611abf565b9250506040611c7786828701611af5565b9150509250925092565b600060ff82169050919050565b611c9781611c81565b82525050565b6000602082019050611cb26000830184611c8e565b92915050565b611cc181611b4a565b8114611ccc57600080fd5b50565b600081359050611cde81611cb8565b92915050565b60008060408385031215611cfb57611cfa611a71565b5b6000611d0985828601611abf565b9250506020611d1a85828601611ccf565b9150509250929050565b60008060408385031215611d3b57611d3a611a71565b5b6000611d4985828601611abf565b9250506020611d5a85828601611abf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dab57607f821691505b602082108103611dbe57611dbd611d64565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611dfe82611ad4565b9150611e0983611ad4565b9250828201905080821115611e2157611e20611dc4565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e836025836119ca565b9150611e8e82611e27565b604082019050919050565b60006020820190508181036000830152611eb281611e76565b9050919050565b600081519050611ec881611ade565b92915050565b600060208284031215611ee457611ee3611a71565b5b6000611ef284828501611eb9565b91505092915050565b6000604082019050611f106000830185611b80565b611f1d6020830184611baa565b9392505050565b600081519050611f3381611cb8565b92915050565b600060208284031215611f4f57611f4e611a71565b5b6000611f5d84828501611f24565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611fc26026836119ca565b9150611fcd82611f66565b604082019050919050565b60006020820190508181036000830152611ff181611fb5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120546024836119ca565b915061205f82611ff8565b604082019050919050565b6000602082019050818103600083015261208381612047565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006120e66022836119ca565b91506120f18261208a565b604082019050919050565b60006020820190508181036000830152612115816120d9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006121526020836119ca565b915061215d8261211c565b602082019050919050565b6000602082019050818103600083015261218181612145565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006121be601d836119ca565b91506121c982612188565b602082019050919050565b600060208201905081810360008301526121ed816121b1565b9050919050565b7f4130000000000000000000000000000000000000000000000000000000000000600082015250565b600061222a6002836119ca565b9150612235826121f4565b602082019050919050565b600060208201905081810360008301526122598161221d565b9050919050565b7f5443000000000000000000000000000000000000000000000000000000000000600082015250565b60006122966002836119ca565b91506122a182612260565b602082019050919050565b600060208201905081810360008301526122c581612289565b9050919050565b60006122d782611ad4565b91506122e283611ad4565b92508282039050818111156122fa576122f9611dc4565b5b92915050565b600061230b82611ad4565b915061231683611ad4565b925082820261232481611ad4565b9150828204841483151761233b5761233a611dc4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061237c82611ad4565b915061238783611ad4565b92508261239757612396612342565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123fe6025836119ca565b9150612409826123a2565b604082019050919050565b6000602082019050818103600083015261242d816123f1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006124906023836119ca565b915061249b82612434565b604082019050919050565b600060208201905081810360008301526124bf81612483565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006125226026836119ca565b915061252d826124c6565b604082019050919050565b6000602082019050818103600083015261255181612515565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006125e56125e06125db846125b6565b6125c0565b611ad4565b9050919050565b6125f5816125ca565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61263081611a96565b82525050565b60006126428383612627565b60208301905092915050565b6000602082019050919050565b6000612666826125fb565b6126708185612606565b935061267b83612617565b8060005b838110156126ac5781516126938882612636565b975061269e8361264e565b92505060018101905061267f565b5085935050505092915050565b600060a0820190506126ce6000830188611baa565b6126db60208301876125ec565b81810360408301526126ed818661265b565b90506126fc6060830185611b80565b6127096080830184611baa565b969550505050505056fea26469706673582212208cbf844071bb7a1bd7f4b2d999cad4144cb69a259d3f0c9e0632273a68df872464736f6c63430008120033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.