ETH Price: $3,385.73 (-1.78%)
Gas: 1 Gwei

Token

Do Not Buy This Token (DONOTBUY)
 

Overview

Max Total Supply

100,000,000 DONOTBUY

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
99,480,199.999999685 DONOTBUY

Value
$0.00
0xacfB878960bcda38782d854eFB2E687b57E31f09
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:
ProofNonReflectionTokenCutter

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 2 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 3 of 10 : IFACTORY.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

interface IFACTORY {
    function proofRevenueAddress() external view returns (address);

    function proofRewardPoolAddress() external view returns (address);
}

File 4 of 10 : IProofNonReflectionTokenCutter.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "../libraries/ProofNonReflectionTokenFees.sol";

interface IProofNonReflectionTokenCutter is IERC20, IERC20Metadata {
    struct BaseData {
        string tokenName;
        string tokenSymbol;
        uint256 initialSupply;
        uint256 percentToLP;
        address owner;
        address dev;
        address main;
        address routerAddress;
        address initialProofAdmin;
        uint256 antiSnipeDuration;
    }

    function setBasicData(
        BaseData memory _baseData,
        ProofNonReflectionTokenFees.allFees memory fees
    ) external;

    function changeIsTxLimitExempt(
        address holder,
        bool exempt
    ) external;
}

File 5 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

File 6 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);
}

File 7 of 10 : Context.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 8 of 10 : Ownable.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

import "./Context.sol";

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 9 of 10 : ProofNonReflectionTokenFees.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

library ProofNonReflectionTokenFees {
    struct allFees {
        uint256 mainFee;
        uint256 mainFeeOnSell;
        uint256 lpFee;
        uint256 lpFeeOnSell;
        uint256 devFee;
        uint256 devFeeOnSell;
    }
}

File 10 of 10 : ProofNonReflectionTokenCutter.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

import "../libraries/Ownable.sol";
import "../libraries/Context.sol";
import "../libraries/ProofNonReflectionTokenFees.sol";
import "../interfaces/IFACTORY.sol";
import "../interfaces/IUniswapV2Router02.sol";
import "../interfaces/IUniswapV2Factory.sol";
import "../interfaces/IProofNonReflectionTokenCutter.sol";

contract ProofNonReflectionTokenCutter is Context, IProofNonReflectionTokenCutter {
    //This token was created with PROOF, and audited by Solidity Finance — https://proofplatform.io/projects
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address constant ZERO = 0x0000000000000000000000000000000000000000;
    address public proofAdmin;

    bool public restrictWhales = true;

    mapping(address => bool) public isFeeExempt;
    mapping(address => bool) public isTxLimitExempt;
    mapping(address => bool) public isDividendExempt;

    uint256 public launchedAt;
    uint256 public proofFee = 2;

    uint256 public mainFee;
    uint256 public lpFee;
    uint256 public devFee;

    uint256 public mainFeeOnSell;
    uint256 public lpFeeOnSell;
    uint256 public devFeeOnSell;

    uint256 public totalFee;
    uint256 public totalFeeIfSelling;

    IUniswapV2Router02 public router;
    address public pair;
    address public factory;
    address public tokenOwner;
    address payable public devWallet;
    address payable public mainWallet;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    bool public tradingStatus = true;

    mapping(address => bool) public bots;

    uint256 public antiSnipeDuration;
    uint256 public antiSnipeEndTime;

    uint256 public _maxTxAmount;
    uint256 public _walletMax;
    uint256 public swapThreshold;

    constructor() {
        factory = msg.sender;
    }

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    modifier onlyProofAdmin() {
        require(proofAdmin == _msgSender(), "Caller is not the proofAdmin");
        _;
    }

    modifier onlyOwner() {
        require(tokenOwner == _msgSender(), "Caller is not the owner");
        _;
    }

    modifier onlyFactory() {
        require(factory == _msgSender(), "Caller is not the factory");
        _;
    }

    function setBasicData(
        BaseData memory _baseData,
        ProofNonReflectionTokenFees.allFees memory fees
    ) external onlyFactory {
        _name = _baseData.tokenName;
        _symbol = _baseData.tokenSymbol;
        _totalSupply = _baseData.initialSupply;

        //Tx & Wallet Limits
        require(_baseData.percentToLP >= 70, "Too low");
        _maxTxAmount = (_baseData.initialSupply * 5) / 1000;
        _walletMax = (_baseData.initialSupply * 1) / 100;
        swapThreshold = (_baseData.initialSupply * 5) / 4000;

        router = IUniswapV2Router02(_baseData.routerAddress);
        pair = IUniswapV2Factory(router.factory()).createPair(
            router.WETH(),
            address(this)
        );

        _allowances[address(this)][address(router)] = type(uint256).max;

        isFeeExempt[address(this)] = true;
        isFeeExempt[factory] = true;
        isFeeExempt[_baseData.owner] = true;

        isTxLimitExempt[_baseData.owner] = true;
        isTxLimitExempt[pair] = true;
        isTxLimitExempt[factory] = true;
        isTxLimitExempt[DEAD] = true;
        isTxLimitExempt[ZERO] = true;

        //Fees
        lpFee = fees.lpFee;
        lpFeeOnSell = fees.lpFeeOnSell;
        devFee = fees.devFee;
        devFeeOnSell = fees.devFeeOnSell;
        mainFee = fees.mainFee;
        mainFeeOnSell = fees.mainFeeOnSell;

        totalFee = devFee + lpFee + mainFee + proofFee;
        totalFeeIfSelling =
            devFeeOnSell +
            lpFeeOnSell +
            mainFeeOnSell +
            proofFee;

        require(totalFee <= 12, "Too high");
        require(totalFeeIfSelling <= 17, "Too high");

        tokenOwner = _baseData.owner;
        devWallet = payable(_baseData.dev);
        mainWallet = payable(_baseData.main);
        proofAdmin = _baseData.initialProofAdmin;

        //Initial supply
        uint256 forLP = (_baseData.initialSupply * _baseData.percentToLP) / 100; //95%
        uint256 forOwner = _baseData.initialSupply - forLP; //5%

        _balances[msg.sender] += forLP;
        _balances[_baseData.owner] += forOwner;

        antiSnipeDuration = _baseData.antiSnipeDuration;

        emit Transfer(address(0), msg.sender, forLP);
        emit Transfer(address(0), _baseData.owner, forOwner);
    }

    //proofAdmin functions

    function updateProofAdmin(
        address newAdmin
    ) external virtual onlyProofAdmin {
        proofAdmin = newAdmin;
    }

    //Factory functions
    function swapTradingStatus() external onlyFactory {
        tradingStatus = !tradingStatus;
    }

    function setLaunchedAt() external onlyFactory {
        require(launchedAt == 0, "launched");
        launchedAt = block.timestamp;
        antiSnipeEndTime = block.timestamp + antiSnipeDuration;
    }

    function cancelToken() external onlyFactory {
        isFeeExempt[address(router)] = true;
        isTxLimitExempt[address(router)] = true;
        isTxLimitExempt[tokenOwner] = true;
        tradingStatus = true;
        restrictWhales = false;
        swapAndLiquifyEnabled = false;
    }

    //Owner functions
    function changeRestrictWhales(bool _enable) external onlyOwner {
        restrictWhales = _enable;
    }

    function changeFees(
        uint256 initialMainFee,
        uint256 initialMainFeeOnSell,
        uint256 initialLpFee,
        uint256 initialLpFeeOnSell,
        uint256 initialDevFee,
        uint256 initialDevFeeOnSell
    ) external onlyOwner {
        mainFee = initialMainFee;
        lpFee = initialLpFee;
        devFee = initialDevFee;

        mainFeeOnSell = initialMainFeeOnSell;
        lpFeeOnSell = initialLpFeeOnSell;
        devFeeOnSell = initialDevFeeOnSell;

        totalFee = devFee + lpFee + proofFee + mainFee;
        totalFeeIfSelling =
            devFeeOnSell +
            lpFeeOnSell +
            proofFee +
            mainFeeOnSell;

        require(totalFee <= 12, "High fee");
        require(totalFeeIfSelling <= 17, "High fee");
    }

    function changeTxLimit(uint256 newLimit) external onlyOwner {
        require(launchedAt != 0, "!launched");
        require(newLimit >= (_totalSupply * 5) / 1000, "Min 0.5%");
        require(newLimit <= (_totalSupply * 3) / 100, "Max 3%");
        _maxTxAmount = newLimit;
    }

    function changeWalletLimit(uint256 newLimit) external onlyOwner {
        require(launchedAt != 0, "!launched");
        require(newLimit >= (_totalSupply * 5) / 1000, "Min 0.5%");
        require(newLimit <= (_totalSupply * 3) / 100, "Max 3%");
        _walletMax = newLimit;
    }

    function changeIsFeeExempt(address holder, bool exempt) external onlyOwner {
        isFeeExempt[holder] = exempt;
    }

    function changeIsTxLimitExempt(
        address holder,
        bool exempt
    ) external onlyOwner {
        isTxLimitExempt[holder] = exempt;
    }

    function reduceProofFee() external onlyOwner {
        require(proofFee == 2, "!already reduced");
        require(launchedAt != 0, "!launched");
        require(block.timestamp >= launchedAt + 72 hours);

        proofFee = 1;
        totalFee = devFee + lpFee + proofFee + mainFee;
        totalFeeIfSelling =
            devFeeOnSell +
            lpFeeOnSell +
            proofFee +
            mainFeeOnSell;
    }

    function adjustProofFee(uint256 _proofFee) external onlyProofAdmin {
        require(launchedAt != 0, "!launched");
        if (block.timestamp >= launchedAt + 72 hours) {
            require(_proofFee <= 1);
            proofFee = _proofFee;
            totalFee = devFee + lpFee + proofFee + mainFee;
            totalFeeIfSelling =
                devFeeOnSell +
                lpFeeOnSell +
                proofFee +
                mainFeeOnSell;
        } else {
            require(_proofFee <= 2);
            proofFee = _proofFee;
            totalFee = devFee + lpFee + proofFee + mainFee;
            totalFeeIfSelling =
                devFeeOnSell +
                lpFeeOnSell +
                proofFee +
                mainFeeOnSell;
        }
    }

    function setDevWallet(address payable newDevWallet) external onlyOwner {
        devWallet = payable(newDevWallet);
    }

    function setMainWallet(address payable newMainWallet) external onlyOwner {
        mainWallet = newMainWallet;
    }

    function setOwnerWallet(address payable newOwnerWallet) external onlyOwner {
        tokenOwner = newOwnerWallet;
    }

    function changeSwapBackSettings(
        bool enableSwapBack,
        uint256 newSwapBackLimit
    ) external onlyOwner {
        swapAndLiquifyEnabled = enableSwapBack;
        swapThreshold = newSwapBackLimit;
    }

    function delBot(address notbot) external {
        address sender = _msgSender();
        require(
            sender == proofAdmin || sender == tokenOwner,
            "Caller doesn't have permission"
        );
        bots[notbot] = false;
    }

    function getCirculatingSupply() external view returns (uint256) {
        return _totalSupply - balanceOf(DEAD) - balanceOf(ZERO);
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() external view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() external view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * 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() external view virtual override returns (uint8) {
        return 9;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() external view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address to,
        uint256 amount
    ) external virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(
        address owner,
        address spender
    ) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) external virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     *
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) external virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) external virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(
            currentAllowance >= subtractedValue,
            "Decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal returns (bool) {
        require(tradingStatus, "Closed");
        require(!bots[sender] && !bots[recipient]);
        if (antiSnipeEndTime != 0 && block.timestamp < antiSnipeEndTime) {
            bots[tx.origin] = true;
            if (recipient != tx.origin) {
                revert('antisnipe');
            }
        }
        if (inSwapAndLiquify) {
            return _basicTransfer(sender, recipient, amount);
        }

        if (recipient == pair && restrictWhales) {
            require(
                amount <= _maxTxAmount ||
                    (isTxLimitExempt[sender] && isTxLimitExempt[recipient]),
                "Max TX"
            );
        }

        if (!isTxLimitExempt[recipient] && restrictWhales) {
            require(_balances[recipient] + amount <= _walletMax, "Max Wallet");
        }

        if (
            sender != pair &&
            !inSwapAndLiquify &&
            swapAndLiquifyEnabled &&
            _balances[address(this)] >= swapThreshold
        ) {
            swapBack();
        }

        _balances[sender] = _balances[sender] - amount;
        uint256 finalAmount = amount;

        if (sender == pair || recipient == pair) {
            finalAmount = !isFeeExempt[sender] && !isFeeExempt[recipient]
                ? takeFee(sender, recipient, amount)
                : amount;
        }

        _balances[recipient] = _balances[recipient] + finalAmount;

        emit Transfer(sender, recipient, finalAmount);
        return true;
    }

    function _basicTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal returns (bool) {
        _balances[sender] = _balances[sender] - amount;
        _balances[recipient] = _balances[recipient] + amount;
        emit Transfer(sender, recipient, amount);
        return true;
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "Approve from the zero address");
        require(spender != address(0), "Approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "Insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function takeFee(
        address sender,
        address recipient,
        uint256 amount
    ) internal returns (uint256) {
        uint256 feeApplicable = pair == recipient
            ? totalFeeIfSelling
            : totalFee;
        uint256 feeAmount = (amount * feeApplicable) / 100;

        _balances[address(this)] = _balances[address(this)] + feeAmount;
        emit Transfer(sender, address(this), feeAmount);

        return amount - feeAmount;
    }

    function swapBack() internal lockTheSwap {
        uint256 tokensToLiquify = _balances[address(this)];

        uint256 amountToLiquify;
        uint256 devBalance;
        uint256 proofBalance;
        uint256 amountEthLiquidity;

        // Use sell ratios if buy tax too low
        if (totalFee <= 2) {
            amountToLiquify =
                (tokensToLiquify * lpFeeOnSell) /
                totalFeeIfSelling /
                2;
        } else {
            amountToLiquify = (tokensToLiquify * lpFee) / totalFee / 2;
        }

        uint256 amountToSwap = tokensToLiquify - amountToLiquify;
        if (amountToSwap == 0) return;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amountToSwap,
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 amountETH = address(this).balance;

        // Use sell ratios if buy tax too low
        if (totalFee <= 2) {
            amountEthLiquidity =
                (amountETH * lpFeeOnSell) /
                totalFeeIfSelling /
                2;
        } else {
            amountEthLiquidity = (amountETH * lpFee) / totalFee / 2;
        }

        if (amountToLiquify > 0) {
            router.addLiquidityETH{value: amountEthLiquidity}(
                address(this),
                amountToLiquify,
                0,
                0,
                0x000000000000000000000000000000000000dEaD,
                block.timestamp
            );
        }

        uint256 amountETHafterLP = address(this).balance;

        // Use sell ratios if buy tax too low
        if (totalFee <= 2) {
            devBalance = (amountETHafterLP * devFeeOnSell) / totalFeeIfSelling;
            proofBalance = (amountETHafterLP * proofFee) / totalFeeIfSelling;
        } else {
            devBalance = (amountETHafterLP * devFee) / totalFee;
            proofBalance = (amountETHafterLP * proofFee) / totalFee;
        }

        uint256 amountEthMain = amountETHafterLP - devBalance - proofBalance;

        if (amountETH > 0) {
            if (proofBalance > 0) {
                uint256 revenueSplit = proofBalance / 2;
                (bool sent, ) = payable(IFACTORY(factory).proofRevenueAddress()).call{value: revenueSplit}("");
                require(sent);
                (bool sent1, ) = payable(IFACTORY(factory).proofRewardPoolAddress()).call{value: revenueSplit}("");
                require(sent1);
            }
            if (devBalance > 0) {
                (bool sent, ) = devWallet.call{value: devBalance}("");
                require(sent);
            }
            if (amountEthMain > 0) {
                (bool sent1, ) = mainWallet.call{value: amountEthMain}("");
                require(sent1);
            }
        }
    }

    receive() external payable {}
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200,
    "details": {
      "yul": true
    }
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_walletMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proofFee","type":"uint256"}],"name":"adjustProofFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiSnipeDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiSnipeEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cancelToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"initialMainFee","type":"uint256"},{"internalType":"uint256","name":"initialMainFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"initialLpFee","type":"uint256"},{"internalType":"uint256","name":"initialLpFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"initialDevFee","type":"uint256"},{"internalType":"uint256","name":"initialDevFeeOnSell","type":"uint256"}],"name":"changeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"changeIsFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"changeIsTxLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"changeRestrictWhales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enableSwapBack","type":"bool"},{"internalType":"uint256","name":"newSwapBackLimit","type":"uint256"}],"name":"changeSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"changeTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"changeWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"notbot","type":"address"}],"name":"delBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFeeOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isDividendExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTxLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpFeeOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainFeeOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reduceProofFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restrictWhales","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint256","name":"percentToLP","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"dev","type":"address"},{"internalType":"address","name":"main","type":"address"},{"internalType":"address","name":"routerAddress","type":"address"},{"internalType":"address","name":"initialProofAdmin","type":"address"},{"internalType":"uint256","name":"antiSnipeDuration","type":"uint256"}],"internalType":"struct IProofNonReflectionTokenCutter.BaseData","name":"_baseData","type":"tuple"},{"components":[{"internalType":"uint256","name":"mainFee","type":"uint256"},{"internalType":"uint256","name":"mainFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"lpFee","type":"uint256"},{"internalType":"uint256","name":"lpFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"devFeeOnSell","type":"uint256"}],"internalType":"struct ProofNonReflectionTokenFees.allFees","name":"fees","type":"tuple"}],"name":"setBasicData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newDevWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLaunchedAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newMainWallet","type":"address"}],"name":"setMainWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newOwnerWallet","type":"address"}],"name":"setOwnerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTradingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeIfSelling","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"updateProofAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526005805460ff60a01b1916600160a01b1790556002600a556018805461010160a81b61ffff60a81b1990911617905534801561003f57600080fd5b50601580546001600160a01b031916331790556131bc806100616000396000f3fe6080604052600436106103905760003560e01c8063807c2d9c116101dc578063bfd7928411610102578063d920334e116100a0578063f16fd78d1161006f578063f16fd78d14610a5e578063f887ea4014610a7e578063fabe628314610a9e578063fbd7575314610abe57600080fd5b8063d920334e146109c3578063dd62ed3e146109e3578063e66b1d1e14610a29578063ef92e22214610a4957600080fd5b8063cb29813c116100dc578063cb29813c1461094c578063cd1e330a1461096c578063d0a5eb4e14610982578063d4fb9a01146109a257600080fd5b8063bfd79284146108e6578063c45a015514610916578063ca987b0e1461093657600080fd5b8063a3e676101161017a578063aa8e79c211610149578063aa8e79c214610884578063b0c8edbd1461089a578063bb542ef0146108b0578063bf56b371146108d057600080fd5b8063a3e6761014610804578063a457c2d714610824578063a8aa1b3114610844578063a9059cbb1461086457600080fd5b80639502c426116101b65780639502c426146107a357806395d89b41146107b9578063985b9db0146107ce578063a3a2e89e146107e457600080fd5b8063807c2d9c1461073d5780638b42507f146107535780638ea5220f1461078357600080fd5b806339509351116102c1578063546a88111161025f57806370a082311161022e57806370a08231146106bb5780637c0ff205146106f15780637d1db4a5146107075780637db1342c1461071d57600080fd5b8063546a88111461065a57806359a51c341461066f5780636827e7641461068f578063704ce43e146106a557600080fd5b80633f4218e01161029b5780633f4218e0146105b85780634355855a146105e857806344de2e4c146106185780634a74bb021461063957600080fd5b806339509351146105585780633c822812146105785780633dab52691461059857600080fd5b806323b62b751161032e578063273123b711610308578063273123b7146104e75780632b112e4914610507578063313ce5671461051c57806338b52cb81461053857600080fd5b806323b62b751461047a57806323b872dd146104b257806327193bc4146104d257600080fd5b80630963da6c1161036a5780630963da6c1461041757806318160ddd1461042d5780631df4ccfc146104425780631f53ac021461045857600080fd5b80630445b6671461039c57806306fdde03146103c5578063095ea7b3146103e757600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103b2601e5481565b6040519081526020015b60405180910390f35b3480156103d157600080fd5b506103da610ad3565b6040516103bc91906129de565b3480156103f357600080fd5b50610407610402366004612a51565b610b65565b60405190151581526020016103bc565b34801561042357600080fd5b506103b2600b5481565b34801561043957600080fd5b506002546103b2565b34801561044e57600080fd5b506103b260115481565b34801561046457600080fd5b50610478610473366004612a7d565b610b7f565b005b34801561048657600080fd5b5060185461049a906001600160a01b031681565b6040516001600160a01b0390911681526020016103bc565b3480156104be57600080fd5b506104076104cd366004612a9a565b610bd4565b3480156104de57600080fd5b50610478610bfb565b3480156104f357600080fd5b50610478610502366004612a7d565b610c77565b34801561051357600080fd5b506103b2610d0d565b34801561052857600080fd5b50604051600981526020016103bc565b34801561054457600080fd5b50610478610553366004612c22565b610d79565b34801561056457600080fd5b50610407610573366004612a51565b611356565b34801561058457600080fd5b50610478610593366004612d41565b611395565b3480156105a457600080fd5b506104786105b3366004612d6a565b6114a6565b3480156105c457600080fd5b506104076105d3366004612a7d565b60066020526000908152604090205460ff1681565b3480156105f457600080fd5b50610407610603366004612a7d565b60086020526000908152604090205460ff1681565b34801561062457600080fd5b5060055461040790600160a01b900460ff1681565b34801561064557600080fd5b5060185461040790600160a81b900460ff1681565b34801561066657600080fd5b506104786114f2565b34801561067b57600080fd5b5060055461049a906001600160a01b031681565b34801561069b57600080fd5b506103b2600d5481565b3480156106b157600080fd5b506103b2600c5481565b3480156106c757600080fd5b506103b26106d6366004612a7d565b6001600160a01b031660009081526020819052604090205490565b3480156106fd57600080fd5b506103b2600f5481565b34801561071357600080fd5b506103b2601c5481565b34801561072957600080fd5b50610478610738366004612d41565b611598565b34801561074957600080fd5b506103b2601d5481565b34801561075f57600080fd5b5061040761076e366004612a7d565b60076020526000908152604090205460ff1681565b34801561078f57600080fd5b5060175461049a906001600160a01b031681565b3480156107af57600080fd5b506103b260105481565b3480156107c557600080fd5b506103da611692565b3480156107da57600080fd5b506103b2600e5481565b3480156107f057600080fd5b506104786107ff366004612d86565b6116a1565b34801561081057600080fd5b5060165461049a906001600160a01b031681565b34801561083057600080fd5b5061040761083f366004612a51565b6116f6565b34801561085057600080fd5b5060145461049a906001600160a01b031681565b34801561087057600080fd5b5061040761087f366004612a51565b611785565b34801561089057600080fd5b506103b2601a5481565b3480156108a657600080fd5b506103b2601b5481565b3480156108bc57600080fd5b506104786108cb366004612a7d565b611793565b3480156108dc57600080fd5b506103b260095481565b3480156108f257600080fd5b50610407610901366004612a7d565b60196020526000908152604090205460ff1681565b34801561092257600080fd5b5060155461049a906001600160a01b031681565b34801561094257600080fd5b506103b260125481565b34801561095857600080fd5b50610478610967366004612db2565b6117df565b34801561097857600080fd5b506103b2600a5481565b34801561098e57600080fd5b5061047861099d366004612a7d565b6118fe565b3480156109ae57600080fd5b5060185461040790600160b01b900460ff1681565b3480156109cf57600080fd5b506104786109de366004612d41565b61194a565b3480156109ef57600080fd5b506103b26109fe366004612df5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a3557600080fd5b50610478610a44366004612e2e565b611a44565b348015610a5557600080fd5b50610478611a8c565b348015610a6a57600080fd5b50610478610a79366004612a7d565b611b9d565b348015610a8a57600080fd5b5060135461049a906001600160a01b031681565b348015610aaa57600080fd5b50610478610ab9366004612d86565b611c19565b348015610aca57600080fd5b50610478611c6e565b606060038054610ae290612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0e90612e49565b8015610b5b5780601f10610b3057610100808354040283529160200191610b5b565b820191906000526020600020905b815481529060010190602001808311610b3e57829003601f168201915b5050505050905090565b600033610b73818585611cb9565b60019150505b92915050565b6016546001600160a01b03163314610bb25760405162461bcd60e51b8152600401610ba990612e83565b60405180910390fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b600033610be2858285611dc6565b610bed858585611e51565b5060019150505b9392505050565b6015546001600160a01b03163314610c255760405162461bcd60e51b8152600401610ba990612eba565b60095415610c605760405162461bcd60e51b81526020600482015260086024820152671b185d5b98da195960c21b6044820152606401610ba9565b426009819055601a54610c7291612f07565b601b55565b60055433906001600160a01b0316811480610c9f57506016546001600160a01b038281169116145b610ceb5760405162461bcd60e51b815260206004820152601e60248201527f43616c6c657220646f65736e27742068617665207065726d697373696f6e00006044820152606401610ba9565b506001600160a01b03166000908152601960205260409020805460ff19169055565b600060208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb55461dead82527f44ad89ba62b98ff34f51403ac22759b55759460c0bb5521eb4b6ee3cff49cf8354600254610d6a9190612f1a565b610d749190612f1a565b905090565b6015546001600160a01b03163314610da35760405162461bcd60e51b8152600401610ba990612eba565b8151600390610db29082612f78565b506020820151600490610dc59082612f78565b506040820151600255606082015160461115610e0d5760405162461bcd60e51b8152602060048201526007602482015266546f6f206c6f7760c81b6044820152606401610ba9565b6103e882604001516005610e219190613038565b610e2b919061304f565b601c556040820151606490610e41906001613038565b610e4b919061304f565b601d556040820151610fa090610e62906005613038565b610e6c919061304f565b601e5560e0820151601380546001600160a01b0319166001600160a01b0390921691821790556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef19190613071565b6001600160a01b031663c9c65396601360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f769190613071565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303816000875af1158015610fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe69190613071565b601480546001600160a01b0319166001600160a01b03928316178155306000818152600160208181526040808420601354881685528252808420600019905593835260068152838320805460ff1990811684179091556015805488168552858520805483168517905560808a810180518a16875287872080548516871790555189168652600784528686208054841686179055965488168552858520805483168517905554909616835283832080548716831790557fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d80548716831790559180527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df805490951617909355830151600c8190556060840151600f5590830151600d81905560a08401516010558351600b81905592840151600e55600a54929161112e91612f07565b6111389190612f07565b6111429190612f07565b601155600a54600e54600f5460105461115b9190612f07565b6111659190612f07565b61116f9190612f07565b601255601154600c10156111b05760405162461bcd60e51b81526020600482015260086024820152670a8dede40d0d2ced60c31b6044820152606401610ba9565b601160125411156111ee5760405162461bcd60e51b81526020600482015260086024820152670a8dede40d0d2ced60c31b6044820152606401610ba9565b6080820151601680546001600160a01b039283166001600160a01b03199182161790915560a08401516017805491841691831691909117905560c08401516018805491841691831691909117905561010084015160058054919093169116179055606082015160408301516000916064916112699190613038565b611273919061304f565b905060008184604001516112879190612f1a565b336000908152602081905260408120805492935084929091906112ab908490612f07565b909155505060808401516001600160a01b0316600090815260208190526040812080548392906112dc908490612f07565b9091555050610120840151601a5560405182815233906000906000805160206131678339815191529060200160405180910390a383608001516001600160a01b031660006001600160a01b03166000805160206131678339815191528360405161134891815260200190565b60405180910390a350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610b739082908690611390908790612f07565b611cb9565b6005546001600160a01b031633146113ef5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f74207468652070726f6f6641646d696e000000006044820152606401610ba9565b6009546000036114115760405162461bcd60e51b8152600401610ba99061308e565b600954611421906203f480612f07565b421061149557600181111561143557600080fd5b600a819055600b54600c54600d54839161144e91612f07565b6114589190612f07565b6114629190612f07565b601155600e54600a54600f5460105461147b9190612f07565b6114859190612f07565b61148f9190612f07565b60125550565b600281111561143557600080fd5b50565b6016546001600160a01b031633146114d05760405162461bcd60e51b8152600401610ba990612e83565b60188054921515600160a81b0260ff60a81b1990931692909217909155601e55565b6015546001600160a01b0316331461151c5760405162461bcd60e51b8152600401610ba990612eba565b601380546001600160a01b039081166000908152600660209081526040808320805460ff1990811660019081179092559554851684526007909252808320805486168317905560165490931682529190208054909216179055601880546005805460ff60a01b1916905561ffff60a81b1916600160b01b179055565b6016546001600160a01b031633146115c25760405162461bcd60e51b8152600401610ba990612e83565b6009546000036115e45760405162461bcd60e51b8152600401610ba99061308e565b6103e860025460056115f69190613038565b611600919061304f565b81101561163a5760405162461bcd60e51b81526020600482015260086024820152674d696e20302e352560c01b6044820152606401610ba9565b6064600254600361164b9190613038565b611655919061304f565b81111561168d5760405162461bcd60e51b81526020600482015260066024820152654d617820332560d01b6044820152606401610ba9565b601d55565b606060048054610ae290612e49565b6016546001600160a01b031633146116cb5760405162461bcd60e51b8152600401610ba990612e83565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561176d5760405162461bcd60e51b815260206004820152601e60248201527f44656372656173656420616c6c6f77616e63652062656c6f77207a65726f00006044820152606401610ba9565b61177a8286868403611cb9565b506001949350505050565b60003361177a818585611e51565b6016546001600160a01b031633146117bd5760405162461bcd60e51b8152600401610ba990612e83565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6016546001600160a01b031633146118095760405162461bcd60e51b8152600401610ba990612e83565b600b869055600c849055600d829055600e859055600f8390556010819055600a5486906118368685612f07565b6118409190612f07565b61184a9190612f07565b601155600e54600a54600f546010546118639190612f07565b61186d9190612f07565b6118779190612f07565b601255601154600c10156118b85760405162461bcd60e51b8152602060048201526008602482015267486967682066656560c01b6044820152606401610ba9565b601160125411156118f65760405162461bcd60e51b8152602060048201526008602482015267486967682066656560c01b6044820152606401610ba9565b505050505050565b6016546001600160a01b031633146119285760405162461bcd60e51b8152600401610ba990612e83565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6016546001600160a01b031633146119745760405162461bcd60e51b8152600401610ba990612e83565b6009546000036119965760405162461bcd60e51b8152600401610ba99061308e565b6103e860025460056119a89190613038565b6119b2919061304f565b8110156119ec5760405162461bcd60e51b81526020600482015260086024820152674d696e20302e352560c01b6044820152606401610ba9565b606460025460036119fd9190613038565b611a07919061304f565b811115611a3f5760405162461bcd60e51b81526020600482015260066024820152654d617820332560d01b6044820152606401610ba9565b601c55565b6016546001600160a01b03163314611a6e5760405162461bcd60e51b8152600401610ba990612e83565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6016546001600160a01b03163314611ab65760405162461bcd60e51b8152600401610ba990612e83565b600a54600214611afb5760405162461bcd60e51b815260206004820152601060248201526f08585b1c9958591e481c99591d58d95960821b6044820152606401610ba9565b600954600003611b1d5760405162461bcd60e51b8152600401610ba99061308e565b600954611b2d906203f480612f07565b421015611b3957600080fd5b6001600a81905550600b54600a54600c54600d54611b579190612f07565b611b619190612f07565b611b6b9190612f07565b601155600e54600a54600f54601054611b849190612f07565b611b8e9190612f07565b611b989190612f07565b601255565b6005546001600160a01b03163314611bf75760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f74207468652070726f6f6641646d696e000000006044820152606401610ba9565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6016546001600160a01b03163314611c435760405162461bcd60e51b8152600401610ba990612e83565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6015546001600160a01b03163314611c985760405162461bcd60e51b8152600401610ba990612eba565b6018805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6001600160a01b038316611d0f5760405162461bcd60e51b815260206004820152601d60248201527f417070726f76652066726f6d20746865207a65726f20616464726573730000006044820152606401610ba9565b6001600160a01b038216611d655760405162461bcd60e51b815260206004820152601b60248201527f417070726f766520746f20746865207a65726f206164647265737300000000006044820152606401610ba9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114611e4b5781811015611e3e5760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e7420616c6c6f77616e636560501b6044820152606401610ba9565b611e4b8484848403611cb9565b50505050565b601854600090600160b01b900460ff16611e965760405162461bcd60e51b815260206004820152600660248201526510db1bdcd95960d21b6044820152606401610ba9565b6001600160a01b03841660009081526019602052604090205460ff16158015611ed857506001600160a01b03831660009081526019602052604090205460ff16155b611ee157600080fd5b601b5415801590611ef35750601b5442105b15611f5557326000818152601960205260409020805460ff191660011790556001600160a01b03841614611f555760405162461bcd60e51b8152602060048201526009602482015268616e7469736e69706560b81b6044820152606401610ba9565b601854600160a01b900460ff1615611f7957611f72848484612256565b9050610bf4565b6014546001600160a01b038481169116148015611f9f5750600554600160a01b900460ff165b1561202557601c5482111580611ff057506001600160a01b03841660009081526007602052604090205460ff168015611ff057506001600160a01b03831660009081526007602052604090205460ff165b6120255760405162461bcd60e51b815260206004820152600660248201526509ac2f040a8b60d31b6044820152606401610ba9565b6001600160a01b03831660009081526007602052604090205460ff161580156120575750600554600160a01b900460ff165b156120be57601d546001600160a01b038416600090815260208190526040902054612083908490612f07565b11156120be5760405162461bcd60e51b815260206004820152600a60248201526913585e0815d85b1b195d60b21b6044820152606401610ba9565b6014546001600160a01b038581169116148015906120e65750601854600160a01b900460ff16155b80156120fb5750601854600160a81b900460ff165b80156121185750601e543060009081526020819052604090205410155b15612125576121256122f6565b6001600160a01b038416600090815260208190526040902054612149908390612f1a565b6001600160a01b0380861660008181526020819052604090209290925560145484929116148061218657506014546001600160a01b038581169116145b156121e5576001600160a01b03851660009081526006602052604090205460ff161580156121cd57506001600160a01b03841660009081526006602052604090205460ff16155b6121d757826121e2565b6121e285858561292d565b90505b6001600160a01b038416600090815260208190526040902054612209908290612f07565b6001600160a01b03858116600081815260208181526040918290209490945551848152909291881691600080516020613167833981519152910160405180910390a3506001949350505050565b6001600160a01b03831660009081526020819052604081205461227a908390612f1a565b6001600160a01b0380861660009081526020819052604080822093909355908516815220546122aa908390612f07565b6001600160a01b03848116600081815260208181526040918290209490945551858152909291871691600080516020613167833981519152910160405180910390a35060019392505050565b6018805460ff60a01b1916600160a01b1790553060009081526020819052604081205460115490919081908190819060021061235a576002601254600f548761233f9190613038565b612349919061304f565b612353919061304f565b9350612384565b6002601154600c548761236d9190613038565b612377919061304f565b612381919061304f565b93505b60006123908587612f1a565b9050806000036123a55750505050505061291e565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123da576123da6130b1565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612433573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124579190613071565b8160018151811061246a5761246a6130b1565b6001600160a01b03928316602091820292909201015260135460405163791ac94760e01b815291169063791ac947906124b09085906000908690309042906004016130c7565b600060405180830381600087803b1580156124ca57600080fd5b505af11580156124de573d6000803e3d6000fd5b50505050600047905060026011541161251f576002601254600f54836125049190613038565b61250e919061304f565b612518919061304f565b9350612549565b6002601154600c54836125329190613038565b61253c919061304f565b612546919061304f565b93505b86156125e65760135460405163f305d71960e01b815230600482015260248101899052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990869060c40160606040518083038185885af11580156125bd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906125e29190613138565b5050505b6011544790600210612630576012546010546126029083613038565b61260c919061304f565b9650601254600a548261261f9190613038565b612629919061304f565b955061266a565b601154600d546126409083613038565b61264a919061304f565b9650601154600a548261265d9190613038565b612667919061304f565b95505b6000866126778984612f1a565b6126819190612f1a565b9050821561291357861561284357600061269c60028961304f565b90506000601560009054906101000a90046001600160a01b03166001600160a01b0316633690e2876040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127179190613071565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114612761576040519150601f19603f3d011682016040523d82523d6000602084013e612766565b606091505b505090508061277457600080fd5b6015546040805163d7e7a9e760e01b815290516000926001600160a01b03169163d7e7a9e79160048083019260209291908290030181865afa1580156127be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127e29190613071565b6001600160a01b03168360405160006040518083038185875af1925050503d806000811461282c576040519150601f19603f3d011682016040523d82523d6000602084013e612831565b606091505b505090508061283f57600080fd5b5050505b87156128ab576017546040516000916001600160a01b0316908a908381818185875af1925050503d8060008114612896576040519150601f19603f3d011682016040523d82523d6000602084013e61289b565b606091505b50509050806128a957600080fd5b505b8015612913576018546040516000916001600160a01b03169083908381818185875af1925050503d80600081146128fe576040519150601f19603f3d011682016040523d82523d6000602084013e612903565b606091505b505090508061291157600080fd5b505b505050505050505050505b6018805460ff60a01b19169055565b60145460009081906001600160a01b0385811691161461294f57601154612953565b6012545b9050600060646129638386613038565b61296d919061304f565b3060009081526020819052604090205490915061298b908290612f07565b3060008181526020818152604091829020939093555183815290916001600160a01b03891691600080516020613167833981519152910160405180910390a36129d48185612f1a565b9695505050505050565b600060208083528351808285015260005b81811015612a0b578581018301518582016040015282016129ef565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114a357600080fd5b8035612a4c81612a2c565b919050565b60008060408385031215612a6457600080fd5b8235612a6f81612a2c565b946020939093013593505050565b600060208284031215612a8f57600080fd5b8135610bf481612a2c565b600080600060608486031215612aaf57600080fd5b8335612aba81612a2c565b92506020840135612aca81612a2c565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051610140810167ffffffffffffffff81118282101715612b1557612b15612adb565b60405290565b600082601f830112612b2c57600080fd5b813567ffffffffffffffff80821115612b4757612b47612adb565b604051601f8301601f19908116603f01168101908282118183101715612b6f57612b6f612adb565b81604052838152866020858801011115612b8857600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060c08284031215612bba57600080fd5b60405160c0810181811067ffffffffffffffff82111715612bdd57612bdd612adb565b8060405250809150823581526020830135602082015260408301356040820152606083013560608201526080830135608082015260a083013560a08201525092915050565b60008060e08385031215612c3557600080fd5b823567ffffffffffffffff80821115612c4d57600080fd5b908401906101408287031215612c6257600080fd5b612c6a612af1565b823582811115612c7957600080fd5b612c8588828601612b1b565b825250602083013582811115612c9a57600080fd5b612ca688828601612b1b565b6020830152506040830135604082015260608301356060820152612ccc60808401612a41565b6080820152612cdd60a08401612a41565b60a0820152612cee60c08401612a41565b60c0820152612cff60e08401612a41565b60e08201526101009150612d14828401612a41565b8282015261012091508183013582820152809450505050612d388460208501612ba8565b90509250929050565b600060208284031215612d5357600080fd5b5035919050565b80358015158114612a4c57600080fd5b60008060408385031215612d7d57600080fd5b612a6f83612d5a565b60008060408385031215612d9957600080fd5b8235612da481612a2c565b9150612d3860208401612d5a565b60008060008060008060c08789031215612dcb57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b60008060408385031215612e0857600080fd5b8235612e1381612a2c565b91506020830135612e2381612a2c565b809150509250929050565b600060208284031215612e4057600080fd5b610bf482612d5a565b600181811c90821680612e5d57607f821691505b602082108103612e7d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000604082015260600190565b60208082526019908201527f43616c6c6572206973206e6f742074686520666163746f727900000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7957610b79612ef1565b81810381811115610b7957610b79612ef1565b601f821115612f7357600081815260208120601f850160051c81016020861015612f545750805b601f850160051c820191505b818110156118f657828155600101612f60565b505050565b815167ffffffffffffffff811115612f9257612f92612adb565b612fa681612fa08454612e49565b84612f2d565b602080601f831160018114612fdb5760008415612fc35750858301515b600019600386901b1c1916600185901b1785556118f6565b600085815260208120601f198616915b8281101561300a57888601518255948401946001909101908401612feb565b50858210156130285787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082028115828204841417610b7957610b79612ef1565b60008261306c57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561308357600080fd5b8151610bf481612a2c565b602080825260099082015268085b185d5b98da195960ba1b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131175784516001600160a01b0316835293830193918301916001016130f2565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561314d57600080fd5b835192506020840151915060408401519050925092509256feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220372d5e153316c77b8408e4e2677efd724660eba7ce605a2304baa7a758fd325564736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103905760003560e01c8063807c2d9c116101dc578063bfd7928411610102578063d920334e116100a0578063f16fd78d1161006f578063f16fd78d14610a5e578063f887ea4014610a7e578063fabe628314610a9e578063fbd7575314610abe57600080fd5b8063d920334e146109c3578063dd62ed3e146109e3578063e66b1d1e14610a29578063ef92e22214610a4957600080fd5b8063cb29813c116100dc578063cb29813c1461094c578063cd1e330a1461096c578063d0a5eb4e14610982578063d4fb9a01146109a257600080fd5b8063bfd79284146108e6578063c45a015514610916578063ca987b0e1461093657600080fd5b8063a3e676101161017a578063aa8e79c211610149578063aa8e79c214610884578063b0c8edbd1461089a578063bb542ef0146108b0578063bf56b371146108d057600080fd5b8063a3e6761014610804578063a457c2d714610824578063a8aa1b3114610844578063a9059cbb1461086457600080fd5b80639502c426116101b65780639502c426146107a357806395d89b41146107b9578063985b9db0146107ce578063a3a2e89e146107e457600080fd5b8063807c2d9c1461073d5780638b42507f146107535780638ea5220f1461078357600080fd5b806339509351116102c1578063546a88111161025f57806370a082311161022e57806370a08231146106bb5780637c0ff205146106f15780637d1db4a5146107075780637db1342c1461071d57600080fd5b8063546a88111461065a57806359a51c341461066f5780636827e7641461068f578063704ce43e146106a557600080fd5b80633f4218e01161029b5780633f4218e0146105b85780634355855a146105e857806344de2e4c146106185780634a74bb021461063957600080fd5b806339509351146105585780633c822812146105785780633dab52691461059857600080fd5b806323b62b751161032e578063273123b711610308578063273123b7146104e75780632b112e4914610507578063313ce5671461051c57806338b52cb81461053857600080fd5b806323b62b751461047a57806323b872dd146104b257806327193bc4146104d257600080fd5b80630963da6c1161036a5780630963da6c1461041757806318160ddd1461042d5780631df4ccfc146104425780631f53ac021461045857600080fd5b80630445b6671461039c57806306fdde03146103c5578063095ea7b3146103e757600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103b2601e5481565b6040519081526020015b60405180910390f35b3480156103d157600080fd5b506103da610ad3565b6040516103bc91906129de565b3480156103f357600080fd5b50610407610402366004612a51565b610b65565b60405190151581526020016103bc565b34801561042357600080fd5b506103b2600b5481565b34801561043957600080fd5b506002546103b2565b34801561044e57600080fd5b506103b260115481565b34801561046457600080fd5b50610478610473366004612a7d565b610b7f565b005b34801561048657600080fd5b5060185461049a906001600160a01b031681565b6040516001600160a01b0390911681526020016103bc565b3480156104be57600080fd5b506104076104cd366004612a9a565b610bd4565b3480156104de57600080fd5b50610478610bfb565b3480156104f357600080fd5b50610478610502366004612a7d565b610c77565b34801561051357600080fd5b506103b2610d0d565b34801561052857600080fd5b50604051600981526020016103bc565b34801561054457600080fd5b50610478610553366004612c22565b610d79565b34801561056457600080fd5b50610407610573366004612a51565b611356565b34801561058457600080fd5b50610478610593366004612d41565b611395565b3480156105a457600080fd5b506104786105b3366004612d6a565b6114a6565b3480156105c457600080fd5b506104076105d3366004612a7d565b60066020526000908152604090205460ff1681565b3480156105f457600080fd5b50610407610603366004612a7d565b60086020526000908152604090205460ff1681565b34801561062457600080fd5b5060055461040790600160a01b900460ff1681565b34801561064557600080fd5b5060185461040790600160a81b900460ff1681565b34801561066657600080fd5b506104786114f2565b34801561067b57600080fd5b5060055461049a906001600160a01b031681565b34801561069b57600080fd5b506103b2600d5481565b3480156106b157600080fd5b506103b2600c5481565b3480156106c757600080fd5b506103b26106d6366004612a7d565b6001600160a01b031660009081526020819052604090205490565b3480156106fd57600080fd5b506103b2600f5481565b34801561071357600080fd5b506103b2601c5481565b34801561072957600080fd5b50610478610738366004612d41565b611598565b34801561074957600080fd5b506103b2601d5481565b34801561075f57600080fd5b5061040761076e366004612a7d565b60076020526000908152604090205460ff1681565b34801561078f57600080fd5b5060175461049a906001600160a01b031681565b3480156107af57600080fd5b506103b260105481565b3480156107c557600080fd5b506103da611692565b3480156107da57600080fd5b506103b2600e5481565b3480156107f057600080fd5b506104786107ff366004612d86565b6116a1565b34801561081057600080fd5b5060165461049a906001600160a01b031681565b34801561083057600080fd5b5061040761083f366004612a51565b6116f6565b34801561085057600080fd5b5060145461049a906001600160a01b031681565b34801561087057600080fd5b5061040761087f366004612a51565b611785565b34801561089057600080fd5b506103b2601a5481565b3480156108a657600080fd5b506103b2601b5481565b3480156108bc57600080fd5b506104786108cb366004612a7d565b611793565b3480156108dc57600080fd5b506103b260095481565b3480156108f257600080fd5b50610407610901366004612a7d565b60196020526000908152604090205460ff1681565b34801561092257600080fd5b5060155461049a906001600160a01b031681565b34801561094257600080fd5b506103b260125481565b34801561095857600080fd5b50610478610967366004612db2565b6117df565b34801561097857600080fd5b506103b2600a5481565b34801561098e57600080fd5b5061047861099d366004612a7d565b6118fe565b3480156109ae57600080fd5b5060185461040790600160b01b900460ff1681565b3480156109cf57600080fd5b506104786109de366004612d41565b61194a565b3480156109ef57600080fd5b506103b26109fe366004612df5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a3557600080fd5b50610478610a44366004612e2e565b611a44565b348015610a5557600080fd5b50610478611a8c565b348015610a6a57600080fd5b50610478610a79366004612a7d565b611b9d565b348015610a8a57600080fd5b5060135461049a906001600160a01b031681565b348015610aaa57600080fd5b50610478610ab9366004612d86565b611c19565b348015610aca57600080fd5b50610478611c6e565b606060038054610ae290612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0e90612e49565b8015610b5b5780601f10610b3057610100808354040283529160200191610b5b565b820191906000526020600020905b815481529060010190602001808311610b3e57829003601f168201915b5050505050905090565b600033610b73818585611cb9565b60019150505b92915050565b6016546001600160a01b03163314610bb25760405162461bcd60e51b8152600401610ba990612e83565b60405180910390fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b600033610be2858285611dc6565b610bed858585611e51565b5060019150505b9392505050565b6015546001600160a01b03163314610c255760405162461bcd60e51b8152600401610ba990612eba565b60095415610c605760405162461bcd60e51b81526020600482015260086024820152671b185d5b98da195960c21b6044820152606401610ba9565b426009819055601a54610c7291612f07565b601b55565b60055433906001600160a01b0316811480610c9f57506016546001600160a01b038281169116145b610ceb5760405162461bcd60e51b815260206004820152601e60248201527f43616c6c657220646f65736e27742068617665207065726d697373696f6e00006044820152606401610ba9565b506001600160a01b03166000908152601960205260409020805460ff19169055565b600060208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb55461dead82527f44ad89ba62b98ff34f51403ac22759b55759460c0bb5521eb4b6ee3cff49cf8354600254610d6a9190612f1a565b610d749190612f1a565b905090565b6015546001600160a01b03163314610da35760405162461bcd60e51b8152600401610ba990612eba565b8151600390610db29082612f78565b506020820151600490610dc59082612f78565b506040820151600255606082015160461115610e0d5760405162461bcd60e51b8152602060048201526007602482015266546f6f206c6f7760c81b6044820152606401610ba9565b6103e882604001516005610e219190613038565b610e2b919061304f565b601c556040820151606490610e41906001613038565b610e4b919061304f565b601d556040820151610fa090610e62906005613038565b610e6c919061304f565b601e5560e0820151601380546001600160a01b0319166001600160a01b0390921691821790556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef19190613071565b6001600160a01b031663c9c65396601360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f769190613071565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303816000875af1158015610fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe69190613071565b601480546001600160a01b0319166001600160a01b03928316178155306000818152600160208181526040808420601354881685528252808420600019905593835260068152838320805460ff1990811684179091556015805488168552858520805483168517905560808a810180518a16875287872080548516871790555189168652600784528686208054841686179055965488168552858520805483168517905554909616835283832080548716831790557fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d80548716831790559180527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df805490951617909355830151600c8190556060840151600f5590830151600d81905560a08401516010558351600b81905592840151600e55600a54929161112e91612f07565b6111389190612f07565b6111429190612f07565b601155600a54600e54600f5460105461115b9190612f07565b6111659190612f07565b61116f9190612f07565b601255601154600c10156111b05760405162461bcd60e51b81526020600482015260086024820152670a8dede40d0d2ced60c31b6044820152606401610ba9565b601160125411156111ee5760405162461bcd60e51b81526020600482015260086024820152670a8dede40d0d2ced60c31b6044820152606401610ba9565b6080820151601680546001600160a01b039283166001600160a01b03199182161790915560a08401516017805491841691831691909117905560c08401516018805491841691831691909117905561010084015160058054919093169116179055606082015160408301516000916064916112699190613038565b611273919061304f565b905060008184604001516112879190612f1a565b336000908152602081905260408120805492935084929091906112ab908490612f07565b909155505060808401516001600160a01b0316600090815260208190526040812080548392906112dc908490612f07565b9091555050610120840151601a5560405182815233906000906000805160206131678339815191529060200160405180910390a383608001516001600160a01b031660006001600160a01b03166000805160206131678339815191528360405161134891815260200190565b60405180910390a350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610b739082908690611390908790612f07565b611cb9565b6005546001600160a01b031633146113ef5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f74207468652070726f6f6641646d696e000000006044820152606401610ba9565b6009546000036114115760405162461bcd60e51b8152600401610ba99061308e565b600954611421906203f480612f07565b421061149557600181111561143557600080fd5b600a819055600b54600c54600d54839161144e91612f07565b6114589190612f07565b6114629190612f07565b601155600e54600a54600f5460105461147b9190612f07565b6114859190612f07565b61148f9190612f07565b60125550565b600281111561143557600080fd5b50565b6016546001600160a01b031633146114d05760405162461bcd60e51b8152600401610ba990612e83565b60188054921515600160a81b0260ff60a81b1990931692909217909155601e55565b6015546001600160a01b0316331461151c5760405162461bcd60e51b8152600401610ba990612eba565b601380546001600160a01b039081166000908152600660209081526040808320805460ff1990811660019081179092559554851684526007909252808320805486168317905560165490931682529190208054909216179055601880546005805460ff60a01b1916905561ffff60a81b1916600160b01b179055565b6016546001600160a01b031633146115c25760405162461bcd60e51b8152600401610ba990612e83565b6009546000036115e45760405162461bcd60e51b8152600401610ba99061308e565b6103e860025460056115f69190613038565b611600919061304f565b81101561163a5760405162461bcd60e51b81526020600482015260086024820152674d696e20302e352560c01b6044820152606401610ba9565b6064600254600361164b9190613038565b611655919061304f565b81111561168d5760405162461bcd60e51b81526020600482015260066024820152654d617820332560d01b6044820152606401610ba9565b601d55565b606060048054610ae290612e49565b6016546001600160a01b031633146116cb5760405162461bcd60e51b8152600401610ba990612e83565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561176d5760405162461bcd60e51b815260206004820152601e60248201527f44656372656173656420616c6c6f77616e63652062656c6f77207a65726f00006044820152606401610ba9565b61177a8286868403611cb9565b506001949350505050565b60003361177a818585611e51565b6016546001600160a01b031633146117bd5760405162461bcd60e51b8152600401610ba990612e83565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6016546001600160a01b031633146118095760405162461bcd60e51b8152600401610ba990612e83565b600b869055600c849055600d829055600e859055600f8390556010819055600a5486906118368685612f07565b6118409190612f07565b61184a9190612f07565b601155600e54600a54600f546010546118639190612f07565b61186d9190612f07565b6118779190612f07565b601255601154600c10156118b85760405162461bcd60e51b8152602060048201526008602482015267486967682066656560c01b6044820152606401610ba9565b601160125411156118f65760405162461bcd60e51b8152602060048201526008602482015267486967682066656560c01b6044820152606401610ba9565b505050505050565b6016546001600160a01b031633146119285760405162461bcd60e51b8152600401610ba990612e83565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6016546001600160a01b031633146119745760405162461bcd60e51b8152600401610ba990612e83565b6009546000036119965760405162461bcd60e51b8152600401610ba99061308e565b6103e860025460056119a89190613038565b6119b2919061304f565b8110156119ec5760405162461bcd60e51b81526020600482015260086024820152674d696e20302e352560c01b6044820152606401610ba9565b606460025460036119fd9190613038565b611a07919061304f565b811115611a3f5760405162461bcd60e51b81526020600482015260066024820152654d617820332560d01b6044820152606401610ba9565b601c55565b6016546001600160a01b03163314611a6e5760405162461bcd60e51b8152600401610ba990612e83565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6016546001600160a01b03163314611ab65760405162461bcd60e51b8152600401610ba990612e83565b600a54600214611afb5760405162461bcd60e51b815260206004820152601060248201526f08585b1c9958591e481c99591d58d95960821b6044820152606401610ba9565b600954600003611b1d5760405162461bcd60e51b8152600401610ba99061308e565b600954611b2d906203f480612f07565b421015611b3957600080fd5b6001600a81905550600b54600a54600c54600d54611b579190612f07565b611b619190612f07565b611b6b9190612f07565b601155600e54600a54600f54601054611b849190612f07565b611b8e9190612f07565b611b989190612f07565b601255565b6005546001600160a01b03163314611bf75760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f74207468652070726f6f6641646d696e000000006044820152606401610ba9565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6016546001600160a01b03163314611c435760405162461bcd60e51b8152600401610ba990612e83565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6015546001600160a01b03163314611c985760405162461bcd60e51b8152600401610ba990612eba565b6018805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6001600160a01b038316611d0f5760405162461bcd60e51b815260206004820152601d60248201527f417070726f76652066726f6d20746865207a65726f20616464726573730000006044820152606401610ba9565b6001600160a01b038216611d655760405162461bcd60e51b815260206004820152601b60248201527f417070726f766520746f20746865207a65726f206164647265737300000000006044820152606401610ba9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114611e4b5781811015611e3e5760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e7420616c6c6f77616e636560501b6044820152606401610ba9565b611e4b8484848403611cb9565b50505050565b601854600090600160b01b900460ff16611e965760405162461bcd60e51b815260206004820152600660248201526510db1bdcd95960d21b6044820152606401610ba9565b6001600160a01b03841660009081526019602052604090205460ff16158015611ed857506001600160a01b03831660009081526019602052604090205460ff16155b611ee157600080fd5b601b5415801590611ef35750601b5442105b15611f5557326000818152601960205260409020805460ff191660011790556001600160a01b03841614611f555760405162461bcd60e51b8152602060048201526009602482015268616e7469736e69706560b81b6044820152606401610ba9565b601854600160a01b900460ff1615611f7957611f72848484612256565b9050610bf4565b6014546001600160a01b038481169116148015611f9f5750600554600160a01b900460ff165b1561202557601c5482111580611ff057506001600160a01b03841660009081526007602052604090205460ff168015611ff057506001600160a01b03831660009081526007602052604090205460ff165b6120255760405162461bcd60e51b815260206004820152600660248201526509ac2f040a8b60d31b6044820152606401610ba9565b6001600160a01b03831660009081526007602052604090205460ff161580156120575750600554600160a01b900460ff165b156120be57601d546001600160a01b038416600090815260208190526040902054612083908490612f07565b11156120be5760405162461bcd60e51b815260206004820152600a60248201526913585e0815d85b1b195d60b21b6044820152606401610ba9565b6014546001600160a01b038581169116148015906120e65750601854600160a01b900460ff16155b80156120fb5750601854600160a81b900460ff165b80156121185750601e543060009081526020819052604090205410155b15612125576121256122f6565b6001600160a01b038416600090815260208190526040902054612149908390612f1a565b6001600160a01b0380861660008181526020819052604090209290925560145484929116148061218657506014546001600160a01b038581169116145b156121e5576001600160a01b03851660009081526006602052604090205460ff161580156121cd57506001600160a01b03841660009081526006602052604090205460ff16155b6121d757826121e2565b6121e285858561292d565b90505b6001600160a01b038416600090815260208190526040902054612209908290612f07565b6001600160a01b03858116600081815260208181526040918290209490945551848152909291881691600080516020613167833981519152910160405180910390a3506001949350505050565b6001600160a01b03831660009081526020819052604081205461227a908390612f1a565b6001600160a01b0380861660009081526020819052604080822093909355908516815220546122aa908390612f07565b6001600160a01b03848116600081815260208181526040918290209490945551858152909291871691600080516020613167833981519152910160405180910390a35060019392505050565b6018805460ff60a01b1916600160a01b1790553060009081526020819052604081205460115490919081908190819060021061235a576002601254600f548761233f9190613038565b612349919061304f565b612353919061304f565b9350612384565b6002601154600c548761236d9190613038565b612377919061304f565b612381919061304f565b93505b60006123908587612f1a565b9050806000036123a55750505050505061291e565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123da576123da6130b1565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612433573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124579190613071565b8160018151811061246a5761246a6130b1565b6001600160a01b03928316602091820292909201015260135460405163791ac94760e01b815291169063791ac947906124b09085906000908690309042906004016130c7565b600060405180830381600087803b1580156124ca57600080fd5b505af11580156124de573d6000803e3d6000fd5b50505050600047905060026011541161251f576002601254600f54836125049190613038565b61250e919061304f565b612518919061304f565b9350612549565b6002601154600c54836125329190613038565b61253c919061304f565b612546919061304f565b93505b86156125e65760135460405163f305d71960e01b815230600482015260248101899052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990869060c40160606040518083038185885af11580156125bd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906125e29190613138565b5050505b6011544790600210612630576012546010546126029083613038565b61260c919061304f565b9650601254600a548261261f9190613038565b612629919061304f565b955061266a565b601154600d546126409083613038565b61264a919061304f565b9650601154600a548261265d9190613038565b612667919061304f565b95505b6000866126778984612f1a565b6126819190612f1a565b9050821561291357861561284357600061269c60028961304f565b90506000601560009054906101000a90046001600160a01b03166001600160a01b0316633690e2876040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127179190613071565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114612761576040519150601f19603f3d011682016040523d82523d6000602084013e612766565b606091505b505090508061277457600080fd5b6015546040805163d7e7a9e760e01b815290516000926001600160a01b03169163d7e7a9e79160048083019260209291908290030181865afa1580156127be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127e29190613071565b6001600160a01b03168360405160006040518083038185875af1925050503d806000811461282c576040519150601f19603f3d011682016040523d82523d6000602084013e612831565b606091505b505090508061283f57600080fd5b5050505b87156128ab576017546040516000916001600160a01b0316908a908381818185875af1925050503d8060008114612896576040519150601f19603f3d011682016040523d82523d6000602084013e61289b565b606091505b50509050806128a957600080fd5b505b8015612913576018546040516000916001600160a01b03169083908381818185875af1925050503d80600081146128fe576040519150601f19603f3d011682016040523d82523d6000602084013e612903565b606091505b505090508061291157600080fd5b505b505050505050505050505b6018805460ff60a01b19169055565b60145460009081906001600160a01b0385811691161461294f57601154612953565b6012545b9050600060646129638386613038565b61296d919061304f565b3060009081526020819052604090205490915061298b908290612f07565b3060008181526020818152604091829020939093555183815290916001600160a01b03891691600080516020613167833981519152910160405180910390a36129d48185612f1a565b9695505050505050565b600060208083528351808285015260005b81811015612a0b578581018301518582016040015282016129ef565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114a357600080fd5b8035612a4c81612a2c565b919050565b60008060408385031215612a6457600080fd5b8235612a6f81612a2c565b946020939093013593505050565b600060208284031215612a8f57600080fd5b8135610bf481612a2c565b600080600060608486031215612aaf57600080fd5b8335612aba81612a2c565b92506020840135612aca81612a2c565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051610140810167ffffffffffffffff81118282101715612b1557612b15612adb565b60405290565b600082601f830112612b2c57600080fd5b813567ffffffffffffffff80821115612b4757612b47612adb565b604051601f8301601f19908116603f01168101908282118183101715612b6f57612b6f612adb565b81604052838152866020858801011115612b8857600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060c08284031215612bba57600080fd5b60405160c0810181811067ffffffffffffffff82111715612bdd57612bdd612adb565b8060405250809150823581526020830135602082015260408301356040820152606083013560608201526080830135608082015260a083013560a08201525092915050565b60008060e08385031215612c3557600080fd5b823567ffffffffffffffff80821115612c4d57600080fd5b908401906101408287031215612c6257600080fd5b612c6a612af1565b823582811115612c7957600080fd5b612c8588828601612b1b565b825250602083013582811115612c9a57600080fd5b612ca688828601612b1b565b6020830152506040830135604082015260608301356060820152612ccc60808401612a41565b6080820152612cdd60a08401612a41565b60a0820152612cee60c08401612a41565b60c0820152612cff60e08401612a41565b60e08201526101009150612d14828401612a41565b8282015261012091508183013582820152809450505050612d388460208501612ba8565b90509250929050565b600060208284031215612d5357600080fd5b5035919050565b80358015158114612a4c57600080fd5b60008060408385031215612d7d57600080fd5b612a6f83612d5a565b60008060408385031215612d9957600080fd5b8235612da481612a2c565b9150612d3860208401612d5a565b60008060008060008060c08789031215612dcb57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b60008060408385031215612e0857600080fd5b8235612e1381612a2c565b91506020830135612e2381612a2c565b809150509250929050565b600060208284031215612e4057600080fd5b610bf482612d5a565b600181811c90821680612e5d57607f821691505b602082108103612e7d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000604082015260600190565b60208082526019908201527f43616c6c6572206973206e6f742074686520666163746f727900000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7957610b79612ef1565b81810381811115610b7957610b79612ef1565b601f821115612f7357600081815260208120601f850160051c81016020861015612f545750805b601f850160051c820191505b818110156118f657828155600101612f60565b505050565b815167ffffffffffffffff811115612f9257612f92612adb565b612fa681612fa08454612e49565b84612f2d565b602080601f831160018114612fdb5760008415612fc35750858301515b600019600386901b1c1916600185901b1785556118f6565b600085815260208120601f198616915b8281101561300a57888601518255948401946001909101908401612feb565b50858210156130285787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082028115828204841417610b7957610b79612ef1565b60008261306c57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561308357600080fd5b8151610bf481612a2c565b602080825260099082015268085b185d5b98da195960ba1b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131175784516001600160a01b0316835293830193918301916001016130f2565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561314d57600080fd5b835192506020840151915060408401519050925092509256feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220372d5e153316c77b8408e4e2677efd724660eba7ce605a2304baa7a758fd325564736f6c63430008110033

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.