ETH Price: $2,585.01 (-0.04%)

Token

MAGA Again (MAGAA)
 

Overview

Max Total Supply

1,000,000,000 MAGAA

Holders

24

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,900,000 MAGAA

Value
$0.00
0xEf89af9B67AD9c71175ED4300201B4A03AD793d8
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:
MAGAA

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-04
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(
        address spender,
        uint256 allowance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

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

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

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token taxes, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(
        address from,
        address to,
        uint256 value
    ) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value
    ) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value,
        bool emitEvent
    ) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

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

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

    function WETH() external pure returns (address);

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

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

contract MAGAA is ERC20, Ownable {

    //Wallets 
    //owner Wallet and
    /// marketing buy wallet = TaxWallet1
    address public taxWallet1;
    /// marketing sell wallet = TaxWallet2
    address public taxWallet2;

    /// MAX AMOUNT PER BUY / SELL
    uint256 public maxAmountPerTx = MAX_SUPPLY / 100;
    /// MAX WALLET AMOUNT
    uint256 public maxWalletAmount = MAX_SUPPLY / 100;
    
    /// MAX SUPPLY
    uint256 private constant MAX_SUPPLY = 1_000_000_000 * 1e18;
    /// PERCENT_DIVISOR
    uint256 private constant PERCENT_DIVISOR = 10000;
    /// Threshold after which collected tax is sold for eth
    uint256 public swapTokensAtAmount = MAX_SUPPLY / 100000; // = 0.001%

    /// mapping for managing users which are excluded from taxes
    mapping(address => bool) public isExcludedFromTaxes;

    /// Trading flag
    bool public trading;
    
    ////// TAX STRUCTS //
    struct BuyTax {
        uint256 marketing;
    }

    struct SellTax {
        uint256 marketing;
    }

    BuyTax public buyTax;
    SellTax public sellTax;

    uint256 public totalBuyTax;
    uint256 public totalSellTax;
    
    /// @notice uniswapV2Router
    IUniswapV2Router public immutable uniswapV2Router;
    /// @notice uniswapPair
    address public immutable uniswapPair;
    /// swapping used during collected tokens are swapped for eth
    bool swapping;
        
    //// EVENTS

    event TaxWallet1Transferred(address indexed oldTaxWallet1,address indexed newTaxWallet1);
    event TaxWallet2Transferred(address indexed oldTaxWallet2,address indexed newTaxWallet2);

    event enabledTrading();
    event disabledTrading();

    event SellTaxesUpdated(uint256 indexed sellTax);
    event BuyTaxesUpdated(uint256 indexed buyTax);

    event collectedFee(uint256 indexed fee);

    event EthClaimed(address indexed wallet, uint256 indexed amount);


    //// MODIFIER 

    /**
     * @dev Throws if the sender is not the marketing wallet.
     */

    modifier onlyTaxWallet1() {
        require(taxWallet1 == msg.sender, "Only Tax Wallet 1 can call this function");
        _;
    }

    modifier onlyTaxWallet2() {
        require(taxWallet2 == msg.sender, "Only Tax Wallet 2 can call this function");
        _;
    }

    modifier onlyTaxWallets() {
        require(taxWallet1 == msg.sender || taxWallet2 == msg.sender, "Only Tax Wallets can call this function");
        _;
    }

    /** @notice create an erc20, initialize all required variables
     *         like owner, uniswap v2 router, taxes values and wallets values.
     *        excludes the owner and token address from taxes and limits.
     *        mints the total supply to the owner wallet.
     */

    constructor() 
        ERC20("MAGA Again", "MAGAA") Ownable(msg.sender) {

        //Base 0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24
        //ETH 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        uniswapV2Router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        taxWallet1 = 0x65A3da951eBA111c48a154b03bEAa4159c3Ec53c; 
        taxWallet2 = 0x36c5d9f56d50B39666a0E71Dacf2d7EBBcb54004; 
        
        uniswapPair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        
        // 100 = 1%  10 = 0.1%  1 = 0.01%
        buyTax = BuyTax ({
            marketing: 100
        });

        totalBuyTax = buyTax.marketing;

        sellTax = SellTax ({
            marketing: 100
        });

        totalSellTax = sellTax.marketing;

        isExcludedFromTaxes[address(this)] = true;
        isExcludedFromTaxes[msg.sender] = true;
        isExcludedFromTaxes[address(0x0)] = true;
        isExcludedFromTaxes[taxWallet1] = true;
        isExcludedFromTaxes[taxWallet2] = true;

        trading = false;

        _mint(msg.sender, MAX_SUPPLY);
    }

    /**
     * @notice to recieve ETH from uniswapV2Router when swapping
     */

    receive() external payable  {
    }

    /**
     * @notice Allows the marketing wallet to claim stuck ERC20 tokens
     * @dev Only the marketing wallet can call this function
     * @param token The address of the ERC20 token to claim
     * @param value The amount of tokens to claim
     * @param wallet The address to transfer the claimed tokens to
     */

    function claimStuckERC20(
        address token,
        uint256 value,
        address wallet
    ) external onlyTaxWallets {
        ERC20 ERC20Token = ERC20(token);
        bool success = ERC20Token.transfer(wallet, value);
        require(success, "ERC20 transfer failed");
    }

    /**
     * @notice Allows the marketing wallet to claim stuck ERC20 tokens
     * @dev Only the marketing wallet can call this function
     * @param wallet The address to transfer the claimed tokens to
     */

    function claimStuckEth(address wallet) external onlyTaxWallets {
        require(wallet != address(0), "Wallet must not be 0x0 address");
        uint256 balance = address(this).balance;
        require(balance > 0, "No ETH to transfer");

        payable(wallet).transfer(balance);
        emit EthClaimed(wallet, balance);
    }

    /**
     * @notice Exclude or include an account from taxes.
     *
     * @param account The address of the account to be excluded or included.
     * @param value Boolean value indicating whether the account should
     *        be excluded (true) or included (false).
     */

    function setExcludeFromTaxes(address account, bool value) external onlyOwner {
        require(account != address(0), "Account must not be 0x0 address");
        isExcludedFromTaxes[account] = value;
    }


   /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     * To ensure no mishap when renouncing the ownership, we guarantee that trading will be enabled regardless.
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public override onlyOwner {
        enableTrading();
        super.renounceOwnership();
    }

   /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public override onlyOwner {
        isExcludedFromTaxes[owner()] = false;
        super.transferOwnership(newOwner);
        isExcludedFromTaxes[newOwner] = true;
    }

    /**
     * @notice Enable Trading
     */

    function enableTrading() public onlyOwner {
        trading = true;
        emit enabledTrading();
    }

    /**
     * @notice Disable Trading
     */

    function disableTrading() external onlyOwner {
        trading = false;
        emit disabledTrading();
    }

    /**
     * @notice Update the Tax Wallet 1 wallet address
     * @param newTaxWallet1: The new address for the Tax wallet 1
     */

    function transferTaxWallet1(address newTaxWallet1) external onlyTaxWallet1 {
        require(newTaxWallet1 != address(0x0), "New Tax Wallet 1 must not be 0x0 address");
        isExcludedFromTaxes[taxWallet1] = false;
        isExcludedFromTaxes[newTaxWallet1] = true;
        emit TaxWallet1Transferred(taxWallet1, newTaxWallet1);
        taxWallet1 = newTaxWallet1;

    }

    /**
     * @notice Update the Tax Wallet 2 wallet address
     * @param newTaxWallet2: The new address for the Tax wallet 2
     */

    function transferTaxWallet2(address newTaxWallet2) external onlyTaxWallet2 {
        require(newTaxWallet2 != address(0x0), "New Tax Wallet 2 must not be 0x0 address");
        isExcludedFromTaxes[taxWallet2] = false;
        isExcludedFromTaxes[newTaxWallet2] = true;
        emit TaxWallet2Transferred(taxWallet2, newTaxWallet2);
        taxWallet2 = newTaxWallet2;
    }


    /**
     * @notice Renounce the Tax Wallet 1 
     */

    function renounceTaxWallet1() external onlyTaxWallet1 {
        isExcludedFromTaxes[taxWallet1] = false;
        taxWallet1 = address(0x0);
        buyTax.marketing = 0;
        totalBuyTax = 0;
    }

    /**
     * @notice Renounce the Tax Wallet 2 
     */

    function renounceTaxWallet2() external onlyTaxWallet2 {
        isExcludedFromTaxes[taxWallet2] = false;
        taxWallet2 = address(0x0);
        sellTax.marketing = 0;
        totalSellTax = 0;
    }

    /**
     * @notice Update the wallets for taxes distribution.
     *
     * @param newTaxWallet1 The address of the marketing wallet.
     * @param newTaxWallet2 The address of the marketing wallet.
     *
     */

    function setWallets(address newTaxWallet1, address newTaxWallet2) external onlyOwner {
        require(newTaxWallet1 != address(0x0), "New Tax Wallet 1 must not be 0x0 address");
        require(newTaxWallet2 != address(0x0), "New Tax Wallet 2 must not be 0x0 address");
        emit TaxWallet1Transferred(taxWallet1, newTaxWallet1);
        taxWallet1 = newTaxWallet1;
        emit TaxWallet2Transferred(taxWallet2, newTaxWallet2);
        taxWallet2 = newTaxWallet2;
    }

    /**
     * @notice set max no. of tokens a user a buy/sell per tx
     * @param percent: percent of supply that a user/account can buy/sell per tx
     * min percent is limited to 1% of the total supply
     */
    function setMaxAmountPerTx(uint256 percent) external onlyOwner {
        require(percent >= 1 && PERCENT_DIVISOR >= percent, "Max amount per TX out of range");
        maxAmountPerTx = (MAX_SUPPLY * percent) / PERCENT_DIVISOR;
    }

    /**
     * @notice set max wallet amount percent
     * @param percent: percent of supply that a person can hold
     **/
    function setMaxWalletPercent(uint256 percent) external onlyOwner {
        require(percent >= 1 && PERCENT_DIVISOR >= percent, "Max wallet amount is out of range");
        maxWalletAmount = (MAX_SUPPLY * percent) / PERCENT_DIVISOR;
    }

    /**
     * @notice update swap threshold at/after collected tax is swapped for eth
     * @param tokens: no. of tokens
     **/

    function setSwapTokensAtAmount(uint256 tokens) external onlyOwner {
        uint256 amount = tokens * decimals();
        if (amount >= MAX_SUPPLY / PERCENT_DIVISOR) {
            swapTokensAtAmount = MAX_SUPPLY / PERCENT_DIVISOR;
        } else {
            swapTokensAtAmount = amount;
        }
    }


    /**
     * @notice Override for _update required by Solidity
     *  Manage fees on buy/sell and maxTxAmount/MaxWalletLimit
     **/

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {

        require(trading || isExcludedFromTaxes[from] || isExcludedFromTaxes[to] 
        || (from == address(uniswapV2Router) && to == uniswapPair) || (to == address(uniswapV2Router) && from == uniswapPair), "Trading disabled, only owner can transfer");

        /*
            These addresses here are not triggering any fees
            isExcludedFromTaxes[address(this)] = true;
            isExcludedFromTaxes[msg.sender] = true;
            isExcludedFromTaxes[address(0x0)] = true;
            isExcludedFromTaxes[taxWallet1] = true;
            isExcludedFromTaxes[taxWallet2] = true;
        */      

        if (!(isExcludedFromTaxes[from] || isExcludedFromTaxes[to]) && trading) {
            uint256 fee;
            if(to != uniswapPair){
                require(amount + balanceOf(to) <= maxWalletAmount, "Max limit per wallet reached");
            }
            if (from == uniswapPair) {
                require(amount <= maxAmountPerTx, "Max buy amount per Tx exceeded");

                if (totalBuyTax > 0) {
                    fee = (amount * totalBuyTax) / PERCENT_DIVISOR;
                }
            } 
            else if (to == uniswapPair) {
                require(amount <= maxAmountPerTx, "Max sell amount per Tx exceeded");

                if (totalSellTax > 0) {
                    fee = (amount * totalSellTax) / PERCENT_DIVISOR;
                }
            }

           emit collectedFee(fee);
           
           amount = amount - fee;

            if (fee > 0) {
                super._update(from, address(this), fee);
            }
        }

        uint256 contractBalance = balanceOf(address(this));

        //Only swap into ETH when trading is happening (prevents werid Uniswap loop bugs)
        bool canSwap = contractBalance >= swapTokensAtAmount &&
            from != uniswapPair && !isExcludedFromTaxes[from] && !swapping && trading;

        if (canSwap) {
            swapping = true;
            swapAndDistribute(contractBalance);
            swapping = false;
        }

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

    /**
     * @notice The function swaps tokens for ETH, adds liquidity to the Uniswap V2 pair,
     *  and distributes fees according to the configured percentages.
     *
     * @param tokens The total amount of tokens to process for swapping and liquidity addition.
     *
     */

    function swapAndDistribute(uint256 tokens) private {
        if ((totalBuyTax > 0 || totalSellTax > 0) && tokens > 0) {
            swapForEth(tokens);
            if (address(this).balance > 0) {
                payable(taxWallet1).transfer(address(this).balance/2);
                payable(taxWallet2).transfer(address(this).balance);
            }
        }
    }

    /**
     * @notice Swaps the specified amount of tokens for ETH using the Uniswap V2 Router.
     *
     * @param tokens The amount of tokens to swap for ETH.
     *
     * @dev This function generates the Uniswap pair path for the token to WETH,
     * checks the allowance for the token with the Uniswap V2 Router, and then makes
     * the swap from tokens to ETH. It ensures that the swap supports fees on transfer tokens
     * and sets a deadline for the swap transaction.
     */
    function swapForEth(uint256 tokens) private {
        // generate the Uniswap pair path of token -> WETH
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        if (allowance(address(this), address(uniswapV2Router)) < tokens) {
            _approve(
                address(this),
                address(uniswapV2Router),
                type(uint256).max
            );
        }

        // make the swap
        uniswapV2Router.swapExactTokensForETH(
            tokens,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"uint256","name":"buyTax","type":"uint256"}],"name":"BuyTaxesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EthClaimed","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":"uint256","name":"sellTax","type":"uint256"}],"name":"SellTaxesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldTaxWallet1","type":"address"},{"indexed":true,"internalType":"address","name":"newTaxWallet1","type":"address"}],"name":"TaxWallet1Transferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldTaxWallet2","type":"address"},{"indexed":true,"internalType":"address","name":"newTaxWallet2","type":"address"}],"name":"TaxWallet2Transferred","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"collectedFee","type":"event"},{"anonymous":false,"inputs":[],"name":"disabledTrading","type":"event"},{"anonymous":false,"inputs":[],"name":"enabledTrading","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"claimStuckERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"claimStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTaxes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceTaxWallet1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceTaxWallet2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludeFromTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setMaxAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setMaxWalletPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTaxWallet1","type":"address"},{"internalType":"address","name":"newTaxWallet2","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","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":"taxWallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","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":"trading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTaxWallet1","type":"address"}],"name":"transferTaxWallet1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTaxWallet2","type":"address"}],"name":"transferTaxWallet2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405261001b60646b033b2e3c9fd0803ce8000000610ca2565b60085561003560646b033b2e3c9fd0803ce8000000610ca2565b600955610051620186a06b033b2e3c9fd0803ce8000000610ca2565b600a5534801561005f575f80fd5b50336040518060400160405280600a81526020016926a0a3a09020b3b0b4b760b11b815250604051806040016040528060058152602001644d4147414160d81b81525081600390816100b19190610d51565b5060046100be8282610d51565b5050506001600160a01b0381166100ef57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100f881610375565b50737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052600680546001600160a01b03199081167365a3da951eba111c48a154b03beaa4159c3ec53c17909155600780549091167336c5d9f56d50b39666a0e71dacf2d7ebbcb540041790556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610194573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101b89190610e10565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610205573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102299190610e10565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610273573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102979190610e10565b6001600160a01b0390811660a0526040805160208082018352606491829052600d829055600f82905582518082018452829052600e829055601091909155305f908152600b909152818120805460ff1990811660019081179092553380845284842080548316841790557fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f768054831684179055600654861684528484208054831684179055600754909516835292909120805483169091179055600c80549091169055610370906b033b2e3c9fd0803ce80000006103c6565b610fb7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166103ef5760405163ec442f0560e01b81525f60048201526024016100e6565b6103fa5f83836103fe565b5050565b600c5460ff168061042657506001600160a01b0383165f908152600b602052604090205460ff165b8061044857506001600160a01b0382165f908152600b602052604090205460ff165b8061048457506080516001600160a01b0316836001600160a01b0316148015610484575060a0516001600160a01b0316826001600160a01b0316145b806104c057506080516001600160a01b0316826001600160a01b03161480156104c0575060a0516001600160a01b0316836001600160a01b0316145b61051e5760405162461bcd60e51b815260206004820152602960248201527f54726164696e672064697361626c65642c206f6e6c79206f776e65722063616e604482015268103a3930b739b332b960b91b60648201526084016100e6565b6001600160a01b0383165f908152600b602052604090205460ff168061055b57506001600160a01b0382165f908152600b602052604090205460ff165b15801561056a5750600c5460ff165b15610772575f60a0516001600160a01b0316836001600160a01b0316146105fe576009546001600160a01b0384165f908152602081905260409020546105b09084610e3d565b11156105fe5760405162461bcd60e51b815260206004820152601c60248201527f4d6178206c696d6974207065722077616c6c657420726561636865640000000060448201526064016100e6565b60a0516001600160a01b0316846001600160a01b0316036106965760085482111561066b5760405162461bcd60e51b815260206004820152601e60248201527f4d61782062757920616d6f756e7420706572205478206578636565646564000060448201526064016100e6565b600f541561069157612710600f54836106849190610e50565b61068e9190610ca2565b90505b610729565b60a0516001600160a01b0316836001600160a01b031603610729576008548211156107035760405162461bcd60e51b815260206004820152601f60248201527f4d61782073656c6c20616d6f756e74207065722054782065786365656465640060448201526064016100e6565b60105415610729576127106010548361071c9190610e50565b6107269190610ca2565b90505b60405181907f946cf2ce5ccac152682786d5f6b2e2dcfd804ab709002314d1d3b7dd2122f837905f90a261075d8183610e67565b9150801561077057610770843083610826565b505b305f9081526020819052604081205490505f600a5482101580156107aa575060a0516001600160a01b0316856001600160a01b031614155b80156107ce57506001600160a01b0385165f908152600b602052604090205460ff16155b80156107dd575060115460ff16155b80156107eb5750600c5460ff165b90508015610814576011805460ff191660011790556108098261094c565b6011805460ff191690555b61081f858585610826565b5050505050565b6001600160a01b038316610850578060025f8282546108459190610e3d565b909155506108c09050565b6001600160a01b0383165f90815260208190526040902054818110156108a25760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100e6565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166108dc576002805482900390556108fa565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161093f91815260200190565b60405180910390a3505050565b5f600f54118061095d57505f601054115b801561096857505f81115b156109f257610976816109f5565b47156109f2576006546001600160a01b03166108fc610996600247610ca2565b6040518115909202915f818181858888f193505050501580156109bb573d5f803e3d5ffd5b506007546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156103fa573d5f803e3d5ffd5b50565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610a2857610a28610e7a565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aaa9190610e10565b81600181518110610abd57610abd610e7a565b60200260200101906001600160a01b031690816001600160a01b03168152505081610af030608051610b8760201b60201c565b1015610b0a57610b0a306080515f19610bb360201b60201c565b6080516001600160a01b03166318cbafe5835f8430426040518663ffffffff1660e01b8152600401610b40959493929190610e8e565b5f604051808303815f875af1158015610b5b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610b829190810190610eff565b505050565b6001600160a01b038083165f908152600160209081526040808320938516835292905220545b92915050565b610b8283838360016001600160a01b038416610be45760405163e602df0560e01b81525f60048201526024016100e6565b6001600160a01b038316610c0d57604051634a1406b160e11b81525f60048201526024016100e6565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610c8857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c7f91815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52601160045260245ffd5b5f82610cbc57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680610ce957607f821691505b602082108103610d0757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610b8257805f5260205f20601f840160051c81016020851015610d325750805b601f840160051c820191505b8181101561081f575f8155600101610d3e565b81516001600160401b03811115610d6a57610d6a610cc1565b610d7e81610d788454610cd5565b84610d0d565b602080601f831160018114610db1575f8415610d9a5750858301515b5f19600386901b1c1916600185901b178555610e08565b5f85815260208120601f198616915b82811015610ddf57888601518255948401946001909101908401610dc0565b5085821015610dfc57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215610e20575f80fd5b81516001600160a01b0381168114610e36575f80fd5b9392505050565b80820180821115610bad57610bad610c8e565b8082028115828204841417610bad57610bad610c8e565b81810381811115610bad57610bad610c8e565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610ede5784516001600160a01b031683529383019391830191600101610eb9565b50506001600160a01b03969096166060850152505050608001529392505050565b5f6020808385031215610f10575f80fd5b82516001600160401b0380821115610f26575f80fd5b818501915085601f830112610f39575f80fd5b815181811115610f4b57610f4b610cc1565b8060051b604051601f19603f83011681018181108582111715610f7057610f70610cc1565b604052918252848201925083810185019188831115610f8d575f80fd5b938501935b82851015610fab57845184529385019392850192610f92565b98975050505050505050565b60805160a05161215561102c5f395f818161057401528181611356015281816113ce015281816114b40152818161156001528181611616015261172f01525f81816102950152818161131a0152818161139201528181611a4b01528181611b0301528181611b330152611b7001526121555ff3fe608060405260043610610220575f3560e01c806385b27c851161011e578063cbe2de71116100a8578063e39111ab1161006d578063e39111ab1461061e578063ec44acf21461063d578063f26a981614610656578063f2fde38b14610675578063fba62f5e14610694575f80fd5b8063cbe2de7114610596578063cc1776d3146105b5578063d3f6a157146105cb578063dd62ed3e146105ea578063e2f4560514610609575f80fd5b8063a9059cbb116100ee578063a9059cbb146104f1578063aa4bde2814610510578063afa4f3b214610525578063c345c4d514610544578063c816841b14610563575f80fd5b806385b27c85146104975780638a8c523c146104ac5780638da5cb5b146104c057806395d89b41146104dd575f80fd5b806333096098116101aa5780636eb3a90f1161016f5780636eb3a90f146103fd57806370a082311461041c578063715018a6146104505780637a9590761461046457806382bf293c14610478575f80fd5b806333096098146103805780633d8f04531461039457806346469afb146103b35780634f7041a5146103c85780635b58741b146103de575f80fd5b806318160ddd116101f057806318160ddd146102e55780631bff78981461030357806323b872dd1461031857806327b07d7514610337578063313ce56714610365575f80fd5b806306fdde031461022b578063095ea7b3146102555780631694505e1461028457806317700f01146102cf575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f6106b3565b60405161024c9190611bef565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611c38565b610743565b604051901515815260200161024c565b34801561028f575f80fd5b506102b77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161024c565b3480156102da575f80fd5b506102e361075c565b005b3480156102f0575f80fd5b506002545b60405190815260200161024c565b34801561030e575f80fd5b506102f560105481565b348015610323575f80fd5b50610274610332366004611c62565b610798565b348015610342575f80fd5b50610274610351366004611ca0565b600b6020525f908152604090205460ff1681565b348015610370575f80fd5b506040516012815260200161024c565b34801561038b575f80fd5b506102e36107bb565b34801561039f575f80fd5b506102e36103ae366004611cc2565b610829565b3480156103be575f80fd5b506102f5600f5481565b3480156103d3575f80fd5b50600d546102f59081565b3480156103e9575f80fd5b506102e36103f8366004611d0e565b61092a565b348015610408575f80fd5b506102e3610417366004611ca0565b6109b2565b348015610427575f80fd5b506102f5610436366004611ca0565b6001600160a01b03165f9081526020819052604090205490565b34801561045b575f80fd5b506102e3610a8b565b34801561046f575f80fd5b506102e3610aa5565b348015610483575f80fd5b506102e3610492366004611d45565b610b0a565b3480156104a2575f80fd5b506102f560085481565b3480156104b7575f80fd5b506102e3610ba4565b3480156104cb575f80fd5b506005546001600160a01b03166102b7565b3480156104e8575f80fd5b5061023f610be3565b3480156104fc575f80fd5b5061027461050b366004611c38565b610bf2565b34801561051b575f80fd5b506102f560095481565b348015610530575f80fd5b506102e361053f366004611d45565b610bff565b34801561054f575f80fd5b506102e361055e366004611ca0565b610c5c565b34801561056e575f80fd5b506102b77f000000000000000000000000000000000000000000000000000000000000000081565b3480156105a1575f80fd5b506007546102b7906001600160a01b031681565b3480156105c0575f80fd5b50600e546102f59081565b3480156105d6575f80fd5b506102e36105e5366004611d5c565b610da1565b3480156105f5575f80fd5b506102f5610604366004611d5c565b610ea5565b348015610614575f80fd5b506102f5600a5481565b348015610629575f80fd5b506006546102b7906001600160a01b031681565b348015610648575f80fd5b50600c546102749060ff1681565b348015610661575f80fd5b506102e3610670366004611d45565b610ecf565b348015610680575f80fd5b506102e361068f366004611ca0565b610f5f565b34801561069f575f80fd5b506102e36106ae366004611ca0565b610fd0565b6060600380546106c290611d88565b80601f01602080910402602001604051908101604052809291908181526020018280546106ee90611d88565b80156107395780601f1061071057610100808354040283529160200191610739565b820191905f5260205f20905b81548152906001019060200180831161071c57829003601f168201915b5050505050905090565b5f336107508185856110a9565b60019150505b92915050565b6107646110bb565b600c805460ff191690556040517f822119f1d1dbfeb2dca7218674b3bfc8047a99f0149d5812b12daae7a2f62712905f90a1565b5f336107a58582856110e8565b6107b085858561114b565b506001949350505050565b6006546001600160a01b031633146107ee5760405162461bcd60e51b81526004016107e590611dc0565b60405180910390fd5b600680546001600160a01b03165f908152600b60205260408120805460ff1916905581546001600160a01b031916909155600d819055600f55565b6006546001600160a01b031633148061084c57506007546001600160a01b031633145b6108685760405162461bcd60e51b81526004016107e590611e08565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284915f9183169063a9059cbb906044016020604051808303815f875af11580156108b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108dc9190611e4f565b9050806109235760405162461bcd60e51b8152602060048201526015602482015274115490cc8c081d1c985b9cd9995c8819985a5b1959605a1b60448201526064016107e5565b5050505050565b6109326110bb565b6001600160a01b0382166109885760405162461bcd60e51b815260206004820152601f60248201527f4163636f756e74206d757374206e6f742062652030783020616464726573730060448201526064016107e5565b6001600160a01b03919091165f908152600b60205260409020805460ff1916911515919091179055565b6006546001600160a01b031633146109dc5760405162461bcd60e51b81526004016107e590611dc0565b6001600160a01b038116610a025760405162461bcd60e51b81526004016107e590611e6a565b600680546001600160a01b039081165f908152600b6020526040808220805460ff199081169091558584168084528284208054909216600117909155935490519216917fcaf4855279e6519140a8d4af190e14fadc5174e7311356c2c3b57baa050811319190a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b610a936110bb565b610a9b610ba4565b610aa36111a8565b565b6007546001600160a01b03163314610acf5760405162461bcd60e51b81526004016107e590611eb2565b600780546001600160a01b03165f908152600b60205260408120805460ff1916905581546001600160a01b031916909155600e819055601055565b610b126110bb565b60018110158015610b2557508061271010155b610b7b5760405162461bcd60e51b815260206004820152602160248201527f4d61782077616c6c657420616d6f756e74206973206f7574206f662072616e676044820152606560f81b60648201526084016107e5565b612710610b94826b033b2e3c9fd0803ce8000000611f0e565b610b9e9190611f25565b60095550565b610bac6110bb565b600c805460ff191660011790556040517fa62ccc2c5bc0b8eb49b01f78e5ca0c296b739ecac1c21b7b74793559450bf45a905f90a1565b6060600480546106c290611d88565b5f3361075081858561114b565b610c076110bb565b5f610c13601283611f0e565b9050610c2d6127106b033b2e3c9fd0803ce8000000611f25565b8110610c5257610c4b6127106b033b2e3c9fd0803ce8000000611f25565b600a555050565b600a8190555b5050565b6006546001600160a01b0316331480610c7f57506007546001600160a01b031633145b610c9b5760405162461bcd60e51b81526004016107e590611e08565b6001600160a01b038116610cf15760405162461bcd60e51b815260206004820152601e60248201527f57616c6c6574206d757374206e6f74206265203078302061646472657373000060448201526064016107e5565b4780610d345760405162461bcd60e51b815260206004820152601260248201527127379022aa24103a37903a3930b739b332b960711b60448201526064016107e5565b6040516001600160a01b0383169082156108fc029083905f818181858888f19350505050158015610d67573d5f803e3d5ffd5b5060405181906001600160a01b038416907f0d7976053781e071cecf47e898ad2a6dc87621ca33734e96eb4b92453319e8c9905f90a35050565b610da96110bb565b6001600160a01b038216610dcf5760405162461bcd60e51b81526004016107e590611e6a565b6001600160a01b038116610df55760405162461bcd60e51b81526004016107e590611f44565b6006546040516001600160a01b038085169216907fcaf4855279e6519140a8d4af190e14fadc5174e7311356c2c3b57baa05081131905f90a3600680546001600160a01b0319166001600160a01b03848116919091179091556007546040518383169291909116907f46233802773a6f8b6255846521d8ea859df177f1a116429fbd4a81de50cbec3d905f90a3600780546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610ed76110bb565b60018110158015610eea57508061271010155b610f365760405162461bcd60e51b815260206004820152601e60248201527f4d617820616d6f756e7420706572205458206f7574206f662072616e6765000060448201526064016107e5565b612710610f4f826b033b2e3c9fd0803ce8000000611f0e565b610f599190611f25565b60085550565b610f676110bb565b5f600b5f610f7d6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055610fad816111b9565b6001600160a01b03165f908152600b60205260409020805460ff19166001179055565b6007546001600160a01b03163314610ffa5760405162461bcd60e51b81526004016107e590611eb2565b6001600160a01b0381166110205760405162461bcd60e51b81526004016107e590611f44565b600780546001600160a01b039081165f908152600b6020526040808220805460ff199081169091558584168084528284208054909216600117909155935490519216917f46233802773a6f8b6255846521d8ea859df177f1a116429fbd4a81de50cbec3d9190a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6110b683838360016111f6565b505050565b6005546001600160a01b03163314610aa35760405163118cdaa760e01b81523360048201526024016107e5565b5f6110f38484610ea5565b90505f198114611145578181101561113757604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016107e5565b61114584848484035f6111f6565b50505050565b6001600160a01b03831661117457604051634b637e8f60e11b81525f60048201526024016107e5565b6001600160a01b03821661119d5760405163ec442f0560e01b81525f60048201526024016107e5565b6110b68383836112c8565b6111b06110bb565b610aa35f6117d9565b6111c16110bb565b6001600160a01b0381166111ea57604051631e4fbdf760e01b81525f60048201526024016107e5565b6111f3816117d9565b50565b6001600160a01b03841661121f5760405163e602df0560e01b81525f60048201526024016107e5565b6001600160a01b03831661124857604051634a1406b160e11b81525f60048201526024016107e5565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561114557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112ba91815260200190565b60405180910390a350505050565b600c5460ff16806112f057506001600160a01b0383165f908152600b602052604090205460ff165b8061131257506001600160a01b0382165f908152600b602052604090205460ff165b8061138a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561138a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8061140257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614801561140257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316145b6114605760405162461bcd60e51b815260206004820152602960248201527f54726164696e672064697361626c65642c206f6e6c79206f776e65722063616e604482015268103a3930b739b332b960b91b60648201526084016107e5565b6001600160a01b0383165f908152600b602052604090205460ff168061149d57506001600160a01b0382165f908152600b602052604090205460ff165b1580156114ac5750600c5460ff165b1561170e575f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161461155e576009546001600160a01b0384165f908152602081905260409020546115109084611f8c565b111561155e5760405162461bcd60e51b815260206004820152601c60248201527f4d6178206c696d6974207065722077616c6c657420726561636865640000000060448201526064016107e5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031603611614576008548211156115e95760405162461bcd60e51b815260206004820152601e60248201527f4d61782062757920616d6f756e7420706572205478206578636565646564000060448201526064016107e5565b600f541561160f57612710600f54836116029190611f0e565b61160c9190611f25565b90505b6116c5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316036116c55760085482111561169f5760405162461bcd60e51b815260206004820152601f60248201527f4d61782073656c6c20616d6f756e74207065722054782065786365656465640060448201526064016107e5565b601054156116c557612710601054836116b89190611f0e565b6116c29190611f25565b90505b60405181907f946cf2ce5ccac152682786d5f6b2e2dcfd804ab709002314d1d3b7dd2122f837905f90a26116f98183611f9f565b9150801561170c5761170c84308361182a565b505b305f9081526020819052604081205490505f600a54821015801561176457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561178857506001600160a01b0385165f908152600b602052604090205460ff16155b8015611797575060115460ff16155b80156117a55750600c5460ff165b905080156117ce576011805460ff191660011790556117c382611950565b6011805460ff191690555b61092385858561182a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316611854578060025f8282546118499190611f8c565b909155506118c49050565b6001600160a01b0383165f90815260208190526040902054818110156118a65760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016107e5565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166118e0576002805482900390556118fe565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161194391815260200190565b60405180910390a3505050565b5f600f54118061196157505f601054115b801561196c57505f81115b156111f35761197a816119f6565b47156111f3576006546001600160a01b03166108fc61199a600247611f25565b6040518115909202915f818181858888f193505050501580156119bf573d5f803e3d5ffd5b506007546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610c58573d5f803e3d5ffd5b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611a2957611a29611fc6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611aa5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac99190611fda565b81600181518110611adc57611adc611fc6565b60200260200101906001600160a01b031690816001600160a01b03168152505081611b27307f0000000000000000000000000000000000000000000000000000000000000000610ea5565b1015611b5957611b59307f00000000000000000000000000000000000000000000000000000000000000005f196110a9565b6040516318cbafe560e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906318cbafe590611bad9085905f90869030904290600401611ff5565b5f604051808303815f875af1158015611bc8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526110b69190810190612066565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146111f3575f80fd5b5f8060408385031215611c49575f80fd5b8235611c5481611c24565b946020939093013593505050565b5f805f60608486031215611c74575f80fd5b8335611c7f81611c24565b92506020840135611c8f81611c24565b929592945050506040919091013590565b5f60208284031215611cb0575f80fd5b8135611cbb81611c24565b9392505050565b5f805f60608486031215611cd4575f80fd5b8335611cdf81611c24565b9250602084013591506040840135611cf681611c24565b809150509250925092565b80151581146111f3575f80fd5b5f8060408385031215611d1f575f80fd5b8235611d2a81611c24565b91506020830135611d3a81611d01565b809150509250929050565b5f60208284031215611d55575f80fd5b5035919050565b5f8060408385031215611d6d575f80fd5b8235611d7881611c24565b91506020830135611d3a81611c24565b600181811c90821680611d9c57607f821691505b602082108103611dba57634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526028908201527f4f6e6c79205461782057616c6c657420312063616e2063616c6c207468697320604082015267333ab731ba34b7b760c11b606082015260800190565b60208082526027908201527f4f6e6c79205461782057616c6c6574732063616e2063616c6c207468697320666040820152663ab731ba34b7b760c91b606082015260800190565b5f60208284031215611e5f575f80fd5b8151611cbb81611d01565b60208082526028908201527f4e6577205461782057616c6c65742031206d757374206e6f7420626520307830604082015267206164647265737360c01b606082015260800190565b60208082526028908201527f4f6e6c79205461782057616c6c657420322063616e2063616c6c207468697320604082015267333ab731ba34b7b760c11b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761075657610756611efa565b5f82611f3f57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526028908201527f4e6577205461782057616c6c65742032206d757374206e6f7420626520307830604082015267206164647265737360c01b606082015260800190565b8082018082111561075657610756611efa565b8181038181111561075657610756611efa565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611fea575f80fd5b8151611cbb81611c24565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156120455784516001600160a01b031683529383019391830191600101612020565b50506001600160a01b03969096166060850152505050608001529392505050565b5f6020808385031215612077575f80fd5b825167ffffffffffffffff8082111561208e575f80fd5b818501915085601f8301126120a1575f80fd5b8151818111156120b3576120b3611fb2565b8060051b604051601f19603f830116810181811085821117156120d8576120d8611fb2565b6040529182528482019250838101850191888311156120f5575f80fd5b938501935b82851015612113578451845293850193928501926120fa565b9897505050505050505056fea2646970667358221220fc8685eea4b3a580263b2655e95340da070a4ee4646cde3ae3f063464535193764736f6c63430008190033

Deployed Bytecode

0x608060405260043610610220575f3560e01c806385b27c851161011e578063cbe2de71116100a8578063e39111ab1161006d578063e39111ab1461061e578063ec44acf21461063d578063f26a981614610656578063f2fde38b14610675578063fba62f5e14610694575f80fd5b8063cbe2de7114610596578063cc1776d3146105b5578063d3f6a157146105cb578063dd62ed3e146105ea578063e2f4560514610609575f80fd5b8063a9059cbb116100ee578063a9059cbb146104f1578063aa4bde2814610510578063afa4f3b214610525578063c345c4d514610544578063c816841b14610563575f80fd5b806385b27c85146104975780638a8c523c146104ac5780638da5cb5b146104c057806395d89b41146104dd575f80fd5b806333096098116101aa5780636eb3a90f1161016f5780636eb3a90f146103fd57806370a082311461041c578063715018a6146104505780637a9590761461046457806382bf293c14610478575f80fd5b806333096098146103805780633d8f04531461039457806346469afb146103b35780634f7041a5146103c85780635b58741b146103de575f80fd5b806318160ddd116101f057806318160ddd146102e55780631bff78981461030357806323b872dd1461031857806327b07d7514610337578063313ce56714610365575f80fd5b806306fdde031461022b578063095ea7b3146102555780631694505e1461028457806317700f01146102cf575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f6106b3565b60405161024c9190611bef565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611c38565b610743565b604051901515815260200161024c565b34801561028f575f80fd5b506102b77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161024c565b3480156102da575f80fd5b506102e361075c565b005b3480156102f0575f80fd5b506002545b60405190815260200161024c565b34801561030e575f80fd5b506102f560105481565b348015610323575f80fd5b50610274610332366004611c62565b610798565b348015610342575f80fd5b50610274610351366004611ca0565b600b6020525f908152604090205460ff1681565b348015610370575f80fd5b506040516012815260200161024c565b34801561038b575f80fd5b506102e36107bb565b34801561039f575f80fd5b506102e36103ae366004611cc2565b610829565b3480156103be575f80fd5b506102f5600f5481565b3480156103d3575f80fd5b50600d546102f59081565b3480156103e9575f80fd5b506102e36103f8366004611d0e565b61092a565b348015610408575f80fd5b506102e3610417366004611ca0565b6109b2565b348015610427575f80fd5b506102f5610436366004611ca0565b6001600160a01b03165f9081526020819052604090205490565b34801561045b575f80fd5b506102e3610a8b565b34801561046f575f80fd5b506102e3610aa5565b348015610483575f80fd5b506102e3610492366004611d45565b610b0a565b3480156104a2575f80fd5b506102f560085481565b3480156104b7575f80fd5b506102e3610ba4565b3480156104cb575f80fd5b506005546001600160a01b03166102b7565b3480156104e8575f80fd5b5061023f610be3565b3480156104fc575f80fd5b5061027461050b366004611c38565b610bf2565b34801561051b575f80fd5b506102f560095481565b348015610530575f80fd5b506102e361053f366004611d45565b610bff565b34801561054f575f80fd5b506102e361055e366004611ca0565b610c5c565b34801561056e575f80fd5b506102b77f0000000000000000000000003408c6f7b2e9f07866fbdfc1fd648aff4ca143c681565b3480156105a1575f80fd5b506007546102b7906001600160a01b031681565b3480156105c0575f80fd5b50600e546102f59081565b3480156105d6575f80fd5b506102e36105e5366004611d5c565b610da1565b3480156105f5575f80fd5b506102f5610604366004611d5c565b610ea5565b348015610614575f80fd5b506102f5600a5481565b348015610629575f80fd5b506006546102b7906001600160a01b031681565b348015610648575f80fd5b50600c546102749060ff1681565b348015610661575f80fd5b506102e3610670366004611d45565b610ecf565b348015610680575f80fd5b506102e361068f366004611ca0565b610f5f565b34801561069f575f80fd5b506102e36106ae366004611ca0565b610fd0565b6060600380546106c290611d88565b80601f01602080910402602001604051908101604052809291908181526020018280546106ee90611d88565b80156107395780601f1061071057610100808354040283529160200191610739565b820191905f5260205f20905b81548152906001019060200180831161071c57829003601f168201915b5050505050905090565b5f336107508185856110a9565b60019150505b92915050565b6107646110bb565b600c805460ff191690556040517f822119f1d1dbfeb2dca7218674b3bfc8047a99f0149d5812b12daae7a2f62712905f90a1565b5f336107a58582856110e8565b6107b085858561114b565b506001949350505050565b6006546001600160a01b031633146107ee5760405162461bcd60e51b81526004016107e590611dc0565b60405180910390fd5b600680546001600160a01b03165f908152600b60205260408120805460ff1916905581546001600160a01b031916909155600d819055600f55565b6006546001600160a01b031633148061084c57506007546001600160a01b031633145b6108685760405162461bcd60e51b81526004016107e590611e08565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284915f9183169063a9059cbb906044016020604051808303815f875af11580156108b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108dc9190611e4f565b9050806109235760405162461bcd60e51b8152602060048201526015602482015274115490cc8c081d1c985b9cd9995c8819985a5b1959605a1b60448201526064016107e5565b5050505050565b6109326110bb565b6001600160a01b0382166109885760405162461bcd60e51b815260206004820152601f60248201527f4163636f756e74206d757374206e6f742062652030783020616464726573730060448201526064016107e5565b6001600160a01b03919091165f908152600b60205260409020805460ff1916911515919091179055565b6006546001600160a01b031633146109dc5760405162461bcd60e51b81526004016107e590611dc0565b6001600160a01b038116610a025760405162461bcd60e51b81526004016107e590611e6a565b600680546001600160a01b039081165f908152600b6020526040808220805460ff199081169091558584168084528284208054909216600117909155935490519216917fcaf4855279e6519140a8d4af190e14fadc5174e7311356c2c3b57baa050811319190a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b610a936110bb565b610a9b610ba4565b610aa36111a8565b565b6007546001600160a01b03163314610acf5760405162461bcd60e51b81526004016107e590611eb2565b600780546001600160a01b03165f908152600b60205260408120805460ff1916905581546001600160a01b031916909155600e819055601055565b610b126110bb565b60018110158015610b2557508061271010155b610b7b5760405162461bcd60e51b815260206004820152602160248201527f4d61782077616c6c657420616d6f756e74206973206f7574206f662072616e676044820152606560f81b60648201526084016107e5565b612710610b94826b033b2e3c9fd0803ce8000000611f0e565b610b9e9190611f25565b60095550565b610bac6110bb565b600c805460ff191660011790556040517fa62ccc2c5bc0b8eb49b01f78e5ca0c296b739ecac1c21b7b74793559450bf45a905f90a1565b6060600480546106c290611d88565b5f3361075081858561114b565b610c076110bb565b5f610c13601283611f0e565b9050610c2d6127106b033b2e3c9fd0803ce8000000611f25565b8110610c5257610c4b6127106b033b2e3c9fd0803ce8000000611f25565b600a555050565b600a8190555b5050565b6006546001600160a01b0316331480610c7f57506007546001600160a01b031633145b610c9b5760405162461bcd60e51b81526004016107e590611e08565b6001600160a01b038116610cf15760405162461bcd60e51b815260206004820152601e60248201527f57616c6c6574206d757374206e6f74206265203078302061646472657373000060448201526064016107e5565b4780610d345760405162461bcd60e51b815260206004820152601260248201527127379022aa24103a37903a3930b739b332b960711b60448201526064016107e5565b6040516001600160a01b0383169082156108fc029083905f818181858888f19350505050158015610d67573d5f803e3d5ffd5b5060405181906001600160a01b038416907f0d7976053781e071cecf47e898ad2a6dc87621ca33734e96eb4b92453319e8c9905f90a35050565b610da96110bb565b6001600160a01b038216610dcf5760405162461bcd60e51b81526004016107e590611e6a565b6001600160a01b038116610df55760405162461bcd60e51b81526004016107e590611f44565b6006546040516001600160a01b038085169216907fcaf4855279e6519140a8d4af190e14fadc5174e7311356c2c3b57baa05081131905f90a3600680546001600160a01b0319166001600160a01b03848116919091179091556007546040518383169291909116907f46233802773a6f8b6255846521d8ea859df177f1a116429fbd4a81de50cbec3d905f90a3600780546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610ed76110bb565b60018110158015610eea57508061271010155b610f365760405162461bcd60e51b815260206004820152601e60248201527f4d617820616d6f756e7420706572205458206f7574206f662072616e6765000060448201526064016107e5565b612710610f4f826b033b2e3c9fd0803ce8000000611f0e565b610f599190611f25565b60085550565b610f676110bb565b5f600b5f610f7d6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055610fad816111b9565b6001600160a01b03165f908152600b60205260409020805460ff19166001179055565b6007546001600160a01b03163314610ffa5760405162461bcd60e51b81526004016107e590611eb2565b6001600160a01b0381166110205760405162461bcd60e51b81526004016107e590611f44565b600780546001600160a01b039081165f908152600b6020526040808220805460ff199081169091558584168084528284208054909216600117909155935490519216917f46233802773a6f8b6255846521d8ea859df177f1a116429fbd4a81de50cbec3d9190a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6110b683838360016111f6565b505050565b6005546001600160a01b03163314610aa35760405163118cdaa760e01b81523360048201526024016107e5565b5f6110f38484610ea5565b90505f198114611145578181101561113757604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016107e5565b61114584848484035f6111f6565b50505050565b6001600160a01b03831661117457604051634b637e8f60e11b81525f60048201526024016107e5565b6001600160a01b03821661119d5760405163ec442f0560e01b81525f60048201526024016107e5565b6110b68383836112c8565b6111b06110bb565b610aa35f6117d9565b6111c16110bb565b6001600160a01b0381166111ea57604051631e4fbdf760e01b81525f60048201526024016107e5565b6111f3816117d9565b50565b6001600160a01b03841661121f5760405163e602df0560e01b81525f60048201526024016107e5565b6001600160a01b03831661124857604051634a1406b160e11b81525f60048201526024016107e5565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561114557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112ba91815260200190565b60405180910390a350505050565b600c5460ff16806112f057506001600160a01b0383165f908152600b602052604090205460ff165b8061131257506001600160a01b0382165f908152600b602052604090205460ff165b8061138a57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316836001600160a01b031614801561138a57507f0000000000000000000000003408c6f7b2e9f07866fbdfc1fd648aff4ca143c66001600160a01b0316826001600160a01b0316145b8061140257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614801561140257507f0000000000000000000000003408c6f7b2e9f07866fbdfc1fd648aff4ca143c66001600160a01b0316836001600160a01b0316145b6114605760405162461bcd60e51b815260206004820152602960248201527f54726164696e672064697361626c65642c206f6e6c79206f776e65722063616e604482015268103a3930b739b332b960b91b60648201526084016107e5565b6001600160a01b0383165f908152600b602052604090205460ff168061149d57506001600160a01b0382165f908152600b602052604090205460ff165b1580156114ac5750600c5460ff165b1561170e575f7f0000000000000000000000003408c6f7b2e9f07866fbdfc1fd648aff4ca143c66001600160a01b0316836001600160a01b03161461155e576009546001600160a01b0384165f908152602081905260409020546115109084611f8c565b111561155e5760405162461bcd60e51b815260206004820152601c60248201527f4d6178206c696d6974207065722077616c6c657420726561636865640000000060448201526064016107e5565b7f0000000000000000000000003408c6f7b2e9f07866fbdfc1fd648aff4ca143c66001600160a01b0316846001600160a01b031603611614576008548211156115e95760405162461bcd60e51b815260206004820152601e60248201527f4d61782062757920616d6f756e7420706572205478206578636565646564000060448201526064016107e5565b600f541561160f57612710600f54836116029190611f0e565b61160c9190611f25565b90505b6116c5565b7f0000000000000000000000003408c6f7b2e9f07866fbdfc1fd648aff4ca143c66001600160a01b0316836001600160a01b0316036116c55760085482111561169f5760405162461bcd60e51b815260206004820152601f60248201527f4d61782073656c6c20616d6f756e74207065722054782065786365656465640060448201526064016107e5565b601054156116c557612710601054836116b89190611f0e565b6116c29190611f25565b90505b60405181907f946cf2ce5ccac152682786d5f6b2e2dcfd804ab709002314d1d3b7dd2122f837905f90a26116f98183611f9f565b9150801561170c5761170c84308361182a565b505b305f9081526020819052604081205490505f600a54821015801561176457507f0000000000000000000000003408c6f7b2e9f07866fbdfc1fd648aff4ca143c66001600160a01b0316856001600160a01b031614155b801561178857506001600160a01b0385165f908152600b602052604090205460ff16155b8015611797575060115460ff16155b80156117a55750600c5460ff165b905080156117ce576011805460ff191660011790556117c382611950565b6011805460ff191690555b61092385858561182a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316611854578060025f8282546118499190611f8c565b909155506118c49050565b6001600160a01b0383165f90815260208190526040902054818110156118a65760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016107e5565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166118e0576002805482900390556118fe565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161194391815260200190565b60405180910390a3505050565b5f600f54118061196157505f601054115b801561196c57505f81115b156111f35761197a816119f6565b47156111f3576006546001600160a01b03166108fc61199a600247611f25565b6040518115909202915f818181858888f193505050501580156119bf573d5f803e3d5ffd5b506007546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610c58573d5f803e3d5ffd5b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611a2957611a29611fc6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611aa5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac99190611fda565b81600181518110611adc57611adc611fc6565b60200260200101906001600160a01b031690816001600160a01b03168152505081611b27307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610ea5565b1015611b5957611b59307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d5f196110a9565b6040516318cbafe560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d16906318cbafe590611bad9085905f90869030904290600401611ff5565b5f604051808303815f875af1158015611bc8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526110b69190810190612066565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146111f3575f80fd5b5f8060408385031215611c49575f80fd5b8235611c5481611c24565b946020939093013593505050565b5f805f60608486031215611c74575f80fd5b8335611c7f81611c24565b92506020840135611c8f81611c24565b929592945050506040919091013590565b5f60208284031215611cb0575f80fd5b8135611cbb81611c24565b9392505050565b5f805f60608486031215611cd4575f80fd5b8335611cdf81611c24565b9250602084013591506040840135611cf681611c24565b809150509250925092565b80151581146111f3575f80fd5b5f8060408385031215611d1f575f80fd5b8235611d2a81611c24565b91506020830135611d3a81611d01565b809150509250929050565b5f60208284031215611d55575f80fd5b5035919050565b5f8060408385031215611d6d575f80fd5b8235611d7881611c24565b91506020830135611d3a81611c24565b600181811c90821680611d9c57607f821691505b602082108103611dba57634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526028908201527f4f6e6c79205461782057616c6c657420312063616e2063616c6c207468697320604082015267333ab731ba34b7b760c11b606082015260800190565b60208082526027908201527f4f6e6c79205461782057616c6c6574732063616e2063616c6c207468697320666040820152663ab731ba34b7b760c91b606082015260800190565b5f60208284031215611e5f575f80fd5b8151611cbb81611d01565b60208082526028908201527f4e6577205461782057616c6c65742031206d757374206e6f7420626520307830604082015267206164647265737360c01b606082015260800190565b60208082526028908201527f4f6e6c79205461782057616c6c657420322063616e2063616c6c207468697320604082015267333ab731ba34b7b760c11b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761075657610756611efa565b5f82611f3f57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526028908201527f4e6577205461782057616c6c65742032206d757374206e6f7420626520307830604082015267206164647265737360c01b606082015260800190565b8082018082111561075657610756611efa565b8181038181111561075657610756611efa565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611fea575f80fd5b8151611cbb81611c24565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156120455784516001600160a01b031683529383019391830191600101612020565b50506001600160a01b03969096166060850152505050608001529392505050565b5f6020808385031215612077575f80fd5b825167ffffffffffffffff8082111561208e575f80fd5b818501915085601f8301126120a1575f80fd5b8151818111156120b3576120b3611fb2565b8060051b604051601f19603f830116810181811085821117156120d8576120d8611fb2565b6040529182528482019250838101850191888311156120f5575f80fd5b938501935b82851015612113578451845293850193928501926120fa565b9897505050505050505056fea2646970667358221220fc8685eea4b3a580263b2655e95340da070a4ee4646cde3ae3f063464535193764736f6c63430008190033

Deployed Bytecode Sourcemap

21676:15007:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11069:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13403:222;;;;;;;;;;-1:-1:-1;13403:222:0;;;;;:::i;:::-;;:::i;:::-;;;1058:14:1;;1051:22;1033:41;;1021:2;1006:18;13403:222:0;893:187:1;22880:49:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1273:32:1;;;1255:51;;1243:2;1228:18;22880:49:0;1085:227:1;28665:112:0;;;;;;;;;;;;;:::i;:::-;;12171:99;;;;;;;;;;-1:-1:-1;12250:12:0;;12171:99;;;1463:25:1;;;1451:2;1436:18;12171:99:0;1317:177:1;22807:27:0;;;;;;;;;;;;;;;;14203:283;;;;;;;;;;-1:-1:-1;14203:283:0;;;;;:::i;:::-;;:::i;22458:51::-;;;;;;;;;;-1:-1:-1;22458:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;12022:84;;;;;;;;;;-1:-1:-1;12022:84:0;;12096:2;2354:36:1;;2342:2;2327:18;12022:84:0;2212:184:1;29910:205:0;;;;;;;;;;;;;:::i;26127:291::-;;;;;;;;;;-1:-1:-1;26127:291:0;;;;;:::i;:::-;;:::i;22774:26::-;;;;;;;;;;;;;;;;22716:20;;;;;;;;;;-1:-1:-1;22716:20:0;;;;;;27285:208;;;;;;;;;;-1:-1:-1;27285:208:0;;;;;:::i;:::-;;:::i;28927:381::-;;;;;;;;;;-1:-1:-1;28927:381:0;;;;;:::i;:::-;;:::i;12333:118::-;;;;;;;;;;-1:-1:-1;12333:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;12425:18:0;12398:7;12425:18;;;;;;;;;;;;12333:118;27943:125;;;;;;;;;;;;;:::i;30186:207::-;;;;;;;;;;;;;:::i;31710:241::-;;;;;;;;;;-1:-1:-1;31710:241:0;;;;;:::i;:::-;;:::i;21946:48::-;;;;;;;;;;;;;;;;28498:107;;;;;;;;;;;;;:::i;4477:87::-;;;;;;;;;;-1:-1:-1;4550:6:0;;-1:-1:-1;;;;;4550:6:0;4477:87;;11279:95;;;;;;;;;;;;;:::i;12656:182::-;;;;;;;;;;-1:-1:-1;12656:182:0;;;;;:::i;:::-;;:::i;22028:49::-;;;;;;;;;;;;;;;;32097:311;;;;;;;;;;-1:-1:-1;32097:311:0;;;;;:::i;:::-;;:::i;26648:337::-;;;;;;;;;;-1:-1:-1;26648:337:0;;;;;:::i;:::-;;:::i;22965:36::-;;;;;;;;;;;;;;;21877:25;;;;;;;;;;-1:-1:-1;21877:25:0;;;;-1:-1:-1;;;;;21877:25:0;;;22743:22;;;;;;;;;;-1:-1:-1;22743:22:0;;;;;;30628:481;;;;;;;;;;-1:-1:-1;30628:481:0;;;;;:::i;:::-;;:::i;12901:183::-;;;;;;;;;;-1:-1:-1;12901:183:0;;;;;:::i;:::-;;:::i;22316:55::-;;;;;;;;;;;;;;;;21801:25;;;;;;;;;;-1:-1:-1;21801:25:0;;;;-1:-1:-1;;;;;21801:25:0;;;22540:19;;;;;;;;;;-1:-1:-1;22540:19:0;;;;;;;;31337:235;;;;;;;;;;-1:-1:-1;31337:235:0;;;;;:::i;:::-;;:::i;28222:217::-;;;;;;;;;;-1:-1:-1;28222:217:0;;;;;:::i;:::-;;:::i;29458:379::-;;;;;;;;;;-1:-1:-1;29458:379:0;;;;;:::i;:::-;;:::i;11069:91::-;11114:13;11147:5;11140:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11069:91;:::o;13403:222::-;13503:4;2700:10;13564:31;2700:10;13580:7;13589:5;13564:8;:31::i;:::-;13613:4;13606:11;;;13403:222;;;;;:::o;28665:112::-;4363:13;:11;:13::i;:::-;28721:7:::1;:15:::0;;-1:-1:-1;;28721:15:0::1;::::0;;28752:17:::1;::::0;::::1;::::0;28731:5:::1;::::0;28752:17:::1;28665:112::o:0;14203:283::-;14324:4;2700:10;14382:37;14398:4;2700:10;14413:5;14382:15;:37::i;:::-;14430:26;14440:4;14446:2;14450:5;14430:9;:26::i;:::-;-1:-1:-1;14474:4:0;;14203:283;-1:-1:-1;;;;14203:283:0:o;29910:205::-;23758:10;;-1:-1:-1;;;;;23758:10:0;23772;23758:24;23750:77;;;;-1:-1:-1;;;23750:77:0;;;;;;;:::i;:::-;;;;;;;;;29995:10:::1;::::0;;-1:-1:-1;;;;;29995:10:0::1;30009:5;29975:31:::0;;;:19:::1;:31;::::0;;;;:39;;-1:-1:-1;;29975:39:0::1;::::0;;30025:25;;-1:-1:-1;;;;;;30025:25:0::1;::::0;;;30061:6:::1;:20:::0;;;30092:11:::1;:15:::0;29910:205::o;26127:291::-;24042:10;;-1:-1:-1;;;;;24042:10:0;24056;24042:24;;:52;;-1:-1:-1;24070:10:0;;-1:-1:-1;;;;;24070:10:0;24084;24070:24;24042:52;24034:104;;;;-1:-1:-1;;;24034:104:0;;;;;;;:::i;:::-;26324:34:::1;::::0;-1:-1:-1;;;26324:34:0;;-1:-1:-1;;;;;5552:32:1;;;26324:34:0::1;::::0;::::1;5534:51:1::0;5601:18;;;5594:34;;;26292:5:0;;26267:16:::1;::::0;26324:19;::::1;::::0;::::1;::::0;5507:18:1;;26324:34:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26309:49;;26377:7;26369:41;;;::::0;-1:-1:-1;;;26369:41:0;;6091:2:1;26369:41:0::1;::::0;::::1;6073:21:1::0;6130:2;6110:18;;;6103:30;-1:-1:-1;;;6149:18:1;;;6142:51;6210:18;;26369:41:0::1;5889:345:1::0;26369:41:0::1;26256:162;;26127:291:::0;;;:::o;27285:208::-;4363:13;:11;:13::i;:::-;-1:-1:-1;;;;;27381:21:0;::::1;27373:65;;;::::0;-1:-1:-1;;;27373:65:0;;6441:2:1;27373:65:0::1;::::0;::::1;6423:21:1::0;6480:2;6460:18;;;6453:30;6519:33;6499:18;;;6492:61;6570:18;;27373:65:0::1;6239:355:1::0;27373:65:0::1;-1:-1:-1::0;;;;;27449:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:36;;-1:-1:-1;;27449:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27285:208::o;28927:381::-;23758:10;;-1:-1:-1;;;;;23758:10:0;23772;23758:24;23750:77;;;;-1:-1:-1;;;23750:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29021:29:0;::::1;29013:82;;;;-1:-1:-1::0;;;29013:82:0::1;;;;;;;:::i;:::-;29126:10;::::0;;-1:-1:-1;;;;;29126:10:0;;::::1;29140:5;29106:31:::0;;;:19:::1;:31;::::0;;;;;:39;;-1:-1:-1;;29106:39:0;;::::1;::::0;;;29156:34;;::::1;::::0;;;;;;:41;;;;::::1;29126:10:::0;29156:41:::1;::::0;;;29235:10;;29213:48;;29235:10;::::1;::::0;29213:48:::1;::::0;29140:5;29213:48:::1;29272:10;:26:::0;;-1:-1:-1;;;;;;29272:26:0::1;-1:-1:-1::0;;;;;29272:26:0;;;::::1;::::0;;;::::1;::::0;;28927:381::o;27943:125::-;4363:13;:11;:13::i;:::-;28009:15:::1;:13;:15::i;:::-;28035:25;:23;:25::i;:::-;27943:125::o:0;30186:207::-;23900:10;;-1:-1:-1;;;;;23900:10:0;23914;23900:24;23892:77;;;;-1:-1:-1;;;23892:77:0;;;;;;;:::i;:::-;30271:10:::1;::::0;;-1:-1:-1;;;;;30271:10:0::1;30285:5;30251:31:::0;;;:19:::1;:31;::::0;;;;:39;;-1:-1:-1;;30251:39:0::1;::::0;;30301:25;;-1:-1:-1;;;;;;30301:25:0::1;::::0;;;30337:7:::1;:21:::0;;;30369:12:::1;:16:::0;30186:207::o;31710:241::-;4363:13;:11;:13::i;:::-;31805:1:::1;31794:7;:12;;:42;;;;;31829:7;22243:5;31810:26;;31794:42;31786:88;;;::::0;-1:-1:-1;;;31786:88:0;;7619:2:1;31786:88:0::1;::::0;::::1;7601:21:1::0;7658:2;7638:18;;;7631:30;7697:34;7677:18;;;7670:62;-1:-1:-1;;;7748:18:1;;;7741:31;7789:19;;31786:88:0::1;7417:397:1::0;31786:88:0::1;22243:5;31904:20;31917:7:::0;22148:20:::1;31904;:::i;:::-;31903:40;;;;:::i;:::-;31885:15;:58:::0;-1:-1:-1;31710:241:0:o;28498:107::-;4363:13;:11;:13::i;:::-;28551:7:::1;:14:::0;;-1:-1:-1;;28551:14:0::1;28561:4;28551:14;::::0;;28581:16:::1;::::0;::::1;::::0;28551:7:::1;::::0;28581:16:::1;28498:107::o:0;11279:95::-;11326:13;11359:7;11352:14;;;;;:::i;12656:182::-;12725:4;2700:10;12781:27;2700:10;12798:2;12802:5;12781:9;:27::i;32097:311::-;4363:13;:11;:13::i;:::-;32174:14:::1;32191:19;12096:2:::0;32191:6;:19:::1;:::i;:::-;32174:36:::0;-1:-1:-1;32235:28:0::1;22243:5;22148:20;32235:28;:::i;:::-;32225:6;:38;32221:180;;32301:28;22243:5;22148:20;32301:28;:::i;:::-;32280:18;:49:::0;32163:245:::1;32097:311:::0;:::o;32221:180::-:1;32362:18;:27:::0;;;32221:180:::1;32163:245;32097:311:::0;:::o;26648:337::-;24042:10;;-1:-1:-1;;;;;24042:10:0;24056;24042:24;;:52;;-1:-1:-1;24070:10:0;;-1:-1:-1;;;;;24070:10:0;24084;24070:24;24042:52;24034:104;;;;-1:-1:-1;;;24034:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26730:20:0;::::1;26722:63;;;::::0;-1:-1:-1;;;26722:63:0;;8548:2:1;26722:63:0::1;::::0;::::1;8530:21:1::0;8587:2;8567:18;;;8560:30;8626:32;8606:18;;;8599:60;8676:18;;26722:63:0::1;8346:354:1::0;26722:63:0::1;26814:21;26854:11:::0;26846:42:::1;;;::::0;-1:-1:-1;;;26846:42:0;;8907:2:1;26846:42:0::1;::::0;::::1;8889:21:1::0;8946:2;8926:18;;;8919:30;-1:-1:-1;;;8965:18:1;;;8958:48;9023:18;;26846:42:0::1;8705:342:1::0;26846:42:0::1;26901:33;::::0;-1:-1:-1;;;;;26901:24:0;::::1;::::0;:33;::::1;;;::::0;26926:7;;26901:33:::1;::::0;;;26926:7;26901:24;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;26950:27:0::1;::::0;26969:7;;-1:-1:-1;;;;;26950:27:0;::::1;::::0;::::1;::::0;;;::::1;26711:274;26648:337:::0;:::o;30628:481::-;4363:13;:11;:13::i;:::-;-1:-1:-1;;;;;30732:29:0;::::1;30724:82;;;;-1:-1:-1::0;;;30724:82:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;30825:29:0;::::1;30817:82;;;;-1:-1:-1::0;;;30817:82:0::1;;;;;;;:::i;:::-;30937:10;::::0;30915:48:::1;::::0;-1:-1:-1;;;;;30915:48:0;;::::1;::::0;30937:10:::1;::::0;30915:48:::1;::::0;30937:10:::1;::::0;30915:48:::1;30974:10;:26:::0;;-1:-1:-1;;;;;;30974:26:0::1;-1:-1:-1::0;;;;;30974:26:0;;::::1;::::0;;;::::1;::::0;;;31038:10:::1;::::0;31016:48:::1;::::0;;;::::1;::::0;31038:10;;;::::1;::::0;31016:48:::1;::::0;-1:-1:-1;;31016:48:0::1;31075:10;:26:::0;;-1:-1:-1;;;;;;31075:26:0::1;-1:-1:-1::0;;;;;31075:26:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;30628:481:0:o;12901:183::-;-1:-1:-1;;;;;13049:18:0;;;13017:7;13049:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12901:183::o;31337:235::-;4363:13;:11;:13::i;:::-;31430:1:::1;31419:7;:12;;:42;;;;;31454:7;22243:5;31435:26;;31419:42;31411:85;;;::::0;-1:-1:-1;;;31411:85:0;;9663:2:1;31411:85:0::1;::::0;::::1;9645:21:1::0;9702:2;9682:18;;;9675:30;9741:32;9721:18;;;9714:60;9791:18;;31411:85:0::1;9461:354:1::0;31411:85:0::1;22243:5;31525:20;31538:7:::0;22148:20:::1;31525;:::i;:::-;31524:40;;;;:::i;:::-;31507:14;:57:::0;-1:-1:-1;31337:235:0:o;28222:217::-;4363:13;:11;:13::i;:::-;28335:5:::1;28304:19;:28;28324:7;4550:6:::0;;-1:-1:-1;;;;;4550:6:0;;4477:87;28324:7:::1;-1:-1:-1::0;;;;;28304:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;28304:28:0;:36;;-1:-1:-1;;28304:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28351:33:::1;28375:8:::0;28351:23:::1;:33::i;:::-;-1:-1:-1::0;;;;;28395:29:0::1;;::::0;;;:19:::1;:29;::::0;;;;:36;;-1:-1:-1;;28395:36:0::1;28427:4;28395:36;::::0;;28222:217::o;29458:379::-;23900:10;;-1:-1:-1;;;;;23900:10:0;23914;23900:24;23892:77;;;;-1:-1:-1;;;23892:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29552:29:0;::::1;29544:82;;;;-1:-1:-1::0;;;29544:82:0::1;;;;;;;:::i;:::-;29657:10;::::0;;-1:-1:-1;;;;;29657:10:0;;::::1;29671:5;29637:31:::0;;;:19:::1;:31;::::0;;;;;:39;;-1:-1:-1;;29637:39:0;;::::1;::::0;;;29687:34;;::::1;::::0;;;;;;:41;;;;::::1;29657:10:::0;29687:41:::1;::::0;;;29766:10;;29744:48;;29766:10;::::1;::::0;29744:48:::1;::::0;29671:5;29744:48:::1;29803:10;:26:::0;;-1:-1:-1;;;;;;29803:26:0::1;-1:-1:-1::0;;;;;29803:26:0;;;::::1;::::0;;;::::1;::::0;;29458:379::o;18365:164::-;18484:37;18493:5;18500:7;18509:5;18516:4;18484:8;:37::i;:::-;18365:164;;;:::o;4642:166::-;4550:6;;-1:-1:-1;;;;;4550:6:0;2700:10;4702:23;4698:103;;4749:40;;-1:-1:-1;;;4749:40:0;;2700:10;4749:40;;;1255:51:1;1228:18;;4749:40:0;1085:227:1;20158:603:0;20292:24;20319:25;20329:5;20336:7;20319:9;:25::i;:::-;20292:52;;-1:-1:-1;;20359:16:0;:37;20355:399;;20436:5;20417:16;:24;20413:214;;;20469:142;;-1:-1:-1;;;20469:142:0;;-1:-1:-1;;;;;10040:32:1;;20469:142:0;;;10022:51:1;10089:18;;;10082:34;;;10132:18;;;10125:34;;;9995:18;;20469:142:0;9820:345:1;20413:214:0;20670:57;20679:5;20686:7;20714:5;20695:16;:24;20721:5;20670:8;:57::i;:::-;20281:480;20158:603;;;:::o;14872:342::-;-1:-1:-1;;;;;14990:18:0;;14986:88;;15032:30;;-1:-1:-1;;;15032:30:0;;15059:1;15032:30;;;1255:51:1;1228:18;;15032:30:0;1085:227:1;14986:88:0;-1:-1:-1;;;;;15088:16:0;;15084:88;;15128:32;;-1:-1:-1;;;15128:32:0;;15157:1;15128:32;;;1255:51:1;1228:18;;15128:32:0;1085:227:1;15084:88:0;15182:24;15190:4;15196:2;15200:5;15182:7;:24::i;5152:103::-;4363:13;:11;:13::i;:::-;5217:30:::1;5244:1;5217:18;:30::i;5410:220::-:0;4363:13;:11;:13::i;:::-;-1:-1:-1;;;;;5495:22:0;::::1;5491:93;;5541:31;::::0;-1:-1:-1;;;5541:31:0;;5569:1:::1;5541:31;::::0;::::1;1255:51:1::0;1228:18;;5541:31:0::1;1085:227:1::0;5491:93:0::1;5594:28;5613:8;5594:18;:28::i;:::-;5410:220:::0;:::o;19380:486::-;-1:-1:-1;;;;;19536:19:0;;19532:91;;19579:32;;-1:-1:-1;;;19579:32:0;;19608:1;19579:32;;;1255:51:1;1228:18;;19579:32:0;1085:227:1;19532:91:0;-1:-1:-1;;;;;19637:21:0;;19633:92;;19682:31;;-1:-1:-1;;;19682:31:0;;19710:1;19682:31;;;1255:51:1;1228:18;;19682:31:0;1085:227:1;19633:92:0;-1:-1:-1;;;;;19735:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;19781:78;;;;19832:7;-1:-1:-1;;;;;19816:31:0;19825:5;-1:-1:-1;;;;;19816:31:0;;19841:5;19816:31;;;;1463:25:1;;1451:2;1436:18;;1317:177;19816:31:0;;;;;;;;19380:486;;;;:::o;32561:2253::-;32693:7;;;;;:36;;-1:-1:-1;;;;;;32704:25:0;;;;;;:19;:25;;;;;;;;32693:36;:63;;;-1:-1:-1;;;;;;32733:23:0;;;;;;:19;:23;;;;;;;;32693:63;:132;;;;32787:15;-1:-1:-1;;;;;32771:32:0;:4;-1:-1:-1;;;;;32771:32:0;;:53;;;;;32813:11;-1:-1:-1;;;;;32807:17:0;:2;-1:-1:-1;;;;;32807:17:0;;32771:53;32693:191;;;;32844:15;-1:-1:-1;;;;;32830:30:0;:2;-1:-1:-1;;;;;32830:30:0;;:53;;;;;32872:11;-1:-1:-1;;;;;32864:19:0;:4;-1:-1:-1;;;;;32864:19:0;;32830:53;32685:245;;;;-1:-1:-1;;;32685:245:0;;10372:2:1;32685:245:0;;;10354:21:1;10411:2;10391:18;;;10384:30;10450:34;10430:18;;;10423:62;-1:-1:-1;;;10501:18:1;;;10494:39;10550:19;;32685:245:0;10170:405:1;32685:245:0;-1:-1:-1;;;;;33313:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;33342:23:0;;;;;;:19;:23;;;;;;;;33313:52;33311:55;:66;;;;-1:-1:-1;33370:7:0;;;;33311:66;33307:1000;;;33394:11;33429;-1:-1:-1;;;;;33423:17:0;:2;-1:-1:-1;;;;;33423:17:0;;33420:138;;33494:15;;-1:-1:-1;;;;;12425:18:0;;12398:7;12425:18;;;;;;;;;;;33468:22;;:6;:22;:::i;:::-;:41;;33460:82;;;;-1:-1:-1;;;33460:82:0;;10912:2:1;33460:82:0;;;10894:21:1;10951:2;10931:18;;;10924:30;10990;10970:18;;;10963:58;11038:18;;33460:82:0;10710:352:1;33460:82:0;33584:11;-1:-1:-1;;;;;33576:19:0;:4;-1:-1:-1;;;;;33576:19:0;;33572:535;;33634:14;;33624:6;:24;;33616:67;;;;-1:-1:-1;;;33616:67:0;;11269:2:1;33616:67:0;;;11251:21:1;11308:2;11288:18;;;11281:30;11347:32;11327:18;;;11320:60;11397:18;;33616:67:0;11067:354:1;33616:67:0;33708:11;;:15;33704:110;;22243:5;33764:11;;33755:6;:20;;;;:::i;:::-;33754:40;;;;:::i;:::-;33748:46;;33704:110;33572:535;;;33859:11;-1:-1:-1;;;;;33853:17:0;:2;-1:-1:-1;;;;;33853:17:0;;33849:258;;33909:14;;33899:6;:24;;33891:68;;;;-1:-1:-1;;;33891:68:0;;11628:2:1;33891:68:0;;;11610:21:1;11667:2;11647:18;;;11640:30;11706:33;11686:18;;;11679:61;11757:18;;33891:68:0;11426:355:1;33891:68:0;33984:12;;:16;33980:112;;22243:5;34041:12;;34032:6;:21;;;;:::i;:::-;34031:41;;;;:::i;:::-;34025:47;;33980:112;34127:17;;34140:3;;34127:17;;;;;34180:12;34189:3;34180:6;:12;:::i;:::-;34171:21;-1:-1:-1;34213:7:0;;34209:87;;34241:39;34255:4;34269;34276:3;34241:13;:39::i;:::-;33379:928;33307:1000;34363:4;34319:23;12425:18;;;;;;;;;;;34319:50;;34473:12;34507:18;;34488:15;:37;;:73;;;;;34550:11;-1:-1:-1;;;;;34542:19:0;:4;-1:-1:-1;;;;;34542:19:0;;;34488:73;:103;;;;-1:-1:-1;;;;;;34566:25:0;;;;;;:19;:25;;;;;;;;34565:26;34488:103;:116;;;;-1:-1:-1;34596:8:0;;;;34595:9;34488:116;:127;;;;-1:-1:-1;34608:7:0;;;;34488:127;34473:142;;34632:7;34628:135;;;34656:8;:15;;-1:-1:-1;;34656:15:0;34667:4;34656:15;;;34686:34;34704:15;34686:17;:34::i;:::-;34735:8;:16;;-1:-1:-1;;34735:16:0;;;34628:135;34775:31;34789:4;34795:2;34799:6;34775:13;:31::i;5790:191::-;5883:6;;;-1:-1:-1;;;;;5900:17:0;;;-1:-1:-1;;;;;;5900:17:0;;;;;;;5933:40;;5883:6;;;5900:17;5883:6;;5933:40;;5864:16;;5933:40;5853:128;5790:191;:::o;15538:1169::-;-1:-1:-1;;;;;15662:18:0;;15658:552;;15816:5;15800:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;15658:552:0;;-1:-1:-1;15658:552:0;;-1:-1:-1;;;;;15876:15:0;;15854:19;15876:15;;;;;;;;;;;15910:19;;;15906:117;;;15957:50;;-1:-1:-1;;;15957:50:0;;-1:-1:-1;;;;;10040:32:1;;15957:50:0;;;10022:51:1;10089:18;;;10082:34;;;10132:18;;;10125:34;;;9995:18;;15957:50:0;9820:345:1;15906:117:0;-1:-1:-1;;;;;16146:15:0;;:9;:15;;;;;;;;;;16164:19;;;;16146:37;;15658:552;-1:-1:-1;;;;;16226:16:0;;16222:435;;16392:12;:21;;;;;;;16222:435;;;-1:-1:-1;;;;;16608:13:0;;:9;:13;;;;;;;;;;:22;;;;;;16222:435;16689:2;-1:-1:-1;;;;;16674:25:0;16683:4;-1:-1:-1;;;;;16674:25:0;;16693:5;16674:25;;;;1463::1;;1451:2;1436:18;;1317:177;16674:25:0;;;;;;;;15538:1169;;;:::o;35116:374::-;35197:1;35183:11;;:15;:35;;;;35217:1;35202:12;;:16;35183:35;35182:51;;;;;35232:1;35223:6;:10;35182:51;35178:305;;;35250:18;35261:6;35250:10;:18::i;:::-;35287:21;:25;35283:189;;35341:10;;-1:-1:-1;;;;;35341:10:0;35333:53;35362:23;35384:1;35362:21;:23;:::i;:::-;35333:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35413:10:0;;35405:51;;-1:-1:-1;;;;;35413:10:0;;;;35434:21;35405:51;;;;;35413:10;35405:51;35413:10;35405:51;35434:21;35413:10;35405:51;;;;;;;;;;;;;;;;;;;35999:679;36138:16;;;36152:1;36138:16;;;;;;;;36114:21;;36138:16;;;;;;;;;;-1:-1:-1;36138:16:0;36114:40;;36183:4;36165;36170:1;36165:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36165:23:0;;;-1:-1:-1;;;;;36165:23:0;;;;;36209:15;-1:-1:-1;;;;;36209:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36199:4;36204:1;36199:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;36199:32:0;;;-1:-1:-1;;;;;36199:32:0;;;;;36301:6;36248:50;36266:4;36281:15;36248:9;:50::i;:::-;:59;36244:226;;;36324:134;36359:4;36391:15;-1:-1:-1;;36324:8:0;:134::i;:::-;36508:162;;-1:-1:-1;;;36508:162:0;;-1:-1:-1;;;;;36508:15:0;:37;;;;:162;;36560:6;;36581:1;;36597:4;;36624;;36644:15;;36508:162;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36508:162:0;;;;;;;;;;;;:::i;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:315;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;878:2;863:18;;;;850:32;;-1:-1:-1;;;573:315:1:o;1499:456::-;1576:6;1584;1592;1645:2;1633:9;1624:7;1620:23;1616:32;1613:52;;;1661:1;1658;1651:12;1613:52;1700:9;1687:23;1719:31;1744:5;1719:31;:::i;:::-;1769:5;-1:-1:-1;1826:2:1;1811:18;;1798:32;1839:33;1798:32;1839:33;:::i;:::-;1499:456;;1891:7;;-1:-1:-1;;;1945:2:1;1930:18;;;;1917:32;;1499:456::o;1960:247::-;2019:6;2072:2;2060:9;2051:7;2047:23;2043:32;2040:52;;;2088:1;2085;2078:12;2040:52;2127:9;2114:23;2146:31;2171:5;2146:31;:::i;:::-;2196:5;1960:247;-1:-1:-1;;;1960:247:1:o;2401:456::-;2478:6;2486;2494;2547:2;2535:9;2526:7;2522:23;2518:32;2515:52;;;2563:1;2560;2553:12;2515:52;2602:9;2589:23;2621:31;2646:5;2621:31;:::i;:::-;2671:5;-1:-1:-1;2723:2:1;2708:18;;2695:32;;-1:-1:-1;2779:2:1;2764:18;;2751:32;2792:33;2751:32;2792:33;:::i;:::-;2844:7;2834:17;;;2401:456;;;;;:::o;2862:118::-;2948:5;2941:13;2934:21;2927:5;2924:32;2914:60;;2970:1;2967;2960:12;2985:382;3050:6;3058;3111:2;3099:9;3090:7;3086:23;3082:32;3079:52;;;3127:1;3124;3117:12;3079:52;3166:9;3153:23;3185:31;3210:5;3185:31;:::i;:::-;3235:5;-1:-1:-1;3292:2:1;3277:18;;3264:32;3305:30;3264:32;3305:30;:::i;:::-;3354:7;3344:17;;;2985:382;;;;;:::o;3372:180::-;3431:6;3484:2;3472:9;3463:7;3459:23;3455:32;3452:52;;;3500:1;3497;3490:12;3452:52;-1:-1:-1;3523:23:1;;3372:180;-1:-1:-1;3372:180:1:o;3765:388::-;3833:6;3841;3894:2;3882:9;3873:7;3869:23;3865:32;3862:52;;;3910:1;3907;3900:12;3862:52;3949:9;3936:23;3968:31;3993:5;3968:31;:::i;:::-;4018:5;-1:-1:-1;4075:2:1;4060:18;;4047:32;4088:33;4047:32;4088:33;:::i;4158:380::-;4237:1;4233:12;;;;4280;;;4301:61;;4355:4;4347:6;4343:17;4333:27;;4301:61;4408:2;4400:6;4397:14;4377:18;4374:38;4371:161;;4454:10;4449:3;4445:20;4442:1;4435:31;4489:4;4486:1;4479:15;4517:4;4514:1;4507:15;4371:161;;4158:380;;;:::o;4543:404::-;4745:2;4727:21;;;4784:2;4764:18;;;4757:30;4823:34;4818:2;4803:18;;4796:62;-1:-1:-1;;;4889:2:1;4874:18;;4867:38;4937:3;4922:19;;4543:404::o;4952:403::-;5154:2;5136:21;;;5193:2;5173:18;;;5166:30;5232:34;5227:2;5212:18;;5205:62;-1:-1:-1;;;5298:2:1;5283:18;;5276:37;5345:3;5330:19;;4952:403::o;5639:245::-;5706:6;5759:2;5747:9;5738:7;5734:23;5730:32;5727:52;;;5775:1;5772;5765:12;5727:52;5807:9;5801:16;5826:28;5848:5;5826:28;:::i;6599:404::-;6801:2;6783:21;;;6840:2;6820:18;;;6813:30;6879:34;6874:2;6859:18;;6852:62;-1:-1:-1;;;6945:2:1;6930:18;;6923:38;6993:3;6978:19;;6599:404::o;7008:::-;7210:2;7192:21;;;7249:2;7229:18;;;7222:30;7288:34;7283:2;7268:18;;7261:62;-1:-1:-1;;;7354:2:1;7339:18;;7332:38;7402:3;7387:19;;7008:404::o;7819:127::-;7880:10;7875:3;7871:20;7868:1;7861:31;7911:4;7908:1;7901:15;7935:4;7932:1;7925:15;7951:168;8024:9;;;8055;;8072:15;;;8066:22;;8052:37;8042:71;;8093:18;;:::i;8124:217::-;8164:1;8190;8180:132;;8234:10;8229:3;8225:20;8222:1;8215:31;8269:4;8266:1;8259:15;8297:4;8294:1;8287:15;8180:132;-1:-1:-1;8326:9:1;;8124:217::o;9052:404::-;9254:2;9236:21;;;9293:2;9273:18;;;9266:30;9332:34;9327:2;9312:18;;9305:62;-1:-1:-1;;;9398:2:1;9383:18;;9376:38;9446:3;9431:19;;9052:404::o;10580:125::-;10645:9;;;10666:10;;;10663:36;;;10679:18;;:::i;11786:128::-;11853:9;;;11874:11;;;11871:37;;;11888:18;;:::i;11919:127::-;11980:10;11975:3;11971:20;11968:1;11961:31;12011:4;12008:1;12001:15;12035:4;12032:1;12025:15;12051:127;12112:10;12107:3;12103:20;12100:1;12093:31;12143:4;12140:1;12133:15;12167:4;12164:1;12157:15;12183:251;12253:6;12306:2;12294:9;12285:7;12281:23;12277:32;12274:52;;;12322:1;12319;12312:12;12274:52;12354:9;12348:16;12373:31;12398:5;12373:31;:::i;12439:980::-;12701:4;12749:3;12738:9;12734:19;12780:6;12769:9;12762:25;12806:2;12844:6;12839:2;12828:9;12824:18;12817:34;12887:3;12882:2;12871:9;12867:18;12860:31;12911:6;12946;12940:13;12977:6;12969;12962:22;13015:3;13004:9;13000:19;12993:26;;13054:2;13046:6;13042:15;13028:29;;13075:1;13085:195;13099:6;13096:1;13093:13;13085:195;;;13164:13;;-1:-1:-1;;;;;13160:39:1;13148:52;;13255:15;;;;13220:12;;;;13196:1;13114:9;13085:195;;;-1:-1:-1;;;;;;;13336:32:1;;;;13331:2;13316:18;;13309:60;-1:-1:-1;;;13400:3:1;13385:19;13378:35;13297:3;12439:980;-1:-1:-1;;;12439:980:1:o;13424:1105::-;13519:6;13550:2;13593;13581:9;13572:7;13568:23;13564:32;13561:52;;;13609:1;13606;13599:12;13561:52;13642:9;13636:16;13671:18;13712:2;13704:6;13701:14;13698:34;;;13728:1;13725;13718:12;13698:34;13766:6;13755:9;13751:22;13741:32;;13811:7;13804:4;13800:2;13796:13;13792:27;13782:55;;13833:1;13830;13823:12;13782:55;13862:2;13856:9;13884:2;13880;13877:10;13874:36;;;13890:18;;:::i;:::-;13936:2;13933:1;13929:10;13968:2;13962:9;14031:2;14027:7;14022:2;14018;14014:11;14010:25;14002:6;13998:38;14086:6;14074:10;14071:22;14066:2;14054:10;14051:18;14048:46;14045:72;;;14097:18;;:::i;:::-;14133:2;14126:22;14183:18;;;14217:15;;;;-1:-1:-1;14259:11:1;;;14255:20;;;14287:19;;;14284:39;;;14319:1;14316;14309:12;14284:39;14343:11;;;;14363:135;14379:6;14374:3;14371:15;14363:135;;;14445:10;;14433:23;;14396:12;;;;14476;;;;14363:135;;;14517:6;13424:1105;-1:-1:-1;;;;;;;;13424:1105:1:o

Swarm Source

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