ETH Price: $3,408.95 (-0.20%)
Gas: 7 Gwei

Token

SAFESCAN AI ($SAFEAI)
 

Overview

Max Total Supply

10,000,000,000 $SAFEAI

Holders

48

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
31,848,973.913427220971072167 $SAFEAI

Value
$0.00
0x000000fee13a103a10d593b9ae06b3e05f2e7e1c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SAFESCANAI

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 11 : Ownable.sol
// 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);
    }
}

File 2 of 11 : draft-IERC6093.sol
// 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);
}

File 3 of 11 : IERC20Metadata.sol
// 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);
}

File 4 of 11 : IERC20.sol
// 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);
}

File 5 of 11 : Context.sol
// 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;
    }
}

File 6 of 11 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant NOT_ENTERED = 1;
    uint256 private constant ENTERED = 2;

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // Any calls to nonReentrant after this point will fail
        _status = ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

File 7 of 11 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 8 of 11 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 9 of 11 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 10 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
/**
 * @dev This is a custom modification of the OpenZeppelin ERC20 implementation
 * Last updated v5.0.0 (token/ERC20/ERC20.sol)
 *
 * This contract has been customized to allow changing transfer logic,
 * enabling developers to implement custom token mechanics such as fees, slashing,
 * or other types of behavior during token transfers.
 */

pragma solidity ^0.8.24;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/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 virtual {
        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);
            }
        }
    }
}

File 11 of 11 : SAFESCANAI.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

/*
 *
 *    SAFESCAN AI ($SAFEAI)
 *
 *    https://safescan.digital
 *    https://t.me/safescanaieth
 *    https://twitter.com/safescanaieth
 */

import "./ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

/**
 * @title SAFESCAN AI's Contract
 * @dev Implements ERC20 functionality with Buy and Sell taxes.
 */
contract SAFESCANAI is ERC20, Ownable, ReentrancyGuard {
    // Uniswap Router and Pair addresses for liquidity and handling tax.
    mapping(address => bool) public isPairAddress;
    IUniswapV2Router02 public uniswapRouter;

    // Uniswap V2 Router address on Eth Chain
    address private constant UNISWAP_V2_ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    // Token distribution
    uint256 private constant TOTAL_SUPPLY = 10000000000 * 10 ** 18; // 10 billion tokens
    uint256 private constant DEV_SUPPLY = 300000000 * 10 ** 18; // 3% of total supply for development
    uint256 private constant MARKETING_SUPPLY = 400000000 * 10 ** 18; // 4% of total supply for marketing
    uint256 private constant AIRDROP_SUPPLY = 100000000 * 10 ** 18; // 1% of total supply for airdrop

    // Wallet addresses
    address private DEV_WALLET = 0x0C3d4B430edc4Dacc3F0B92CBf01F558f57Baa1b;
    address private MARKETING_WALLET = 0x40Bc22Cbe509fe880fA15eBf366bEd0072AC71b2;
    address private AIRDROP_WALLET = 0x455adD2B5455a682DdCB2263E0c884532178eF24;

    // Fee rate (4% sell tax, 0% buy tax)
    uint256 private constant TAX_RATE = 4;

    // Events
    event NewPairCreated(address indexed poolAddress);
    event TaxApplied(address indexed sender, uint256 amount, uint256 taxAmount);

    /**
     * @dev Sets the values for {name} and {symbol} for the token.
     * Mint total supply and transfer allocations.
     */
    constructor() ERC20("SAFESCAN AI", "$SAFEAI") Ownable(msg.sender) {
        // Mint total supply and transfer allocations
        _mint(msg.sender, TOTAL_SUPPLY);
        // Transfer allocations to respective wallets
        _transfer(msg.sender, DEV_WALLET, DEV_SUPPLY);
        _transfer(msg.sender, MARKETING_WALLET, MARKETING_SUPPLY);
        _transfer(msg.sender, AIRDROP_WALLET, AIRDROP_SUPPLY);
    }

    /**
     * @dev Creates a pair on Uniswap V2 Router.
     */
    function startTrading() public onlyOwner {
        uniswapRouter = IUniswapV2Router02(UNISWAP_V2_ROUTER);
        address pair = IUniswapV2Factory(uniswapRouter.factory()).getPair(address(this), uniswapRouter.WETH());
        // Create a pair if it doesn't exist
        if (pair == address(0)) {
            pair = IUniswapV2Factory(uniswapRouter.factory()).createPair(address(this), uniswapRouter.WETH());
            isPairAddress[pair] = true;
            emit NewPairCreated(pair);
        }
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        if (shouldApplyTax(sender, recipient)) {
            uint256 sellTaxAmount = applyTax(sender, amount);
            amount -= sellTaxAmount;
            emit TaxApplied(sender, amount, sellTaxAmount);
        }

        super._transfer(sender, recipient, amount);
    }

    function shouldApplyTax(address sender, address recipient) private view returns (bool) {
        return sender != owner() && recipient != owner() && sender != MARKETING_WALLET && recipient != MARKETING_WALLET && sender != address(this) && recipient != address(this) && isPairAddress[recipient];
    }

    function applyTax(address sender, uint256 amount) private returns (uint256) {
        // Calculate tax amount and transfer to contract
        uint256 totalTaxAmount = (amount * TAX_RATE) / 100;
        _transfer(sender, address(this), totalTaxAmount);

        // Swap tokens for ETH and calculate tax amount in ETH
        uint256 contractBalanceBefore = address(this).balance;
        swapTokensForETH(totalTaxAmount);
        uint256 contractBalanceAfter = address(this).balance;
        uint256 taxAmountEth = contractBalanceAfter - contractBalanceBefore;

        // Transfer tax amounts to marketing wallet
        payable(MARKETING_WALLET).transfer(taxAmountEth);

        return totalTaxAmount;
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();

        _approve(address(this), UNISWAP_V2_ROUTER, tokenAmount); // Approve tokens for swap

        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);
    }
    function withdrawFunds(uint256 amount) external onlyOwner nonReentrant {
        require(amount <= address(this).balance, "SAFESCAN AI: Insufficient balance to withdraw");
        (bool sent, ) = owner().call{value: amount}("");
        require(sent, "Failed to withdraw Ether");
    }
    receive() external payable {}
    fallback() external payable {}
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"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"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","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":"poolAddress","type":"address"}],"name":"NewPairCreated","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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"TaxApplied","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"},{"stateMutability":"payable","type":"fallback"},{"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPairAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052730c3d4b430edc4dacc3f0b92cbf01f558f57baa1b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507340bc22cbe509fe880fa15ebf366bed0072ac71b2600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073455add2b5455a682ddcb2263e0c884532178ef24600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200011057600080fd5b50336040518060400160405280600b81526020017f534146455343414e2041490000000000000000000000000000000000000000008152506040518060400160405280600781526020017f245341464541490000000000000000000000000000000000000000000000000081525081600390816200018f91906200121b565b508060049081620001a191906200121b565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620002195760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000210919062001347565b60405180910390fd5b6200022a816200031860201b60201c565b50600160068190555062000251336b204fce5e3e25026110000000620003de60201b60201c565b6200029133600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166af8277896582678ac0000006200046b60201b60201c565b620002d233600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166b014adf4b7320334b900000006200046b60201b60201c565b6200031233600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a52b7d2dcc80cd2e40000006200046b60201b60201c565b6200175f565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004535760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200044a919062001347565b60405180910390fd5b62000467600083836200051560201b60201c565b5050565b6200047d83836200074560201b60201c565b15620004fd5760006200049784836200095460201b60201c565b90508082620004a7919062001393565b91508373ffffffffffffffffffffffffffffffffffffffff167f6521fe60e634fe7e5eb62a3ee8c7e62c56756768e0ec2a9c74a2caae9c63a6f58383604051620004f3929190620013df565b60405180910390a2505b6200051083838362000a2d60201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200056b5780600260008282546200055e91906200140c565b9250508190555062000641565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620005fa578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620005f19392919062001447565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200068c5780600260008282540392505081905550620006d9565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000738919062001484565b60405180910390a3505050565b60006200075762000b2f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620007ce57506200079e62000b2f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620008295750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015620008845750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620008bd57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015620008f657503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200094c5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905092915050565b6000806064600484620009689190620014a1565b6200097491906200151b565b9050620009898430836200046b60201b60201c565b60004790506200099f8262000b5960201b60201c565b600047905060008282620009b4919062001393565b9050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801562000a1f573d6000803e3d6000fd5b508394505050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000aa25760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040162000a99919062001347565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b175760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000b0e919062001347565b60405180910390fd5b62000b2a8383836200051560201b60201c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600267ffffffffffffffff81111562000b795762000b7862000fac565b5b60405190808252806020026020018201604052801562000ba85781602001602082028036833780820191505090505b509050308160008151811062000bc35762000bc262001553565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000c6b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c919190620015b8565b8160018151811062000ca85762000ca762001553565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505062000d0930737a250d5630b4cf539739df2c5dacb4c659f2488d8462000da760201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040162000d6f959493929190620016fb565b600060405180830381600087803b15801562000d8a57600080fd5b505af115801562000d9f573d6000803e3d6000fd5b505050505050565b62000dbc838383600162000dc160201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000e365760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000e2d919062001347565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000eab5760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000ea2919062001347565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000f9b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000f92919062001484565b60405180910390a35b50505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200102357607f821691505b60208210810362001039576200103862000fdb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620010a37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001064565b620010af868362001064565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620010fc620010f6620010f084620010c7565b620010d1565b620010c7565b9050919050565b6000819050919050565b6200111883620010db565b62001130620011278262001103565b84845462001071565b825550505050565b600090565b6200114762001138565b620011548184846200110d565b505050565b5b818110156200117c57620011706000826200113d565b6001810190506200115a565b5050565b601f821115620011cb5762001195816200103f565b620011a08462001054565b81016020851015620011b0578190505b620011c8620011bf8562001054565b83018262001159565b50505b505050565b600082821c905092915050565b6000620011f060001984600802620011d0565b1980831691505092915050565b60006200120b8383620011dd565b9150826002028217905092915050565b620012268262000fa1565b67ffffffffffffffff81111562001242576200124162000fac565b5b6200124e82546200100a565b6200125b82828562001180565b600060209050601f8311600181146200129357600084156200127e578287015190505b6200128a8582620011fd565b865550620012fa565b601f198416620012a3866200103f565b60005b82811015620012cd57848901518255600182019150602085019450602081019050620012a6565b86831015620012ed5784890151620012e9601f891682620011dd565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200132f8262001302565b9050919050565b620013418162001322565b82525050565b60006020820190506200135e600083018462001336565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620013a082620010c7565b9150620013ad83620010c7565b9250828203905081811115620013c857620013c762001364565b5b92915050565b620013d981620010c7565b82525050565b6000604082019050620013f66000830185620013ce565b620014056020830184620013ce565b9392505050565b60006200141982620010c7565b91506200142683620010c7565b925082820190508082111562001441576200144062001364565b5b92915050565b60006060820190506200145e600083018662001336565b6200146d6020830185620013ce565b6200147c6040830184620013ce565b949350505050565b60006020820190506200149b6000830184620013ce565b92915050565b6000620014ae82620010c7565b9150620014bb83620010c7565b9250828202620014cb81620010c7565b91508282048414831517620014e557620014e462001364565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200152882620010c7565b91506200153583620010c7565b925082620015485762001547620014ec565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b620015928162001322565b81146200159e57600080fd5b50565b600081519050620015b28162001587565b92915050565b600060208284031215620015d157620015d062001582565b5b6000620015e184828501620015a1565b91505092915050565b6000819050919050565b6000620016156200160f6200160984620015ea565b620010d1565b620010c7565b9050919050565b6200162781620015f4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b620016648162001322565b82525050565b600062001678838362001659565b60208301905092915050565b6000602082019050919050565b60006200169e826200162d565b620016aa818562001638565b9350620016b78362001649565b8060005b83811015620016ee578151620016d288826200166a565b9750620016df8362001684565b925050600181019050620016bb565b5085935050505092915050565b600060a082019050620017126000830188620013ce565b6200172160208301876200161c565b818103604083015262001735818662001691565b905062001746606083018562001336565b620017556080830184620013ce565b9695505050505050565b6122f1806200176f6000396000f3fe6080604052600436106100f75760003560e01c8063715018a61161008a578063a9059cbb11610059578063a9059cbb14610310578063dd62ed3e1461034d578063f2fde38b1461038a578063f5573875146103b3576100fe565b8063715018a614610278578063735de9f71461028f5780638da5cb5b146102ba57806395d89b41146102e5576100fe565b806323b872dd116100c657806323b872dd146101bc578063293230b8146101f9578063313ce5671461021057806370a082311461023b576100fe565b806306fdde0314610100578063095ea7b31461012b578063155dd5ee1461016857806318160ddd14610191576100fe565b366100fe57005b005b34801561010c57600080fd5b506101156103f0565b6040516101229190611a3f565b60405180910390f35b34801561013757600080fd5b50610152600480360381019061014d9190611afa565b610482565b60405161015f9190611b55565b60405180910390f35b34801561017457600080fd5b5061018f600480360381019061018a9190611b70565b6104a5565b005b34801561019d57600080fd5b506101a66105b7565b6040516101b39190611bac565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611bc7565b6105c1565b6040516101f09190611b55565b60405180910390f35b34801561020557600080fd5b5061020e6105f0565b005b34801561021c57600080fd5b50610225610a60565b6040516102329190611c36565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190611c51565b610a69565b60405161026f9190611bac565b60405180910390f35b34801561028457600080fd5b5061028d610ab1565b005b34801561029b57600080fd5b506102a4610ac5565b6040516102b19190611cdd565b60405180910390f35b3480156102c657600080fd5b506102cf610aeb565b6040516102dc9190611d07565b60405180910390f35b3480156102f157600080fd5b506102fa610b15565b6040516103079190611a3f565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190611afa565b610ba7565b6040516103449190611b55565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f9190611d22565b610bca565b6040516103819190611bac565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190611c51565b610c51565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190611c51565b610cd7565b6040516103e79190611b55565b60405180910390f35b6060600380546103ff90611d91565b80601f016020809104026020016040519081016040528092919081815260200182805461042b90611d91565b80156104785780601f1061044d57610100808354040283529160200191610478565b820191906000526020600020905b81548152906001019060200180831161045b57829003601f168201915b5050505050905090565b60008061048d610cf7565b905061049a818585610cff565b600191505092915050565b6104ad610d11565b6104b5610d98565b478111156104f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ef90611e34565b60405180910390fd5b6000610502610aeb565b73ffffffffffffffffffffffffffffffffffffffff168260405161052590611e85565b60006040518083038185875af1925050503d8060008114610562576040519150601f19603f3d011682016040523d82523d6000602084013e610567565b606091505b50509050806105ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a290611ee6565b60405180910390fd5b506105b4610dde565b50565b6000600254905090565b6000806105cc610cf7565b90506105d9858285610de8565b6105e4858585610e7c565b60019150509392505050565b6105f8610d11565b737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e09190611f1b565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610769573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078d9190611f1b565b6040518363ffffffff1660e01b81526004016107aa929190611f48565b602060405180830381865afa1580156107c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107eb9190611f1b565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a5d57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561088e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b29190611f1b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561093b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095f9190611f1b565b6040518363ffffffff1660e01b815260040161097c929190611f48565b6020604051808303816000875af115801561099b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bf9190611f1b565b90506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fc4e9a735992048af640b5fe47b27e3bfdf6c2832bca917bf1a390e92ebe4191760405160405180910390a25b50565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ab9610d11565b610ac36000610f09565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b2490611d91565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5090611d91565b8015610b9d5780601f10610b7257610100808354040283529160200191610b9d565b820191906000526020600020905b815481529060010190602001808311610b8057829003601f168201915b5050505050905090565b600080610bb2610cf7565b9050610bbf818585610e7c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c59610d11565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ccb5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610cc29190611d07565b60405180910390fd5b610cd481610f09565b50565b60076020528060005260406000206000915054906101000a900460ff1681565b600033905090565b610d0c8383836001610fcf565b505050565b610d19610cf7565b73ffffffffffffffffffffffffffffffffffffffff16610d37610aeb565b73ffffffffffffffffffffffffffffffffffffffff1614610d9657610d5a610cf7565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d8d9190611d07565b60405180910390fd5b565b600260065403610dd4576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600681905550565b6001600681905550565b6000610df48484610bca565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e765781811015610e66578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e5d93929190611f71565b60405180910390fd5b610e7584848484036000610fcf565b5b50505050565b610e8683836111a6565b15610ef9576000610e97848361139f565b90508082610ea59190611fd7565b91508373ffffffffffffffffffffffffffffffffffffffff167f6521fe60e634fe7e5eb62a3ee8c7e62c56756768e0ec2a9c74a2caae9c63a6f58383604051610eef92919061200b565b60405180910390a2505b610f04838383611461565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036110415760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016110389190611d07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110b35760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016110aa9190611d07565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156111a0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111979190611bac565b60405180910390a35b50505050565b60006111b0610aeb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561121e57506111ee610aeb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156112785750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156112d25750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561130a57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561134257503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156113975750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905092915050565b60008060646004846113b19190612034565b6113bb91906120a5565b90506113c8843083610e7c565b60004790506113d682611555565b6000479050600082826113e99190611fd7565b9050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611453573d6000803e3d6000fd5b508394505050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114d35760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016114ca9190611d07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115455760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161153c9190611d07565b60405180910390fd5b61155083838361178a565b505050565b6000600267ffffffffffffffff811115611572576115716120d6565b5b6040519080825280602002602001820160405280156115a05781602001602082028036833780820191505090505b50905030816000815181106115b8576115b7612105565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561165f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116839190611f1b565b8160018151811061169757611696612105565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506116f030737a250d5630b4cf539739df2c5dacb4c659f2488d84610cff565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161175495949392919061222d565b600060405180830381600087803b15801561176e57600080fd5b505af1158015611782573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117dc5780600260008282546117d09190612287565b925050819055506118af565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611868578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161185f93929190611f71565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f85780600260008282540392505081905550611945565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119a29190611bac565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119e95780820151818401526020810190506119ce565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a11826119af565b611a1b81856119ba565b9350611a2b8185602086016119cb565b611a34816119f5565b840191505092915050565b60006020820190508181036000830152611a598184611a06565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a9182611a66565b9050919050565b611aa181611a86565b8114611aac57600080fd5b50565b600081359050611abe81611a98565b92915050565b6000819050919050565b611ad781611ac4565b8114611ae257600080fd5b50565b600081359050611af481611ace565b92915050565b60008060408385031215611b1157611b10611a61565b5b6000611b1f85828601611aaf565b9250506020611b3085828601611ae5565b9150509250929050565b60008115159050919050565b611b4f81611b3a565b82525050565b6000602082019050611b6a6000830184611b46565b92915050565b600060208284031215611b8657611b85611a61565b5b6000611b9484828501611ae5565b91505092915050565b611ba681611ac4565b82525050565b6000602082019050611bc16000830184611b9d565b92915050565b600080600060608486031215611be057611bdf611a61565b5b6000611bee86828701611aaf565b9350506020611bff86828701611aaf565b9250506040611c1086828701611ae5565b9150509250925092565b600060ff82169050919050565b611c3081611c1a565b82525050565b6000602082019050611c4b6000830184611c27565b92915050565b600060208284031215611c6757611c66611a61565b5b6000611c7584828501611aaf565b91505092915050565b6000819050919050565b6000611ca3611c9e611c9984611a66565b611c7e565b611a66565b9050919050565b6000611cb582611c88565b9050919050565b6000611cc782611caa565b9050919050565b611cd781611cbc565b82525050565b6000602082019050611cf26000830184611cce565b92915050565b611d0181611a86565b82525050565b6000602082019050611d1c6000830184611cf8565b92915050565b60008060408385031215611d3957611d38611a61565b5b6000611d4785828601611aaf565b9250506020611d5885828601611aaf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611da957607f821691505b602082108103611dbc57611dbb611d62565b5b50919050565b7f534146455343414e2041493a20496e73756666696369656e742062616c616e6360008201527f6520746f20776974686472617700000000000000000000000000000000000000602082015250565b6000611e1e602d836119ba565b9150611e2982611dc2565b604082019050919050565b60006020820190508181036000830152611e4d81611e11565b9050919050565b600081905092915050565b50565b6000611e6f600083611e54565b9150611e7a82611e5f565b600082019050919050565b6000611e9082611e62565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b6000611ed06018836119ba565b9150611edb82611e9a565b602082019050919050565b60006020820190508181036000830152611eff81611ec3565b9050919050565b600081519050611f1581611a98565b92915050565b600060208284031215611f3157611f30611a61565b5b6000611f3f84828501611f06565b91505092915050565b6000604082019050611f5d6000830185611cf8565b611f6a6020830184611cf8565b9392505050565b6000606082019050611f866000830186611cf8565b611f936020830185611b9d565b611fa06040830184611b9d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611fe282611ac4565b9150611fed83611ac4565b925082820390508181111561200557612004611fa8565b5b92915050565b60006040820190506120206000830185611b9d565b61202d6020830184611b9d565b9392505050565b600061203f82611ac4565b915061204a83611ac4565b925082820261205881611ac4565b9150828204841483151761206f5761206e611fa8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006120b082611ac4565b91506120bb83611ac4565b9250826120cb576120ca612076565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061215961215461214f84612134565b611c7e565b611ac4565b9050919050565b6121698161213e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6121a481611a86565b82525050565b60006121b6838361219b565b60208301905092915050565b6000602082019050919050565b60006121da8261216f565b6121e4818561217a565b93506121ef8361218b565b8060005b8381101561222057815161220788826121aa565b9750612212836121c2565b9250506001810190506121f3565b5085935050505092915050565b600060a0820190506122426000830188611b9d565b61224f6020830187612160565b818103604083015261226181866121cf565b90506122706060830185611cf8565b61227d6080830184611b9d565b9695505050505050565b600061229282611ac4565b915061229d83611ac4565b92508282019050808211156122b5576122b4611fa8565b5b9291505056fea2646970667358221220e3f9327d5d8132c6238882b832278b0e6c847b10c05769702f2a8c503b7b8acf64736f6c63430008180033

Deployed Bytecode

0x6080604052600436106100f75760003560e01c8063715018a61161008a578063a9059cbb11610059578063a9059cbb14610310578063dd62ed3e1461034d578063f2fde38b1461038a578063f5573875146103b3576100fe565b8063715018a614610278578063735de9f71461028f5780638da5cb5b146102ba57806395d89b41146102e5576100fe565b806323b872dd116100c657806323b872dd146101bc578063293230b8146101f9578063313ce5671461021057806370a082311461023b576100fe565b806306fdde0314610100578063095ea7b31461012b578063155dd5ee1461016857806318160ddd14610191576100fe565b366100fe57005b005b34801561010c57600080fd5b506101156103f0565b6040516101229190611a3f565b60405180910390f35b34801561013757600080fd5b50610152600480360381019061014d9190611afa565b610482565b60405161015f9190611b55565b60405180910390f35b34801561017457600080fd5b5061018f600480360381019061018a9190611b70565b6104a5565b005b34801561019d57600080fd5b506101a66105b7565b6040516101b39190611bac565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611bc7565b6105c1565b6040516101f09190611b55565b60405180910390f35b34801561020557600080fd5b5061020e6105f0565b005b34801561021c57600080fd5b50610225610a60565b6040516102329190611c36565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190611c51565b610a69565b60405161026f9190611bac565b60405180910390f35b34801561028457600080fd5b5061028d610ab1565b005b34801561029b57600080fd5b506102a4610ac5565b6040516102b19190611cdd565b60405180910390f35b3480156102c657600080fd5b506102cf610aeb565b6040516102dc9190611d07565b60405180910390f35b3480156102f157600080fd5b506102fa610b15565b6040516103079190611a3f565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190611afa565b610ba7565b6040516103449190611b55565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f9190611d22565b610bca565b6040516103819190611bac565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190611c51565b610c51565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190611c51565b610cd7565b6040516103e79190611b55565b60405180910390f35b6060600380546103ff90611d91565b80601f016020809104026020016040519081016040528092919081815260200182805461042b90611d91565b80156104785780601f1061044d57610100808354040283529160200191610478565b820191906000526020600020905b81548152906001019060200180831161045b57829003601f168201915b5050505050905090565b60008061048d610cf7565b905061049a818585610cff565b600191505092915050565b6104ad610d11565b6104b5610d98565b478111156104f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ef90611e34565b60405180910390fd5b6000610502610aeb565b73ffffffffffffffffffffffffffffffffffffffff168260405161052590611e85565b60006040518083038185875af1925050503d8060008114610562576040519150601f19603f3d011682016040523d82523d6000602084013e610567565b606091505b50509050806105ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a290611ee6565b60405180910390fd5b506105b4610dde565b50565b6000600254905090565b6000806105cc610cf7565b90506105d9858285610de8565b6105e4858585610e7c565b60019150509392505050565b6105f8610d11565b737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e09190611f1b565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610769573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078d9190611f1b565b6040518363ffffffff1660e01b81526004016107aa929190611f48565b602060405180830381865afa1580156107c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107eb9190611f1b565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a5d57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561088e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b29190611f1b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561093b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095f9190611f1b565b6040518363ffffffff1660e01b815260040161097c929190611f48565b6020604051808303816000875af115801561099b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bf9190611f1b565b90506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fc4e9a735992048af640b5fe47b27e3bfdf6c2832bca917bf1a390e92ebe4191760405160405180910390a25b50565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ab9610d11565b610ac36000610f09565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b2490611d91565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5090611d91565b8015610b9d5780601f10610b7257610100808354040283529160200191610b9d565b820191906000526020600020905b815481529060010190602001808311610b8057829003601f168201915b5050505050905090565b600080610bb2610cf7565b9050610bbf818585610e7c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c59610d11565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ccb5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610cc29190611d07565b60405180910390fd5b610cd481610f09565b50565b60076020528060005260406000206000915054906101000a900460ff1681565b600033905090565b610d0c8383836001610fcf565b505050565b610d19610cf7565b73ffffffffffffffffffffffffffffffffffffffff16610d37610aeb565b73ffffffffffffffffffffffffffffffffffffffff1614610d9657610d5a610cf7565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d8d9190611d07565b60405180910390fd5b565b600260065403610dd4576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600681905550565b6001600681905550565b6000610df48484610bca565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e765781811015610e66578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e5d93929190611f71565b60405180910390fd5b610e7584848484036000610fcf565b5b50505050565b610e8683836111a6565b15610ef9576000610e97848361139f565b90508082610ea59190611fd7565b91508373ffffffffffffffffffffffffffffffffffffffff167f6521fe60e634fe7e5eb62a3ee8c7e62c56756768e0ec2a9c74a2caae9c63a6f58383604051610eef92919061200b565b60405180910390a2505b610f04838383611461565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036110415760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016110389190611d07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110b35760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016110aa9190611d07565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156111a0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111979190611bac565b60405180910390a35b50505050565b60006111b0610aeb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561121e57506111ee610aeb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156112785750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156112d25750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561130a57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561134257503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156113975750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905092915050565b60008060646004846113b19190612034565b6113bb91906120a5565b90506113c8843083610e7c565b60004790506113d682611555565b6000479050600082826113e99190611fd7565b9050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611453573d6000803e3d6000fd5b508394505050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114d35760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016114ca9190611d07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115455760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161153c9190611d07565b60405180910390fd5b61155083838361178a565b505050565b6000600267ffffffffffffffff811115611572576115716120d6565b5b6040519080825280602002602001820160405280156115a05781602001602082028036833780820191505090505b50905030816000815181106115b8576115b7612105565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561165f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116839190611f1b565b8160018151811061169757611696612105565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506116f030737a250d5630b4cf539739df2c5dacb4c659f2488d84610cff565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161175495949392919061222d565b600060405180830381600087803b15801561176e57600080fd5b505af1158015611782573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117dc5780600260008282546117d09190612287565b925050819055506118af565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611868578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161185f93929190611f71565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f85780600260008282540392505081905550611945565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119a29190611bac565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119e95780820151818401526020810190506119ce565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a11826119af565b611a1b81856119ba565b9350611a2b8185602086016119cb565b611a34816119f5565b840191505092915050565b60006020820190508181036000830152611a598184611a06565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a9182611a66565b9050919050565b611aa181611a86565b8114611aac57600080fd5b50565b600081359050611abe81611a98565b92915050565b6000819050919050565b611ad781611ac4565b8114611ae257600080fd5b50565b600081359050611af481611ace565b92915050565b60008060408385031215611b1157611b10611a61565b5b6000611b1f85828601611aaf565b9250506020611b3085828601611ae5565b9150509250929050565b60008115159050919050565b611b4f81611b3a565b82525050565b6000602082019050611b6a6000830184611b46565b92915050565b600060208284031215611b8657611b85611a61565b5b6000611b9484828501611ae5565b91505092915050565b611ba681611ac4565b82525050565b6000602082019050611bc16000830184611b9d565b92915050565b600080600060608486031215611be057611bdf611a61565b5b6000611bee86828701611aaf565b9350506020611bff86828701611aaf565b9250506040611c1086828701611ae5565b9150509250925092565b600060ff82169050919050565b611c3081611c1a565b82525050565b6000602082019050611c4b6000830184611c27565b92915050565b600060208284031215611c6757611c66611a61565b5b6000611c7584828501611aaf565b91505092915050565b6000819050919050565b6000611ca3611c9e611c9984611a66565b611c7e565b611a66565b9050919050565b6000611cb582611c88565b9050919050565b6000611cc782611caa565b9050919050565b611cd781611cbc565b82525050565b6000602082019050611cf26000830184611cce565b92915050565b611d0181611a86565b82525050565b6000602082019050611d1c6000830184611cf8565b92915050565b60008060408385031215611d3957611d38611a61565b5b6000611d4785828601611aaf565b9250506020611d5885828601611aaf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611da957607f821691505b602082108103611dbc57611dbb611d62565b5b50919050565b7f534146455343414e2041493a20496e73756666696369656e742062616c616e6360008201527f6520746f20776974686472617700000000000000000000000000000000000000602082015250565b6000611e1e602d836119ba565b9150611e2982611dc2565b604082019050919050565b60006020820190508181036000830152611e4d81611e11565b9050919050565b600081905092915050565b50565b6000611e6f600083611e54565b9150611e7a82611e5f565b600082019050919050565b6000611e9082611e62565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b6000611ed06018836119ba565b9150611edb82611e9a565b602082019050919050565b60006020820190508181036000830152611eff81611ec3565b9050919050565b600081519050611f1581611a98565b92915050565b600060208284031215611f3157611f30611a61565b5b6000611f3f84828501611f06565b91505092915050565b6000604082019050611f5d6000830185611cf8565b611f6a6020830184611cf8565b9392505050565b6000606082019050611f866000830186611cf8565b611f936020830185611b9d565b611fa06040830184611b9d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611fe282611ac4565b9150611fed83611ac4565b925082820390508181111561200557612004611fa8565b5b92915050565b60006040820190506120206000830185611b9d565b61202d6020830184611b9d565b9392505050565b600061203f82611ac4565b915061204a83611ac4565b925082820261205881611ac4565b9150828204841483151761206f5761206e611fa8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006120b082611ac4565b91506120bb83611ac4565b9250826120cb576120ca612076565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061215961215461214f84612134565b611c7e565b611ac4565b9050919050565b6121698161213e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6121a481611a86565b82525050565b60006121b6838361219b565b60208301905092915050565b6000602082019050919050565b60006121da8261216f565b6121e4818561217a565b93506121ef8361218b565b8060005b8381101561222057815161220788826121aa565b9750612212836121c2565b9250506001810190506121f3565b5085935050505092915050565b600060a0820190506122426000830188611b9d565b61224f6020830187612160565b818103604083015261226181866121cf565b90506122706060830185611cf8565b61227d6080830184611b9d565b9695505050505050565b600061229282611ac4565b915061229d83611ac4565b92508282019050808211156122b5576122b4611fa8565b5b9291505056fea2646970667358221220e3f9327d5d8132c6238882b832278b0e6c847b10c05769702f2a8c503b7b8acf64736f6c63430008180033

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.