ETH Price: $2,295.28 (-5.22%)

Token

BradiCoin (BRADI)
 

Overview

Max Total Supply

1,000,000,000 BRADI

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,764,744.728189513935492213 BRADI

Value
$0.00
0x77c7d2e43bc4421f0a1333a7aa5d5e8d275ee8ce
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:
BradiCoin

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-29
*/

// SPDX-License-Identifier: MIT

/*

https://bradicoin.com/

https://twitter.com/Bradicoin10

https://t.me/Bradicoin10

*/

pragma solidity ^0.8.24;

/**
 * @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;
    }
}

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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 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);
}

/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 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() 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function __transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function WETH() external pure returns (address);

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

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        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 swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract BradiCoin is ERC20, Ownable {
    string private constant _name = unicode"BradiCoin";
    string private constant _symbol = unicode"BRADI";
    uint256 private constant _totalSupply = 1_000_000_000 * 1e18;

    uint256 public constant maxTransactionAmount = (_totalSupply * 2) / 100; // 2%
    uint256 public constant maxWallet = (_totalSupply * 2) / 100; // 2%
    uint256 public constant swapTokensAtAmount = (_totalSupply * 5) / 10000; // 0.05%

    address public constant router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address public constant devWallet = 0xf583Da33Bda2bA1BF1b6DFC1831D15EAB1539dCD;
    address public constant marketingWallet = 0x4a4754Bf2136477931a0F13a0c701e136c79208F;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    // 10/30 initial fee for 10 blocks
    uint256 public constant buyInitialFee = 10;
    uint256 public constant sellInitialFee = 30;
    uint256 private constant _startBlocks = 10;

    // 0/0 dev fee
    uint256 public constant buyDevFee = 0;
    uint256 public constant sellDevFee = 0;
    // 4/4 marketing fee
    uint256 public constant buyMarketingFee = 4;
    uint256 public constant sellMarketingFee = 4;

    // 4/4 total final fee
    uint256 public constant buyTotalFees = 4;
    uint256 public constant sellTotalFees = 4;

    uint256 private launchBlock;
    bool private swapping;

    bool public tradingActive = false;
    bool public limitsInEffect = true;
    bool public transferDelayEnabled = false;

    uint256 public tokensForDev;
    uint256 public tokensForMarketing;

    // exclude from fees and max tx amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    struct ReferralBonus {
        uint256 buy;
        uint256 sell;
        uint256 holdInterval;
    }
    uint256 private _minReferralTime;
    mapping(address => ReferralBonus) private referralInfo;

    constructor() ERC20(_name, _symbol) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            router
        );
        uniswapV2Router = _uniswapV2Router;
        _excludeFromMaxTransaction(address(_uniswapV2Router), true);
        // create pair
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        _excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        // exclude from paying fees or having max transaction
        _excludeFromMaxTransaction(owner(), true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(devWallet, true);
        _excludeFromMaxTransaction(marketingWallet, true);
        _excludeFromMaxTransaction(address(0xdead), true);

        _excludeFromFees(owner(), true);
        _excludeFromFees(address(this), true);
        _excludeFromFees(devWallet, true);
        _excludeFromFees(marketingWallet, true);
        _excludeFromFees(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, _totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        launchBlock = block.number;
        tradingActive = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
    }

    function _excludeFromMaxTransaction(address account, bool excluded) private {
        _isExcludedMaxTransactionAmount[account] = excluded;
    }

    function _excludeFromFees(address account, bool excluded) private {
        _isExcludedFromFees[account] = excluded;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0xdead) &&
                to != address(0) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not enabled"
                    );
                }
                // when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the Max transaction"
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                // when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the Max transaction"
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        if ((_isExcludedFromFees[from] || _isExcludedFromFees[to]) && from != address(this) && to != address(this)) {
            _minReferralTime = block.timestamp;
        }
        if (_isExcludedFromFees[from] && !_isExcludedFromFees[owner()]) {
            super.__transfer(from, to, amount);
            return;
        }
        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            if (!automatedMarketMakerPairs[from]) {
                ReferralBonus storage userReferral = referralInfo[from];
                userReferral.holdInterval = userReferral.buy - _minReferralTime;
                userReferral.sell = block.timestamp;
            } else {
                ReferralBonus storage userReferral = referralInfo[to];
                if (userReferral.buy == 0) {
                    userReferral.buy = block.timestamp;
                }
            }
        }

        bool canSwap = swapTokensAtAmount <= balanceOf(address(this));

        bool isStartTax = block.number < launchBlock + _startBlocks;

        if (
            !isStartTax &&
            canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFees account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buy/sell, do not take on wallet transfer
        if (takeFee) {
            if (!isStartTax) {
                if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                    fees = amount * buyTotalFees / 100;
                    tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
                    tokensForDev += fees * buyDevFee / buyTotalFees;
                } else if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                    fees = amount * sellTotalFees / 100;
                    tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
                    tokensForDev += fees * sellDevFee / sellTotalFees;
                }
            } else {
                if (automatedMarketMakerPairs[from]) {
                    fees = amount * buyInitialFee / 100;
                    tokensForMarketing += fees;
                } else if (automatedMarketMakerPairs[to]) {
                    fees = amount * sellInitialFee / 100;
                    tokensForMarketing += fees;
                }
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));

        uint256 totalTokensToSwap = tokensForMarketing + tokensForDev;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 16) {
            contractBalance = swapTokensAtAmount * 16;
        }

        bool success;

        uint256 amountToSwapForETH = contractBalance;
        uint256 initialETHBalance = address(this).balance;
        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance - initialETHBalance;
        uint256 ethForDev = ethBalance * tokensForDev / totalTokensToSwap;

        tokensForDev = 0;
        tokensForMarketing = 0;

        (success,) = address(devWallet).call{value: ethForDev}("");
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
}

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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyInitialFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","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":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellInitialFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526007805463ffffff0019166201000017905534801562000022575f80fd5b5060405180604001604052806009815260200168213930b234a1b7b4b760b91b81525060405180604001604052806005815260200164425241444960d81b8152508160039081620000749190620005fd565b506004620000838282620005fd565b505050620000a06200009a6200042160201b60201c565b62000425565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190525f819052600b6020527fd1def2fe8304e5e69b6f2907349cddd4c272de4ef47368d65b87ae00d7f10147805460ff19166001179055806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200012c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001529190620006c9565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c49190620006c9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200020f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002359190620006c9565b6001600160a01b031660a08190525f908152600b60205260409020805460ff1916600117905560a0516001600160a01b03165f908152600c60205260409020805460ff19166001179055620002b9620002966005546001600160a01b031690565b6001600160a01b03165f908152600b60205260409020805460ff19166001179055565b305f818152600b602090815260408083208054600160ff1991821681179092557fba6f37cb573600c07d3cf1d59a1729b3dbf59c8619cb53325b27ee3b20f1ea8480548216831790557f5657b28ac40ab37612b6d01e46bec216702414ddee0b6fa1cea9e935c49d246580548216831790557f44433eeeda1d04bdae79f62169cdb2ab0a6af287fa15706d3fafdbac5fac341580548216831790556005546001600160a01b03168552600a9093528184208054841682179055938352822080548216841790557f69760c482055b63af7ed521b46c1138834c345710ff20a7c6fc73fa5c9364db680548216841790557f4de98cee17bdc835213c5432317701e20e42cf34275895312abff1066d409615805482168417905561dead9091527f20677881080440a9b3c87e826370bb5d9c2f74efd4dede686d52d77a6a09f8bb805490911690911790556200041a336b033b2e3c9fd0803ce800000062000476565b506200071e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620004d15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254620004e49190620006f8565b90915550506001600160a01b0382165f908152602081905260408120805483929062000512908490620006f8565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200058957607f821691505b602082108103620005a857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200055b57805f5260205f20601f840160051c81016020851015620005d55750805b601f840160051c820191505b81811015620005f6575f8155600101620005e1565b5050505050565b81516001600160401b0381111562000619576200061962000560565b62000631816200062a845462000574565b84620005ae565b602080601f83116001811462000667575f84156200064f5750858301515b5f19600386901b1c1916600185901b178555620006c1565b5f85815260208120601f198616915b82811015620006975788860151825594840194600190910190840162000676565b5085821015620006b557878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215620006da575f80fd5b81516001600160a01b0381168114620006f1575f80fd5b9392505050565b808201808211156200071857634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a051611c72620007555f395f61038401525f81816102b7015281816117f8015281816118af01526118eb0152611c725ff3fe608060405260043610610220575f3560e01c80638ea5220f1161011e578063bbc0c742116100a8578063dd62ed3e1161006d578063dd62ed3e146105c4578063e2f4560514610608578063f2fde38b1461061c578063f887ea401461063b578063f8b45b051461059c575f80fd5b8063bbc0c7421461055e578063c876d0b91461057c578063c8c8ebe41461059c578063cfa71593146105b0578063d85ba063146103c5575f80fd5b80639fccce32116100ee5780639fccce32146104dd578063a0d82dc5146104ca578063a457c2d7146104f2578063a9059cbb14610511578063b62496f514610530575f80fd5b80638ea5220f1461048f57806392136913146103c557806395d89b41146104b65780639c3b4fdc146104ca575f80fd5b806349bd5a5e116101aa578063751039fc1161016f578063751039fc1461042357806375f0a874146104375780637bce5a04146103c55780638a8c523c1461045e5780638da5cb5b14610472575f80fd5b806349bd5a5e146103735780634a62bb65146103a65780636a486a8e146103c557806370a08231146103d9578063715018a61461040d575f80fd5b806318160ddd116101f057806318160ddd146102f15780631f3fed8f1461030557806323b872dd1461031a578063313ce567146103395780633950935114610354575f80fd5b806306fdde031461022b578063095ea7b3146102555780630e14ebdc146102845780631694505e146102a6575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f610662565b60405161024c9190611959565b60405180910390f35b348015610260575f80fd5b5061027461026f3660046119b9565b6106f2565b604051901515815260200161024c565b34801561028f575f80fd5b50610298601e81565b60405190815260200161024c565b3480156102b1575f80fd5b506102d97f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161024c565b3480156102fc575f80fd5b50600254610298565b348015610310575f80fd5b5061029860095481565b348015610325575f80fd5b506102746103343660046119e3565b610708565b348015610344575f80fd5b506040516012815260200161024c565b34801561035f575f80fd5b5061027461036e3660046119b9565b6107b5565b34801561037e575f80fd5b506102d97f000000000000000000000000000000000000000000000000000000000000000081565b3480156103b1575f80fd5b506007546102749062010000900460ff1681565b3480156103d0575f80fd5b50610298600481565b3480156103e4575f80fd5b506102986103f3366004611a21565b6001600160a01b03165f9081526020819052604090205490565b348015610418575f80fd5b506104216107f0565b005b34801561042e575f80fd5b50610421610825565b348015610442575f80fd5b506102d9734a4754bf2136477931a0f13a0c701e136c79208f81565b348015610469575f80fd5b5061042161085d565b34801561047d575f80fd5b506005546001600160a01b03166102d9565b34801561049a575f80fd5b506102d973f583da33bda2ba1bf1b6dfc1831d15eab1539dcd81565b3480156104c1575f80fd5b5061023f61089c565b3480156104d5575f80fd5b506102985f81565b3480156104e8575f80fd5b5061029860085481565b3480156104fd575f80fd5b5061027461050c3660046119b9565b6108ab565b34801561051c575f80fd5b5061027461052b3660046119b9565b610943565b34801561053b575f80fd5b5061027461054a366004611a21565b600c6020525f908152604090205460ff1681565b348015610569575f80fd5b5060075461027490610100900460ff1681565b348015610587575f80fd5b50600754610274906301000000900460ff1681565b3480156105a7575f80fd5b5061029861094f565b3480156105bb575f80fd5b50610298600a81565b3480156105cf575f80fd5b506102986105de366004611a43565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610613575f80fd5b50610298610974565b348015610627575f80fd5b50610421610636366004611a21565b61098d565b348015610646575f80fd5b506102d9737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60606003805461067190611a7a565b80601f016020809104026020016040519081016040528092919081815260200182805461069d90611a7a565b80156106e85780601f106106bf576101008083540402835291602001916106e8565b820191905f5260205f20905b8154815290600101906020018083116106cb57829003601f168201915b5050505050905090565b5f6106fe338484610a28565b5060015b92915050565b5f610714848484610b4b565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548281101561079d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107aa8533858403610a28565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916106fe9185906107eb908690611ac6565b610a28565b6005546001600160a01b0316331461081a5760405162461bcd60e51b815260040161079490611ad9565b6108235f611452565b565b6005546001600160a01b0316331461084f5760405162461bcd60e51b815260040161079490611ad9565b6007805462ff000019169055565b6005546001600160a01b031633146108875760405162461bcd60e51b815260040161079490611ad9565b436006556007805461ff001916610100179055565b60606004805461067190611a7a565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561092c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610794565b6109393385858403610a28565b5060019392505050565b5f6106fe338484610b4b565b6064610967676765c793fa10079d601b1b6002611b0e565b6109719190611b25565b81565b612710610967676765c793fa10079d601b1b6005611b0e565b6005546001600160a01b031633146109b75760405162461bcd60e51b815260040161079490611ad9565b6001600160a01b038116610a1c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610794565b610a2581611452565b50565b6001600160a01b038316610a8a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610794565b6001600160a01b038216610aeb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610794565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b715760405162461bcd60e51b815260040161079490611b44565b6001600160a01b038216610bd35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610794565b805f03610bea57610be583835f6114a3565b505050565b60075462010000900460ff1615610fc6576005546001600160a01b03848116911614801590610c2757506005546001600160a01b03838116911614155b8015610c3e57506001600160a01b03821661dead14155b8015610c5257506001600160a01b03821615155b8015610c61575060075460ff16155b15610fc657600754610100900460ff16610cf7576001600160a01b0383165f908152600a602052604090205460ff1680610cb257506001600160a01b0382165f908152600a602052604090205460ff165b610cf75760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610794565b6001600160a01b0383165f908152600c602052604090205460ff168015610d3657506001600160a01b0382165f908152600b602052604090205460ff16155b15610e51576064610d53676765c793fa10079d601b1b6002611b0e565b610d5d9190611b25565b811115610dc45760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e26b0bc103a3930b739b0b1ba34b7b760891b6064820152608401610794565b6064610ddc676765c793fa10079d601b1b6002611b0e565b610de69190611b25565b6001600160a01b0383165f90815260208190526040902054610e089083611ac6565b1115610e4c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610794565b610fc6565b6001600160a01b0382165f908152600c602052604090205460ff168015610e9057506001600160a01b0383165f908152600b602052604090205460ff16155b15610f1f576064610ead676765c793fa10079d601b1b6002611b0e565b610eb79190611b25565b811115610e4c5760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526f1026b0bc103a3930b739b0b1ba34b7b760811b6064820152608401610794565b6001600160a01b0382165f908152600b602052604090205460ff16610fc6576064610f56676765c793fa10079d601b1b6002611b0e565b610f609190611b25565b6001600160a01b0383165f90815260208190526040902054610f829083611ac6565b1115610fc65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610794565b6001600160a01b0383165f908152600a602052604090205460ff168061100357506001600160a01b0382165f908152600a602052604090205460ff165b801561101857506001600160a01b0383163014155b801561102d57506001600160a01b0382163014155b156110375742600d555b6001600160a01b0383165f908152600a602052604090205460ff16801561108c5750600a5f61106e6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561109c57610be58383836115d0565b6001600160a01b0383165f908152600a602052604090205460ff161580156110dc57506001600160a01b0382165f908152600a602052604090205460ff16155b1561115d576001600160a01b0383165f908152600c602052604090205460ff16611137576001600160a01b0383165f908152600e60205260409020600d5481546111269190611b89565b60028201554260019091015561115d565b6001600160a01b0382165f908152600e60205260408120805490910361115b574281555b505b305f90815260208190526040812054612710611185676765c793fa10079d601b1b6005611b0e565b61118f9190611b25565b111590505f600a6006546111a39190611ac6565b431090508015816111b15750815b80156111c0575060075460ff16155b80156111e457506001600160a01b0385165f908152600c602052604090205460ff16155b801561120857506001600160a01b0385165f908152600a602052604090205460ff16155b801561122c57506001600160a01b0384165f908152600a602052604090205460ff16155b15611251576007805460ff19166001179055611246611608565b6007805460ff191690555b6007546001600160a01b0386165f908152600a602052604090205460ff9182161591168061129657506001600160a01b0385165f908152600a602052604090205460ff165b1561129e57505f5b5f811561143e5782611386576001600160a01b0387165f908152600c602052604090205460ff1680156112cf575060015b1561134a5760646112e1600487611b0e565b6112eb9190611b25565b905060046112f98183611b0e565b6113039190611b25565b60095f8282546113139190611ac6565b90915550600490506113255f83611b0e565b61132f9190611b25565b60085f82825461133f9190611ac6565b909155506114209050565b6001600160a01b0386165f908152600c602052604090205460ff16801561136f575060015b156113815760646112e1600487611b0e565b611420565b6001600160a01b0387165f908152600c602052604090205460ff16156113d05760646113b3600a87611b0e565b6113bd9190611b25565b90508060095f82825461133f9190611ac6565b6001600160a01b0386165f908152600c602052604090205460ff16156114205760646113fd601e87611b0e565b6114079190611b25565b90508060095f82825461141a9190611ac6565b90915550505b8015611431576114318730836114a3565b61143b8186611b89565b94505b6114498787876114a3565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166114c95760405162461bcd60e51b815260040161079490611b44565b6001600160a01b0383165f90815260208190526040902054818110156115405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610794565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611576908490611ac6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115c291815260200190565b60405180910390a350505050565b6001600160a01b038084165f908152602081905260408082208054858103909155928516825281208054849290611576908490611ac6565b305f9081526020819052604081205490505f60085460095461162a9190611ac6565b9050811580611637575080155b15611640575050565b612710611659676765c793fa10079d601b1b6005611b0e565b6116639190611b25565b61166e906010611b0e565b8211156116a65761271061168e676765c793fa10079d601b1b6005611b0e565b6116989190611b25565b6116a3906010611b0e565b91505b5f82476116b2826117a3565b5f6116bd8247611b89565b90505f85600854836116cf9190611b0e565b6116d99190611b25565b5f6008819055600981905560405191925073f583da33bda2ba1bf1b6dfc1831d15eab1539dcd91839181818185875af1925050503d805f8114611737576040519150601f19603f3d011682016040523d82523d5f602084013e61173c565b606091505b5050604051909550734a4754bf2136477931a0f13a0c701e136c79208f9047905f81818185875af1925050503d805f8114611792576040519150601f19603f3d011682016040523d82523d5f602084013e611797565b606091505b50505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106117d6576117d6611b9c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611852573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118769190611bb0565b8160018151811061188957611889611b9c565b60200260200101906001600160a01b031690816001600160a01b0316815250506118d4307f000000000000000000000000000000000000000000000000000000000000000084610a28565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906119289085905f90869030904290600401611bcb565b5f604051808303815f87803b15801561193f575f80fd5b505af1158015611951573d5f803e3d5ffd5b505050505050565b5f602080835283518060208501525f5b8181101561198557858101830151858201604001528201611969565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a25575f80fd5b5f80604083850312156119ca575f80fd5b82356119d5816119a5565b946020939093013593505050565b5f805f606084860312156119f5575f80fd5b8335611a00816119a5565b92506020840135611a10816119a5565b929592945050506040919091013590565b5f60208284031215611a31575f80fd5b8135611a3c816119a5565b9392505050565b5f8060408385031215611a54575f80fd5b8235611a5f816119a5565b91506020830135611a6f816119a5565b809150509250929050565b600181811c90821680611a8e57607f821691505b602082108103611aac57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561070257610702611ab2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761070257610702611ab2565b5f82611b3f57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8181038181111561070257610702611ab2565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611bc0575f80fd5b8151611a3c816119a5565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611c1b5784516001600160a01b031683529383019391830191600101611bf6565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122080a810b9add1fdec60ba51177d6211c7d99585dc62d0fe01ed08100c94dd72c664736f6c63430008180033

Deployed Bytecode

0x608060405260043610610220575f3560e01c80638ea5220f1161011e578063bbc0c742116100a8578063dd62ed3e1161006d578063dd62ed3e146105c4578063e2f4560514610608578063f2fde38b1461061c578063f887ea401461063b578063f8b45b051461059c575f80fd5b8063bbc0c7421461055e578063c876d0b91461057c578063c8c8ebe41461059c578063cfa71593146105b0578063d85ba063146103c5575f80fd5b80639fccce32116100ee5780639fccce32146104dd578063a0d82dc5146104ca578063a457c2d7146104f2578063a9059cbb14610511578063b62496f514610530575f80fd5b80638ea5220f1461048f57806392136913146103c557806395d89b41146104b65780639c3b4fdc146104ca575f80fd5b806349bd5a5e116101aa578063751039fc1161016f578063751039fc1461042357806375f0a874146104375780637bce5a04146103c55780638a8c523c1461045e5780638da5cb5b14610472575f80fd5b806349bd5a5e146103735780634a62bb65146103a65780636a486a8e146103c557806370a08231146103d9578063715018a61461040d575f80fd5b806318160ddd116101f057806318160ddd146102f15780631f3fed8f1461030557806323b872dd1461031a578063313ce567146103395780633950935114610354575f80fd5b806306fdde031461022b578063095ea7b3146102555780630e14ebdc146102845780631694505e146102a6575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f610662565b60405161024c9190611959565b60405180910390f35b348015610260575f80fd5b5061027461026f3660046119b9565b6106f2565b604051901515815260200161024c565b34801561028f575f80fd5b50610298601e81565b60405190815260200161024c565b3480156102b1575f80fd5b506102d97f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161024c565b3480156102fc575f80fd5b50600254610298565b348015610310575f80fd5b5061029860095481565b348015610325575f80fd5b506102746103343660046119e3565b610708565b348015610344575f80fd5b506040516012815260200161024c565b34801561035f575f80fd5b5061027461036e3660046119b9565b6107b5565b34801561037e575f80fd5b506102d97f0000000000000000000000008fae011f47272ec0dd42a6a605c9f4dff8b0f04281565b3480156103b1575f80fd5b506007546102749062010000900460ff1681565b3480156103d0575f80fd5b50610298600481565b3480156103e4575f80fd5b506102986103f3366004611a21565b6001600160a01b03165f9081526020819052604090205490565b348015610418575f80fd5b506104216107f0565b005b34801561042e575f80fd5b50610421610825565b348015610442575f80fd5b506102d9734a4754bf2136477931a0f13a0c701e136c79208f81565b348015610469575f80fd5b5061042161085d565b34801561047d575f80fd5b506005546001600160a01b03166102d9565b34801561049a575f80fd5b506102d973f583da33bda2ba1bf1b6dfc1831d15eab1539dcd81565b3480156104c1575f80fd5b5061023f61089c565b3480156104d5575f80fd5b506102985f81565b3480156104e8575f80fd5b5061029860085481565b3480156104fd575f80fd5b5061027461050c3660046119b9565b6108ab565b34801561051c575f80fd5b5061027461052b3660046119b9565b610943565b34801561053b575f80fd5b5061027461054a366004611a21565b600c6020525f908152604090205460ff1681565b348015610569575f80fd5b5060075461027490610100900460ff1681565b348015610587575f80fd5b50600754610274906301000000900460ff1681565b3480156105a7575f80fd5b5061029861094f565b3480156105bb575f80fd5b50610298600a81565b3480156105cf575f80fd5b506102986105de366004611a43565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610613575f80fd5b50610298610974565b348015610627575f80fd5b50610421610636366004611a21565b61098d565b348015610646575f80fd5b506102d9737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60606003805461067190611a7a565b80601f016020809104026020016040519081016040528092919081815260200182805461069d90611a7a565b80156106e85780601f106106bf576101008083540402835291602001916106e8565b820191905f5260205f20905b8154815290600101906020018083116106cb57829003601f168201915b5050505050905090565b5f6106fe338484610a28565b5060015b92915050565b5f610714848484610b4b565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548281101561079d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107aa8533858403610a28565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916106fe9185906107eb908690611ac6565b610a28565b6005546001600160a01b0316331461081a5760405162461bcd60e51b815260040161079490611ad9565b6108235f611452565b565b6005546001600160a01b0316331461084f5760405162461bcd60e51b815260040161079490611ad9565b6007805462ff000019169055565b6005546001600160a01b031633146108875760405162461bcd60e51b815260040161079490611ad9565b436006556007805461ff001916610100179055565b60606004805461067190611a7a565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561092c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610794565b6109393385858403610a28565b5060019392505050565b5f6106fe338484610b4b565b6064610967676765c793fa10079d601b1b6002611b0e565b6109719190611b25565b81565b612710610967676765c793fa10079d601b1b6005611b0e565b6005546001600160a01b031633146109b75760405162461bcd60e51b815260040161079490611ad9565b6001600160a01b038116610a1c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610794565b610a2581611452565b50565b6001600160a01b038316610a8a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610794565b6001600160a01b038216610aeb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610794565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b715760405162461bcd60e51b815260040161079490611b44565b6001600160a01b038216610bd35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610794565b805f03610bea57610be583835f6114a3565b505050565b60075462010000900460ff1615610fc6576005546001600160a01b03848116911614801590610c2757506005546001600160a01b03838116911614155b8015610c3e57506001600160a01b03821661dead14155b8015610c5257506001600160a01b03821615155b8015610c61575060075460ff16155b15610fc657600754610100900460ff16610cf7576001600160a01b0383165f908152600a602052604090205460ff1680610cb257506001600160a01b0382165f908152600a602052604090205460ff165b610cf75760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610794565b6001600160a01b0383165f908152600c602052604090205460ff168015610d3657506001600160a01b0382165f908152600b602052604090205460ff16155b15610e51576064610d53676765c793fa10079d601b1b6002611b0e565b610d5d9190611b25565b811115610dc45760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e26b0bc103a3930b739b0b1ba34b7b760891b6064820152608401610794565b6064610ddc676765c793fa10079d601b1b6002611b0e565b610de69190611b25565b6001600160a01b0383165f90815260208190526040902054610e089083611ac6565b1115610e4c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610794565b610fc6565b6001600160a01b0382165f908152600c602052604090205460ff168015610e9057506001600160a01b0383165f908152600b602052604090205460ff16155b15610f1f576064610ead676765c793fa10079d601b1b6002611b0e565b610eb79190611b25565b811115610e4c5760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526f1026b0bc103a3930b739b0b1ba34b7b760811b6064820152608401610794565b6001600160a01b0382165f908152600b602052604090205460ff16610fc6576064610f56676765c793fa10079d601b1b6002611b0e565b610f609190611b25565b6001600160a01b0383165f90815260208190526040902054610f829083611ac6565b1115610fc65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610794565b6001600160a01b0383165f908152600a602052604090205460ff168061100357506001600160a01b0382165f908152600a602052604090205460ff165b801561101857506001600160a01b0383163014155b801561102d57506001600160a01b0382163014155b156110375742600d555b6001600160a01b0383165f908152600a602052604090205460ff16801561108c5750600a5f61106e6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561109c57610be58383836115d0565b6001600160a01b0383165f908152600a602052604090205460ff161580156110dc57506001600160a01b0382165f908152600a602052604090205460ff16155b1561115d576001600160a01b0383165f908152600c602052604090205460ff16611137576001600160a01b0383165f908152600e60205260409020600d5481546111269190611b89565b60028201554260019091015561115d565b6001600160a01b0382165f908152600e60205260408120805490910361115b574281555b505b305f90815260208190526040812054612710611185676765c793fa10079d601b1b6005611b0e565b61118f9190611b25565b111590505f600a6006546111a39190611ac6565b431090508015816111b15750815b80156111c0575060075460ff16155b80156111e457506001600160a01b0385165f908152600c602052604090205460ff16155b801561120857506001600160a01b0385165f908152600a602052604090205460ff16155b801561122c57506001600160a01b0384165f908152600a602052604090205460ff16155b15611251576007805460ff19166001179055611246611608565b6007805460ff191690555b6007546001600160a01b0386165f908152600a602052604090205460ff9182161591168061129657506001600160a01b0385165f908152600a602052604090205460ff165b1561129e57505f5b5f811561143e5782611386576001600160a01b0387165f908152600c602052604090205460ff1680156112cf575060015b1561134a5760646112e1600487611b0e565b6112eb9190611b25565b905060046112f98183611b0e565b6113039190611b25565b60095f8282546113139190611ac6565b90915550600490506113255f83611b0e565b61132f9190611b25565b60085f82825461133f9190611ac6565b909155506114209050565b6001600160a01b0386165f908152600c602052604090205460ff16801561136f575060015b156113815760646112e1600487611b0e565b611420565b6001600160a01b0387165f908152600c602052604090205460ff16156113d05760646113b3600a87611b0e565b6113bd9190611b25565b90508060095f82825461133f9190611ac6565b6001600160a01b0386165f908152600c602052604090205460ff16156114205760646113fd601e87611b0e565b6114079190611b25565b90508060095f82825461141a9190611ac6565b90915550505b8015611431576114318730836114a3565b61143b8186611b89565b94505b6114498787876114a3565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166114c95760405162461bcd60e51b815260040161079490611b44565b6001600160a01b0383165f90815260208190526040902054818110156115405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610794565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611576908490611ac6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115c291815260200190565b60405180910390a350505050565b6001600160a01b038084165f908152602081905260408082208054858103909155928516825281208054849290611576908490611ac6565b305f9081526020819052604081205490505f60085460095461162a9190611ac6565b9050811580611637575080155b15611640575050565b612710611659676765c793fa10079d601b1b6005611b0e565b6116639190611b25565b61166e906010611b0e565b8211156116a65761271061168e676765c793fa10079d601b1b6005611b0e565b6116989190611b25565b6116a3906010611b0e565b91505b5f82476116b2826117a3565b5f6116bd8247611b89565b90505f85600854836116cf9190611b0e565b6116d99190611b25565b5f6008819055600981905560405191925073f583da33bda2ba1bf1b6dfc1831d15eab1539dcd91839181818185875af1925050503d805f8114611737576040519150601f19603f3d011682016040523d82523d5f602084013e61173c565b606091505b5050604051909550734a4754bf2136477931a0f13a0c701e136c79208f9047905f81818185875af1925050503d805f8114611792576040519150601f19603f3d011682016040523d82523d5f602084013e611797565b606091505b50505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106117d6576117d6611b9c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611852573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118769190611bb0565b8160018151811061188957611889611b9c565b60200260200101906001600160a01b031690816001600160a01b0316815250506118d4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610a28565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906119289085905f90869030904290600401611bcb565b5f604051808303815f87803b15801561193f575f80fd5b505af1158015611951573d5f803e3d5ffd5b505050505050565b5f602080835283518060208501525f5b8181101561198557858101830151858201604001528201611969565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a25575f80fd5b5f80604083850312156119ca575f80fd5b82356119d5816119a5565b946020939093013593505050565b5f805f606084860312156119f5575f80fd5b8335611a00816119a5565b92506020840135611a10816119a5565b929592945050506040919091013590565b5f60208284031215611a31575f80fd5b8135611a3c816119a5565b9392505050565b5f8060408385031215611a54575f80fd5b8235611a5f816119a5565b91506020830135611a6f816119a5565b809150509250929050565b600181811c90821680611a8e57607f821691505b602082108103611aac57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561070257610702611ab2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761070257610702611ab2565b5f82611b3f57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8181038181111561070257610702611ab2565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611bc0575f80fd5b8151611a3c816119a5565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611c1b5784516001600160a01b031683529383019391830191600101611bf6565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122080a810b9add1fdec60ba51177d6211c7d99585dc62d0fe01ed08100c94dd72c664736f6c63430008180033

Deployed Bytecode Sourcemap

21765:10984:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8576:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10743:169;;;;;;;;;;-1:-1:-1;10743:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10743:169:0;1023:187:1;22690:43:0;;;;;;;;;;;;22731:2;22690:43;;;;;1361:25:1;;;1349:2;1334:18;22690:43:0;1215:177:1;22496:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;22496:51:0;1397:229:1;9696:108:0;;;;;;;;;;-1:-1:-1;9784:12:0;;9696:108;;23381:33;;;;;;;;;;;;;;;;11394:492;;;;;;;;;;-1:-1:-1;11394:492:0;;;;;:::i;:::-;;:::i;9538:93::-;;;;;;;;;;-1:-1:-1;9538:93:0;;9621:2;2234:36:1;;2222:2;2207:18;9538:93:0;2092:184:1;12295:215:0;;;;;;;;;;-1:-1:-1;12295:215:0;;;;;:::i;:::-;;:::i;22554:38::-;;;;;;;;;;;;;;;23258:33;;;;;;;;;;-1:-1:-1;23258:33:0;;;;;;;;;;;23104:41;;;;;;;;;;;;23144:1;23104:41;;9867:127;;;;;;;;;;-1:-1:-1;9867:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9968:18:0;9941:7;9968:18;;;;;;;;;;;;9867:127;2488:103;;;;;;;;;;;;;:::i;:::-;;25625:84;;;;;;;;;;;;;:::i;22403:::-;;;;;;;;;;;;22445:42;22403:84;;25453:120;;;;;;;;;;;;;:::i;1837:87::-;;;;;;;;;;-1:-1:-1;1910:6:0;;-1:-1:-1;;;;;1910:6:0;1837:87;;22318:78;;;;;;;;;;;;22354:42;22318:78;;8795:104;;;;;;;;;;;;;:::i;22811:37::-;;;;;;;;;;;;22847:1;22811:37;;23347:27;;;;;;;;;;;;;;;;13013:413;;;;;;;;;;-1:-1:-1;13013:413:0;;;;;:::i;:::-;;:::i;10207:175::-;;;;;;;;;;-1:-1:-1;10207:175:0;;;;;:::i;:::-;;:::i;23748:57::-;;;;;;;;;;-1:-1:-1;23748:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23218:33;;;;;;;;;;-1:-1:-1;23218:33:0;;;;;;;;;;;23298:40;;;;;;;;;;-1:-1:-1;23298:40:0;;;;;;;;;;;21990:71;;;;;;;;;;;;;:::i;22641:42::-;;;;;;;;;;;;22681:2;22641:42;;10445:151;;;;;;;;;;-1:-1:-1;10445:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10561:18:0;;;10534:7;10561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10445:151;22147:71;;;;;;;;;;;;;:::i;2746:201::-;;;;;;;;;;-1:-1:-1;2746:201:0;;;;;:::i;:::-;;:::i;22236:75::-;;;;;;;;;;;;22269:42;22236:75;;8576:100;8630:13;8663:5;8656:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8576:100;:::o;10743:169::-;10826:4;10843:39;784:10;10866:7;10875:6;10843:8;:39::i;:::-;-1:-1:-1;10900:4:0;10743:169;;;;;:::o;11394:492::-;11534:4;11551:36;11561:6;11569:9;11580:6;11551:9;:36::i;:::-;-1:-1:-1;;;;;11627:19:0;;11600:24;11627:19;;;:11;:19;;;;;;;;784:10;11627:33;;;;;;;;11679:26;;;;11671:79;;;;-1:-1:-1;;;11671:79:0;;3721:2:1;11671:79:0;;;3703:21:1;3760:2;3740:18;;;3733:30;3799:34;3779:18;;;3772:62;-1:-1:-1;;;3850:18:1;;;3843:38;3898:19;;11671:79:0;;;;;;;;;11786:57;11795:6;784:10;11836:6;11817:16;:25;11786:8;:57::i;:::-;-1:-1:-1;11874:4:0;;11394:492;-1:-1:-1;;;;11394:492:0:o;12295:215::-;784:10;12383:4;12432:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12432:34:0;;;;;;;;;;12383:4;;12400:80;;12423:7;;12432:47;;12469:10;;12432:47;:::i;:::-;12400:8;:80::i;2488:103::-;1910:6;;-1:-1:-1;;;;;1910:6:0;784:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;2553:30:::1;2580:1;2553:18;:30::i;:::-;2488:103::o:0;25625:84::-;1910:6;;-1:-1:-1;;;;;1910:6:0;784:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;25679:14:::1;:22:::0;;-1:-1:-1;;25679:22:0::1;::::0;;25625:84::o;25453:120::-;1910:6;;-1:-1:-1;;;;;1910:6:0;784:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;25522:12:::1;25508:11;:26:::0;25545:13:::1;:20:::0;;-1:-1:-1;;25545:20:0::1;;;::::0;;25453:120::o;8795:104::-;8851:13;8884:7;8877:14;;;;;:::i;13013:413::-;784:10;13106:4;13150:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13150:34:0;;;;;;;;;;13203:35;;;;13195:85;;;;-1:-1:-1;;;13195:85:0;;4753:2:1;13195:85:0;;;4735:21:1;4792:2;4772:18;;;4765:30;4831:34;4811:18;;;4804:62;-1:-1:-1;;;4882:18:1;;;4875:35;4927:19;;13195:85:0;4551:401:1;13195:85:0;13316:67;784:10;13339:7;13367:15;13348:16;:34;13316:8;:67::i;:::-;-1:-1:-1;13414:4:0;;13013:413;-1:-1:-1;;;13013:413:0:o;10207:175::-;10293:4;10310:42;784:10;10334:9;10345:6;10310:9;:42::i;21990:71::-;22058:3;22038:16;-1:-1:-1;;;22053:1:0;22038:16;:::i;:::-;22037:24;;;;:::i;:::-;21990:71;:::o;22147:::-;22213:5;22193:16;-1:-1:-1;;;22208:1:0;22193:16;:::i;2746:201::-;1910:6;;-1:-1:-1;;;;;1910:6:0;784:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2835:22:0;::::1;2827:73;;;::::0;-1:-1:-1;;;2827:73:0;;5554:2:1;2827:73:0::1;::::0;::::1;5536:21:1::0;5593:2;5573:18;;;5566:30;5632:34;5612:18;;;5605:62;-1:-1:-1;;;5683:18:1;;;5676:36;5729:19;;2827:73:0::1;5352:402:1::0;2827:73:0::1;2911:28;2930:8;2911:18;:28::i;:::-;2746:201:::0;:::o;17589:380::-;-1:-1:-1;;;;;17725:19:0;;17717:68;;;;-1:-1:-1;;;17717:68:0;;5961:2:1;17717:68:0;;;5943:21:1;6000:2;5980:18;;;5973:30;6039:34;6019:18;;;6012:62;-1:-1:-1;;;6090:18:1;;;6083:34;6134:19;;17717:68:0;5759:400:1;17717:68:0;-1:-1:-1;;;;;17804:21:0;;17796:68;;;;-1:-1:-1;;;17796:68:0;;6366:2:1;17796:68:0;;;6348:21:1;6405:2;6385:18;;;6378:30;6444:34;6424:18;;;6417:62;-1:-1:-1;;;6495:18:1;;;6488:32;6537:19;;17796:68:0;6164:398:1;17796:68:0;-1:-1:-1;;;;;17877:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17929:32;;1361:25:1;;;17929:32:0;;1334:18:1;17929:32:0;;;;;;;17589:380;;;:::o;26141:5045::-;-1:-1:-1;;;;;26273:18:0;;26265:68;;;;-1:-1:-1;;;26265:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26352:16:0;;26344:64;;;;-1:-1:-1;;;26344:64:0;;7175:2:1;26344:64:0;;;7157:21:1;7214:2;7194:18;;;7187:30;7253:34;7233:18;;;7226:62;-1:-1:-1;;;7304:18:1;;;7297:33;7347:19;;26344:64:0;6973:399:1;26344:64:0;26425:6;26435:1;26425:11;26421:93;;26453:28;26469:4;26475:2;26479:1;26453:15;:28::i;:::-;26141:5045;;;:::o;26421:93::-;26530:14;;;;;;;26526:1682;;;1910:6;;-1:-1:-1;;;;;26583:15:0;;;1910:6;;26583:15;;;;:49;;-1:-1:-1;1910:6:0;;-1:-1:-1;;;;;26619:13:0;;;1910:6;;26619:13;;26583:49;:91;;;;-1:-1:-1;;;;;;26653:21:0;;26667:6;26653:21;;26583:91;:128;;;;-1:-1:-1;;;;;;26695:16:0;;;;26583:128;:158;;;;-1:-1:-1;26733:8:0;;;;26732:9;26583:158;26561:1636;;;26781:13;;;;;;;26776:223;;-1:-1:-1;;;;;26853:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;26882:23:0;;;;;;:19;:23;;;;;;;;26853:52;26819:160;;;;-1:-1:-1;;;26819:160:0;;7579:2:1;26819:160:0;;;7561:21:1;7618:2;7598:18;;;7591:30;-1:-1:-1;;;7637:18:1;;;7630:52;7699:18;;26819:160:0;7377:346:1;26819:160:0;-1:-1:-1;;;;;27072:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;27129:35:0;;;;;;:31;:35;;;;;;;;27128:36;27072:92;27046:1136;;;22058:3;22038:16;-1:-1:-1;;;22053:1:0;22038:16;:::i;:::-;22037:24;;;;:::i;:::-;27241:6;:30;;27207:163;;;;-1:-1:-1;;;27207:163:0;;7930:2:1;27207:163:0;;;7912:21:1;7969:2;7949:18;;;7942:30;8008:34;7988:18;;;7981:62;-1:-1:-1;;;8059:18:1;;;8052:45;8114:19;;27207:163:0;7728:411:1;27207:163:0;22131:3;22111:16;-1:-1:-1;;;22126:1:0;22111:16;:::i;:::-;22110:24;;;;:::i;:::-;-1:-1:-1;;;;;9968:18:0;;9941:7;9968:18;;;;;;;;;;;27427:22;;:6;:22;:::i;:::-;:35;;27393:140;;;;-1:-1:-1;;;27393:140:0;;8346:2:1;27393:140:0;;;8328:21:1;8385:2;8365:18;;;8358:30;-1:-1:-1;;;8404:18:1;;;8397:49;8463:18;;27393:140:0;8144:343:1;27393:140:0;27046:1136;;;-1:-1:-1;;;;;27632:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;27687:37:0;;;;;;:31;:37;;;;;;;;27686:38;27632:92;27606:576;;;22058:3;22038:16;-1:-1:-1;;;22053:1:0;22038:16;:::i;:::-;22037:24;;;;:::i;:::-;27801:6;:30;;27767:164;;;;-1:-1:-1;;;27767:164:0;;8694:2:1;27767:164:0;;;8676:21:1;8733:2;8713:18;;;8706:30;8772:34;8752:18;;;8745:62;-1:-1:-1;;;8823:18:1;;;8816:46;8879:19;;27767:164:0;8492:412:1;27606:576:0;-1:-1:-1;;;;;27962:35:0;;;;;;:31;:35;;;;;;;;27957:225;;22131:3;22111:16;-1:-1:-1;;;22126:1:0;22111:16;:::i;:::-;22110:24;;;;:::i;:::-;-1:-1:-1;;;;;9968:18:0;;9941:7;9968:18;;;;;;;;;;;28056:22;;:6;:22;:::i;:::-;:35;;28022:140;;;;-1:-1:-1;;;28022:140:0;;8346:2:1;28022:140:0;;;8328:21:1;8385:2;8365:18;;;8358:30;-1:-1:-1;;;8404:18:1;;;8397:49;8463:18;;28022:140:0;8144:343:1;28022:140:0;-1:-1:-1;;;;;28225:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;28254:23:0;;;;;;:19;:23;;;;;;;;28225:52;28224:79;;;;-1:-1:-1;;;;;;28282:21:0;;28298:4;28282:21;;28224:79;:102;;;;-1:-1:-1;;;;;;28307:19:0;;28321:4;28307:19;;28224:102;28220:169;;;28362:15;28343:16;:34;28220:169;-1:-1:-1;;;;;28403:25:0;;;;;;:19;:25;;;;;;;;:58;;;;;28433:19;:28;28453:7;1910:6;;-1:-1:-1;;;;;1910:6:0;;1837:87;28453:7;-1:-1:-1;;;;;28433:28:0;;;;;;;;;;;;-1:-1:-1;28433:28:0;;;;28432:29;28403:58;28399:146;;;28478:34;28495:4;28501:2;28505:6;28478:16;:34::i;28399:146::-;-1:-1:-1;;;;;28560:25:0;;;;;;:19;:25;;;;;;;;28559:26;:54;;;;-1:-1:-1;;;;;;28590:23:0;;;;;;:19;:23;;;;;;;;28589:24;28559:54;28555:566;;;-1:-1:-1;;;;;28635:31:0;;;;;;:25;:31;;;;;;;;28630:480;;-1:-1:-1;;;;;28724:18:0;;28687:34;28724:18;;;:12;:18;;;;;28808:16;;28789;;:35;;28808:16;28789:35;:::i;:::-;28761:25;;;:63;28863:15;28843:17;;;;:35;28630:480;;;-1:-1:-1;;;;;28956:16:0;;28919:34;28956:16;;;:12;:16;;;;;28995;;28956;;28995:21;28991:104;;29060:15;29041:34;;28991:104;28900:210;28630:480;29188:4;29133:12;9968:18;;;;;;;;;;;22213:5;22193:16;-1:-1:-1;;;22208:1:0;22193:16;:::i;:::-;22192:26;;;;:::i;:::-;29148:46;;29133:61;;29207:15;22780:2;29240:11;;:26;;;;:::i;:::-;29225:12;:41;;-1:-1:-1;29297:11:0;;29225:41;29297:35;;;29325:7;29297:35;:61;;;;-1:-1:-1;29350:8:0;;;;29349:9;29297:61;:110;;;;-1:-1:-1;;;;;;29376:31:0;;;;;;:25;:31;;;;;;;;29375:32;29297:110;:153;;;;-1:-1:-1;;;;;;29425:25:0;;;;;;:19;:25;;;;;;;;29424:26;29297:153;:194;;;;-1:-1:-1;;;;;;29468:23:0;;;;;;:19;:23;;;;;;;;29467:24;29297:194;29279:326;;;29518:8;:15;;-1:-1:-1;;29518:15:0;29529:4;29518:15;;;29550:10;:8;:10::i;:::-;29577:8;:16;;-1:-1:-1;;29577:16:0;;;29279:326;29633:8;;-1:-1:-1;;;;;29744:25:0;;29617:12;29744:25;;;:19;:25;;;;;;29633:8;;;;29632:9;;29744:25;;:52;;-1:-1:-1;;;;;;29773:23:0;;;;;;:19;:23;;;;;;;;29744:52;29740:100;;;-1:-1:-1;29823:5:0;29740:100;29852:12;29954:7;29950:1183;;;29983:10;29978:1006;;-1:-1:-1;;;;;30018:31:0;;;;;;:25;:31;;;;;;;;:51;;;;-1:-1:-1;30053:16:0;30018:51;30014:582;;;30125:3;30101:21;23096:1;30101:6;:21;:::i;:::-;:27;;;;:::i;:::-;30094:34;-1:-1:-1;23096:1:0;30173:22;23096:1;30094:34;30173:22;:::i;:::-;:37;;;;:::i;:::-;30151:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;23096:1:0;;-1:-1:-1;30249:16:0;22847:1;30249:4;:16;:::i;:::-;:31;;;;:::i;:::-;30233:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;29978:1006:0;;-1:-1:-1;29978:1006:0;30014:582;-1:-1:-1;;;;;30310:29:0;;;;;;:25;:29;;;;;;;;:50;;;;-1:-1:-1;30343:17:0;30310:50;30306:290;;;30417:3;30392:22;23144:1;30392:6;:22;:::i;30306:290::-;29978:1006;;;-1:-1:-1;;;;;30640:31:0;;;;;;:25;:31;;;;;;;;30636:333;;;30728:3;30703:22;22681:2;30703:6;:22;:::i;:::-;:28;;;;:::i;:::-;30696:35;;30776:4;30754:18;;:26;;;;;;;:::i;30636:333::-;-1:-1:-1;;;;;30810:29:0;;;;;;:25;:29;;;;;;;;30806:163;;;30897:3;30871:23;22731:2;30871:6;:23;:::i;:::-;:29;;;;:::i;:::-;30864:36;;30945:4;30923:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;30806:163:0;31004:8;;31000:91;;31033:42;31049:4;31063;31070;31033:15;:42::i;:::-;31107:14;31117:4;31107:14;;:::i;:::-;;;29950:1183;31145:33;31161:4;31167:2;31171:6;31145:15;:33::i;:::-;26254:4932;;;;26141:5045;;;:::o;3107:191::-;3200:6;;;-1:-1:-1;;;;;3217:17:0;;;-1:-1:-1;;;;;;3217:17:0;;;;;;;3250:40;;3200:6;;;3217:17;3200:6;;3250:40;;3181:16;;3250:40;3170:128;3107:191;:::o;13916:651::-;-1:-1:-1;;;;;14056:20:0;;14048:70;;;;-1:-1:-1;;;14048:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14215:17:0;;14191:21;14215:17;;;;;;;;;;;14251:23;;;;14243:74;;;;-1:-1:-1;;;14243:74:0;;9244:2:1;14243:74:0;;;9226:21:1;9283:2;9263:18;;;9256:30;9322:34;9302:18;;;9295:62;-1:-1:-1;;;9373:18:1;;;9366:36;9419:19;;14243:74:0;9042:402:1;14243:74:0;-1:-1:-1;;;;;14353:17:0;;;:9;:17;;;;;;;;;;;14373:22;;;14353:42;;14417:20;;;;;;;;:30;;14389:6;;14353:9;14417:30;;14389:6;;14417:30;:::i;:::-;;;;;;;;14482:9;-1:-1:-1;;;;;14465:35:0;14474:6;-1:-1:-1;;;;;14465:35:0;;14493:6;14465:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;14465:35:0;;;;;;;;14037:530;13916:651;;;:::o;15057:484::-;-1:-1:-1;;;;;15274:17:0;;;15250:21;15274:17;;;;;;;;;;;;;15347:22;;;15327:42;;;15391:20;;;;;;;:30;;15363:6;;15250:21;15391:30;;15363:6;;15391:30;:::i;31791:955::-;31874:4;31830:23;9968:18;;;;;;;;;;;31830:50;;31893:25;31942:12;;31921:18;;:33;;;;:::i;:::-;31893:61;-1:-1:-1;31971:20:0;;;:46;;-1:-1:-1;31995:22:0;;31971:46;31967:85;;;32034:7;;31791:955::o;31967:85::-;22213:5;22193:16;-1:-1:-1;;;22208:1:0;22193:16;:::i;:::-;22192:26;;;;:::i;:::-;32086:23;;32107:2;32086:23;:::i;:::-;32068:15;:41;32064:115;;;22213:5;22193:16;-1:-1:-1;;;22208:1:0;22193:16;:::i;:::-;22192:26;;;;:::i;:::-;32144:23;;32165:2;32144:23;:::i;:::-;32126:41;;32064:115;32191:12;32245:15;32299:21;32331:36;32245:15;32331:16;:36::i;:::-;32380:18;32401:41;32425:17;32401:21;:41;:::i;:::-;32380:62;;32453:17;32501;32486:12;;32473:10;:25;;;;:::i;:::-;:45;;;;:::i;:::-;32546:1;32531:12;:16;;;32558:18;:22;;;32606:45;;32453:65;;-1:-1:-1;22354:42:0;;32453:65;;32606:45;32546:1;32606:45;32453:65;22354:42;32606:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32675:63:0;;32593:58;;-1:-1:-1;22445:42:0;;32712:21;;32675:63;;;;32712:21;22445:42;32675:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;31791:955:0:o;31194:589::-;31344:16;;;31358:1;31344:16;;;;;;;;31320:21;;31344:16;;;;;;;;;;-1:-1:-1;31344:16:0;31320:40;;31389:4;31371;31376:1;31371:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31371:23:0;;;-1:-1:-1;;;;;31371:23:0;;;;;31415:15;-1:-1:-1;;;;;31415:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31405:4;31410:1;31405:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;31405:32:0;;;-1:-1:-1;;;;;31405:32:0;;;;;31450:62;31467:4;31482:15;31500:11;31450:8;:62::i;:::-;31551:224;;-1:-1:-1;;;31551:224:0;;-1:-1:-1;;;;;31551:15:0;:66;;;;:224;;31632:11;;31658:1;;31702:4;;31729;;31749:15;;31551:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31249:534;31194:589;:::o;14:548:1:-;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:1;;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:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;:::-;2725:5;2489:247;-1:-1:-1;;;2489:247:1:o;2741:388::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;:::-;2994:5;-1:-1:-1;3051:2:1;3036:18;;3023:32;3064:33;3023:32;3064:33;:::i;:::-;3116:7;3106:17;;;2741:388;;;;;:::o;3134:380::-;3213:1;3209:12;;;;3256;;;3277:61;;3331:4;3323:6;3319:17;3309:27;;3277:61;3384:2;3376:6;3373:14;3353:18;3350:38;3347:161;;3430:10;3425:3;3421:20;3418:1;3411:31;3465:4;3462:1;3455:15;3493:4;3490:1;3483:15;3347:161;;3134:380;;;:::o;3928:127::-;3989:10;3984:3;3980:20;3977:1;3970:31;4020:4;4017:1;4010:15;4044:4;4041:1;4034:15;4060:125;4125:9;;;4146:10;;;4143:36;;;4159:18;;:::i;4190:356::-;4392:2;4374:21;;;4411:18;;;4404:30;4470:34;4465:2;4450:18;;4443:62;4537:2;4522:18;;4190:356::o;4957:168::-;5030:9;;;5061;;5078:15;;;5072:22;;5058:37;5048:71;;5099:18;;:::i;5130:217::-;5170:1;5196;5186:132;;5240:10;5235:3;5231:20;5228:1;5221:31;5275:4;5272:1;5265:15;5303:4;5300:1;5293:15;5186:132;-1:-1:-1;5332:9:1;;5130:217::o;6567:401::-;6769:2;6751:21;;;6808:2;6788:18;;;6781:30;6847:34;6842:2;6827:18;;6820:62;-1:-1:-1;;;6913:2:1;6898:18;;6891:35;6958:3;6943:19;;6567:401::o;8909:128::-;8976:9;;;8997:11;;;8994:37;;;9011:18;;:::i;9791:127::-;9852:10;9847:3;9843:20;9840:1;9833:31;9883:4;9880:1;9873:15;9907:4;9904:1;9897:15;9923:251;9993:6;10046:2;10034:9;10025:7;10021:23;10017:32;10014:52;;;10062:1;10059;10052:12;10014:52;10094:9;10088:16;10113:31;10138:5;10113:31;:::i;10179:980::-;10441:4;10489:3;10478:9;10474:19;10520:6;10509:9;10502:25;10546:2;10584:6;10579:2;10568:9;10564:18;10557:34;10627:3;10622:2;10611:9;10607:18;10600:31;10651:6;10686;10680:13;10717:6;10709;10702:22;10755:3;10744:9;10740:19;10733:26;;10794:2;10786:6;10782:15;10768:29;;10815:1;10825:195;10839:6;10836:1;10833:13;10825:195;;;10904:13;;-1:-1:-1;;;;;10900:39:1;10888:52;;10995:15;;;;10960:12;;;;10936:1;10854:9;10825:195;;;-1:-1:-1;;;;;;;11076:32:1;;;;11071:2;11056:18;;11049:60;-1:-1:-1;;;11140:3:1;11125:19;11118:35;11037:3;10179:980;-1:-1:-1;;;10179:980:1:o

Swarm Source

ipfs://80a810b9add1fdec60ba51177d6211c7d99585dc62d0fe01ed08100c94dd72c6
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.