false
true
0

Contract Address Details

0x7329702b34B8405591aC6BEDB69eAd82cf4b2661

Contract Name
IcariaSmartTrader
Creator
0xfb1f21–082e52 at 0x921c0f–33c172
Balance
85.756299017938417166 PLS ( )
Tokens
Fetching tokens...
Transactions
1 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
25881037
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
IcariaSmartTrader




Optimization enabled
true
Compiler version
v0.8.28+commit.7893614a




Optimization runs
20
EVM Version
paris




Verified at
2025-07-01T01:14:21.511468Z

contracts/icaria/IcariaSmartTrader.sol

//
//
//
//       ██╗ ██████╗ █████╗ ██████╗ ██╗ █████╗     ███████╗ ██████╗ ██████╗  ██████╗ ███████╗
//       ██║██╔════╝██╔══██╗██╔══██╗██║██╔══██╗    ██╔════╝██╔═══██╗██╔══██╗██╔════╝ ██╔════╝
//       ██║██║     ███████║██████╔╝██║███████║    █████╗  ██║   ██║██████╔╝██║  ███╗█████╗  
//       ██║██║     ██╔══██║██╔══██╗██║██╔══██║    ██╔══╝  ██║   ██║██╔══██╗██║   ██║██╔══╝  
//       ██║╚██████╗██║  ██║██║  ██║██║██║  ██║    ██║     ╚██████╔╝██║  ██║╚██████╔╝███████╗
//       ╚═╝ ╚═════╝╚═╝  ╚═╝╚═╝  ╚═╝╚═╝╚═╝  ╚═╝    ╚═╝      ╚═════╝ ╚═╝  ╚═╝ ╚═════╝ ╚══════╝
//                                                                                 
//     
//                                                                             
// Forge
// Web: https://forge.icaria.pro
// Tg:  https://t.me/icariaforge 
// 
// Icaria
// Web: https://icaria.pro
// Tg:  https://t.me/icarusprc20
// X:   https://x.com/IcarusPRC20     
//

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import {IERC20} from "../ERC20.sol";
import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

contract IcariaSmartTrader is Ownable {

  constructor() Ownable(msg.sender) {}

  function swapExactTokensForTokensSupportingFeeOnTransferTokens(
    address _router,
    address _receiver,
    uint256 amountIn,
    address[] memory path
  ) public  {
    IERC20(path[0]).transferFrom(msg.sender, address(this), amountIn);
    IERC20(path[0]).approve(_router, amountIn);
    
    IUniswapV2Router02(_router).swapExactTokensForTokensSupportingFeeOnTransferTokens(
      amountIn, 
      0, 
      path, 
      address(this), 
      block.timestamp
    );
    
    uint256 receivedAmount = IERC20(path[path.length - 1]).balanceOf(address(this));
    IERC20(path[path.length - 1]).transfer(_receiver, receivedAmount);
  }

  function swapExactTokensForETHSupportingFeeOnTransferTokens(
    address _router,
    address _receiver,
    uint256 amountIn,
    address[] calldata path
  ) public  {
    IERC20(path[0]).transferFrom(msg.sender, address(this), amountIn);
    IERC20(path[0]).approve(_router, amountIn);
    
    IUniswapV2Router02(_router).swapExactTokensForETHSupportingFeeOnTransferTokens(
      amountIn, 
      0, 
      path, 
      address(this), 
      block.timestamp
    );
    
    payable(_receiver).transfer(address(this).balance);
  }

  function buyToken(address _router, address _receiver, uint256 amountIn, address[] memory path) public {
    IERC20(path[0]).transferFrom(msg.sender, address(this), amountIn);
    IERC20(path[0]).approve(_router, amountIn);
    IUniswapV2Router02(_router).swapExactTokensForTokensSupportingFeeOnTransferTokens(
      amountIn, 
      0, 
      path, 
      _receiver, 
      block.timestamp
    );
  }
  
  function addLiquidity(
    address _router,
    address _tokenA,
    address _tokenB,
    uint256 _amountTokenA,
    uint256 _amountTokenB,
    address _to
  ) public {
    IERC20(_tokenA).transferFrom(msg.sender, address(this), _amountTokenA);
    IERC20(_tokenB).transferFrom(msg.sender, address(this), _amountTokenB);
    
    IERC20(_tokenA).approve(_router, _amountTokenA);
    IERC20(_tokenB).approve(_router, _amountTokenB);
    
    IUniswapV2Router02(_router).addLiquidity(
      _tokenA,
      _tokenB,
      _amountTokenA,
      _amountTokenB,
      0,
      0,
      _to,
      block.timestamp
    );
  }

  function withdrawPLS() external onlyOwner {
    uint256 balance = address(this).balance;
    require(balance > 0, "No PLS to withdraw");
    payable(owner()).transfer(balance);
  }

  function withdrawToken(address tokenAddress) external onlyOwner {
    IERC20 token = IERC20(tokenAddress);
    uint256 balance = token.balanceOf(address(this));
    require(balance > 0, "No tokens to withdraw");
    token.transfer(owner(), balance);
  }
  
  receive() external payable {}
}
        

@uniswap/v2-core/contracts/interfaces/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;
}
          

@uniswap/v2-periphery/contracts/interfaces/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);
}
          

@openzeppelin/contracts/access/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);
    }
}
          

@openzeppelin/contracts/interfaces/draft-IERC6093.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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);
}
          

@openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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);
}
          

@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.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 ERC-20 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);
}
          

@openzeppelin/contracts/utils/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;
    }
}
          

@uniswap/v2-periphery/contracts/interfaces/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;
}
          

contracts/ERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import {Context} from "@openzeppelin/contracts/utils/Context.sol";
import {IERC20Errors} from "@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 ERC-20
 * applications.
 */
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}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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:
     *
     * ```solidity
     * 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);
            }
        }
    }
}
          

Compiler Settings

{"viaIR":true,"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}},"optimizer":{"runs":20,"enabled":true},"libraries":{},"evmVersion":"paris"}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"error","name":"OwnableInvalidOwner","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"error","name":"OwnableUnauthorizedAccount","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addLiquidity","inputs":[{"type":"address","name":"_router","internalType":"address"},{"type":"address","name":"_tokenA","internalType":"address"},{"type":"address","name":"_tokenB","internalType":"address"},{"type":"uint256","name":"_amountTokenA","internalType":"uint256"},{"type":"uint256","name":"_amountTokenB","internalType":"uint256"},{"type":"address","name":"_to","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"buyToken","inputs":[{"type":"address","name":"_router","internalType":"address"},{"type":"address","name":"_receiver","internalType":"address"},{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"swapExactTokensForETHSupportingFeeOnTransferTokens","inputs":[{"type":"address","name":"_router","internalType":"address"},{"type":"address","name":"_receiver","internalType":"address"},{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"swapExactTokensForTokensSupportingFeeOnTransferTokens","inputs":[{"type":"address","name":"_router","internalType":"address"},{"type":"address","name":"_receiver","internalType":"address"},{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawPLS","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawToken","inputs":[{"type":"address","name":"tokenAddress","internalType":"address"}]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

0x608080604052346075573315605f5760008054336001600160a01b0319821681178355916001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a3610de2908161007b8239f35b631e4fbdf760e01b600052600060045260246000fd5b600080fdfe608080604052600436101561001d575b50361561001b57600080fd5b005b600090813560e01c90816318483ce814610918575080635a9ac706146107da578063715018a6146107805780637e1843791461053f578063863f15cd1461031657806389476069146101bb5780638da5cb5b14610194578063c4a8fa2b146101115763f2fde38b0361000f573461010e57602036600319011261010e576100a2610b44565b6100aa610d83565b6001600160a01b031680156100fa5781546001600160a01b03198116821783556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b631e4fbdf760e01b82526004829052602482fd5b80fd5b503461010e578060031936011261010e5761012a610d83565b47801561015a57815482918291829182916001600160a01b031682f11561014e5780f35b604051903d90823e3d90fd5b60405162461bcd60e51b81526020600482015260126024820152714e6f20504c5320746f20776974686472617760701b6044820152606490fd5b503461010e578060031936011261010e57546040516001600160a01b039091168152602090f35b503461010e57602036600319011261010e576101d5610b44565b6101dd610d83565b6040516370a0823160e01b8152306004820152906001600160a01b0316602082602481845afa91821561030b5783926102d2575b50811561029557825460405163a9059cbb60e01b8152926020928492909183918791839161024c91906001600160a01b031660048401610cc6565b03925af1801561028a5761025e575080f35b61027f9060203d602011610283575b6102778183610b84565b810190610c8c565b5080f35b503d61026d565b6040513d84823e3d90fd5b60405162461bcd60e51b81526020600482015260156024820152744e6f20746f6b656e7320746f20776974686472617760581b6044820152606490fd5b9091506020813d602011610303575b816102ee60209383610b84565b810103126102fe57519038610211565b600080fd5b3d91506102e1565b6040513d85823e3d90fd5b503461010e5760c036600319011261010e57610330610b44565b610338610b5a565b6044356001600160a01b0381169081900361053b5760643592608435908560a4359460018060a01b038616809603610537576040516323b872dd60e01b81526001600160a01b03919091169290602081806103988b303360048501610ca4565b038186885af1801561030b5761051a575b506040516323b872dd60e01b8152602081806103ca88303360048501610ca4565b0381868a5af1801561030b576104fd575b5060405163095ea7b360e01b8152602081806103fb8b8660048401610cc6565b038186885af1801561030b576104e0575b5060405163095ea7b360e01b8152956020878061042d888660048401610cc6565b0381868a5af194851561030b57606097610104966104c3575b50604051988997889662e8e33760e81b885260048801526024870152604486015260648501528260848501528260a485015260c48401524260e484015260018060a01b03165af1801561028a5761049b575080f35b606090813d83116104bc575b6104b18183610b84565b8101031261010e5780f35b503d6104a7565b6104db9060203d602011610283576102778183610b84565b610446565b6104f89060203d602011610283576102778183610b84565b61040c565b6105159060203d602011610283576102778183610b84565b6103db565b6105329060203d602011610283576102778183610b84565b6103a9565b5080fd5b8380fd5b503461010e5761054e36610bbb565b93926001600160a01b0361056186610ce1565b5116602060405180926323b872dd60e01b825281888161058689303360048501610ca4565b03925af1801561075857610763575b506001600160a01b036105a786610ce1565b51166020604051809263095ea7b360e01b82528188816105cb898960048401610cc6565b03925af180156107585761073b575b506001600160a01b031690813b1561053b5761061484928392604051948580948193635c11d79560e01b835242908c309160048601610d18565b03925af1801561030b57908391610726575b505082516000198101939084116107125760206024939461064e60018060a01b039184610d04565b5116604051948580926370a0823160e01b82523060048301525afa9283156107075784936106d3575b50805160001981019081116106bf579161024c939161069f60209460018060a01b0392610d04565b5116908560405180968195829463a9059cbb60e01b845260048401610cc6565b634e487b7160e01b85526011600452602485fd5b9092506020813d6020116106ff575b816106ef60209383610b84565b810103126102fe57519138610677565b3d91506106e2565b6040513d86823e3d90fd5b634e487b7160e01b83526011600452602483fd5b8161073091610b84565b610537578138610626565b6107539060203d602011610283576102778183610b84565b6105da565b6040513d87823e3d90fd5b61077b9060203d602011610283576102778183610b84565b610595565b503461010e578060031936011261010e57610799610d83565b80546001600160a01b03198116825581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b503461010e57806107ea36610bbb565b91926001600160a01b036107fd84610ce1565b5116602060405180926323b872dd60e01b825281898161082289303360048501610ca4565b03925af180156108f0576108fb575b506001600160a01b0361084384610ce1565b51166020604051809263095ea7b360e01b8252818981610867898960048401610cc6565b03925af180156108f0576108d3575b506001600160a01b0316803b156108cf576108ad9385809460405196879586948593635c11d79560e01b8552429260048601610d18565b03925af1801561028a576108be5750f35b816108c891610b84565b61010e5780f35b8480fd5b6108eb9060203d602011610283576102778183610b84565b610876565b6040513d88823e3d90fd5b6109139060203d602011610283576102778183610b84565b610831565b823461010e57608036600319011261010e57610932610b44565b61093a610b5a565b9260443591606435906001600160401b0382116108cf57366023830112156108cf578160040135926001600160401b038411610b40576024830192602436918660051b010111610b40578315610b2c576020816001600160a01b0361099e86610c78565b6323b872dd60e01b8352168189816109bb8b303360048501610ca4565b03925af180156108f057610b0f575b506001600160a01b036109dc83610c78565b166020604051809263095ea7b360e01b82528189816109ff8b8960048401610cc6565b03925af180156108f057610af2575b506001600160a01b031691823b156108cf5792909184928460405195869463791ac94760e01b865260a4860190600487015286602487015260a060448701525260c484019190855b818110610abd575050508383809230606483015242608483015203925af1801561028a57610aad575b508080808094479082908215610aa3575b6001600160a01b031690f11561014e5780f35b6108fc9150610a90565b81610ab791610b84565b82610a7f565b939550909350919060019060209081906001600160a01b03610ade88610b70565b168152019401910190869492869492610a56565b610b0a9060203d602011610283576102778183610b84565b610a0e565b610b279060203d602011610283576102778183610b84565b6109ca565b634e487b7160e01b86526032600452602486fd5b8580fd5b600435906001600160a01b03821682036102fe57565b602435906001600160a01b03821682036102fe57565b35906001600160a01b03821682036102fe57565b90601f801991011681019081106001600160401b03821117610ba557604052565b634e487b7160e01b600052604160045260246000fd5b9060806003198301126102fe576004356001600160a01b03811681036102fe57916024356001600160a01b03811681036102fe579160443591606435906001600160401b0382116102fe57806023830112156102fe578160040135916001600160401b038311610ba5578260051b9060405193610c3b6020840186610b84565b8452602460208501928201019283116102fe57602401905b828210610c605750505090565b60208091610c6d84610b70565b815201910190610c53565b356001600160a01b03811681036102fe5790565b908160209103126102fe575180151581036102fe5790565b6001600160a01b03918216815291166020820152604081019190915260600190565b6001600160a01b039091168152602081019190915260400190565b805115610cee5760200190565b634e487b7160e01b600052603260045260246000fd5b8051821015610cee5760209160051b010190565b91909493929460a083019083526000602084015260a060408401528151809152602060c0840192019060005b818110610d64575050506001600160a01b03909416606082015260800152565b82516001600160a01b0316845260209384019390920191600101610d44565b6000546001600160a01b03163303610d9757565b63118cdaa760e01b6000523360045260246000fdfea2646970667358221220280bd4a690d17964cfc0c74cff978c9c5b2eb806c63b7ed2460a5c7e88399ed564736f6c634300081c0033

Deployed ByteCode

0x608080604052600436101561001d575b50361561001b57600080fd5b005b600090813560e01c90816318483ce814610918575080635a9ac706146107da578063715018a6146107805780637e1843791461053f578063863f15cd1461031657806389476069146101bb5780638da5cb5b14610194578063c4a8fa2b146101115763f2fde38b0361000f573461010e57602036600319011261010e576100a2610b44565b6100aa610d83565b6001600160a01b031680156100fa5781546001600160a01b03198116821783556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b631e4fbdf760e01b82526004829052602482fd5b80fd5b503461010e578060031936011261010e5761012a610d83565b47801561015a57815482918291829182916001600160a01b031682f11561014e5780f35b604051903d90823e3d90fd5b60405162461bcd60e51b81526020600482015260126024820152714e6f20504c5320746f20776974686472617760701b6044820152606490fd5b503461010e578060031936011261010e57546040516001600160a01b039091168152602090f35b503461010e57602036600319011261010e576101d5610b44565b6101dd610d83565b6040516370a0823160e01b8152306004820152906001600160a01b0316602082602481845afa91821561030b5783926102d2575b50811561029557825460405163a9059cbb60e01b8152926020928492909183918791839161024c91906001600160a01b031660048401610cc6565b03925af1801561028a5761025e575080f35b61027f9060203d602011610283575b6102778183610b84565b810190610c8c565b5080f35b503d61026d565b6040513d84823e3d90fd5b60405162461bcd60e51b81526020600482015260156024820152744e6f20746f6b656e7320746f20776974686472617760581b6044820152606490fd5b9091506020813d602011610303575b816102ee60209383610b84565b810103126102fe57519038610211565b600080fd5b3d91506102e1565b6040513d85823e3d90fd5b503461010e5760c036600319011261010e57610330610b44565b610338610b5a565b6044356001600160a01b0381169081900361053b5760643592608435908560a4359460018060a01b038616809603610537576040516323b872dd60e01b81526001600160a01b03919091169290602081806103988b303360048501610ca4565b038186885af1801561030b5761051a575b506040516323b872dd60e01b8152602081806103ca88303360048501610ca4565b0381868a5af1801561030b576104fd575b5060405163095ea7b360e01b8152602081806103fb8b8660048401610cc6565b038186885af1801561030b576104e0575b5060405163095ea7b360e01b8152956020878061042d888660048401610cc6565b0381868a5af194851561030b57606097610104966104c3575b50604051988997889662e8e33760e81b885260048801526024870152604486015260648501528260848501528260a485015260c48401524260e484015260018060a01b03165af1801561028a5761049b575080f35b606090813d83116104bc575b6104b18183610b84565b8101031261010e5780f35b503d6104a7565b6104db9060203d602011610283576102778183610b84565b610446565b6104f89060203d602011610283576102778183610b84565b61040c565b6105159060203d602011610283576102778183610b84565b6103db565b6105329060203d602011610283576102778183610b84565b6103a9565b5080fd5b8380fd5b503461010e5761054e36610bbb565b93926001600160a01b0361056186610ce1565b5116602060405180926323b872dd60e01b825281888161058689303360048501610ca4565b03925af1801561075857610763575b506001600160a01b036105a786610ce1565b51166020604051809263095ea7b360e01b82528188816105cb898960048401610cc6565b03925af180156107585761073b575b506001600160a01b031690813b1561053b5761061484928392604051948580948193635c11d79560e01b835242908c309160048601610d18565b03925af1801561030b57908391610726575b505082516000198101939084116107125760206024939461064e60018060a01b039184610d04565b5116604051948580926370a0823160e01b82523060048301525afa9283156107075784936106d3575b50805160001981019081116106bf579161024c939161069f60209460018060a01b0392610d04565b5116908560405180968195829463a9059cbb60e01b845260048401610cc6565b634e487b7160e01b85526011600452602485fd5b9092506020813d6020116106ff575b816106ef60209383610b84565b810103126102fe57519138610677565b3d91506106e2565b6040513d86823e3d90fd5b634e487b7160e01b83526011600452602483fd5b8161073091610b84565b610537578138610626565b6107539060203d602011610283576102778183610b84565b6105da565b6040513d87823e3d90fd5b61077b9060203d602011610283576102778183610b84565b610595565b503461010e578060031936011261010e57610799610d83565b80546001600160a01b03198116825581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b503461010e57806107ea36610bbb565b91926001600160a01b036107fd84610ce1565b5116602060405180926323b872dd60e01b825281898161082289303360048501610ca4565b03925af180156108f0576108fb575b506001600160a01b0361084384610ce1565b51166020604051809263095ea7b360e01b8252818981610867898960048401610cc6565b03925af180156108f0576108d3575b506001600160a01b0316803b156108cf576108ad9385809460405196879586948593635c11d79560e01b8552429260048601610d18565b03925af1801561028a576108be5750f35b816108c891610b84565b61010e5780f35b8480fd5b6108eb9060203d602011610283576102778183610b84565b610876565b6040513d88823e3d90fd5b6109139060203d602011610283576102778183610b84565b610831565b823461010e57608036600319011261010e57610932610b44565b61093a610b5a565b9260443591606435906001600160401b0382116108cf57366023830112156108cf578160040135926001600160401b038411610b40576024830192602436918660051b010111610b40578315610b2c576020816001600160a01b0361099e86610c78565b6323b872dd60e01b8352168189816109bb8b303360048501610ca4565b03925af180156108f057610b0f575b506001600160a01b036109dc83610c78565b166020604051809263095ea7b360e01b82528189816109ff8b8960048401610cc6565b03925af180156108f057610af2575b506001600160a01b031691823b156108cf5792909184928460405195869463791ac94760e01b865260a4860190600487015286602487015260a060448701525260c484019190855b818110610abd575050508383809230606483015242608483015203925af1801561028a57610aad575b508080808094479082908215610aa3575b6001600160a01b031690f11561014e5780f35b6108fc9150610a90565b81610ab791610b84565b82610a7f565b939550909350919060019060209081906001600160a01b03610ade88610b70565b168152019401910190869492869492610a56565b610b0a9060203d602011610283576102778183610b84565b610a0e565b610b279060203d602011610283576102778183610b84565b6109ca565b634e487b7160e01b86526032600452602486fd5b8580fd5b600435906001600160a01b03821682036102fe57565b602435906001600160a01b03821682036102fe57565b35906001600160a01b03821682036102fe57565b90601f801991011681019081106001600160401b03821117610ba557604052565b634e487b7160e01b600052604160045260246000fd5b9060806003198301126102fe576004356001600160a01b03811681036102fe57916024356001600160a01b03811681036102fe579160443591606435906001600160401b0382116102fe57806023830112156102fe578160040135916001600160401b038311610ba5578260051b9060405193610c3b6020840186610b84565b8452602460208501928201019283116102fe57602401905b828210610c605750505090565b60208091610c6d84610b70565b815201910190610c53565b356001600160a01b03811681036102fe5790565b908160209103126102fe575180151581036102fe5790565b6001600160a01b03918216815291166020820152604081019190915260600190565b6001600160a01b039091168152602081019190915260400190565b805115610cee5760200190565b634e487b7160e01b600052603260045260246000fd5b8051821015610cee5760209160051b010190565b91909493929460a083019083526000602084015260a060408401528151809152602060c0840192019060005b818110610d64575050506001600160a01b03909416606082015260800152565b82516001600160a01b0316845260209384019390920191600101610d44565b6000546001600160a01b03163303610d9757565b63118cdaa760e01b6000523360045260246000fdfea2646970667358221220280bd4a690d17964cfc0c74cff978c9c5b2eb806c63b7ed2460a5c7e88399ed564736f6c634300081c0033