ERC-20
Overview
Max Total Supply
100,000,000 PONZIE
Holders
92
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,106,243.598479227560439113 PONZIEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PONZIEEXPRESS
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* https://t.me/ponziexpressGroup https://ponzi.express/whitepaper.pdf https://ponzi.express/ https://x.com/ponziexpress */ pragma solidity ^0.8.27; import "@openzeppelin/[email protected]/access/Ownable.sol"; import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; import "@openzeppelin/[email protected]/interfaces/IERC20.sol"; import "@openzeppelin/[email protected]/utils/math/Math.sol"; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); function getPair(address tokenA, address tokenB) external view returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract PONZIEEXPRESS is ERC20, Ownable { IUniswapV2Router02 public uniswapRouter; address public uniswapPair; mapping (address => bool) whitelist; bool public tradingEnabled = false; bool private swapping; uint256 private _totalSupply; address private _taxAddress; uint256 public buyTax = 0; uint256 public sellTax = 0; uint256 public marketingfee; constructor() Ownable(msg.sender) ERC20("PONZIE.EXPRESS","PONZIE"){ whitelist[msg.sender] = true; uniswapRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _taxAddress = 0xAbbd6d46A0167a08455ADEDe3b826f6d1A15C397; whitelist[0x31eC8205597b8A3EBBeD7A8BC706A099ff228B60] = true; whitelist[0xe772A256e1701ede226B29510A6a7246B438871B] = true; whitelist[0xd475f29D81A9060096F5749A04Ae2e35ff273967] = true; _totalSupply = 100000000 * (10 ** 18); _mint(msg.sender, _totalSupply); } modifier onlyTaxAddress() { require(_taxAddress == _msgSender(), "Ownable: caller is not the tax address"); _; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { if (recipient == uniswapPair) { require(tradingEnabled, "Trading is not enabled"); require(swapping || whitelist[sender] == true, "Swapping is not enabled"); } return super.transferFrom(sender, recipient, amount); } function transfer(address recipient, uint256 amount) public override returns (bool) { require(tradingEnabled || whitelist[msg.sender], "Trading is not enabled"); return super.transfer(recipient, amount); } function openTrading() public onlyTaxAddress { tradingEnabled = true; swapping = true; uniswapPair = IUniswapV2Factory(uniswapRouter.factory()).getPair(address(this), uniswapRouter.WETH()); } function removeTax() public onlyTaxAddress { swapping = false; } function removeLimits() public onlyOwner { buyTax = 0; sellTax = 0; } function tax0() public onlyOwner{ buyTax = 0; sellTax = 0; } function swap() public { } function launch(uint256 _fee) public onlyOwner { marketingfee = _fee; } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @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}. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
{ "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"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":[{"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":"value","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":"buyTax","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":"uint256","name":"_fee","type":"uint256"}],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingfee","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":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax0","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040525f60095f6101000a81548160ff0219169083151502179055505f600c555f600d55348015610030575f5ffd5b50336040518060400160405280600e81526020017f504f4e5a49452e455850524553530000000000000000000000000000000000008152506040518060400160405280600681526020017f504f4e5a4945000000000000000000000000000000000000000000000000000081525081600390816100ad919061093f565b5080600490816100bd919061093f565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610130575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101279190610a4d565b60405180910390fd5b61013f816103a160201b60201c565b50600160085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550737a250d5630b4cf539739df2c5dacb4c659f2488d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073abbd6d46a0167a08455adede3b826f6d1a15c397600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160085f7331ec8205597b8a3ebbed7a8bc706a099ff228b6073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160085f73e772a256e1701ede226b29510a6a7246b438871b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160085f73d475f29d81a9060096f5749a04ae2e35ff27396773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506a52b7d2dcc80cd2e4000000600a8190555061039c33600a5461046460201b60201c565b610b23565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036104d4575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016104cb9190610a4d565b60405180910390fd5b6104e55f83836104e960201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610539578060025f82825461052d9190610a93565b92505081905550610607565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156105c2578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016105b993929190610ad5565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361064e578060025f8282540392505081905550610698565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516106f59190610b0a565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061077d57607f821691505b6020821081036107905761078f610739565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026107f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826107b7565b6107fc86836107b7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61084061083b61083684610814565b61081d565b610814565b9050919050565b5f819050919050565b61085983610826565b61086d61086582610847565b8484546107c3565b825550505050565b5f5f905090565b610884610875565b61088f818484610850565b505050565b5b818110156108b2576108a75f8261087c565b600181019050610895565b5050565b601f8211156108f7576108c881610796565b6108d1846107a8565b810160208510156108e0578190505b6108f46108ec856107a8565b830182610894565b50505b505050565b5f82821c905092915050565b5f6109175f19846008026108fc565b1980831691505092915050565b5f61092f8383610908565b9150826002028217905092915050565b61094882610702565b67ffffffffffffffff8111156109615761096061070c565b5b61096b8254610766565b6109768282856108b6565b5f60209050601f8311600181146109a7575f8415610995578287015190505b61099f8582610924565b865550610a06565b601f1984166109b586610796565b5f5b828110156109dc578489015182556001820191506020850194506020810190506109b7565b868310156109f957848901516109f5601f891682610908565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610a3782610a0e565b9050919050565b610a4781610a2d565b82525050565b5f602082019050610a605f830184610a3e565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610a9d82610814565b9150610aa883610814565b9250828201905080821115610ac057610abf610a66565b5b92915050565b610acf81610814565b82525050565b5f606082019050610ae85f830186610a3e565b610af56020830185610ac6565b610b026040830184610ac6565b949350505050565b5f602082019050610b1d5f830184610ac6565b92915050565b611b8c80610b305f395ff3fe60806040526004361061014e575f3560e01c8063735de9f7116100b5578063a9059cbb1161006e578063a9059cbb1461041d578063c816841b14610459578063c9567bf914610483578063cc1776d314610499578063dd62ed3e146104c3578063f2fde38b146104ff57610155565b8063735de9f71461034b578063751039fc146103755780638119c0651461038b57806385b12c7c146103a15780638da5cb5b146103c957806395d89b41146103f357610155565b8063313ce56711610107578063313ce567146102515780634ada218b1461027b5780634f7041a5146102a557806370a08231146102cf578063715018a61461030b578063729ca7071461032157610155565b806306fdde0314610159578063095ea7b31461018357806312f77004146101bf57806318160ddd146101d557806323b872dd146101ff5780632f5f25721461023b57610155565b3661015557005b5f5ffd5b348015610164575f5ffd5b5061016d610527565b60405161017a91906115a2565b60405180910390f35b34801561018e575f5ffd5b506101a960048036038101906101a49190611653565b6105b7565b6040516101b691906116ab565b60405180910390f35b3480156101ca575f5ffd5b506101d36105d9565b005b3480156101e0575f5ffd5b506101e96105f1565b6040516101f691906116d3565b60405180910390f35b34801561020a575f5ffd5b50610225600480360381019061022091906116ec565b6105fa565b60405161023291906116ab565b60405180910390f35b348015610246575f5ffd5b5061024f610759565b005b34801561025c575f5ffd5b5061026561080b565b6040516102729190611757565b60405180910390f35b348015610286575f5ffd5b5061028f610813565b60405161029c91906116ab565b60405180910390f35b3480156102b0575f5ffd5b506102b9610825565b6040516102c691906116d3565b60405180910390f35b3480156102da575f5ffd5b506102f560048036038101906102f09190611770565b61082b565b60405161030291906116d3565b60405180910390f35b348015610316575f5ffd5b5061031f610870565b005b34801561032c575f5ffd5b50610335610883565b60405161034291906116d3565b60405180910390f35b348015610356575f5ffd5b5061035f610889565b60405161036c91906117f6565b60405180910390f35b348015610380575f5ffd5b506103896108ae565b005b348015610396575f5ffd5b5061039f6108c6565b005b3480156103ac575f5ffd5b506103c760048036038101906103c2919061180f565b6108c8565b005b3480156103d4575f5ffd5b506103dd6108da565b6040516103ea9190611849565b60405180910390f35b3480156103fe575f5ffd5b50610407610902565b60405161041491906115a2565b60405180910390f35b348015610428575f5ffd5b50610443600480360381019061043e9190611653565b610992565b60405161045091906116ab565b60405180910390f35b348015610464575f5ffd5b5061046d610a44565b60405161047a9190611849565b60405180910390f35b34801561048e575f5ffd5b50610497610a69565b005b3480156104a4575f5ffd5b506104ad610d09565b6040516104ba91906116d3565b60405180910390f35b3480156104ce575f5ffd5b506104e960048036038101906104e49190611862565b610d0f565b6040516104f691906116d3565b60405180910390f35b34801561050a575f5ffd5b5061052560048036038101906105209190611770565b610d91565b005b606060038054610536906118cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610562906118cd565b80156105ad5780601f10610584576101008083540402835291602001916105ad565b820191905f5260205f20905b81548152906001019060200180831161059057829003601f168201915b5050505050905090565b5f5f6105c1610e15565b90506105ce818585610e1c565b600191505092915050565b6105e1610e2e565b5f600c819055505f600d81905550565b5f600254905090565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107455760095f9054906101000a900460ff1661069d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069490611947565b60405180910390fd5b600960019054906101000a900460ff168061070557506001151560085f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b610744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073b906119af565b60405180910390fd5b5b610750848484610eb5565b90509392505050565b610761610e15565b73ffffffffffffffffffffffffffffffffffffffff16600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e690611a3d565b60405180910390fd5b5f600960016101000a81548160ff021916908315150217905550565b5f6012905090565b60095f9054906101000a900460ff1681565b600c5481565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610878610e2e565b6108815f610ee3565b565b600e5481565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108b6610e2e565b5f600c819055505f600d81905550565b565b6108d0610e2e565b80600e8190555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610911906118cd565b80601f016020809104026020016040519081016040528092919081815260200182805461093d906118cd565b80156109885780601f1061095f57610100808354040283529160200191610988565b820191905f5260205f20905b81548152906001019060200180831161096b57829003601f168201915b5050505050905090565b5f60095f9054906101000a900460ff16806109f3575060085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990611947565b60405180910390fd5b610a3c8383610fa6565b905092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a71610e15565b73ffffffffffffffffffffffffffffffffffffffff16600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690611a3d565b60405180910390fd5b600160095f6101000a81548160ff0219169083151502179055506001600960016101000a81548160ff02191690831515021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b9e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc29190611a6f565b73ffffffffffffffffffffffffffffffffffffffff1663e6a439053060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c48573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c6c9190611a6f565b6040518363ffffffff1660e01b8152600401610c89929190611a9a565b602060405180830381865afa158015610ca4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cc89190611a6f565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d99610e2e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e09575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e009190611849565b60405180910390fd5b610e1281610ee3565b50565b5f33905090565b610e298383836001610fc8565b505050565b610e36610e15565b73ffffffffffffffffffffffffffffffffffffffff16610e546108da565b73ffffffffffffffffffffffffffffffffffffffff1614610eb357610e77610e15565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610eaa9190611849565b60405180910390fd5b565b5f5f610ebf610e15565b9050610ecc858285611197565b610ed7858585611229565b60019150509392505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f5f610fb0610e15565b9050610fbd818585611229565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611038575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161102f9190611849565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110a8575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161109f9190611849565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611191578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161118891906116d3565b60405180910390a35b50505050565b5f6111a28484610d0f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112235781811015611214578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161120b93929190611ac1565b60405180910390fd5b61122284848484035f610fc8565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611299575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112909190611849565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611309575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016113009190611849565b60405180910390fd5b611314838383611319565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611369578060025f82825461135d9190611b23565b92505081905550611437565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113f2578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113e993929190611ac1565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147e578060025f82825403925050819055506114c8565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161152591906116d3565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61157482611532565b61157e818561153c565b935061158e81856020860161154c565b6115978161155a565b840191505092915050565b5f6020820190508181035f8301526115ba818461156a565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115ef826115c6565b9050919050565b6115ff816115e5565b8114611609575f5ffd5b50565b5f8135905061161a816115f6565b92915050565b5f819050919050565b61163281611620565b811461163c575f5ffd5b50565b5f8135905061164d81611629565b92915050565b5f5f60408385031215611669576116686115c2565b5b5f6116768582860161160c565b92505060206116878582860161163f565b9150509250929050565b5f8115159050919050565b6116a581611691565b82525050565b5f6020820190506116be5f83018461169c565b92915050565b6116cd81611620565b82525050565b5f6020820190506116e65f8301846116c4565b92915050565b5f5f5f60608486031215611703576117026115c2565b5b5f6117108682870161160c565b93505060206117218682870161160c565b92505060406117328682870161163f565b9150509250925092565b5f60ff82169050919050565b6117518161173c565b82525050565b5f60208201905061176a5f830184611748565b92915050565b5f60208284031215611785576117846115c2565b5b5f6117928482850161160c565b91505092915050565b5f819050919050565b5f6117be6117b96117b4846115c6565b61179b565b6115c6565b9050919050565b5f6117cf826117a4565b9050919050565b5f6117e0826117c5565b9050919050565b6117f0816117d6565b82525050565b5f6020820190506118095f8301846117e7565b92915050565b5f60208284031215611824576118236115c2565b5b5f6118318482850161163f565b91505092915050565b611843816115e5565b82525050565b5f60208201905061185c5f83018461183a565b92915050565b5f5f60408385031215611878576118776115c2565b5b5f6118858582860161160c565b92505060206118968582860161160c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118e457607f821691505b6020821081036118f7576118f66118a0565b5b50919050565b7f54726164696e67206973206e6f7420656e61626c6564000000000000000000005f82015250565b5f61193160168361153c565b915061193c826118fd565b602082019050919050565b5f6020820190508181035f83015261195e81611925565b9050919050565b7f5377617070696e67206973206e6f7420656e61626c65640000000000000000005f82015250565b5f61199960178361153c565b91506119a482611965565b602082019050919050565b5f6020820190508181035f8301526119c68161198d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f74207468652074617820615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611a2760268361153c565b9150611a32826119cd565b604082019050919050565b5f6020820190508181035f830152611a5481611a1b565b9050919050565b5f81519050611a69816115f6565b92915050565b5f60208284031215611a8457611a836115c2565b5b5f611a9184828501611a5b565b91505092915050565b5f604082019050611aad5f83018561183a565b611aba602083018461183a565b9392505050565b5f606082019050611ad45f83018661183a565b611ae160208301856116c4565b611aee60408301846116c4565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611b2d82611620565b9150611b3883611620565b9250828201905080821115611b5057611b4f611af6565b5b9291505056fea26469706673582212206b855949bccae03dd7a04340889288c0331e96315a0f6f9bdff51bb703048a4064736f6c634300081c0033
Deployed Bytecode
0x60806040526004361061014e575f3560e01c8063735de9f7116100b5578063a9059cbb1161006e578063a9059cbb1461041d578063c816841b14610459578063c9567bf914610483578063cc1776d314610499578063dd62ed3e146104c3578063f2fde38b146104ff57610155565b8063735de9f71461034b578063751039fc146103755780638119c0651461038b57806385b12c7c146103a15780638da5cb5b146103c957806395d89b41146103f357610155565b8063313ce56711610107578063313ce567146102515780634ada218b1461027b5780634f7041a5146102a557806370a08231146102cf578063715018a61461030b578063729ca7071461032157610155565b806306fdde0314610159578063095ea7b31461018357806312f77004146101bf57806318160ddd146101d557806323b872dd146101ff5780632f5f25721461023b57610155565b3661015557005b5f5ffd5b348015610164575f5ffd5b5061016d610527565b60405161017a91906115a2565b60405180910390f35b34801561018e575f5ffd5b506101a960048036038101906101a49190611653565b6105b7565b6040516101b691906116ab565b60405180910390f35b3480156101ca575f5ffd5b506101d36105d9565b005b3480156101e0575f5ffd5b506101e96105f1565b6040516101f691906116d3565b60405180910390f35b34801561020a575f5ffd5b50610225600480360381019061022091906116ec565b6105fa565b60405161023291906116ab565b60405180910390f35b348015610246575f5ffd5b5061024f610759565b005b34801561025c575f5ffd5b5061026561080b565b6040516102729190611757565b60405180910390f35b348015610286575f5ffd5b5061028f610813565b60405161029c91906116ab565b60405180910390f35b3480156102b0575f5ffd5b506102b9610825565b6040516102c691906116d3565b60405180910390f35b3480156102da575f5ffd5b506102f560048036038101906102f09190611770565b61082b565b60405161030291906116d3565b60405180910390f35b348015610316575f5ffd5b5061031f610870565b005b34801561032c575f5ffd5b50610335610883565b60405161034291906116d3565b60405180910390f35b348015610356575f5ffd5b5061035f610889565b60405161036c91906117f6565b60405180910390f35b348015610380575f5ffd5b506103896108ae565b005b348015610396575f5ffd5b5061039f6108c6565b005b3480156103ac575f5ffd5b506103c760048036038101906103c2919061180f565b6108c8565b005b3480156103d4575f5ffd5b506103dd6108da565b6040516103ea9190611849565b60405180910390f35b3480156103fe575f5ffd5b50610407610902565b60405161041491906115a2565b60405180910390f35b348015610428575f5ffd5b50610443600480360381019061043e9190611653565b610992565b60405161045091906116ab565b60405180910390f35b348015610464575f5ffd5b5061046d610a44565b60405161047a9190611849565b60405180910390f35b34801561048e575f5ffd5b50610497610a69565b005b3480156104a4575f5ffd5b506104ad610d09565b6040516104ba91906116d3565b60405180910390f35b3480156104ce575f5ffd5b506104e960048036038101906104e49190611862565b610d0f565b6040516104f691906116d3565b60405180910390f35b34801561050a575f5ffd5b5061052560048036038101906105209190611770565b610d91565b005b606060038054610536906118cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610562906118cd565b80156105ad5780601f10610584576101008083540402835291602001916105ad565b820191905f5260205f20905b81548152906001019060200180831161059057829003601f168201915b5050505050905090565b5f5f6105c1610e15565b90506105ce818585610e1c565b600191505092915050565b6105e1610e2e565b5f600c819055505f600d81905550565b5f600254905090565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107455760095f9054906101000a900460ff1661069d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069490611947565b60405180910390fd5b600960019054906101000a900460ff168061070557506001151560085f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b610744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073b906119af565b60405180910390fd5b5b610750848484610eb5565b90509392505050565b610761610e15565b73ffffffffffffffffffffffffffffffffffffffff16600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e690611a3d565b60405180910390fd5b5f600960016101000a81548160ff021916908315150217905550565b5f6012905090565b60095f9054906101000a900460ff1681565b600c5481565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610878610e2e565b6108815f610ee3565b565b600e5481565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108b6610e2e565b5f600c819055505f600d81905550565b565b6108d0610e2e565b80600e8190555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610911906118cd565b80601f016020809104026020016040519081016040528092919081815260200182805461093d906118cd565b80156109885780601f1061095f57610100808354040283529160200191610988565b820191905f5260205f20905b81548152906001019060200180831161096b57829003601f168201915b5050505050905090565b5f60095f9054906101000a900460ff16806109f3575060085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990611947565b60405180910390fd5b610a3c8383610fa6565b905092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a71610e15565b73ffffffffffffffffffffffffffffffffffffffff16600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690611a3d565b60405180910390fd5b600160095f6101000a81548160ff0219169083151502179055506001600960016101000a81548160ff02191690831515021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b9e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc29190611a6f565b73ffffffffffffffffffffffffffffffffffffffff1663e6a439053060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c48573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c6c9190611a6f565b6040518363ffffffff1660e01b8152600401610c89929190611a9a565b602060405180830381865afa158015610ca4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cc89190611a6f565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d99610e2e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e09575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e009190611849565b60405180910390fd5b610e1281610ee3565b50565b5f33905090565b610e298383836001610fc8565b505050565b610e36610e15565b73ffffffffffffffffffffffffffffffffffffffff16610e546108da565b73ffffffffffffffffffffffffffffffffffffffff1614610eb357610e77610e15565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610eaa9190611849565b60405180910390fd5b565b5f5f610ebf610e15565b9050610ecc858285611197565b610ed7858585611229565b60019150509392505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f5f610fb0610e15565b9050610fbd818585611229565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611038575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161102f9190611849565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110a8575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161109f9190611849565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611191578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161118891906116d3565b60405180910390a35b50505050565b5f6111a28484610d0f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112235781811015611214578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161120b93929190611ac1565b60405180910390fd5b61122284848484035f610fc8565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611299575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112909190611849565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611309575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016113009190611849565b60405180910390fd5b611314838383611319565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611369578060025f82825461135d9190611b23565b92505081905550611437565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113f2578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113e993929190611ac1565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147e578060025f82825403925050819055506114c8565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161152591906116d3565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61157482611532565b61157e818561153c565b935061158e81856020860161154c565b6115978161155a565b840191505092915050565b5f6020820190508181035f8301526115ba818461156a565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115ef826115c6565b9050919050565b6115ff816115e5565b8114611609575f5ffd5b50565b5f8135905061161a816115f6565b92915050565b5f819050919050565b61163281611620565b811461163c575f5ffd5b50565b5f8135905061164d81611629565b92915050565b5f5f60408385031215611669576116686115c2565b5b5f6116768582860161160c565b92505060206116878582860161163f565b9150509250929050565b5f8115159050919050565b6116a581611691565b82525050565b5f6020820190506116be5f83018461169c565b92915050565b6116cd81611620565b82525050565b5f6020820190506116e65f8301846116c4565b92915050565b5f5f5f60608486031215611703576117026115c2565b5b5f6117108682870161160c565b93505060206117218682870161160c565b92505060406117328682870161163f565b9150509250925092565b5f60ff82169050919050565b6117518161173c565b82525050565b5f60208201905061176a5f830184611748565b92915050565b5f60208284031215611785576117846115c2565b5b5f6117928482850161160c565b91505092915050565b5f819050919050565b5f6117be6117b96117b4846115c6565b61179b565b6115c6565b9050919050565b5f6117cf826117a4565b9050919050565b5f6117e0826117c5565b9050919050565b6117f0816117d6565b82525050565b5f6020820190506118095f8301846117e7565b92915050565b5f60208284031215611824576118236115c2565b5b5f6118318482850161163f565b91505092915050565b611843816115e5565b82525050565b5f60208201905061185c5f83018461183a565b92915050565b5f5f60408385031215611878576118776115c2565b5b5f6118858582860161160c565b92505060206118968582860161160c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118e457607f821691505b6020821081036118f7576118f66118a0565b5b50919050565b7f54726164696e67206973206e6f7420656e61626c6564000000000000000000005f82015250565b5f61193160168361153c565b915061193c826118fd565b602082019050919050565b5f6020820190508181035f83015261195e81611925565b9050919050565b7f5377617070696e67206973206e6f7420656e61626c65640000000000000000005f82015250565b5f61199960178361153c565b91506119a482611965565b602082019050919050565b5f6020820190508181035f8301526119c68161198d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f74207468652074617820615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611a2760268361153c565b9150611a32826119cd565b604082019050919050565b5f6020820190508181035f830152611a5481611a1b565b9050919050565b5f81519050611a69816115f6565b92915050565b5f60208284031215611a8457611a836115c2565b5b5f611a9184828501611a5b565b91505092915050565b5f604082019050611aad5f83018561183a565b611aba602083018461183a565b9392505050565b5f606082019050611ad45f83018661183a565b611ae160208301856116c4565b611aee60408301846116c4565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611b2d82611620565b9150611b3883611620565b9250828201905080821115611b5057611b4f611af6565b5b9291505056fea26469706673582212206b855949bccae03dd7a04340889288c0331e96315a0f6f9bdff51bb703048a4064736f6c634300081c0033
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.