ETH Price: $2,321.97 (-0.17%)

Token

D-Drops (DOP)
 

Overview

Max Total Supply

337,500,000 DOP

Holders

338 (0.00%)

Market

Price

$0.01 @ 0.000004 ETH (+1.27%)

Onchain Market Cap

$2,807,584.88

Circulating Supply Market Cap

$1,457,394.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 DOP

Value
$0.00
0x37a8f295612602f2774d331e562be9e61b83a327
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

With D-Drops, you can turn your city into a playground and hunt for real prizes like cash and many more! $DOP is the trading coin for D-Drops World on Ethereum nework.

Market

Volume (24H):$1,461.12
Market Capitalization:$1,457,394.00
Circulating Supply:175,193,442.00 DOP
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DDrops

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 11: dop-verify.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router02.sol";
import "./IUniswapV2Pair.sol";
import "./ERC20.sol";
import "./Ownable.sol";
import "./ITaxHelper.sol";

/// @custom:security-contact [email protected]
contract DDrops is ERC20, Ownable {
    // Allows the contract owner to block certain address
    // from sending and receiving tokens
    mapping(address => bool) public isExcludedFromFee;
    mapping(address => bool) public isBlacklisted;

    // Variables required for the taxing functionality
    uint public buyContributionFee;
    uint public sellContributionFee;
    bool public isSwapEnabled = false;
    ITaxHelper public taxHelper;

    // Wallets which recieve the taxed tokens
    address public treasureWalletAddress;
    address public developementWalletAddress;

    address public uniswapV2RouterAddress;
    address[] public uniswapV2Pairs;
    mapping(address => bool) public isUniswapV2Pair;

    constructor() ERC20("D-Drops", "DOP") Ownable() {
        _mint(msg.sender, 337500000 * 10 ** decimals());
        buyContributionFee = 6 * (10 ** decimals());
        sellContributionFee = 6 * (10 ** decimals());
        developementWalletAddress = 0x8a170c4033410737fC6719A74A1E451037daF047;
        treasureWalletAddress = 0x0e516A61c792eC36dA070a65DC961e82aF9106Af;

        // Uniswap V2 router Address
        uniswapV2RouterAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

        // Exclude owner-, dev- and treasure- wallet from fee
        isExcludedFromFee[owner()] = true;
        isExcludedFromFee[developementWalletAddress] = true;
        isExcludedFromFee[treasureWalletAddress] = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(isBlacklisted[from] == false, "Address @from is blacklisted");
        require(isBlacklisted[to] == false, "Address @to is blacklisted");
        uint256 tax = 0;

        if (!isUniswapV2Pair[from] && !isUniswapV2Pair[to]) {
            super._transfer(from, to, amount);
        } else if (isExcludedFromFee[from] || isExcludedFromFee[to]) {
            super._transfer(from, to, amount);
        } else {
            tax = isUniswapV2Pair[from]
                ? _calculateBuyContributionFee(amount)
                : _calculateSellContributionFee(amount);
            super._transfer(from, to, amount - tax);
            if (tax > 0) {
                if (isSwapEnabled) {
                    super._transfer(from, address(taxHelper), tax);
                    taxHelper.execute();
                } else {
                    uint256 _developementWalletAmount = tax / 2;
                    uint256 _treasureWalletAmount = tax -
                        _developementWalletAmount;
                    super._transfer(
                        from,
                        developementWalletAddress,
                        _developementWalletAmount
                    );
                    super._transfer(
                        from,
                        treasureWalletAddress,
                        _treasureWalletAmount
                    );
                }
            }
        }
    }

    function createUniswapV2Pair(
        address otherToken
    ) external onlyOwner returns (address) {
        IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(
            uniswapV2RouterAddress
        );

        IUniswapV2Factory uFactory = IUniswapV2Factory(
            uniswapV2Router.factory()
        );

        address _uniswapV2Pair = uFactory.getPair(address(this), otherToken);

        if (_uniswapV2Pair == address(0)) {
            _uniswapV2Pair = uFactory.createPair(address(this), otherToken);
        }

        uniswapV2Pairs.push(_uniswapV2Pair);
        isUniswapV2Pair[address(_uniswapV2Pair)] = true;
        return _uniswapV2Pair;
    }

    // Set the amount of BUY contribution fee, limited to max 15%
    function setBuyContributionFee(
        uint256 _newBuyContributionFee
    ) external onlyOwner {
        require(
            _newBuyContributionFee <= 10 * (10 ** decimals()),
            "Tax rate cannot by higher then 10%"
        );
        buyContributionFee = _newBuyContributionFee;
    }

    // Set the amount of SELL contribution fee, limited to max 20%
    function setSellContributionFee(
        uint256 _newSellContributionFee
    ) external onlyOwner {
        require(
            _newSellContributionFee <= 10 * (10 ** decimals()),
            "Tax rate cannot by higher then 10%"
        );
        sellContributionFee = _newSellContributionFee;
    }

    function setDevelopementWallet(
        address _newDevelopementWallet
    ) external onlyOwner {
        developementWalletAddress = _newDevelopementWallet;
    }

    function setTreasureWallet(address _newTreasureWallet) external onlyOwner {
        treasureWalletAddress = _newTreasureWallet;
    }

    function excludeFromFee(address _account) external onlyOwner {
        isExcludedFromFee[_account] = true;
    }

    function includeInFee(address _account) external onlyOwner {
        isExcludedFromFee[_account] = false;
    }

    function _calculateBuyContributionFee(
        uint amount
    ) internal view returns (uint) {
        return (amount * buyContributionFee) / (100 * (10 ** decimals()));
    }

    function _calculateSellContributionFee(
        uint amount
    ) internal view returns (uint) {
        return (amount * sellContributionFee) / (100 * (10 ** decimals()));
    }

    //Add or remove one or more addresses from the black list, make sure to send enough gas
    function manage_blacklist(
        address[] calldata _addresses,
        bool _value
    ) external onlyOwner {
        for (uint256 i; i < _addresses.length; ++i) {
            isBlacklisted[_addresses[i]] = _value;
        }
    }

    function setIsSwapEnabled(bool value) external onlyOwner {
        isSwapEnabled = value;
    }

    function setTaxHelper(address taxHelperAddress) external onlyOwner {
        taxHelper = ITaxHelper(taxHelperAddress);
    }
}

File 1 of 11: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 11: 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 5 of 11: 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 6 of 11: ITaxHelper.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.8.19;

interface ITaxHelper {
    function execute() external returns (bool);
}

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 8 of 11: IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

    function balanceOf(address owner) external view returns (uint);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);

    function transfer(address to, uint value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint);

    function permit(
        address owner,
        address spender,
        uint value,
        uint deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(
        address indexed sender,
        uint amount0,
        uint amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);

    function burn(address to) external returns (uint amount0, uint amount1);

    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

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

import "./IUniswapV2Router01.sol";

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

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

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

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

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

File 11 of 11: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyContributionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"otherToken","type":"address"}],"name":"createUniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"developementWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isUniswapV2Pair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"manage_blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellContributionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyContributionFee","type":"uint256"}],"name":"setBuyContributionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newDevelopementWallet","type":"address"}],"name":"setDevelopementWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setIsSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSellContributionFee","type":"uint256"}],"name":"setSellContributionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"taxHelperAddress","type":"address"}],"name":"setTaxHelper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newTreasureWallet","type":"address"}],"name":"setTreasureWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxHelper","outputs":[{"internalType":"contract ITaxHelper","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasureWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uniswapV2Pairs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2RouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600a805460ff191690553480156200001b57600080fd5b5060405180604001604052806007815260200166442d44726f707360c81b815250604051806040016040528060038152602001620444f560ec1b81525081600390816200006991906200039f565b5060046200007882826200039f565b505050620000956200008f620001da60201b60201c565b620001de565b620000be33620000a86012600a62000580565b620000b89063141dd76062000598565b62000230565b620000cc6012600a62000580565b620000d990600662000598565b600855620000ea6012600a62000580565b620000f790600662000598565b600955600c80546001600160a01b0319908116738a170c4033410737fc6719a74a1e451037daf04717909155600b80548216730e516a61c792ec36da070a65dc961e82af9106af179055600d8054909116737a250d5630b4cf539739df2c5dacb4c659f2488d179055600160066000620001796005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600c54821681526006909352818320805485166001908117909155600b54909116835291208054909216179055620005c8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200028b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200029f9190620005b2565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200032657607f821691505b6020821081036200034757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002f657600081815260208120601f850160051c81016020861015620003765750805b601f850160051c820191505b81811015620003975782815560010162000382565b505050505050565b81516001600160401b03811115620003bb57620003bb620002fb565b620003d381620003cc845462000311565b846200034d565b602080601f8311600181146200040b5760008415620003f25750858301515b600019600386901b1c1916600185901b17855562000397565b600085815260208120601f198616915b828110156200043c578886015182559484019460019091019084016200041b565b50858210156200045b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004c2578160001904821115620004a657620004a66200046b565b80851615620004b457918102915b93841c939080029062000486565b509250929050565b600082620004db575060016200057a565b81620004ea575060006200057a565b81600181146200050357600281146200050e576200052e565b60019150506200057a565b60ff8411156200052257620005226200046b565b50506001821b6200057a565b5060208310610133831016604e8410600b841016171562000553575081810a6200057a565b6200055f838362000481565b80600019048211156200057657620005766200046b565b0290505b92915050565b60006200059160ff841683620004ca565b9392505050565b80820281158282048414176200057a576200057a6200046b565b808201808211156200057a576200057a6200046b565b6116c780620005d86000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806383e88ec411610125578063bc086005116100ad578063ea2f0b371161007c578063ea2f0b3714610489578063f2fde38b1461049c578063f4de9ab7146104af578063f5f7b962146104c2578063fe575a87146104d557600080fd5b8063bc0860051461042d578063c7b122b114610440578063db9f76a614610463578063dd62ed3e1461047657600080fd5b806395d89b41116100f457806395d89b41146103e35780639e16606c146103eb578063a457c2d7146103f4578063a9059cbb14610407578063ab8439dd1461041a57600080fd5b806383e88ec4146103a35780638da5cb5b146103ac5780638e2eee84146103bd5780638fbf1e93146103d057600080fd5b8063313ce567116101a85780634a377e1d116101775780634a377e1d146103295780635342acb41461033c57806368c488b31461035f57806370a0823114610372578063715018a61461039b57600080fd5b8063313ce567146102e7578063351a964d146102f65780633950935114610303578063437823ec1461031657600080fd5b80631f6976a6116101e45780631f6976a61461027e57806323b872dd146102ae5780632c61beaf146102c157806330455ede146102d457600080fd5b806306fdde0314610216578063095ea7b314610234578063177c50131461025757806318160ddd1461026c575b600080fd5b61021e6104f8565b60405161022b919061124d565b60405180910390f35b6102476102423660046112b0565b61058a565b604051901515815260200161022b565b61026a6102653660046112dc565b6105a4565b005b6002545b60405190815260200161022b565b600a546102969061010090046001600160a01b031681565b6040516001600160a01b03909116815260200161022b565b6102476102bc3660046112f5565b6105f0565b6102966102cf3660046112dc565b610614565b61026a6102e2366004611344565b61063e565b6040516012815260200161022b565b600a546102479060ff1681565b6102476103113660046112b0565b610659565b61026a610324366004611368565b61067b565b600d54610296906001600160a01b031681565b61024761034a366004611368565b60066020526000908152604090205460ff1681565b61029661036d366004611368565b6106a7565b610270610380366004611368565b6001600160a01b031660009081526020819052604090205490565b61026a61088a565b61027060095481565b6005546001600160a01b0316610296565b61026a6103cb366004611385565b61089e565b61026a6103de366004611368565b61091b565b61021e61094b565b61027060085481565b6102476104023660046112b0565b61095a565b6102476104153660046112b0565b6109d5565b61026a610428366004611368565b6109e3565b61026a61043b3660046112dc565b610a0d565b61024761044e366004611368565b600f6020526000908152604090205460ff1681565b600b54610296906001600160a01b031681565b61027061048436600461140b565b610a50565b61026a610497366004611368565b610a7b565b61026a6104aa366004611368565b610aa4565b600c54610296906001600160a01b031681565b61026a6104d0366004611368565b610b1d565b6102476104e3366004611368565b60076020526000908152604090205460ff1681565b60606003805461050790611444565b80601f016020809104026020016040519081016040528092919081815260200182805461053390611444565b80156105805780601f1061055557610100808354040283529160200191610580565b820191906000526020600020905b81548152906001019060200180831161056357829003601f168201915b5050505050905090565b600033610598818585610b47565b60019150505b92915050565b6105ac610c6b565b6105b86012600a611578565b6105c390600a611587565b8111156105eb5760405162461bcd60e51b81526004016105e29061159e565b60405180910390fd5b600955565b6000336105fe858285610cc5565b610609858585610d39565b506001949350505050565b600e818154811061062457600080fd5b6000918252602090912001546001600160a01b0316905081565b610646610c6b565b600a805460ff1916911515919091179055565b60003361059881858561066c8383610a50565b61067691906115e0565b610b47565b610683610c6b565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60006106b1610c6b565b600d546040805163c45a015560e01b815290516001600160a01b0390921691600091839163c45a0155916004808201926020929091908290030181865afa158015610700573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072491906115f3565b60405163e6a4390560e01b81523060048201526001600160a01b03868116602483015291925060009183169063e6a4390590604401602060405180830381865afa158015610776573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079a91906115f3565b90506001600160a01b03811661081f576040516364e329cb60e11b81523060048201526001600160a01b03868116602483015283169063c9c65396906044016020604051808303816000875af11580156107f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081c91906115f3565b90505b600e805460018082019092557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0384169081179091556000908152600f60205260409020805460ff19169091179055949350505050565b610892610c6b565b61089c6000611001565b565b6108a6610c6b565b60005b828110156109155781600760008686858181106108c8576108c8611610565b90506020020160208101906108dd9190611368565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905561090e81611626565b90506108a9565b50505050565b610923610c6b565b600a80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60606004805461050790611444565b600033816109688286610a50565b9050838110156109c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105e2565b6106098286868403610b47565b600033610598818585610d39565b6109eb610c6b565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610a15610c6b565b610a216012600a611578565b610a2c90600a611587565b811115610a4b5760405162461bcd60e51b81526004016105e29061159e565b600855565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a83610c6b565b6001600160a01b03166000908152600660205260409020805460ff19169055565b610aac610c6b565b6001600160a01b038116610b115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e2565b610b1a81611001565b50565b610b25610c6b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610ba95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105e2565b6001600160a01b038216610c0a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105e2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461089c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105e2565b6000610cd18484610a50565b905060001981146109155781811015610d2c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105e2565b6109158484848403610b47565b6001600160a01b03831660009081526007602052604090205460ff1615610da25760405162461bcd60e51b815260206004820152601c60248201527f41646472657373204066726f6d20697320626c61636b6c69737465640000000060448201526064016105e2565b6001600160a01b03821660009081526007602052604090205460ff1615610e0b5760405162461bcd60e51b815260206004820152601a60248201527f416464726573732040746f20697320626c61636b6c697374656400000000000060448201526064016105e2565b6001600160a01b0383166000908152600f602052604081205460ff16158015610e4d57506001600160a01b0383166000908152600f602052604090205460ff16155b15610e6257610e5d848484611053565b610915565b6001600160a01b03841660009081526006602052604090205460ff1680610ea157506001600160a01b03831660009081526006602052604090205460ff165b15610eb157610e5d848484611053565b6001600160a01b0384166000908152600f602052604090205460ff16610edf57610eda826111f7565b610ee8565b610ee882611227565b9050610efe8484610ef9848661163f565b611053565b801561091557600a5460ff1615610fab57600a54610f2c90859061010090046001600160a01b031683611053565b600a60019054906101000a90046001600160a01b03166001600160a01b031663614619546040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610f81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa59190611652565b50610915565b6000610fb860028361166f565b90506000610fc6828461163f565b600c54909150610fe19087906001600160a01b031684611053565b600b54610ff99087906001600160a01b031683611053565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166110b75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105e2565b6001600160a01b0382166111195760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105e2565b6001600160a01b038316600090815260208190526040902054818110156111915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105e2565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610915565b60006112056012600a611578565b611210906064611587565b60095461121d9084611587565b61059e919061166f565b60006112356012600a611578565b611240906064611587565b60085461121d9084611587565b600060208083528351808285015260005b8181101561127a5785810183015185820160400152820161125e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b1a57600080fd5b600080604083850312156112c357600080fd5b82356112ce8161129b565b946020939093013593505050565b6000602082840312156112ee57600080fd5b5035919050565b60008060006060848603121561130a57600080fd5b83356113158161129b565b925060208401356113258161129b565b929592945050506040919091013590565b8015158114610b1a57600080fd5b60006020828403121561135657600080fd5b813561136181611336565b9392505050565b60006020828403121561137a57600080fd5b81356113618161129b565b60008060006040848603121561139a57600080fd5b833567ffffffffffffffff808211156113b257600080fd5b818601915086601f8301126113c657600080fd5b8135818111156113d557600080fd5b8760208260051b85010111156113ea57600080fd5b6020928301955093505084013561140081611336565b809150509250925092565b6000806040838503121561141e57600080fd5b82356114298161129b565b915060208301356114398161129b565b809150509250929050565b600181811c9082168061145857607f821691505b60208210810361147857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156114cf5781600019048211156114b5576114b561147e565b808516156114c257918102915b93841c9390800290611499565b509250929050565b6000826114e65750600161059e565b816114f35750600061059e565b816001811461150957600281146115135761152f565b600191505061059e565b60ff8411156115245761152461147e565b50506001821b61059e565b5060208310610133831016604e8410600b8410161715611552575081810a61059e565b61155c8383611494565b80600019048211156115705761157061147e565b029392505050565b600061136160ff8416836114d7565b808202811582820484141761059e5761059e61147e565b60208082526022908201527f54617820726174652063616e6e6f7420627920686967686572207468656e2031604082015261302560f01b606082015260800190565b8082018082111561059e5761059e61147e565b60006020828403121561160557600080fd5b81516113618161129b565b634e487b7160e01b600052603260045260246000fd5b6000600182016116385761163861147e565b5060010190565b8181038181111561059e5761059e61147e565b60006020828403121561166457600080fd5b815161136181611336565b60008261168c57634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122042543b337541f26026807ecced493b5f620b277911ade0ec7911ade88c634e2664736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c806383e88ec411610125578063bc086005116100ad578063ea2f0b371161007c578063ea2f0b3714610489578063f2fde38b1461049c578063f4de9ab7146104af578063f5f7b962146104c2578063fe575a87146104d557600080fd5b8063bc0860051461042d578063c7b122b114610440578063db9f76a614610463578063dd62ed3e1461047657600080fd5b806395d89b41116100f457806395d89b41146103e35780639e16606c146103eb578063a457c2d7146103f4578063a9059cbb14610407578063ab8439dd1461041a57600080fd5b806383e88ec4146103a35780638da5cb5b146103ac5780638e2eee84146103bd5780638fbf1e93146103d057600080fd5b8063313ce567116101a85780634a377e1d116101775780634a377e1d146103295780635342acb41461033c57806368c488b31461035f57806370a0823114610372578063715018a61461039b57600080fd5b8063313ce567146102e7578063351a964d146102f65780633950935114610303578063437823ec1461031657600080fd5b80631f6976a6116101e45780631f6976a61461027e57806323b872dd146102ae5780632c61beaf146102c157806330455ede146102d457600080fd5b806306fdde0314610216578063095ea7b314610234578063177c50131461025757806318160ddd1461026c575b600080fd5b61021e6104f8565b60405161022b919061124d565b60405180910390f35b6102476102423660046112b0565b61058a565b604051901515815260200161022b565b61026a6102653660046112dc565b6105a4565b005b6002545b60405190815260200161022b565b600a546102969061010090046001600160a01b031681565b6040516001600160a01b03909116815260200161022b565b6102476102bc3660046112f5565b6105f0565b6102966102cf3660046112dc565b610614565b61026a6102e2366004611344565b61063e565b6040516012815260200161022b565b600a546102479060ff1681565b6102476103113660046112b0565b610659565b61026a610324366004611368565b61067b565b600d54610296906001600160a01b031681565b61024761034a366004611368565b60066020526000908152604090205460ff1681565b61029661036d366004611368565b6106a7565b610270610380366004611368565b6001600160a01b031660009081526020819052604090205490565b61026a61088a565b61027060095481565b6005546001600160a01b0316610296565b61026a6103cb366004611385565b61089e565b61026a6103de366004611368565b61091b565b61021e61094b565b61027060085481565b6102476104023660046112b0565b61095a565b6102476104153660046112b0565b6109d5565b61026a610428366004611368565b6109e3565b61026a61043b3660046112dc565b610a0d565b61024761044e366004611368565b600f6020526000908152604090205460ff1681565b600b54610296906001600160a01b031681565b61027061048436600461140b565b610a50565b61026a610497366004611368565b610a7b565b61026a6104aa366004611368565b610aa4565b600c54610296906001600160a01b031681565b61026a6104d0366004611368565b610b1d565b6102476104e3366004611368565b60076020526000908152604090205460ff1681565b60606003805461050790611444565b80601f016020809104026020016040519081016040528092919081815260200182805461053390611444565b80156105805780601f1061055557610100808354040283529160200191610580565b820191906000526020600020905b81548152906001019060200180831161056357829003601f168201915b5050505050905090565b600033610598818585610b47565b60019150505b92915050565b6105ac610c6b565b6105b86012600a611578565b6105c390600a611587565b8111156105eb5760405162461bcd60e51b81526004016105e29061159e565b60405180910390fd5b600955565b6000336105fe858285610cc5565b610609858585610d39565b506001949350505050565b600e818154811061062457600080fd5b6000918252602090912001546001600160a01b0316905081565b610646610c6b565b600a805460ff1916911515919091179055565b60003361059881858561066c8383610a50565b61067691906115e0565b610b47565b610683610c6b565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60006106b1610c6b565b600d546040805163c45a015560e01b815290516001600160a01b0390921691600091839163c45a0155916004808201926020929091908290030181865afa158015610700573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072491906115f3565b60405163e6a4390560e01b81523060048201526001600160a01b03868116602483015291925060009183169063e6a4390590604401602060405180830381865afa158015610776573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079a91906115f3565b90506001600160a01b03811661081f576040516364e329cb60e11b81523060048201526001600160a01b03868116602483015283169063c9c65396906044016020604051808303816000875af11580156107f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081c91906115f3565b90505b600e805460018082019092557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0384169081179091556000908152600f60205260409020805460ff19169091179055949350505050565b610892610c6b565b61089c6000611001565b565b6108a6610c6b565b60005b828110156109155781600760008686858181106108c8576108c8611610565b90506020020160208101906108dd9190611368565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905561090e81611626565b90506108a9565b50505050565b610923610c6b565b600a80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60606004805461050790611444565b600033816109688286610a50565b9050838110156109c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105e2565b6106098286868403610b47565b600033610598818585610d39565b6109eb610c6b565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610a15610c6b565b610a216012600a611578565b610a2c90600a611587565b811115610a4b5760405162461bcd60e51b81526004016105e29061159e565b600855565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a83610c6b565b6001600160a01b03166000908152600660205260409020805460ff19169055565b610aac610c6b565b6001600160a01b038116610b115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e2565b610b1a81611001565b50565b610b25610c6b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610ba95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105e2565b6001600160a01b038216610c0a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105e2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461089c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105e2565b6000610cd18484610a50565b905060001981146109155781811015610d2c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105e2565b6109158484848403610b47565b6001600160a01b03831660009081526007602052604090205460ff1615610da25760405162461bcd60e51b815260206004820152601c60248201527f41646472657373204066726f6d20697320626c61636b6c69737465640000000060448201526064016105e2565b6001600160a01b03821660009081526007602052604090205460ff1615610e0b5760405162461bcd60e51b815260206004820152601a60248201527f416464726573732040746f20697320626c61636b6c697374656400000000000060448201526064016105e2565b6001600160a01b0383166000908152600f602052604081205460ff16158015610e4d57506001600160a01b0383166000908152600f602052604090205460ff16155b15610e6257610e5d848484611053565b610915565b6001600160a01b03841660009081526006602052604090205460ff1680610ea157506001600160a01b03831660009081526006602052604090205460ff165b15610eb157610e5d848484611053565b6001600160a01b0384166000908152600f602052604090205460ff16610edf57610eda826111f7565b610ee8565b610ee882611227565b9050610efe8484610ef9848661163f565b611053565b801561091557600a5460ff1615610fab57600a54610f2c90859061010090046001600160a01b031683611053565b600a60019054906101000a90046001600160a01b03166001600160a01b031663614619546040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610f81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa59190611652565b50610915565b6000610fb860028361166f565b90506000610fc6828461163f565b600c54909150610fe19087906001600160a01b031684611053565b600b54610ff99087906001600160a01b031683611053565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166110b75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105e2565b6001600160a01b0382166111195760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105e2565b6001600160a01b038316600090815260208190526040902054818110156111915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105e2565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610915565b60006112056012600a611578565b611210906064611587565b60095461121d9084611587565b61059e919061166f565b60006112356012600a611578565b611240906064611587565b60085461121d9084611587565b600060208083528351808285015260005b8181101561127a5785810183015185820160400152820161125e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b1a57600080fd5b600080604083850312156112c357600080fd5b82356112ce8161129b565b946020939093013593505050565b6000602082840312156112ee57600080fd5b5035919050565b60008060006060848603121561130a57600080fd5b83356113158161129b565b925060208401356113258161129b565b929592945050506040919091013590565b8015158114610b1a57600080fd5b60006020828403121561135657600080fd5b813561136181611336565b9392505050565b60006020828403121561137a57600080fd5b81356113618161129b565b60008060006040848603121561139a57600080fd5b833567ffffffffffffffff808211156113b257600080fd5b818601915086601f8301126113c657600080fd5b8135818111156113d557600080fd5b8760208260051b85010111156113ea57600080fd5b6020928301955093505084013561140081611336565b809150509250925092565b6000806040838503121561141e57600080fd5b82356114298161129b565b915060208301356114398161129b565b809150509250929050565b600181811c9082168061145857607f821691505b60208210810361147857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156114cf5781600019048211156114b5576114b561147e565b808516156114c257918102915b93841c9390800290611499565b509250929050565b6000826114e65750600161059e565b816114f35750600061059e565b816001811461150957600281146115135761152f565b600191505061059e565b60ff8411156115245761152461147e565b50506001821b61059e565b5060208310610133831016604e8410600b8410161715611552575081810a61059e565b61155c8383611494565b80600019048211156115705761157061147e565b029392505050565b600061136160ff8416836114d7565b808202811582820484141761059e5761059e61147e565b60208082526022908201527f54617820726174652063616e6e6f7420627920686967686572207468656e2031604082015261302560f01b606082015260800190565b8082018082111561059e5761059e61147e565b60006020828403121561160557600080fd5b81516113618161129b565b634e487b7160e01b600052603260045260246000fd5b6000600182016116385761163861147e565b5060010190565b8181038181111561059e5761059e61147e565b60006020828403121561166457600080fd5b815161136181611336565b60008261168c57634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122042543b337541f26026807ecced493b5f620b277911ade0ec7911ade88c634e2664736f6c63430008130033

Deployed Bytecode Sourcemap

280:5859:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2137:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4481:219;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:11;;1181:22;1163:41;;1151:2;1136:18;4481:219:1;1023:187:11;4365:301:10;;;;;;:::i;:::-;;:::i;:::-;;3234:106:1;3321:12;;3234:106;;;1546:25:11;;;1534:2;1519:18;3234:106:1;1400:177:11;693:27:10;;;;;;;;-1:-1:-1;;;;;693:27:10;;;;;;-1:-1:-1;;;;;1764:32:11;;;1746:51;;1734:2;1719:18;693:27:10;1582:221:11;5262:286:1;;;;;;:::i;:::-;;:::i;905:31:10:-;;;;;;:::i;:::-;;:::i;5912:95::-;;;;;;:::i;:::-;;:::i;3083:91:1:-;;;3165:2;2988:36:11;;2976:2;2961:18;3083:91:1;2846:184:11;654:33:10;;;;;;;;;5943:256:1;;;;;;:::i;:::-;;:::i;4980:112:10:-;;;;;;:::i;:::-;;:::i;862:37::-;;;;;-1:-1:-1;;;;;862:37:10;;;419:49;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3255:669;;;;;;:::i;:::-;;:::i;3398:139:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3512:18:1;3486:7;3512:18;;;;;;;;;;;;3398:139;1839:101:9;;;:::i;617:31:10:-;;;;;;1216:85:9;1288:6;;-1:-1:-1;;;;;1288:6:9;1216:85;;5673:233:10;;;;;;:::i;:::-;;:::i;6013:124::-;;;;;;:::i;:::-;;:::i;2348:102:1:-;;;:::i;581:30:10:-;;;;;;6686:483:1;;;;;;:::i;:::-;;:::i;3733:211::-;;;;;;:::i;:::-;;:::i;4672:163:10:-;;;;;;:::i;:::-;;:::i;3996:296::-;;;;;;:::i;:::-;;:::i;942:47::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;773:36;;;;;-1:-1:-1;;;;;773:36:10;;;4002:171:1;;;;;;:::i;:::-;;:::i;5098:111:10:-;;;;;;:::i;:::-;;:::i;2089:232:9:-;;;;;;:::i;:::-;;:::i;815:40:10:-;;;;;-1:-1:-1;;;;;815:40:10;;;4841:133;;;;;;:::i;:::-;;:::i;474:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;2137:98:1;2191:13;2223:5;2216:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2137:98;:::o;4481:219::-;4586:4;734:10:0;4640:32:1;734:10:0;4656:7:1;4665:6;4640:8;:32::i;:::-;4689:4;4682:11;;;4481:219;;;;;:::o;4365:301:10:-;1109:13:9;:11;:13::i;:::-;4527:16:10::1;3165:2:1::0;4527::10::1;:16;:::i;:::-;4521:23;::::0;:2:::1;:23;:::i;:::-;4494;:50;;4473:131;;;;-1:-1:-1::0;;;4473:131:10::1;;;;;;;:::i;:::-;;;;;;;;;4614:19;:45:::0;4365:301::o;5262:286:1:-;5389:4;734:10:0;5445:38:1;5461:4;734:10:0;5476:6:1;5445:15;:38::i;:::-;5493:27;5503:4;5509:2;5513:6;5493:9;:27::i;:::-;-1:-1:-1;5537:4:1;;5262:286;-1:-1:-1;;;;5262:286:1:o;905:31:10:-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;905:31:10;;-1:-1:-1;905:31:10;:::o;5912:95::-;1109:13:9;:11;:13::i;:::-;5979::10::1;:21:::0;;-1:-1:-1;;5979:21:10::1;::::0;::::1;;::::0;;;::::1;::::0;;5912:95::o;5943:256:1:-;6053:4;734:10:0;6107:64:1;734:10:0;6123:7:1;6160:10;6132:25;734:10:0;6123:7:1;6132:9;:25::i;:::-;:38;;;;:::i;:::-;6107:8;:64::i;4980:112:10:-;1109:13:9;:11;:13::i;:::-;-1:-1:-1;;;;;5051:27:10::1;;::::0;;;:17:::1;:27;::::0;;;;:34;;-1:-1:-1;;5051:34:10::1;5081:4;5051:34;::::0;;4980:112::o;3255:669::-;3346:7;1109:13:9;:11;:13::i;:::-;3434:22:10::1;::::0;3537:25:::1;::::0;;-1:-1:-1;;;3537:25:10;;;;-1:-1:-1;;;;;3434:22:10;;::::1;::::0;3365:34:::1;::::0;3434:22;;3537:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;3434:22;3537:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3608:43;::::0;-1:-1:-1;;;3608:43:10;;3633:4:::1;3608:43;::::0;::::1;7509:34:11::0;-1:-1:-1;;;;;7579:15:11;;;7559:18;;;7552:43;3477:95:10;;-1:-1:-1;3583:22:10::1;::::0;3608:16;::::1;::::0;::::1;::::0;7444:18:11;;3608:43:10::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3583:68:::0;-1:-1:-1;;;;;;3666:28:10;::::1;3662:122;;3727:46;::::0;-1:-1:-1;;;3727:46:10;;3755:4:::1;3727:46;::::0;::::1;7509:34:11::0;-1:-1:-1;;;;;7579:15:11;;;7559:18;;;7552:43;3727:19:10;::::1;::::0;::::1;::::0;7444:18:11;;3727:46:10::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3710:63;;3662:122;3794:14;:35:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;;3794:35:10::1;-1:-1:-1::0;;;;;3794:35:10;::::1;::::0;;::::1;::::0;;;-1:-1:-1;3839:40:10;;;:15:::1;3794:35;3839:40:::0;;;;:47;;-1:-1:-1;;3839:47:10::1;::::0;;::::1;::::0;;3794:35;3255:669;-1:-1:-1;;;;3255:669:10:o;1839:101:9:-;1109:13;:11;:13::i;:::-;1903:30:::1;1930:1;1903:18;:30::i;:::-;1839:101::o:0;5673:233:10:-;1109:13:9;:11;:13::i;:::-;5799:9:10::1;5794:106;5810:21:::0;;::::1;5794:106;;;5883:6;5852:13;:28;5866:10;;5877:1;5866:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5852:28:10::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;5852:28:10;:37;;-1:-1:-1;;5852:37:10::1;::::0;::::1;;::::0;;;::::1;::::0;;5833:3:::1;::::0;::::1;:::i;:::-;;;5794:106;;;;5673:233:::0;;;:::o;6013:124::-;1109:13:9;:11;:13::i;:::-;6090:9:10::1;:40:::0;;-1:-1:-1;;;;;6090:40:10;;::::1;;;-1:-1:-1::0;;;;;;6090:40:10;;::::1;::::0;;;::::1;::::0;;6013:124::o;2348:102:1:-;2404:13;2436:7;2429:14;;;;;:::i;6686:483::-;6801:4;734:10:0;6801:4:1;6882:25;734:10:0;6899:7:1;6882:9;:25::i;:::-;6855:52;;6958:15;6938:16;:35;;6917:119;;;;-1:-1:-1;;;6917:119:1;;8080:2:11;6917:119:1;;;8062:21:11;8119:2;8099:18;;;8092:30;8158:34;8138:18;;;8131:62;-1:-1:-1;;;8209:18:11;;;8202:35;8254:19;;6917:119:1;7878:401:11;6917:119:1;7070:60;7079:5;7086:7;7114:15;7095:16;:34;7070:8;:60::i;3733:211::-;3834:4;734:10:0;3888:28:1;734:10:0;3905:2:1;3909:6;3888:9;:28::i;4672:163:10:-;1109:13:9;:11;:13::i;:::-;4778:25:10::1;:50:::0;;-1:-1:-1;;;;;;4778:50:10::1;-1:-1:-1::0;;;;;4778:50:10;;;::::1;::::0;;;::::1;::::0;;4672:163::o;3996:296::-;1109:13:9;:11;:13::i;:::-;4155:16:10::1;3165:2:1::0;4155::10::1;:16;:::i;:::-;4149:23;::::0;:2:::1;:23;:::i;:::-;4123:22;:49;;4102:130;;;;-1:-1:-1::0;;;4102:130:10::1;;;;;;;:::i;:::-;4242:18;:43:::0;3996:296::o;4002:171:1:-;-1:-1:-1;;;;;4139:18:1;;;4113:7;4139:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4002:171::o;5098:111:10:-;1109:13:9;:11;:13::i;:::-;-1:-1:-1;;;;;5167:27:10::1;5197:5;5167:27:::0;;;:17:::1;:27;::::0;;;;:35;;-1:-1:-1;;5167:35:10::1;::::0;;5098:111::o;2089:232:9:-;1109:13;:11;:13::i;:::-;-1:-1:-1;;;;;2190:22:9;::::1;2169:107;;;::::0;-1:-1:-1;;;2169:107:9;;8486:2:11;2169:107:9::1;::::0;::::1;8468:21:11::0;8525:2;8505:18;;;8498:30;8564:34;8544:18;;;8537:62;-1:-1:-1;;;8615:18:11;;;8608:36;8661:19;;2169:107:9::1;8284:402:11::0;2169:107:9::1;2286:28;2305:8;2286:18;:28::i;:::-;2089:232:::0;:::o;4841:133:10:-;1109:13:9;:11;:13::i;:::-;4925:21:10::1;:42:::0;;-1:-1:-1;;;;;;4925:42:10::1;-1:-1:-1::0;;;;;4925:42:10;;;::::1;::::0;;;::::1;::::0;;4841:133::o;10688:370:1:-;-1:-1:-1;;;;;10819:19:1;;10811:68;;;;-1:-1:-1;;;10811:68:1;;8893:2:11;10811:68:1;;;8875:21:11;8932:2;8912:18;;;8905:30;8971:34;8951:18;;;8944:62;-1:-1:-1;;;9022:18:11;;;9015:34;9066:19;;10811:68:1;8691:400:11;10811:68:1;-1:-1:-1;;;;;10897:21:1;;10889:68;;;;-1:-1:-1;;;10889:68:1;;9298:2:11;10889:68:1;;;9280:21:11;9337:2;9317:18;;;9310:30;9376:34;9356:18;;;9349:62;-1:-1:-1;;;9427:18:11;;;9420:32;9469:19;;10889:68:1;9096:398:11;10889:68:1;-1:-1:-1;;;;;10968:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11019:32;;1546:25:11;;;11019:32:1;;1519:18:11;11019:32:1;;;;;;;10688:370;;;:::o;1374:130:9:-;1288:6;;-1:-1:-1;;;;;1288:6:9;734:10:0;1437:23:9;1429:68;;;;-1:-1:-1;;;1429:68:9;;9701:2:11;1429:68:9;;;9683:21:11;;;9720:18;;;9713:30;9779:34;9759:18;;;9752:62;9831:18;;1429:68:9;9499:356:11;11339:487:1;11469:24;11496:25;11506:5;11513:7;11496:9;:25::i;:::-;11469:52;;-1:-1:-1;;11535:16:1;:37;11531:289;;11633:6;11613:16;:26;;11588:114;;;;-1:-1:-1;;;11588:114:1;;10062:2:11;11588:114:1;;;10044:21:11;10101:2;10081:18;;;10074:30;10140:31;10120:18;;;10113:59;10189:18;;11588:114:1;9860:353:11;11588:114:1;11744:51;11753:5;11760:7;11788:6;11769:16;:25;11744:8;:51::i;1716:1533:10:-;-1:-1:-1;;;;;1843:19:10;;;;;;:13;:19;;;;;;;;:28;1835:69;;;;-1:-1:-1;;;1835:69:10;;10420:2:11;1835:69:10;;;10402:21:11;10459:2;10439:18;;;10432:30;10498;10478:18;;;10471:58;10546:18;;1835:69:10;10218:352:11;1835:69:10;-1:-1:-1;;;;;1922:17:10;;;;;;:13;:17;;;;;;;;:26;1914:65;;;;-1:-1:-1;;;1914:65:10;;10777:2:11;1914:65:10;;;10759:21:11;10816:2;10796:18;;;10789:30;10855:28;10835:18;;;10828:56;10901:18;;1914:65:10;10575:350:11;1914:65:10;-1:-1:-1;;;;;2020:21:10;;1989:11;2020:21;;;:15;:21;;;;;;;;2019:22;:46;;;;-1:-1:-1;;;;;;2046:19:10;;;;;;:15;:19;;;;;;;;2045:20;2019:46;2015:1228;;;2081:33;2097:4;2103:2;2107:6;2081:15;:33::i;:::-;2015:1228;;;-1:-1:-1;;;;;2135:23:10;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;2162:21:10;;;;;;:17;:21;;;;;;;;2135:48;2131:1112;;;2199:33;2215:4;2221:2;2225:6;2199:15;:33::i;2131:1112::-;-1:-1:-1;;;;;2269:21:10;;;;;;:15;:21;;;;;;;;:132;;2364:37;2394:6;2364:29;:37::i;:::-;2269:132;;;2309:36;2338:6;2309:28;:36::i;:::-;2263:138;-1:-1:-1;2415:39:10;2431:4;2437:2;2441:12;2263:138;2441:6;:12;:::i;:::-;2415:15;:39::i;:::-;2472:7;;2468:765;;2503:13;;;;2499:720;;;2570:9;;2540:46;;2556:4;;2570:9;;;-1:-1:-1;;;;;2570:9:10;2582:3;2540:15;:46::i;:::-;2608:9;;;;;;;;;-1:-1:-1;;;;;2608:9:10;-1:-1:-1;;;;;2608:17:10;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2499:720;;;2674:33;2710:7;2716:1;2710:3;:7;:::i;:::-;2674:43;-1:-1:-1;2739:29:10;2771:55;2674:43;2771:3;:55;:::i;:::-;2919:25;;2739:87;;-1:-1:-1;2848:169:10;;2889:4;;-1:-1:-1;;;;;2919:25:10;2970;2848:15;:169::i;:::-;3110:21;;3039:161;;3080:4;;-1:-1:-1;;;;;3110:21:10;3157;3039:15;:161::i;:::-;2652:567;;1825:1424;1716:1533;;;:::o;2475:187:9:-;2567:6;;;-1:-1:-1;;;;;2583:17:9;;;-1:-1:-1;;;;;;2583:17:9;;;;;;;2615:40;;2567:6;;;2583:17;2567:6;;2615:40;;2548:16;;2615:40;2538:124;2475:187;:::o;7623:852:1:-;-1:-1:-1;;;;;7749:18:1;;7741:68;;;;-1:-1:-1;;;7741:68:1;;11737:2:11;7741:68:1;;;11719:21:11;11776:2;11756:18;;;11749:30;11815:34;11795:18;;;11788:62;-1:-1:-1;;;11866:18:11;;;11859:35;11911:19;;7741:68:1;11535:401:11;7741:68:1;-1:-1:-1;;;;;7827:16:1;;7819:64;;;;-1:-1:-1;;;7819:64:1;;12143:2:11;7819:64:1;;;12125:21:11;12182:2;12162:18;;;12155:30;12221:34;12201:18;;;12194:62;-1:-1:-1;;;12272:18:11;;;12265:33;12315:19;;7819:64:1;11941:399:11;7819:64:1;-1:-1:-1;;;;;7965:15:1;;7943:19;7965:15;;;;;;;;;;;8011:21;;;;7990:106;;;;-1:-1:-1;;;7990:106:1;;12547:2:11;7990:106:1;;;12529:21:11;12586:2;12566:18;;;12559:30;12625:34;12605:18;;;12598:62;-1:-1:-1;;;12676:18:11;;;12669:36;12722:19;;7990:106:1;12345:402:11;7990:106:1;-1:-1:-1;;;;;8130:15:1;;;:9;:15;;;;;;;;;;;8148:20;;;8130:38;;8345:13;;;;;;;;;;:23;;;;;;8394:26;;1546:25:11;;;8345:13:1;;8394:26;;1519:18:11;8394:26:1;;;;;;;8431:37;12410:121;5397:178:10;5486:4;5550:16;3165:2:1;5550::10;:16;:::i;:::-;5543:24;;:3;:24;:::i;:::-;5519:19;;5510:28;;:6;:28;:::i;:::-;5509:59;;;;:::i;5215:176::-;5303:4;5366:16;3165:2:1;5366::10;:16;:::i;:::-;5359:24;;:3;:24;:::i;:::-;5336:18;;5327:27;;:6;:27;:::i;14:548:11:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:11;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:11:o;1215:180::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;-1:-1:-1;1366:23:11;;1215:180;-1:-1:-1;1215:180:11:o;1808:456::-;1885:6;1893;1901;1954:2;1942:9;1933:7;1929:23;1925:32;1922:52;;;1970:1;1967;1960:12;1922:52;2009:9;1996:23;2028:31;2053:5;2028:31;:::i;:::-;2078:5;-1:-1:-1;2135:2:11;2120:18;;2107:32;2148:33;2107:32;2148:33;:::i;:::-;1808:456;;2200:7;;-1:-1:-1;;;2254:2:11;2239:18;;;;2226:32;;1808:456::o;2477:118::-;2563:5;2556:13;2549:21;2542:5;2539:32;2529:60;;2585:1;2582;2575:12;2600:241;2656:6;2709:2;2697:9;2688:7;2684:23;2680:32;2677:52;;;2725:1;2722;2715:12;2677:52;2764:9;2751:23;2783:28;2805:5;2783:28;:::i;:::-;2830:5;2600:241;-1:-1:-1;;;2600:241:11:o;3035:247::-;3094:6;3147:2;3135:9;3126:7;3122:23;3118:32;3115:52;;;3163:1;3160;3153:12;3115:52;3202:9;3189:23;3221:31;3246:5;3221:31;:::i;3287:750::-;3379:6;3387;3395;3448:2;3436:9;3427:7;3423:23;3419:32;3416:52;;;3464:1;3461;3454:12;3416:52;3504:9;3491:23;3533:18;3574:2;3566:6;3563:14;3560:34;;;3590:1;3587;3580:12;3560:34;3628:6;3617:9;3613:22;3603:32;;3673:7;3666:4;3662:2;3658:13;3654:27;3644:55;;3695:1;3692;3685:12;3644:55;3735:2;3722:16;3761:2;3753:6;3750:14;3747:34;;;3777:1;3774;3767:12;3747:34;3832:7;3825:4;3815:6;3812:1;3808:14;3804:2;3800:23;3796:34;3793:47;3790:67;;;3853:1;3850;3843:12;3790:67;3884:4;3876:13;;;;-1:-1:-1;3908:6:11;-1:-1:-1;;3949:20:11;;3936:34;3979:28;3936:34;3979:28;:::i;:::-;4026:5;4016:15;;;3287:750;;;;;:::o;4042:388::-;4110:6;4118;4171:2;4159:9;4150:7;4146:23;4142:32;4139:52;;;4187:1;4184;4177:12;4139:52;4226:9;4213:23;4245:31;4270:5;4245:31;:::i;:::-;4295:5;-1:-1:-1;4352:2:11;4337:18;;4324:32;4365:33;4324:32;4365:33;:::i;:::-;4417:7;4407:17;;;4042:388;;;;;:::o;4435:380::-;4514:1;4510:12;;;;4557;;;4578:61;;4632:4;4624:6;4620:17;4610:27;;4578:61;4685:2;4677:6;4674:14;4654:18;4651:38;4648:161;;4731:10;4726:3;4722:20;4719:1;4712:31;4766:4;4763:1;4756:15;4794:4;4791:1;4784:15;4648:161;;4435:380;;;:::o;4820:127::-;4881:10;4876:3;4872:20;4869:1;4862:31;4912:4;4909:1;4902:15;4936:4;4933:1;4926:15;4952:422;5041:1;5084:5;5041:1;5098:270;5119:7;5109:8;5106:21;5098:270;;;5178:4;5174:1;5170:6;5166:17;5160:4;5157:27;5154:53;;;5187:18;;:::i;:::-;5237:7;5227:8;5223:22;5220:55;;;5257:16;;;;5220:55;5336:22;;;;5296:15;;;;5098:270;;;5102:3;4952:422;;;;;:::o;5379:806::-;5428:5;5458:8;5448:80;;-1:-1:-1;5499:1:11;5513:5;;5448:80;5547:4;5537:76;;-1:-1:-1;5584:1:11;5598:5;;5537:76;5629:4;5647:1;5642:59;;;;5715:1;5710:130;;;;5622:218;;5642:59;5672:1;5663:10;;5686:5;;;5710:130;5747:3;5737:8;5734:17;5731:43;;;5754:18;;:::i;:::-;-1:-1:-1;;5810:1:11;5796:16;;5825:5;;5622:218;;5924:2;5914:8;5911:16;5905:3;5899:4;5896:13;5892:36;5886:2;5876:8;5873:16;5868:2;5862:4;5859:12;5855:35;5852:77;5849:159;;;-1:-1:-1;5961:19:11;;;5993:5;;5849:159;6040:34;6065:8;6059:4;6040:34;:::i;:::-;6110:6;6106:1;6102:6;6098:19;6089:7;6086:32;6083:58;;;6121:18;;:::i;:::-;6159:20;;5379:806;-1:-1:-1;;;5379:806:11:o;6190:140::-;6248:5;6277:47;6318:4;6308:8;6304:19;6298:4;6277:47;:::i;6335:168::-;6408:9;;;6439;;6456:15;;;6450:22;;6436:37;6426:71;;6477:18;;:::i;6508:398::-;6710:2;6692:21;;;6749:2;6729:18;;;6722:30;6788:34;6783:2;6768:18;;6761:62;-1:-1:-1;;;6854:2:11;6839:18;;6832:32;6896:3;6881:19;;6508:398::o;6911:125::-;6976:9;;;6997:10;;;6994:36;;;7010:18;;:::i;7041:251::-;7111:6;7164:2;7152:9;7143:7;7139:23;7135:32;7132:52;;;7180:1;7177;7170:12;7132:52;7212:9;7206:16;7231:31;7256:5;7231:31;:::i;7606:127::-;7667:10;7662:3;7658:20;7655:1;7648:31;7698:4;7695:1;7688:15;7722:4;7719:1;7712:15;7738:135;7777:3;7798:17;;;7795:43;;7818:18;;:::i;:::-;-1:-1:-1;7865:1:11;7854:13;;7738:135::o;10930:128::-;10997:9;;;11018:11;;;11015:37;;;11032:18;;:::i;11063:245::-;11130:6;11183:2;11171:9;11162:7;11158:23;11154:32;11151:52;;;11199:1;11196;11189:12;11151:52;11231:9;11225:16;11250:28;11272:5;11250:28;:::i;11313:217::-;11353:1;11379;11369:132;;11423:10;11418:3;11414:20;11411:1;11404:31;11458:4;11455:1;11448:15;11486:4;11483:1;11476:15;11369:132;-1:-1:-1;11515:9:11;;11313:217::o

Swarm Source

ipfs://42543b337541f26026807ecced493b5f620b277911ade0ec7911ade88c634e26
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.