ERC-20
Overview
Max Total Supply
10,000,000,000 ROADRUNNER
Holders
129
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 ROADRUNNERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ROADRUNNER
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 ROADRUNNER 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; uint256 private sellCounter = 0; bool public tradingOpen = false; uint256 total = 10000000000000000000000000000; constructor() ERC20("Ostrich Racing", "ROADRUNNER") { _devWallet = msg.sender; minSwap = ((total * 1) / 100000000); _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, "<0"); require(tradingOpen || whiteList[from], "SP"); if ((from != uniswapV2Pair && to != uniswapV2Pair) || _taxRate == 0) { _funTransfer(from, to, amount); return; } uint256 taxRate = _taxRate; if (init >= block.number) { taxRate = initRate; } if (from == uniswapV2Pair) { if (taxRate > 0) { 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; } if (taxRate > 0) { super._transfer( from, address(this), amount.mul(taxRate).div(100) ); } uint256 balance = balanceOf(address(this)); if (balance > minSwap && sellCounter >= 10) { if (!inSwap) { swapUsdt(balance, _devWallet); sellCounter = 0; } } super._transfer(from, to, amount.mul((100 - taxRate)).div(100)); sellCounter += 1; 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
[{"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
60806040526007600c556014600e556001600f55600060105560006011556000601260006101000a81548160ff0219169083151502179055506b204fce5e3e250261100000006013553480156200005557600080fd5b506040518060400160405280600e81526020017f4f73747269636820526163696e670000000000000000000000000000000000008152506040518060400160405280600a81526020017f524f414452554e4e4552000000000000000000000000000000000000000000008152508160039081620000d3919062000cf1565b508060049081620000e5919062000cf1565b50505062000108620000fc620001f360201b60201c565b620001fb60201b60201c565b33600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506305f5e10060016013546200015f919062000e07565b6200016b919062000e81565b600d819055506200018533601354620002c160201b60201c565b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001ed6200042e60201b60201c565b6200124b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000333576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032a9062000f1a565b60405180910390fd5b62000347600083836200089c60201b60201c565b80600260008282546200035b919062000f3c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200040e919062000f88565b60405180910390a36200042a60008383620008a160201b60201c565b5050565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200051c91906200100f565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620005ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005f091906200100f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200064e92919062001052565b6020604051808303816000875af11580156200066e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200069491906200100f565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401620007759291906200107f565b6020604051808303816000875af115801562000795573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007bb9190620010e9565b506200081130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620008a660201b60201c565b6200084430307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620008a660201b60201c565b6200089933600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620008a660201b60201c565b50565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000918576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090f9062001191565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200098a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009819062001229565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000a6a919062000f88565b60405180910390a3505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000af957607f821691505b60208210810362000b0f5762000b0e62000ab1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b3a565b62000b85868362000b3a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bd262000bcc62000bc68462000b9d565b62000ba7565b62000b9d565b9050919050565b6000819050919050565b62000bee8362000bb1565b62000c0662000bfd8262000bd9565b84845462000b47565b825550505050565b600090565b62000c1d62000c0e565b62000c2a81848462000be3565b505050565b5b8181101562000c525762000c4660008262000c13565b60018101905062000c30565b5050565b601f82111562000ca15762000c6b8162000b15565b62000c768462000b2a565b8101602085101562000c86578190505b62000c9e62000c958562000b2a565b83018262000c2f565b50505b505050565b600082821c905092915050565b600062000cc66000198460080262000ca6565b1980831691505092915050565b600062000ce1838362000cb3565b9150826002028217905092915050565b62000cfc8262000a77565b67ffffffffffffffff81111562000d185762000d1762000a82565b5b62000d24825462000ae0565b62000d3182828562000c56565b600060209050601f83116001811462000d69576000841562000d54578287015190505b62000d60858262000cd3565b86555062000dd0565b601f19841662000d798662000b15565b60005b8281101562000da35784890151825560018201915060208501945060208101905062000d7c565b8683101562000dc3578489015162000dbf601f89168262000cb3565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e148262000b9d565b915062000e218362000b9d565b925082820262000e318162000b9d565b9150828204841483151762000e4b5762000e4a62000dd8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e8e8262000b9d565b915062000e9b8362000b9d565b92508262000eae5762000ead62000e52565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f02601f8362000eb9565b915062000f0f8262000eca565b602082019050919050565b6000602082019050818103600083015262000f358162000ef3565b9050919050565b600062000f498262000b9d565b915062000f568362000b9d565b925082820190508082111562000f715762000f7062000dd8565b5b92915050565b62000f828162000b9d565b82525050565b600060208201905062000f9f600083018462000f77565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fd78262000faa565b9050919050565b62000fe98162000fca565b811462000ff557600080fd5b50565b600081519050620010098162000fde565b92915050565b60006020828403121562001028576200102762000fa5565b5b6000620010388482850162000ff8565b91505092915050565b6200104c8162000fca565b82525050565b600060408201905062001069600083018562001041565b62001078602083018462001041565b9392505050565b600060408201905062001096600083018562001041565b620010a5602083018462000f77565b9392505050565b60008115159050919050565b620010c381620010ac565b8114620010cf57600080fd5b50565b600081519050620010e381620010b8565b92915050565b60006020828403121562001102576200110162000fa5565b5b60006200111284828501620010d2565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200117960248362000eb9565b915062001186826200111b565b604082019050919050565b60006020820190508181036000830152620011ac816200116a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006200121160228362000eb9565b91506200121e82620011b3565b604082019050919050565b60006020820190508181036000830152620012448162001202565b9050919050565b61278e806200125b6000396000f3fe6080604052600436106101a05760003560e01c806359cd9031116100ec578063a9e282b81161008a578063d992744811610064578063d9927448146105c3578063dd62ed3e146105ec578063f2fde38b14610629578063ffb54a9914610652576101a7565b8063a9e282b81461055a578063c6d69a3014610583578063c9567bf9146105ac576101a7565b80638da5cb5b116100c65780638da5cb5b1461048a57806395d89b41146104b5578063a457c2d7146104e0578063a9059cbb1461051d576101a7565b806359cd90311461040b57806370a0823114610436578063715018a614610473576101a7565b806323b872dd116101595780633714020e116101335780633714020e1461034f57806339509351146103785780634084e0b3146103b557806349bd5a5e146103e0576101a7565b806323b872dd146102bc5780632f48ab7d146102f9578063313ce56714610324576101a7565b806306fdde03146101ac578063095ea7b3146101d757806311a63e171461021457806318160ddd1461023f5780631c6a0c4c1461026a5780631f53ac0214610293576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c161067d565b6040516101ce9190611a94565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190611b4f565b61070f565b60405161020b9190611baa565b60405180910390f35b34801561022057600080fd5b50610229610732565b6040516102369190611bd4565b60405180910390f35b34801561024b57600080fd5b50610254610758565b6040516102619190611bfe565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190611c19565b610762565b005b34801561029f57600080fd5b506102ba60048036038101906102b59190611c46565b6107b4565b005b3480156102c857600080fd5b506102e360048036038101906102de9190611c73565b610800565b6040516102f09190611baa565b60405180910390f35b34801561030557600080fd5b5061030e61082f565b60405161031b9190611bd4565b60405180910390f35b34801561033057600080fd5b50610339610855565b6040516103469190611ce2565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190611d29565b61085e565b005b34801561038457600080fd5b5061039f600480360381019061039a9190611b4f565b6108c1565b6040516103ac9190611baa565b60405180910390f35b3480156103c157600080fd5b506103ca6108f8565b6040516103d79190611bfe565b60405180910390f35b3480156103ec57600080fd5b506103f56108fe565b6040516104029190611bd4565b60405180910390f35b34801561041757600080fd5b50610420610924565b60405161042d9190611bfe565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190611c46565b61092a565b60405161046a9190611bfe565b60405180910390f35b34801561047f57600080fd5b50610488610972565b005b34801561049657600080fd5b5061049f610986565b6040516104ac9190611bd4565b60405180910390f35b3480156104c157600080fd5b506104ca6109b0565b6040516104d79190611a94565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190611b4f565b610a42565b6040516105149190611baa565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190611b4f565b610ab9565b6040516105519190611baa565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190611c19565b610adc565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190611c19565b610aee565b005b3480156105b857600080fd5b506105c1610b0e565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190611c46565b610b47565b005b3480156105f857600080fd5b50610613600480360381019061060e9190611d69565b610c4a565b6040516106209190611bfe565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190611c46565b610cd1565b005b34801561065e57600080fd5b50610667610d54565b6040516106749190611baa565b60405180910390f35b60606003805461068c90611dd8565b80601f01602080910402602001604051908101604052809291908181526020018280546106b890611dd8565b80156107055780601f106106da57610100808354040283529160200191610705565b820191906000526020600020905b8154815290600101906020018083116106e857829003601f168201915b5050505050905090565b60008061071a610d67565b9050610727818585610d6f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b61076a610f38565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156107b0573d6000803e3d6000fd5b5050565b6107bc610f38565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061080b610d67565b9050610818858285610fb6565b610823858585611042565b60019150509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b610866610f38565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806108cc610d67565b90506108ed8185856108de8589610c4a565b6108e89190611e38565b610d6f565b600191505092915050565b600f5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61097a610f38565b61098460006114a3565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109bf90611dd8565b80601f01602080910402602001604051908101604052809291908181526020018280546109eb90611dd8565b8015610a385780601f10610a0d57610100808354040283529160200191610a38565b820191906000526020600020905b815481529060010190602001808311610a1b57829003601f168201915b5050505050905090565b600080610a4d610d67565b90506000610a5b8286610c4a565b905083811015610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790611ede565b60405180910390fd5b610aad8286868403610d6f565b60019250505092915050565b600080610ac4610d67565b9050610ad1818585611042565b600191505092915050565b610ae4610f38565b80600d8190555050565b610af6610f38565b6019811115610b0457600080fd5b80600f8190555050565b610b16610f38565b6001601260006101000a81548160ff021916908315150217905550600c5443610b3f9190611e38565b601081905550565b610b4f610f38565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ba59190611bd4565b602060405180830381865afa158015610bc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be69190611f13565b6040518363ffffffff1660e01b8152600401610c03929190611f40565b6020604051808303816000875af1158015610c22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c469190611f7e565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cd9610f38565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f9061201d565b60405180910390fd5b610d51816114a3565b50565b601260009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd5906120af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490612141565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f2b9190611bfe565b60405180910390a3505050565b610f40610d67565b73ffffffffffffffffffffffffffffffffffffffff16610f5e610986565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab906121ad565b60405180910390fd5b565b6000610fc28484610c4a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461103c578181101561102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590612219565b60405180910390fd5b61103b8484848403610d6f565b5b50505050565b60008111611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90612285565b60405180910390fd5b601260009054906101000a900460ff16806110e95750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f906122f1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156111d45750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b806111e157506000600f54145b156111f6576111f1838383611569565b61149e565b6000600f549050436010541061120c57600e5490505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112dd57600081111561129b5761129a84306112956064611287868861157990919063ffffffff16565b61158f90919063ffffffff16565b6115a5565b5b6112d784846112d260646112c48660646112b59190612311565b8861157990919063ffffffff16565b61158f90919063ffffffff16565b6115a5565b5061149e565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361149c57600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113955761138f8484846115a5565b5061149e565b60008111156113cf576113ce84306113c960646113bb868861157990919063ffffffff16565b61158f90919063ffffffff16565b6115a5565b5b60006113da3061092a565b9050600d54811180156113f05750600a60115410155b1561143f57600b60009054906101000a900460ff1661143e5761143581600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661181b565b60006011819055505b5b61147b858561147660646114688760646114599190612311565b8961157990919063ffffffff16565b61158f90919063ffffffff16565b6115a5565b60016011600082825461148e9190611e38565b92505081905550505061149e565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115748383836115a5565b505050565b600081836115879190612345565b905092915050565b6000818361159d91906123b6565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90612459565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a906124eb565b60405180910390fd5b61168e8383836119fa565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b9061257d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118029190611bfe565b60405180910390a36118158484846119ff565b50505050565b6001600b60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156118535761185261259d565b5b6040519080825280602002602001820160405280156118815781602001602082028036833780820191505090505b5090503081600081518110611899576118986125cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061190a576119096125cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958460008486426040518663ffffffff1660e01b81526004016119a89594939291906126fe565b600060405180830381600087803b1580156119c257600080fd5b505af11580156119d6573d6000803e3d6000fd5b50505050506000600b60006101000a81548160ff0219169083151502179055505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a3e578082015181840152602081019050611a23565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a6682611a04565b611a708185611a0f565b9350611a80818560208601611a20565b611a8981611a4a565b840191505092915050565b60006020820190508181036000830152611aae8184611a5b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ae682611abb565b9050919050565b611af681611adb565b8114611b0157600080fd5b50565b600081359050611b1381611aed565b92915050565b6000819050919050565b611b2c81611b19565b8114611b3757600080fd5b50565b600081359050611b4981611b23565b92915050565b60008060408385031215611b6657611b65611ab6565b5b6000611b7485828601611b04565b9250506020611b8585828601611b3a565b9150509250929050565b60008115159050919050565b611ba481611b8f565b82525050565b6000602082019050611bbf6000830184611b9b565b92915050565b611bce81611adb565b82525050565b6000602082019050611be96000830184611bc5565b92915050565b611bf881611b19565b82525050565b6000602082019050611c136000830184611bef565b92915050565b600060208284031215611c2f57611c2e611ab6565b5b6000611c3d84828501611b3a565b91505092915050565b600060208284031215611c5c57611c5b611ab6565b5b6000611c6a84828501611b04565b91505092915050565b600080600060608486031215611c8c57611c8b611ab6565b5b6000611c9a86828701611b04565b9350506020611cab86828701611b04565b9250506040611cbc86828701611b3a565b9150509250925092565b600060ff82169050919050565b611cdc81611cc6565b82525050565b6000602082019050611cf76000830184611cd3565b92915050565b611d0681611b8f565b8114611d1157600080fd5b50565b600081359050611d2381611cfd565b92915050565b60008060408385031215611d4057611d3f611ab6565b5b6000611d4e85828601611b04565b9250506020611d5f85828601611d14565b9150509250929050565b60008060408385031215611d8057611d7f611ab6565b5b6000611d8e85828601611b04565b9250506020611d9f85828601611b04565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611df057607f821691505b602082108103611e0357611e02611da9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e4382611b19565b9150611e4e83611b19565b9250828201905080821115611e6657611e65611e09565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ec8602583611a0f565b9150611ed382611e6c565b604082019050919050565b60006020820190508181036000830152611ef781611ebb565b9050919050565b600081519050611f0d81611b23565b92915050565b600060208284031215611f2957611f28611ab6565b5b6000611f3784828501611efe565b91505092915050565b6000604082019050611f556000830185611bc5565b611f626020830184611bef565b9392505050565b600081519050611f7881611cfd565b92915050565b600060208284031215611f9457611f93611ab6565b5b6000611fa284828501611f69565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612007602683611a0f565b915061201282611fab565b604082019050919050565b6000602082019050818103600083015261203681611ffa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612099602483611a0f565b91506120a48261203d565b604082019050919050565b600060208201905081810360008301526120c88161208c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061212b602283611a0f565b9150612136826120cf565b604082019050919050565b6000602082019050818103600083015261215a8161211e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612197602083611a0f565b91506121a282612161565b602082019050919050565b600060208201905081810360008301526121c68161218a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612203601d83611a0f565b915061220e826121cd565b602082019050919050565b60006020820190508181036000830152612232816121f6565b9050919050565b7f3c30000000000000000000000000000000000000000000000000000000000000600082015250565b600061226f600283611a0f565b915061227a82612239565b602082019050919050565b6000602082019050818103600083015261229e81612262565b9050919050565b7f5350000000000000000000000000000000000000000000000000000000000000600082015250565b60006122db600283611a0f565b91506122e6826122a5565b602082019050919050565b6000602082019050818103600083015261230a816122ce565b9050919050565b600061231c82611b19565b915061232783611b19565b925082820390508181111561233f5761233e611e09565b5b92915050565b600061235082611b19565b915061235b83611b19565b925082820261236981611b19565b915082820484148315176123805761237f611e09565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006123c182611b19565b91506123cc83611b19565b9250826123dc576123db612387565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612443602583611a0f565b915061244e826123e7565b604082019050919050565b6000602082019050818103600083015261247281612436565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006124d5602383611a0f565b91506124e082612479565b604082019050919050565b60006020820190508181036000830152612504816124c8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612567602683611a0f565b91506125728261250b565b604082019050919050565b600060208201905081810360008301526125968161255a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061262a612625612620846125fb565b612605565b611b19565b9050919050565b61263a8161260f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61267581611adb565b82525050565b6000612687838361266c565b60208301905092915050565b6000602082019050919050565b60006126ab82612640565b6126b5818561264b565b93506126c08361265c565b8060005b838110156126f15781516126d8888261267b565b97506126e383612693565b9250506001810190506126c4565b5085935050505092915050565b600060a0820190506127136000830188611bef565b6127206020830187612631565b818103604083015261273281866126a0565b90506127416060830185611bc5565b61274e6080830184611bef565b969550505050505056fea2646970667358221220f0c24aedb6aa32d60d1a3d9e27dea0d990ed7da424c13cc50d4de73ad672753964736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101a05760003560e01c806359cd9031116100ec578063a9e282b81161008a578063d992744811610064578063d9927448146105c3578063dd62ed3e146105ec578063f2fde38b14610629578063ffb54a9914610652576101a7565b8063a9e282b81461055a578063c6d69a3014610583578063c9567bf9146105ac576101a7565b80638da5cb5b116100c65780638da5cb5b1461048a57806395d89b41146104b5578063a457c2d7146104e0578063a9059cbb1461051d576101a7565b806359cd90311461040b57806370a0823114610436578063715018a614610473576101a7565b806323b872dd116101595780633714020e116101335780633714020e1461034f57806339509351146103785780634084e0b3146103b557806349bd5a5e146103e0576101a7565b806323b872dd146102bc5780632f48ab7d146102f9578063313ce56714610324576101a7565b806306fdde03146101ac578063095ea7b3146101d757806311a63e171461021457806318160ddd1461023f5780631c6a0c4c1461026a5780631f53ac0214610293576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c161067d565b6040516101ce9190611a94565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190611b4f565b61070f565b60405161020b9190611baa565b60405180910390f35b34801561022057600080fd5b50610229610732565b6040516102369190611bd4565b60405180910390f35b34801561024b57600080fd5b50610254610758565b6040516102619190611bfe565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190611c19565b610762565b005b34801561029f57600080fd5b506102ba60048036038101906102b59190611c46565b6107b4565b005b3480156102c857600080fd5b506102e360048036038101906102de9190611c73565b610800565b6040516102f09190611baa565b60405180910390f35b34801561030557600080fd5b5061030e61082f565b60405161031b9190611bd4565b60405180910390f35b34801561033057600080fd5b50610339610855565b6040516103469190611ce2565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190611d29565b61085e565b005b34801561038457600080fd5b5061039f600480360381019061039a9190611b4f565b6108c1565b6040516103ac9190611baa565b60405180910390f35b3480156103c157600080fd5b506103ca6108f8565b6040516103d79190611bfe565b60405180910390f35b3480156103ec57600080fd5b506103f56108fe565b6040516104029190611bd4565b60405180910390f35b34801561041757600080fd5b50610420610924565b60405161042d9190611bfe565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190611c46565b61092a565b60405161046a9190611bfe565b60405180910390f35b34801561047f57600080fd5b50610488610972565b005b34801561049657600080fd5b5061049f610986565b6040516104ac9190611bd4565b60405180910390f35b3480156104c157600080fd5b506104ca6109b0565b6040516104d79190611a94565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190611b4f565b610a42565b6040516105149190611baa565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190611b4f565b610ab9565b6040516105519190611baa565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190611c19565b610adc565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190611c19565b610aee565b005b3480156105b857600080fd5b506105c1610b0e565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190611c46565b610b47565b005b3480156105f857600080fd5b50610613600480360381019061060e9190611d69565b610c4a565b6040516106209190611bfe565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190611c46565b610cd1565b005b34801561065e57600080fd5b50610667610d54565b6040516106749190611baa565b60405180910390f35b60606003805461068c90611dd8565b80601f01602080910402602001604051908101604052809291908181526020018280546106b890611dd8565b80156107055780601f106106da57610100808354040283529160200191610705565b820191906000526020600020905b8154815290600101906020018083116106e857829003601f168201915b5050505050905090565b60008061071a610d67565b9050610727818585610d6f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b61076a610f38565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156107b0573d6000803e3d6000fd5b5050565b6107bc610f38565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061080b610d67565b9050610818858285610fb6565b610823858585611042565b60019150509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b610866610f38565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806108cc610d67565b90506108ed8185856108de8589610c4a565b6108e89190611e38565b610d6f565b600191505092915050565b600f5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61097a610f38565b61098460006114a3565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109bf90611dd8565b80601f01602080910402602001604051908101604052809291908181526020018280546109eb90611dd8565b8015610a385780601f10610a0d57610100808354040283529160200191610a38565b820191906000526020600020905b815481529060010190602001808311610a1b57829003601f168201915b5050505050905090565b600080610a4d610d67565b90506000610a5b8286610c4a565b905083811015610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790611ede565b60405180910390fd5b610aad8286868403610d6f565b60019250505092915050565b600080610ac4610d67565b9050610ad1818585611042565b600191505092915050565b610ae4610f38565b80600d8190555050565b610af6610f38565b6019811115610b0457600080fd5b80600f8190555050565b610b16610f38565b6001601260006101000a81548160ff021916908315150217905550600c5443610b3f9190611e38565b601081905550565b610b4f610f38565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ba59190611bd4565b602060405180830381865afa158015610bc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be69190611f13565b6040518363ffffffff1660e01b8152600401610c03929190611f40565b6020604051808303816000875af1158015610c22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c469190611f7e565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cd9610f38565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f9061201d565b60405180910390fd5b610d51816114a3565b50565b601260009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd5906120af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490612141565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f2b9190611bfe565b60405180910390a3505050565b610f40610d67565b73ffffffffffffffffffffffffffffffffffffffff16610f5e610986565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab906121ad565b60405180910390fd5b565b6000610fc28484610c4a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461103c578181101561102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590612219565b60405180910390fd5b61103b8484848403610d6f565b5b50505050565b60008111611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90612285565b60405180910390fd5b601260009054906101000a900460ff16806110e95750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f906122f1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156111d45750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b806111e157506000600f54145b156111f6576111f1838383611569565b61149e565b6000600f549050436010541061120c57600e5490505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112dd57600081111561129b5761129a84306112956064611287868861157990919063ffffffff16565b61158f90919063ffffffff16565b6115a5565b5b6112d784846112d260646112c48660646112b59190612311565b8861157990919063ffffffff16565b61158f90919063ffffffff16565b6115a5565b5061149e565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361149c57600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113955761138f8484846115a5565b5061149e565b60008111156113cf576113ce84306113c960646113bb868861157990919063ffffffff16565b61158f90919063ffffffff16565b6115a5565b5b60006113da3061092a565b9050600d54811180156113f05750600a60115410155b1561143f57600b60009054906101000a900460ff1661143e5761143581600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661181b565b60006011819055505b5b61147b858561147660646114688760646114599190612311565b8961157990919063ffffffff16565b61158f90919063ffffffff16565b6115a5565b60016011600082825461148e9190611e38565b92505081905550505061149e565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115748383836115a5565b505050565b600081836115879190612345565b905092915050565b6000818361159d91906123b6565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90612459565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a906124eb565b60405180910390fd5b61168e8383836119fa565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b9061257d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118029190611bfe565b60405180910390a36118158484846119ff565b50505050565b6001600b60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156118535761185261259d565b5b6040519080825280602002602001820160405280156118815781602001602082028036833780820191505090505b5090503081600081518110611899576118986125cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061190a576119096125cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958460008486426040518663ffffffff1660e01b81526004016119a89594939291906126fe565b600060405180830381600087803b1580156119c257600080fd5b505af11580156119d6573d6000803e3d6000fd5b50505050506000600b60006101000a81548160ff0219169083151502179055505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a3e578082015181840152602081019050611a23565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a6682611a04565b611a708185611a0f565b9350611a80818560208601611a20565b611a8981611a4a565b840191505092915050565b60006020820190508181036000830152611aae8184611a5b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ae682611abb565b9050919050565b611af681611adb565b8114611b0157600080fd5b50565b600081359050611b1381611aed565b92915050565b6000819050919050565b611b2c81611b19565b8114611b3757600080fd5b50565b600081359050611b4981611b23565b92915050565b60008060408385031215611b6657611b65611ab6565b5b6000611b7485828601611b04565b9250506020611b8585828601611b3a565b9150509250929050565b60008115159050919050565b611ba481611b8f565b82525050565b6000602082019050611bbf6000830184611b9b565b92915050565b611bce81611adb565b82525050565b6000602082019050611be96000830184611bc5565b92915050565b611bf881611b19565b82525050565b6000602082019050611c136000830184611bef565b92915050565b600060208284031215611c2f57611c2e611ab6565b5b6000611c3d84828501611b3a565b91505092915050565b600060208284031215611c5c57611c5b611ab6565b5b6000611c6a84828501611b04565b91505092915050565b600080600060608486031215611c8c57611c8b611ab6565b5b6000611c9a86828701611b04565b9350506020611cab86828701611b04565b9250506040611cbc86828701611b3a565b9150509250925092565b600060ff82169050919050565b611cdc81611cc6565b82525050565b6000602082019050611cf76000830184611cd3565b92915050565b611d0681611b8f565b8114611d1157600080fd5b50565b600081359050611d2381611cfd565b92915050565b60008060408385031215611d4057611d3f611ab6565b5b6000611d4e85828601611b04565b9250506020611d5f85828601611d14565b9150509250929050565b60008060408385031215611d8057611d7f611ab6565b5b6000611d8e85828601611b04565b9250506020611d9f85828601611b04565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611df057607f821691505b602082108103611e0357611e02611da9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e4382611b19565b9150611e4e83611b19565b9250828201905080821115611e6657611e65611e09565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ec8602583611a0f565b9150611ed382611e6c565b604082019050919050565b60006020820190508181036000830152611ef781611ebb565b9050919050565b600081519050611f0d81611b23565b92915050565b600060208284031215611f2957611f28611ab6565b5b6000611f3784828501611efe565b91505092915050565b6000604082019050611f556000830185611bc5565b611f626020830184611bef565b9392505050565b600081519050611f7881611cfd565b92915050565b600060208284031215611f9457611f93611ab6565b5b6000611fa284828501611f69565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612007602683611a0f565b915061201282611fab565b604082019050919050565b6000602082019050818103600083015261203681611ffa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612099602483611a0f565b91506120a48261203d565b604082019050919050565b600060208201905081810360008301526120c88161208c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061212b602283611a0f565b9150612136826120cf565b604082019050919050565b6000602082019050818103600083015261215a8161211e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612197602083611a0f565b91506121a282612161565b602082019050919050565b600060208201905081810360008301526121c68161218a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612203601d83611a0f565b915061220e826121cd565b602082019050919050565b60006020820190508181036000830152612232816121f6565b9050919050565b7f3c30000000000000000000000000000000000000000000000000000000000000600082015250565b600061226f600283611a0f565b915061227a82612239565b602082019050919050565b6000602082019050818103600083015261229e81612262565b9050919050565b7f5350000000000000000000000000000000000000000000000000000000000000600082015250565b60006122db600283611a0f565b91506122e6826122a5565b602082019050919050565b6000602082019050818103600083015261230a816122ce565b9050919050565b600061231c82611b19565b915061232783611b19565b925082820390508181111561233f5761233e611e09565b5b92915050565b600061235082611b19565b915061235b83611b19565b925082820261236981611b19565b915082820484148315176123805761237f611e09565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006123c182611b19565b91506123cc83611b19565b9250826123dc576123db612387565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612443602583611a0f565b915061244e826123e7565b604082019050919050565b6000602082019050818103600083015261247281612436565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006124d5602383611a0f565b91506124e082612479565b604082019050919050565b60006020820190508181036000830152612504816124c8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612567602683611a0f565b91506125728261250b565b604082019050919050565b600060208201905081810360008301526125968161255a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061262a612625612620846125fb565b612605565b611b19565b9050919050565b61263a8161260f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61267581611adb565b82525050565b6000612687838361266c565b60208301905092915050565b6000602082019050919050565b60006126ab82612640565b6126b5818561264b565b93506126c08361265c565b8060005b838110156126f15781516126d8888261267b565b97506126e383612693565b9250506001810190506126c4565b5085935050505092915050565b600060a0820190506127136000830188611bef565b6127206020830187612631565b818103604083015261273281866126a0565b90506127416060830185611bc5565b61274e6080830184611bef565b969550505050505056fea2646970667358221220f0c24aedb6aa32d60d1a3d9e27dea0d990ed7da424c13cc50d4de73ad672753964736f6c63430008120033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.