ETH Price: $2,976.50 (-4.10%)
Gas: 2 Gwei

Token

MAGA AGAIN (MAGAA)
 

Overview

Max Total Supply

1,000,000,000 MAGAA

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,990,984.848237908679647854 MAGAA

Value
$0.00
0x06b30032c2afd603ae1d0f1fb923b4ab15e4c667
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xceB7A894...08a1136aa
The constructor portion of the code might be different and could alter the actual behaviour of the contract

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;

/**
Website:  magaa.io
Telegram: https://t.me/MAGAAtoken
Twitter:  https://twitter.com/MAGAAtoken
*/

/**

 ███████████ ███████████   █████  █████ ██████   ██████ ███████████ 
░█░░░███░░░█░░███░░░░░███ ░░███  ░░███ ░░██████ ██████ ░░███░░░░░███
░   ░███  ░  ░███    ░███  ░███   ░███  ░███░█████░███  ░███    ░███
    ░███     ░██████████   ░███   ░███  ░███░░███ ░███  ░██████████ 
    ░███     ░███░░░░░███  ░███   ░███  ░███ ░░░  ░███  ░███░░░░░░  
    ░███     ░███    ░███  ░███   ░███  ░███      ░███  ░███        
    █████    █████   █████ ░░████████   █████     █████ █████       
   ░░░░░    ░░░░░   ░░░░░   ░░░░░░░░   ░░░░░     ░░░░░ ░░░░░        
                                                                                                                                     
*/

/**
 * @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 / 50;
    /// MAX WALLET AMOUNT
    uint256 public maxWalletAmount = MAX_SUPPLY / 50;
    
    /// 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%

    /// Trading flag
    bool public trading;

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

    /// mapping for blacklist
    mapping(address => bool) public blacklist;
    
    ////// 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) {

        uniswapV2Router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        taxWallet1 = 0xEe4fe51310Ba173bDbE76d45240772fF76f3a4AA; 
        taxWallet2 = 0x9D6CEd5850d285c24cE7c6848c70551c7FaE2b3a; 
        
        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 Add to the blacklist. 
     *
     * @param blacklistedAddresses Array of addresses to be blacklisted
     */
     
    function addToBlacklist(address[] calldata blacklistedAddresses) external onlyOwner {
        for (uint256 i = 0; i < blacklistedAddresses.length; i++) {
            require(!isExcludedFromTaxes[blacklistedAddresses[i]], "Address is excluded from taxes, cannot blacklist");
            blacklist[blacklistedAddresses[i]] = true;
        }
    }

     /**
     * @notice Remove from the blacklist. 
     *
     * @param blacklistedAddresses Array of addresses to removed from the blacklist
     */
     
    function removeFromBlacklist(address[] calldata blacklistedAddresses) external onlyOwner {
        for (uint256 i = 0; i < blacklistedAddresses.length; i++) {
            blacklist[blacklistedAddresses[i]] = false;
        }
    }

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

    function setSwapTokensAtAmount(uint256 tokens) external onlyOwner {
        require(tokens > 1000e18, "Minimum of 1000 tokens required");
        swapTokensAtAmount = tokens;
    }


    /**
     * @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 {

        // Check if either the sender or receiver is blacklisted
        require(!(blacklist[from] || blacklist[to]), "Address is blacklisted, aborting");

        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":"blacklistedAddresses","type":"address[]"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address[]","name":"blacklistedAddresses","type":"address[]"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","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"}]

60c060405261001b60326b033b2e3c9fd0803ce8000000610d2c565b60085561003560326b033b2e3c9fd0803ce8000000610d2c565b600955610051620186a06b033b2e3c9fd0803ce8000000610d2c565b600a5534801561005f575f80fd5b50336040518060400160405280600a81526020016926a0a3a09020a3a0a4a760b11b815250604051806040016040528060058152602001644d4147414160d81b81525081600390816100b19190610ddb565b5060046100be8282610ddb565b5050506001600160a01b0381166100ef57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100f881610375565b50737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052600680546001600160a01b031990811673ee4fe51310ba173bdbe76d45240772ff76f3a4aa1790915560078054909116739d6ced5850d285c24ce7c6848c70551c7fae2b3a1790556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610194573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101b89190610e9a565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610205573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102299190610e9a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610273573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102979190610e9a565b6001600160a01b0390811660a0526040805160208082018352606491829052600e829055601082905582518082018452829052600f829055601191909155305f908152600c909152818120805460ff1990811660019081179092553380845284842080548316841790557f13649b2456f1b42fef0f0040b3aaeabcd21a76a0f3f5defd4f583839455116e88054831684179055600654861684528484208054831684179055600754909516835292909120805483169091179055600b80549091169055610370906b033b2e3c9fd0803ce80000006103c6565b611041565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166103ef5760405163ec442f0560e01b81525f60048201526024016100e6565b6103fa5f83836103fe565b5050565b6001600160a01b0383165f908152600d602052604090205460ff168061043b57506001600160a01b0382165f908152600d602052604090205460ff165b156104885760405162461bcd60e51b815260206004820181905260248201527f4164647265737320697320626c61636b6c69737465642c2061626f7274696e6760448201526064016100e6565b600b5460ff16806104b057506001600160a01b0383165f908152600c602052604090205460ff165b806104d257506001600160a01b0382165f908152600c602052604090205460ff165b8061050e57506080516001600160a01b0316836001600160a01b031614801561050e575060a0516001600160a01b0316826001600160a01b0316145b8061054a57506080516001600160a01b0316826001600160a01b031614801561054a575060a0516001600160a01b0316836001600160a01b0316145b6105a85760405162461bcd60e51b815260206004820152602960248201527f54726164696e672064697361626c65642c206f6e6c79206f776e65722063616e604482015268103a3930b739b332b960b91b60648201526084016100e6565b6001600160a01b0383165f908152600c602052604090205460ff16806105e557506001600160a01b0382165f908152600c602052604090205460ff165b1580156105f45750600b5460ff165b156107fc575f60a0516001600160a01b0316836001600160a01b031614610688576009546001600160a01b0384165f9081526020819052604090205461063a9084610ec7565b11156106885760405162461bcd60e51b815260206004820152601c60248201527f4d6178206c696d6974207065722077616c6c657420726561636865640000000060448201526064016100e6565b60a0516001600160a01b0316846001600160a01b031603610720576008548211156106f55760405162461bcd60e51b815260206004820152601e60248201527f4d61782062757920616d6f756e7420706572205478206578636565646564000060448201526064016100e6565b6010541561071b576127106010548361070e9190610eda565b6107189190610d2c565b90505b6107b3565b60a0516001600160a01b0316836001600160a01b0316036107b35760085482111561078d5760405162461bcd60e51b815260206004820152601f60248201527f4d61782073656c6c20616d6f756e74207065722054782065786365656465640060448201526064016100e6565b601154156107b357612710601154836107a69190610eda565b6107b09190610d2c565b90505b60405181907f946cf2ce5ccac152682786d5f6b2e2dcfd804ab709002314d1d3b7dd2122f837905f90a26107e78183610ef1565b915080156107fa576107fa8430836108b0565b505b305f9081526020819052604081205490505f600a548210158015610834575060a0516001600160a01b0316856001600160a01b031614155b801561085857506001600160a01b0385165f908152600c602052604090205460ff16155b8015610867575060125460ff16155b80156108755750600b5460ff165b9050801561089e576012805460ff19166001179055610893826109d6565b6012805460ff191690555b6108a98585856108b0565b5050505050565b6001600160a01b0383166108da578060025f8282546108cf9190610ec7565b9091555061094a9050565b6001600160a01b0383165f908152602081905260409020548181101561092c5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100e6565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661096657600280548290039055610984565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109c991815260200190565b60405180910390a3505050565b5f60105411806109e757505f601154115b80156109f257505f81115b15610a7c57610a0081610a7f565b4715610a7c576006546001600160a01b03166108fc610a20600247610d2c565b6040518115909202915f818181858888f19350505050158015610a45573d5f803e3d5ffd5b506007546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156103fa573d5f803e3d5ffd5b50565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610ab257610ab2610f04565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b10573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b349190610e9a565b81600181518110610b4757610b47610f04565b60200260200101906001600160a01b031690816001600160a01b03168152505081610b7a30608051610c1160201b60201c565b1015610b9457610b94306080515f19610c3d60201b60201c565b6080516001600160a01b03166318cbafe5835f8430426040518663ffffffff1660e01b8152600401610bca959493929190610f18565b5f604051808303815f875af1158015610be5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c0c9190810190610f89565b505050565b6001600160a01b038083165f908152600160209081526040808320938516835292905220545b92915050565b610c0c83838360016001600160a01b038416610c6e5760405163e602df0560e01b81525f60048201526024016100e6565b6001600160a01b038316610c9757604051634a1406b160e11b81525f60048201526024016100e6565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610d1257826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d0991815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52601160045260245ffd5b5f82610d4657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680610d7357607f821691505b602082108103610d9157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610c0c57805f5260205f20601f840160051c81016020851015610dbc5750805b601f840160051c820191505b818110156108a9575f8155600101610dc8565b81516001600160401b03811115610df457610df4610d4b565b610e0881610e028454610d5f565b84610d97565b602080601f831160018114610e3b575f8415610e245750858301515b5f19600386901b1c1916600185901b178555610e92565b5f85815260208120601f198616915b82811015610e6957888601518255948401946001909101908401610e4a565b5085821015610e8657878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215610eaa575f80fd5b81516001600160a01b0381168114610ec0575f80fd5b9392505050565b80820180821115610c3757610c37610d18565b8082028115828204841417610c3757610c37610d18565b81810381811115610c3757610c37610d18565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610f685784516001600160a01b031683529383019391830191600101610f43565b50506001600160a01b03969096166060850152505050608001529392505050565b5f6020808385031215610f9a575f80fd5b82516001600160401b0380821115610fb0575f80fd5b818501915085601f830112610fc3575f80fd5b815181811115610fd557610fd5610d4b565b8060051b604051601f19603f83011681018181108582111715610ffa57610ffa610d4b565b604052918252848201925083810185019188831115611017575f80fd5b938501935b828510156110355784518452938501939285019261101c565b98975050505050505050565b60805160a05161246c6110b65f395f81816105d3015281816115fa015281816116720152818161175801528181611804015281816118ba01526119d301525f81816102b6015281816115be0152818161163601528181611cf301528181611dab01528181611ddb0152611e18015261246c5ff3fe608060405260043610610241575f3560e01c806389daf79911610134578063cbe2de71116100b3578063e39111ab11610078578063e39111ab1461067d578063ec44acf21461069c578063f26a9816146106b5578063f2fde38b146106d4578063f9f92be4146106f3578063fba62f5e14610721575f80fd5b8063cbe2de71146105f5578063cc1776d314610614578063d3f6a1571461062a578063dd62ed3e14610649578063e2f4560514610668575f80fd5b8063a9059cbb116100f9578063a9059cbb14610550578063aa4bde281461056f578063afa4f3b214610584578063c345c4d5146105a3578063c816841b146105c2575f80fd5b806389daf799146104cd5780638a8c523c146104ec5780638da5cb5b14610500578063935eb35f1461051d57806395d89b411461053c575f80fd5b80633d8f0453116101c057806370a082311161018557806370a082311461043d578063715018a6146104715780637a9590761461048557806382bf293c1461049957806385b27c85146104b8575f80fd5b80633d8f0453146103b557806346469afb146103d45780634f7041a5146103e95780635b58741b146103ff5780636eb3a90f1461041e575f80fd5b80631bff7898116102065780631bff78981461032457806323b872dd1461033957806327b07d7514610358578063313ce5671461038657806333096098146103a1575f80fd5b806306fdde031461024c578063095ea7b3146102765780631694505e146102a557806317700f01146102f057806318160ddd14610306575f80fd5b3661024857005b5f80fd5b348015610257575f80fd5b50610260610740565b60405161026d9190611e97565b60405180910390f35b348015610281575f80fd5b50610295610290366004611ee0565b6107d0565b604051901515815260200161026d565b3480156102b0575f80fd5b506102d87f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161026d565b3480156102fb575f80fd5b506103046107e9565b005b348015610311575f80fd5b506002545b60405190815260200161026d565b34801561032f575f80fd5b5061031660115481565b348015610344575f80fd5b50610295610353366004611f0a565b610825565b348015610363575f80fd5b50610295610372366004611f48565b600c6020525f908152604090205460ff1681565b348015610391575f80fd5b506040516012815260200161026d565b3480156103ac575f80fd5b50610304610848565b3480156103c0575f80fd5b506103046103cf366004611f6a565b6108b6565b3480156103df575f80fd5b5061031660105481565b3480156103f4575f80fd5b50600e546103169081565b34801561040a575f80fd5b50610304610419366004611fb6565b6109b7565b348015610429575f80fd5b50610304610438366004611f48565b610a3f565b348015610448575f80fd5b50610316610457366004611f48565b6001600160a01b03165f9081526020819052604090205490565b34801561047c575f80fd5b50610304610b18565b348015610490575f80fd5b50610304610b32565b3480156104a4575f80fd5b506103046104b3366004611fed565b610b97565b3480156104c3575f80fd5b5061031660085481565b3480156104d8575f80fd5b506103046104e7366004612004565b610c31565b3480156104f7575f80fd5b50610304610ca2565b34801561050b575f80fd5b506005546001600160a01b03166102d8565b348015610528575f80fd5b50610304610537366004612004565b610ce1565b348015610547575f80fd5b50610260610dfa565b34801561055b575f80fd5b5061029561056a366004611ee0565b610e09565b34801561057a575f80fd5b5061031660095481565b34801561058f575f80fd5b5061030461059e366004611fed565b610e16565b3480156105ae575f80fd5b506103046105bd366004611f48565b610e7b565b3480156105cd575f80fd5b506102d87f000000000000000000000000000000000000000000000000000000000000000081565b348015610600575f80fd5b506007546102d8906001600160a01b031681565b34801561061f575f80fd5b50600f546103169081565b348015610635575f80fd5b50610304610644366004612073565b610fc0565b348015610654575f80fd5b50610316610663366004612073565b6110c4565b348015610673575f80fd5b50610316600a5481565b348015610688575f80fd5b506006546102d8906001600160a01b031681565b3480156106a7575f80fd5b50600b546102959060ff1681565b3480156106c0575f80fd5b506103046106cf366004611fed565b6110ee565b3480156106df575f80fd5b506103046106ee366004611f48565b61117e565b3480156106fe575f80fd5b5061029561070d366004611f48565b600d6020525f908152604090205460ff1681565b34801561072c575f80fd5b5061030461073b366004611f48565b6111ef565b60606003805461074f9061209f565b80601f016020809104026020016040519081016040528092919081815260200182805461077b9061209f565b80156107c65780601f1061079d576101008083540402835291602001916107c6565b820191905f5260205f20905b8154815290600101906020018083116107a957829003601f168201915b5050505050905090565b5f336107dd8185856112c8565b60019150505b92915050565b6107f16112d5565b600b805460ff191690556040517f822119f1d1dbfeb2dca7218674b3bfc8047a99f0149d5812b12daae7a2f62712905f90a1565b5f33610832858285611302565b61083d858585611365565b506001949350505050565b6006546001600160a01b0316331461087b5760405162461bcd60e51b8152600401610872906120d7565b60405180910390fd5b600680546001600160a01b03165f908152600c60205260408120805460ff1916905581546001600160a01b031916909155600e819055601055565b6006546001600160a01b03163314806108d957506007546001600160a01b031633145b6108f55760405162461bcd60e51b81526004016108729061211f565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284915f9183169063a9059cbb906044016020604051808303815f875af1158015610945573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109699190612166565b9050806109b05760405162461bcd60e51b8152602060048201526015602482015274115490cc8c081d1c985b9cd9995c8819985a5b1959605a1b6044820152606401610872565b5050505050565b6109bf6112d5565b6001600160a01b038216610a155760405162461bcd60e51b815260206004820152601f60248201527f4163636f756e74206d757374206e6f74206265203078302061646472657373006044820152606401610872565b6001600160a01b03919091165f908152600c60205260409020805460ff1916911515919091179055565b6006546001600160a01b03163314610a695760405162461bcd60e51b8152600401610872906120d7565b6001600160a01b038116610a8f5760405162461bcd60e51b815260040161087290612181565b600680546001600160a01b039081165f908152600c6020526040808220805460ff199081169091558584168084528284208054909216600117909155935490519216917fcaf4855279e6519140a8d4af190e14fadc5174e7311356c2c3b57baa050811319190a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b610b206112d5565b610b28610ca2565b610b306113c2565b565b6007546001600160a01b03163314610b5c5760405162461bcd60e51b8152600401610872906121c9565b600780546001600160a01b03165f908152600c60205260408120805460ff1916905581546001600160a01b031916909155600f819055601155565b610b9f6112d5565b60018110158015610bb257508061271010155b610c085760405162461bcd60e51b815260206004820152602160248201527f4d61782077616c6c657420616d6f756e74206973206f7574206f662072616e676044820152606560f81b6064820152608401610872565b612710610c21826b033b2e3c9fd0803ce8000000612225565b610c2b919061223c565b60095550565b610c396112d5565b5f5b81811015610c9d575f600d5f858585818110610c5957610c5961225b565b9050602002016020810190610c6e9190611f48565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055600101610c3b565b505050565b610caa6112d5565b600b805460ff191660011790556040517fa62ccc2c5bc0b8eb49b01f78e5ca0c296b739ecac1c21b7b74793559450bf45a905f90a1565b610ce96112d5565b5f5b81811015610c9d57600c5f848484818110610d0857610d0861225b565b9050602002016020810190610d1d9190611f48565b6001600160a01b0316815260208101919091526040015f205460ff1615610d9f5760405162461bcd60e51b815260206004820152603060248201527f41646472657373206973206578636c756465642066726f6d2074617865732c2060448201526f18d85b9b9bdd08189b1858dadb1a5cdd60821b6064820152608401610872565b6001600d5f858585818110610db657610db661225b565b9050602002016020810190610dcb9190611f48565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055600101610ceb565b60606004805461074f9061209f565b5f336107dd818585611365565b610e1e6112d5565b683635c9adc5dea000008111610e765760405162461bcd60e51b815260206004820152601f60248201527f4d696e696d756d206f66203130303020746f6b656e73207265717569726564006044820152606401610872565b600a55565b6006546001600160a01b0316331480610e9e57506007546001600160a01b031633145b610eba5760405162461bcd60e51b81526004016108729061211f565b6001600160a01b038116610f105760405162461bcd60e51b815260206004820152601e60248201527f57616c6c6574206d757374206e6f7420626520307830206164647265737300006044820152606401610872565b4780610f535760405162461bcd60e51b815260206004820152601260248201527127379022aa24103a37903a3930b739b332b960711b6044820152606401610872565b6040516001600160a01b0383169082156108fc029083905f818181858888f19350505050158015610f86573d5f803e3d5ffd5b5060405181906001600160a01b038416907f0d7976053781e071cecf47e898ad2a6dc87621ca33734e96eb4b92453319e8c9905f90a35050565b610fc86112d5565b6001600160a01b038216610fee5760405162461bcd60e51b815260040161087290612181565b6001600160a01b0381166110145760405162461bcd60e51b81526004016108729061226f565b6006546040516001600160a01b038085169216907fcaf4855279e6519140a8d4af190e14fadc5174e7311356c2c3b57baa05081131905f90a3600680546001600160a01b0319166001600160a01b03848116919091179091556007546040518383169291909116907f46233802773a6f8b6255846521d8ea859df177f1a116429fbd4a81de50cbec3d905f90a3600780546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6110f66112d5565b6001811015801561110957508061271010155b6111555760405162461bcd60e51b815260206004820152601e60248201527f4d617820616d6f756e7420706572205458206f7574206f662072616e676500006044820152606401610872565b61271061116e826b033b2e3c9fd0803ce8000000612225565b611178919061223c565b60085550565b6111866112d5565b5f600c5f61119c6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790556111cc816113d3565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6007546001600160a01b031633146112195760405162461bcd60e51b8152600401610872906121c9565b6001600160a01b03811661123f5760405162461bcd60e51b81526004016108729061226f565b600780546001600160a01b039081165f908152600c6020526040808220805460ff199081169091558584168084528284208054909216600117909155935490519216917f46233802773a6f8b6255846521d8ea859df177f1a116429fbd4a81de50cbec3d9190a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610c9d8383836001611410565b6005546001600160a01b03163314610b305760405163118cdaa760e01b8152336004820152602401610872565b5f61130d84846110c4565b90505f19811461135f578181101561135157604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610872565b61135f84848484035f611410565b50505050565b6001600160a01b03831661138e57604051634b637e8f60e11b81525f6004820152602401610872565b6001600160a01b0382166113b75760405163ec442f0560e01b81525f6004820152602401610872565b610c9d8383836114e2565b6113ca6112d5565b610b305f611a7d565b6113db6112d5565b6001600160a01b03811661140457604051631e4fbdf760e01b81525f6004820152602401610872565b61140d81611a7d565b50565b6001600160a01b0384166114395760405163e602df0560e01b81525f6004820152602401610872565b6001600160a01b03831661146257604051634a1406b160e11b81525f6004820152602401610872565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561135f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114d491815260200190565b60405180910390a350505050565b6001600160a01b0383165f908152600d602052604090205460ff168061151f57506001600160a01b0382165f908152600d602052604090205460ff165b1561156c5760405162461bcd60e51b815260206004820181905260248201527f4164647265737320697320626c61636b6c69737465642c2061626f7274696e676044820152606401610872565b600b5460ff168061159457506001600160a01b0383165f908152600c602052604090205460ff165b806115b657506001600160a01b0382165f908152600c602052604090205460ff165b8061162e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561162e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b806116a657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161480156116a657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316145b6117045760405162461bcd60e51b815260206004820152602960248201527f54726164696e672064697361626c65642c206f6e6c79206f776e65722063616e604482015268103a3930b739b332b960b91b6064820152608401610872565b6001600160a01b0383165f908152600c602052604090205460ff168061174157506001600160a01b0382165f908152600c602052604090205460ff165b1580156117505750600b5460ff165b156119b2575f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614611802576009546001600160a01b0384165f908152602081905260409020546117b490846122b7565b11156118025760405162461bcd60e51b815260206004820152601c60248201527f4d6178206c696d6974207065722077616c6c65742072656163686564000000006044820152606401610872565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036118b85760085482111561188d5760405162461bcd60e51b815260206004820152601e60248201527f4d61782062757920616d6f756e742070657220547820657863656564656400006044820152606401610872565b601054156118b357612710601054836118a69190612225565b6118b0919061223c565b90505b611969565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031603611969576008548211156119435760405162461bcd60e51b815260206004820152601f60248201527f4d61782073656c6c20616d6f756e7420706572205478206578636565646564006044820152606401610872565b60115415611969576127106011548361195c9190612225565b611966919061223c565b90505b60405181907f946cf2ce5ccac152682786d5f6b2e2dcfd804ab709002314d1d3b7dd2122f837905f90a261199d81836122ca565b915080156119b0576119b0843083611ace565b505b305f9081526020819052604081205490505f600a548210158015611a0857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611a2c57506001600160a01b0385165f908152600c602052604090205460ff16155b8015611a3b575060125460ff16155b8015611a495750600b5460ff165b90508015611a72576012805460ff19166001179055611a6782611bf4565b6012805460ff191690555b6109b0858585611ace565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316611af8578060025f828254611aed91906122b7565b90915550611b689050565b6001600160a01b0383165f9081526020819052604090205481811015611b4a5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610872565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216611b8457600280548290039055611ba2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611be791815260200190565b60405180910390a3505050565b5f6010541180611c0557505f601154115b8015611c1057505f81115b1561140d57611c1e81611c9e565b471561140d576006546001600160a01b03166108fc611c3e60024761223c565b6040518115909202915f818181858888f19350505050158015611c63573d5f803e3d5ffd5b506007546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015611c9a573d5f803e3d5ffd5b5050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611cd157611cd161225b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7191906122f1565b81600181518110611d8457611d8461225b565b60200260200101906001600160a01b031690816001600160a01b03168152505081611dcf307f00000000000000000000000000000000000000000000000000000000000000006110c4565b1015611e0157611e01307f00000000000000000000000000000000000000000000000000000000000000005f196112c8565b6040516318cbafe560e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906318cbafe590611e559085905f9086903090429060040161230c565b5f604051808303815f875af1158015611e70573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c9d919081019061237d565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461140d575f80fd5b5f8060408385031215611ef1575f80fd5b8235611efc81611ecc565b946020939093013593505050565b5f805f60608486031215611f1c575f80fd5b8335611f2781611ecc565b92506020840135611f3781611ecc565b929592945050506040919091013590565b5f60208284031215611f58575f80fd5b8135611f6381611ecc565b9392505050565b5f805f60608486031215611f7c575f80fd5b8335611f8781611ecc565b9250602084013591506040840135611f9e81611ecc565b809150509250925092565b801515811461140d575f80fd5b5f8060408385031215611fc7575f80fd5b8235611fd281611ecc565b91506020830135611fe281611fa9565b809150509250929050565b5f60208284031215611ffd575f80fd5b5035919050565b5f8060208385031215612015575f80fd5b823567ffffffffffffffff8082111561202c575f80fd5b818501915085601f83011261203f575f80fd5b81358181111561204d575f80fd5b8660208260051b8501011115612061575f80fd5b60209290920196919550909350505050565b5f8060408385031215612084575f80fd5b823561208f81611ecc565b91506020830135611fe281611ecc565b600181811c908216806120b357607f821691505b6020821081036120d157634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526028908201527f4f6e6c79205461782057616c6c657420312063616e2063616c6c207468697320604082015267333ab731ba34b7b760c11b606082015260800190565b60208082526027908201527f4f6e6c79205461782057616c6c6574732063616e2063616c6c207468697320666040820152663ab731ba34b7b760c91b606082015260800190565b5f60208284031215612176575f80fd5b8151611f6381611fa9565b60208082526028908201527f4e6577205461782057616c6c65742031206d757374206e6f7420626520307830604082015267206164647265737360c01b606082015260800190565b60208082526028908201527f4f6e6c79205461782057616c6c657420322063616e2063616c6c207468697320604082015267333ab731ba34b7b760c11b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107e3576107e3612211565b5f8261225657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b60208082526028908201527f4e6577205461782057616c6c65742032206d757374206e6f7420626520307830604082015267206164647265737360c01b606082015260800190565b808201808211156107e3576107e3612211565b818103818111156107e3576107e3612211565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215612301575f80fd5b8151611f6381611ecc565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561235c5784516001600160a01b031683529383019391830191600101612337565b50506001600160a01b03969096166060850152505050608001529392505050565b5f602080838503121561238e575f80fd5b825167ffffffffffffffff808211156123a5575f80fd5b818501915085601f8301126123b8575f80fd5b8151818111156123ca576123ca6122dd565b8060051b604051601f19603f830116810181811085821117156123ef576123ef6122dd565b60405291825284820192508381018501918883111561240c575f80fd5b938501935b8285101561242a57845184529385019392850192612411565b9897505050505050505056fea26469706673582212208a02d9690d85c86f76bbcd9e4aea6cdcd0c73a763d66b3f937a2bddc2218d50e64736f6c63430008190033

Deployed Bytecode

0x608060405260043610610241575f3560e01c806389daf79911610134578063cbe2de71116100b3578063e39111ab11610078578063e39111ab1461067d578063ec44acf21461069c578063f26a9816146106b5578063f2fde38b146106d4578063f9f92be4146106f3578063fba62f5e14610721575f80fd5b8063cbe2de71146105f5578063cc1776d314610614578063d3f6a1571461062a578063dd62ed3e14610649578063e2f4560514610668575f80fd5b8063a9059cbb116100f9578063a9059cbb14610550578063aa4bde281461056f578063afa4f3b214610584578063c345c4d5146105a3578063c816841b146105c2575f80fd5b806389daf799146104cd5780638a8c523c146104ec5780638da5cb5b14610500578063935eb35f1461051d57806395d89b411461053c575f80fd5b80633d8f0453116101c057806370a082311161018557806370a082311461043d578063715018a6146104715780637a9590761461048557806382bf293c1461049957806385b27c85146104b8575f80fd5b80633d8f0453146103b557806346469afb146103d45780634f7041a5146103e95780635b58741b146103ff5780636eb3a90f1461041e575f80fd5b80631bff7898116102065780631bff78981461032457806323b872dd1461033957806327b07d7514610358578063313ce5671461038657806333096098146103a1575f80fd5b806306fdde031461024c578063095ea7b3146102765780631694505e146102a557806317700f01146102f057806318160ddd14610306575f80fd5b3661024857005b5f80fd5b348015610257575f80fd5b50610260610740565b60405161026d9190611e97565b60405180910390f35b348015610281575f80fd5b50610295610290366004611ee0565b6107d0565b604051901515815260200161026d565b3480156102b0575f80fd5b506102d87f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161026d565b3480156102fb575f80fd5b506103046107e9565b005b348015610311575f80fd5b506002545b60405190815260200161026d565b34801561032f575f80fd5b5061031660115481565b348015610344575f80fd5b50610295610353366004611f0a565b610825565b348015610363575f80fd5b50610295610372366004611f48565b600c6020525f908152604090205460ff1681565b348015610391575f80fd5b506040516012815260200161026d565b3480156103ac575f80fd5b50610304610848565b3480156103c0575f80fd5b506103046103cf366004611f6a565b6108b6565b3480156103df575f80fd5b5061031660105481565b3480156103f4575f80fd5b50600e546103169081565b34801561040a575f80fd5b50610304610419366004611fb6565b6109b7565b348015610429575f80fd5b50610304610438366004611f48565b610a3f565b348015610448575f80fd5b50610316610457366004611f48565b6001600160a01b03165f9081526020819052604090205490565b34801561047c575f80fd5b50610304610b18565b348015610490575f80fd5b50610304610b32565b3480156104a4575f80fd5b506103046104b3366004611fed565b610b97565b3480156104c3575f80fd5b5061031660085481565b3480156104d8575f80fd5b506103046104e7366004612004565b610c31565b3480156104f7575f80fd5b50610304610ca2565b34801561050b575f80fd5b506005546001600160a01b03166102d8565b348015610528575f80fd5b50610304610537366004612004565b610ce1565b348015610547575f80fd5b50610260610dfa565b34801561055b575f80fd5b5061029561056a366004611ee0565b610e09565b34801561057a575f80fd5b5061031660095481565b34801561058f575f80fd5b5061030461059e366004611fed565b610e16565b3480156105ae575f80fd5b506103046105bd366004611f48565b610e7b565b3480156105cd575f80fd5b506102d87f0000000000000000000000009d2ee02961b1e00bf326727e192ff8db715de3ad81565b348015610600575f80fd5b506007546102d8906001600160a01b031681565b34801561061f575f80fd5b50600f546103169081565b348015610635575f80fd5b50610304610644366004612073565b610fc0565b348015610654575f80fd5b50610316610663366004612073565b6110c4565b348015610673575f80fd5b50610316600a5481565b348015610688575f80fd5b506006546102d8906001600160a01b031681565b3480156106a7575f80fd5b50600b546102959060ff1681565b3480156106c0575f80fd5b506103046106cf366004611fed565b6110ee565b3480156106df575f80fd5b506103046106ee366004611f48565b61117e565b3480156106fe575f80fd5b5061029561070d366004611f48565b600d6020525f908152604090205460ff1681565b34801561072c575f80fd5b5061030461073b366004611f48565b6111ef565b60606003805461074f9061209f565b80601f016020809104026020016040519081016040528092919081815260200182805461077b9061209f565b80156107c65780601f1061079d576101008083540402835291602001916107c6565b820191905f5260205f20905b8154815290600101906020018083116107a957829003601f168201915b5050505050905090565b5f336107dd8185856112c8565b60019150505b92915050565b6107f16112d5565b600b805460ff191690556040517f822119f1d1dbfeb2dca7218674b3bfc8047a99f0149d5812b12daae7a2f62712905f90a1565b5f33610832858285611302565b61083d858585611365565b506001949350505050565b6006546001600160a01b0316331461087b5760405162461bcd60e51b8152600401610872906120d7565b60405180910390fd5b600680546001600160a01b03165f908152600c60205260408120805460ff1916905581546001600160a01b031916909155600e819055601055565b6006546001600160a01b03163314806108d957506007546001600160a01b031633145b6108f55760405162461bcd60e51b81526004016108729061211f565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284915f9183169063a9059cbb906044016020604051808303815f875af1158015610945573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109699190612166565b9050806109b05760405162461bcd60e51b8152602060048201526015602482015274115490cc8c081d1c985b9cd9995c8819985a5b1959605a1b6044820152606401610872565b5050505050565b6109bf6112d5565b6001600160a01b038216610a155760405162461bcd60e51b815260206004820152601f60248201527f4163636f756e74206d757374206e6f74206265203078302061646472657373006044820152606401610872565b6001600160a01b03919091165f908152600c60205260409020805460ff1916911515919091179055565b6006546001600160a01b03163314610a695760405162461bcd60e51b8152600401610872906120d7565b6001600160a01b038116610a8f5760405162461bcd60e51b815260040161087290612181565b600680546001600160a01b039081165f908152600c6020526040808220805460ff199081169091558584168084528284208054909216600117909155935490519216917fcaf4855279e6519140a8d4af190e14fadc5174e7311356c2c3b57baa050811319190a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b610b206112d5565b610b28610ca2565b610b306113c2565b565b6007546001600160a01b03163314610b5c5760405162461bcd60e51b8152600401610872906121c9565b600780546001600160a01b03165f908152600c60205260408120805460ff1916905581546001600160a01b031916909155600f819055601155565b610b9f6112d5565b60018110158015610bb257508061271010155b610c085760405162461bcd60e51b815260206004820152602160248201527f4d61782077616c6c657420616d6f756e74206973206f7574206f662072616e676044820152606560f81b6064820152608401610872565b612710610c21826b033b2e3c9fd0803ce8000000612225565b610c2b919061223c565b60095550565b610c396112d5565b5f5b81811015610c9d575f600d5f858585818110610c5957610c5961225b565b9050602002016020810190610c6e9190611f48565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055600101610c3b565b505050565b610caa6112d5565b600b805460ff191660011790556040517fa62ccc2c5bc0b8eb49b01f78e5ca0c296b739ecac1c21b7b74793559450bf45a905f90a1565b610ce96112d5565b5f5b81811015610c9d57600c5f848484818110610d0857610d0861225b565b9050602002016020810190610d1d9190611f48565b6001600160a01b0316815260208101919091526040015f205460ff1615610d9f5760405162461bcd60e51b815260206004820152603060248201527f41646472657373206973206578636c756465642066726f6d2074617865732c2060448201526f18d85b9b9bdd08189b1858dadb1a5cdd60821b6064820152608401610872565b6001600d5f858585818110610db657610db661225b565b9050602002016020810190610dcb9190611f48565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055600101610ceb565b60606004805461074f9061209f565b5f336107dd818585611365565b610e1e6112d5565b683635c9adc5dea000008111610e765760405162461bcd60e51b815260206004820152601f60248201527f4d696e696d756d206f66203130303020746f6b656e73207265717569726564006044820152606401610872565b600a55565b6006546001600160a01b0316331480610e9e57506007546001600160a01b031633145b610eba5760405162461bcd60e51b81526004016108729061211f565b6001600160a01b038116610f105760405162461bcd60e51b815260206004820152601e60248201527f57616c6c6574206d757374206e6f7420626520307830206164647265737300006044820152606401610872565b4780610f535760405162461bcd60e51b815260206004820152601260248201527127379022aa24103a37903a3930b739b332b960711b6044820152606401610872565b6040516001600160a01b0383169082156108fc029083905f818181858888f19350505050158015610f86573d5f803e3d5ffd5b5060405181906001600160a01b038416907f0d7976053781e071cecf47e898ad2a6dc87621ca33734e96eb4b92453319e8c9905f90a35050565b610fc86112d5565b6001600160a01b038216610fee5760405162461bcd60e51b815260040161087290612181565b6001600160a01b0381166110145760405162461bcd60e51b81526004016108729061226f565b6006546040516001600160a01b038085169216907fcaf4855279e6519140a8d4af190e14fadc5174e7311356c2c3b57baa05081131905f90a3600680546001600160a01b0319166001600160a01b03848116919091179091556007546040518383169291909116907f46233802773a6f8b6255846521d8ea859df177f1a116429fbd4a81de50cbec3d905f90a3600780546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6110f66112d5565b6001811015801561110957508061271010155b6111555760405162461bcd60e51b815260206004820152601e60248201527f4d617820616d6f756e7420706572205458206f7574206f662072616e676500006044820152606401610872565b61271061116e826b033b2e3c9fd0803ce8000000612225565b611178919061223c565b60085550565b6111866112d5565b5f600c5f61119c6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790556111cc816113d3565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6007546001600160a01b031633146112195760405162461bcd60e51b8152600401610872906121c9565b6001600160a01b03811661123f5760405162461bcd60e51b81526004016108729061226f565b600780546001600160a01b039081165f908152600c6020526040808220805460ff199081169091558584168084528284208054909216600117909155935490519216917f46233802773a6f8b6255846521d8ea859df177f1a116429fbd4a81de50cbec3d9190a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610c9d8383836001611410565b6005546001600160a01b03163314610b305760405163118cdaa760e01b8152336004820152602401610872565b5f61130d84846110c4565b90505f19811461135f578181101561135157604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610872565b61135f84848484035f611410565b50505050565b6001600160a01b03831661138e57604051634b637e8f60e11b81525f6004820152602401610872565b6001600160a01b0382166113b75760405163ec442f0560e01b81525f6004820152602401610872565b610c9d8383836114e2565b6113ca6112d5565b610b305f611a7d565b6113db6112d5565b6001600160a01b03811661140457604051631e4fbdf760e01b81525f6004820152602401610872565b61140d81611a7d565b50565b6001600160a01b0384166114395760405163e602df0560e01b81525f6004820152602401610872565b6001600160a01b03831661146257604051634a1406b160e11b81525f6004820152602401610872565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561135f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114d491815260200190565b60405180910390a350505050565b6001600160a01b0383165f908152600d602052604090205460ff168061151f57506001600160a01b0382165f908152600d602052604090205460ff165b1561156c5760405162461bcd60e51b815260206004820181905260248201527f4164647265737320697320626c61636b6c69737465642c2061626f7274696e676044820152606401610872565b600b5460ff168061159457506001600160a01b0383165f908152600c602052604090205460ff165b806115b657506001600160a01b0382165f908152600c602052604090205460ff165b8061162e57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316836001600160a01b031614801561162e57507f0000000000000000000000009d2ee02961b1e00bf326727e192ff8db715de3ad6001600160a01b0316826001600160a01b0316145b806116a657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b03161480156116a657507f0000000000000000000000009d2ee02961b1e00bf326727e192ff8db715de3ad6001600160a01b0316836001600160a01b0316145b6117045760405162461bcd60e51b815260206004820152602960248201527f54726164696e672064697361626c65642c206f6e6c79206f776e65722063616e604482015268103a3930b739b332b960b91b6064820152608401610872565b6001600160a01b0383165f908152600c602052604090205460ff168061174157506001600160a01b0382165f908152600c602052604090205460ff165b1580156117505750600b5460ff165b156119b2575f7f0000000000000000000000009d2ee02961b1e00bf326727e192ff8db715de3ad6001600160a01b0316836001600160a01b031614611802576009546001600160a01b0384165f908152602081905260409020546117b490846122b7565b11156118025760405162461bcd60e51b815260206004820152601c60248201527f4d6178206c696d6974207065722077616c6c65742072656163686564000000006044820152606401610872565b7f0000000000000000000000009d2ee02961b1e00bf326727e192ff8db715de3ad6001600160a01b0316846001600160a01b0316036118b85760085482111561188d5760405162461bcd60e51b815260206004820152601e60248201527f4d61782062757920616d6f756e742070657220547820657863656564656400006044820152606401610872565b601054156118b357612710601054836118a69190612225565b6118b0919061223c565b90505b611969565b7f0000000000000000000000009d2ee02961b1e00bf326727e192ff8db715de3ad6001600160a01b0316836001600160a01b031603611969576008548211156119435760405162461bcd60e51b815260206004820152601f60248201527f4d61782073656c6c20616d6f756e7420706572205478206578636565646564006044820152606401610872565b60115415611969576127106011548361195c9190612225565b611966919061223c565b90505b60405181907f946cf2ce5ccac152682786d5f6b2e2dcfd804ab709002314d1d3b7dd2122f837905f90a261199d81836122ca565b915080156119b0576119b0843083611ace565b505b305f9081526020819052604081205490505f600a548210158015611a0857507f0000000000000000000000009d2ee02961b1e00bf326727e192ff8db715de3ad6001600160a01b0316856001600160a01b031614155b8015611a2c57506001600160a01b0385165f908152600c602052604090205460ff16155b8015611a3b575060125460ff16155b8015611a495750600b5460ff165b90508015611a72576012805460ff19166001179055611a6782611bf4565b6012805460ff191690555b6109b0858585611ace565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316611af8578060025f828254611aed91906122b7565b90915550611b689050565b6001600160a01b0383165f9081526020819052604090205481811015611b4a5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610872565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216611b8457600280548290039055611ba2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611be791815260200190565b60405180910390a3505050565b5f6010541180611c0557505f601154115b8015611c1057505f81115b1561140d57611c1e81611c9e565b471561140d576006546001600160a01b03166108fc611c3e60024761223c565b6040518115909202915f818181858888f19350505050158015611c63573d5f803e3d5ffd5b506007546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015611c9a573d5f803e3d5ffd5b5050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611cd157611cd161225b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7191906122f1565b81600181518110611d8457611d8461225b565b60200260200101906001600160a01b031690816001600160a01b03168152505081611dcf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6110c4565b1015611e0157611e01307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d5f196112c8565b6040516318cbafe560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d16906318cbafe590611e559085905f9086903090429060040161230c565b5f604051808303815f875af1158015611e70573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c9d919081019061237d565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461140d575f80fd5b5f8060408385031215611ef1575f80fd5b8235611efc81611ecc565b946020939093013593505050565b5f805f60608486031215611f1c575f80fd5b8335611f2781611ecc565b92506020840135611f3781611ecc565b929592945050506040919091013590565b5f60208284031215611f58575f80fd5b8135611f6381611ecc565b9392505050565b5f805f60608486031215611f7c575f80fd5b8335611f8781611ecc565b9250602084013591506040840135611f9e81611ecc565b809150509250925092565b801515811461140d575f80fd5b5f8060408385031215611fc7575f80fd5b8235611fd281611ecc565b91506020830135611fe281611fa9565b809150509250929050565b5f60208284031215611ffd575f80fd5b5035919050565b5f8060208385031215612015575f80fd5b823567ffffffffffffffff8082111561202c575f80fd5b818501915085601f83011261203f575f80fd5b81358181111561204d575f80fd5b8660208260051b8501011115612061575f80fd5b60209290920196919550909350505050565b5f8060408385031215612084575f80fd5b823561208f81611ecc565b91506020830135611fe281611ecc565b600181811c908216806120b357607f821691505b6020821081036120d157634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526028908201527f4f6e6c79205461782057616c6c657420312063616e2063616c6c207468697320604082015267333ab731ba34b7b760c11b606082015260800190565b60208082526027908201527f4f6e6c79205461782057616c6c6574732063616e2063616c6c207468697320666040820152663ab731ba34b7b760c91b606082015260800190565b5f60208284031215612176575f80fd5b8151611f6381611fa9565b60208082526028908201527f4e6577205461782057616c6c65742031206d757374206e6f7420626520307830604082015267206164647265737360c01b606082015260800190565b60208082526028908201527f4f6e6c79205461782057616c6c657420322063616e2063616c6c207468697320604082015267333ab731ba34b7b760c11b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107e3576107e3612211565b5f8261225657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b60208082526028908201527f4e6577205461782057616c6c65742032206d757374206e6f7420626520307830604082015267206164647265737360c01b606082015260800190565b808201808211156107e3576107e3612211565b818103818111156107e3576107e3612211565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215612301575f80fd5b8151611f6381611ecc565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561235c5784516001600160a01b031683529383019391830191600101612337565b50506001600160a01b03969096166060850152505050608001529392505050565b5f602080838503121561238e575f80fd5b825167ffffffffffffffff808211156123a5575f80fd5b818501915085601f8301126123b8575f80fd5b8151818111156123ca576123ca6122dd565b8060051b604051601f19603f830116810181811085821117156123ef576123ef6122dd565b60405291825284820192508381018501918883111561240c575f80fd5b938501935b8285101561242a57845184529385019392850192612411565b9897505050505050505056fea26469706673582212208a02d9690d85c86f76bbcd9e4aea6cdcd0c73a763d66b3f937a2bddc2218d50e64736f6c63430008190033

Deployed Bytecode Sourcemap

23218:15890:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12611:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14945:222;;;;;;;;;;-1:-1:-1;14945:222:0;;;;;:::i;:::-;;:::i;:::-;;;1058:14:1;;1051:22;1033:41;;1021:2;1006:18;14945:222:0;893:187:1;24501:49:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1273:32:1;;;1255:51;;1243:2;1228:18;24501:49:0;1085:227:1;30169:112:0;;;;;;;;;;;;;:::i;:::-;;13713:99;;;;;;;;;;-1:-1:-1;13792:12:0;;13713:99;;;1463:25:1;;;1451:2;1436:18;13713:99:0;1317:177:1;24428:27:0;;;;;;;;;;;;;;;;15745:283;;;;;;;;;;-1:-1:-1;15745:283:0;;;;;:::i;:::-;;:::i;24048:51::-;;;;;;;;;;-1:-1:-1;24048:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;13564:84;;;;;;;;;;-1:-1:-1;13564:84:0;;13638:2;2354:36:1;;2342:2;2327:18;13564:84:0;2212:184:1;31414:205:0;;;;;;;;;;;;;:::i;27631:291::-;;;;;;;;;;-1:-1:-1;27631:291:0;;;;;:::i;:::-;;:::i;24395:26::-;;;;;;;;;;;;;;;;24337:20;;;;;;;;;;-1:-1:-1;24337:20:0;;;;;;28789:208;;;;;;;;;;-1:-1:-1;28789:208:0;;;;;:::i;:::-;;:::i;30431:381::-;;;;;;;;;;-1:-1:-1;30431:381:0;;;;;:::i;:::-;;:::i;13875:118::-;;;;;;;;;;-1:-1:-1;13875:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;13967:18:0;13940:7;13967:18;;;;;;;;;;;;13875:118;29447:125;;;;;;;;;;;;;:::i;31690:207::-;;;;;;;;;;;;;:::i;34121:241::-;;;;;;;;;;-1:-1:-1;34121:241:0;;;;;:::i;:::-;;:::i;23488:47::-;;;;;;;;;;;;;;;;33286:234;;;;;;;;;;-1:-1:-1;33286:234:0;;;;;:::i;:::-;;:::i;30002:107::-;;;;;;;;;;;;;:::i;6019:87::-;;;;;;;;;;-1:-1:-1;6092:6:0;;-1:-1:-1;;;;;6092:6:0;6019:87;;32766:349;;;;;;;;;;-1:-1:-1;32766:349:0;;;;;:::i;:::-;;:::i;12821:95::-;;;;;;;;;;;;;:::i;14198:182::-;;;;;;;;;;-1:-1:-1;14198:182:0;;;;;:::i;:::-;;:::i;23569:48::-;;;;;;;;;;;;;;;;34493:183;;;;;;;;;;-1:-1:-1;34493:183:0;;;;;:::i;:::-;;:::i;28152:337::-;;;;;;;;;;-1:-1:-1;28152:337:0;;;;;:::i;:::-;;:::i;24586:36::-;;;;;;;;;;;;;;;23419:25;;;;;;;;;;-1:-1:-1;23419:25:0;;;;-1:-1:-1;;;;;23419:25:0;;;24364:22;;;;;;;;;;-1:-1:-1;24364:22:0;;;;;;32132:481;;;;;;;;;;-1:-1:-1;32132:481:0;;;;;:::i;:::-;;:::i;14443:183::-;;;;;;;;;;-1:-1:-1;14443:183:0;;;;;:::i;:::-;;:::i;23856:55::-;;;;;;;;;;;;;;;;23343:25;;;;;;;;;;-1:-1:-1;23343:25:0;;;;-1:-1:-1;;;;;23343:25:0;;;23954:19;;;;;;;;;;-1:-1:-1;23954:19:0;;;;;;;;33748:235;;;;;;;;;;-1:-1:-1;33748:235:0;;;;;:::i;:::-;;:::i;29726:217::-;;;;;;;;;;-1:-1:-1;29726:217:0;;;;;:::i;:::-;;:::i;24139:41::-;;;;;;;;;;-1:-1:-1;24139:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30962:379;;;;;;;;;;-1:-1:-1;30962:379:0;;;;;:::i;:::-;;:::i;12611:91::-;12656:13;12689:5;12682:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12611:91;:::o;14945:222::-;15045:4;4242:10;15106:31;4242:10;15122:7;15131:5;15106:8;:31::i;:::-;15155:4;15148:11;;;14945:222;;;;;:::o;30169:112::-;5905:13;:11;:13::i;:::-;30225:7:::1;:15:::0;;-1:-1:-1;;30225:15:0::1;::::0;;30256:17:::1;::::0;::::1;::::0;30235:5:::1;::::0;30256:17:::1;30169:112::o:0;15745:283::-;15866:4;4242:10;15924:37;15940:4;4242:10;15955:5;15924:15;:37::i;:::-;15972:26;15982:4;15988:2;15992:5;15972:9;:26::i;:::-;-1:-1:-1;16016:4:0;;15745:283;-1:-1:-1;;;;15745:283:0:o;31414:205::-;25379:10;;-1:-1:-1;;;;;25379:10:0;25393;25379:24;25371:77;;;;-1:-1:-1;;;25371:77:0;;;;;;;:::i;:::-;;;;;;;;;31499:10:::1;::::0;;-1:-1:-1;;;;;31499:10:0::1;31513:5;31479:31:::0;;;:19:::1;:31;::::0;;;;:39;;-1:-1:-1;;31479:39:0::1;::::0;;31529:25;;-1:-1:-1;;;;;;31529:25:0::1;::::0;;;31565:6:::1;:20:::0;;;31596:11:::1;:15:::0;31414:205::o;27631:291::-;25663:10;;-1:-1:-1;;;;;25663:10:0;25677;25663:24;;:52;;-1:-1:-1;25691:10:0;;-1:-1:-1;;;;;25691:10:0;25705;25691:24;25663:52;25655:104;;;;-1:-1:-1;;;25655:104:0;;;;;;;:::i;:::-;27828:34:::1;::::0;-1:-1:-1;;;27828:34:0;;-1:-1:-1;;;;;6172:32:1;;;27828:34:0::1;::::0;::::1;6154:51:1::0;6221:18;;;6214:34;;;27796:5:0;;27771:16:::1;::::0;27828:19;::::1;::::0;::::1;::::0;6127:18:1;;27828:34:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27813:49;;27881:7;27873:41;;;::::0;-1:-1:-1;;;27873:41:0;;6711:2:1;27873:41:0::1;::::0;::::1;6693:21:1::0;6750:2;6730:18;;;6723:30;-1:-1:-1;;;6769:18:1;;;6762:51;6830:18;;27873:41:0::1;6509:345:1::0;27873:41:0::1;27760:162;;27631:291:::0;;;:::o;28789:208::-;5905:13;:11;:13::i;:::-;-1:-1:-1;;;;;28885:21:0;::::1;28877:65;;;::::0;-1:-1:-1;;;28877:65:0;;7061:2:1;28877:65:0::1;::::0;::::1;7043:21:1::0;7100:2;7080:18;;;7073:30;7139:33;7119:18;;;7112:61;7190:18;;28877:65:0::1;6859:355:1::0;28877:65:0::1;-1:-1:-1::0;;;;;28953:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:36;;-1:-1:-1;;28953:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28789:208::o;30431:381::-;25379:10;;-1:-1:-1;;;;;25379:10:0;25393;25379:24;25371:77;;;;-1:-1:-1;;;25371:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30525:29:0;::::1;30517:82;;;;-1:-1:-1::0;;;30517:82:0::1;;;;;;;:::i;:::-;30630:10;::::0;;-1:-1:-1;;;;;30630:10:0;;::::1;30644:5;30610:31:::0;;;:19:::1;:31;::::0;;;;;:39;;-1:-1:-1;;30610:39:0;;::::1;::::0;;;30660:34;;::::1;::::0;;;;;;:41;;;;::::1;30630:10:::0;30660:41:::1;::::0;;;30739:10;;30717:48;;30739:10;::::1;::::0;30717:48:::1;::::0;30644:5;30717:48:::1;30776:10;:26:::0;;-1:-1:-1;;;;;;30776:26:0::1;-1:-1:-1::0;;;;;30776:26:0;;;::::1;::::0;;;::::1;::::0;;30431:381::o;29447:125::-;5905:13;:11;:13::i;:::-;29513:15:::1;:13;:15::i;:::-;29539:25;:23;:25::i;:::-;29447:125::o:0;31690:207::-;25521:10;;-1:-1:-1;;;;;25521:10:0;25535;25521:24;25513:77;;;;-1:-1:-1;;;25513:77:0;;;;;;;:::i;:::-;31775:10:::1;::::0;;-1:-1:-1;;;;;31775:10:0::1;31789:5;31755:31:::0;;;:19:::1;:31;::::0;;;;:39;;-1:-1:-1;;31755:39:0::1;::::0;;31805:25;;-1:-1:-1;;;;;;31805:25:0::1;::::0;;;31841:7:::1;:21:::0;;;31873:12:::1;:16:::0;31690:207::o;34121:241::-;5905:13;:11;:13::i;:::-;34216:1:::1;34205:7;:12;;:42;;;;;34240:7;23783:5;34221:26;;34205:42;34197:88;;;::::0;-1:-1:-1;;;34197:88:0;;8239:2:1;34197:88:0::1;::::0;::::1;8221:21:1::0;8278:2;8258:18;;;8251:30;8317:34;8297:18;;;8290:62;-1:-1:-1;;;8368:18:1;;;8361:31;8409:19;;34197:88:0::1;8037:397:1::0;34197:88:0::1;23783:5;34315:20;34328:7:::0;23688:20:::1;34315;:::i;:::-;34314:40;;;;:::i;:::-;34296:15;:58:::0;-1:-1:-1;34121:241:0:o;33286:234::-;5905:13;:11;:13::i;:::-;33391:9:::1;33386:127;33406:31:::0;;::::1;33386:127;;;33496:5;33459:9;:34;33469:20;;33490:1;33469:23;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;33459:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;33459:34:0;:42;;-1:-1:-1;;33459:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;33439:3:0::1;33386:127;;;;33286:234:::0;;:::o;30002:107::-;5905:13;:11;:13::i;:::-;30055:7:::1;:14:::0;;-1:-1:-1;;30055:14:0::1;30065:4;30055:14;::::0;;30085:16:::1;::::0;::::1;::::0;30055:7:::1;::::0;30085:16:::1;30002:107::o:0;32766:349::-;5905:13;:11;:13::i;:::-;32866:9:::1;32861:247;32881:31:::0;;::::1;32861:247;;;32943:19;:44;32963:20;;32984:1;32963:23;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32943:44:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;32943:44:0;;::::1;;32942:45;32934:106;;;::::0;-1:-1:-1;;;32934:106:0;;9300:2:1;32934:106:0::1;::::0;::::1;9282:21:1::0;9339:2;9319:18;;;9312:30;9378:34;9358:18;;;9351:62;-1:-1:-1;;;9429:18:1;;;9422:46;9485:19;;32934:106:0::1;9098:412:1::0;32934:106:0::1;33092:4;33055:9;:34;33065:20;;33086:1;33065:23;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;33055:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;33055:34:0;:41;;-1:-1:-1;;33055:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;32914:3:0::1;32861:247;;12821:95:::0;12868:13;12901:7;12894:14;;;;;:::i;14198:182::-;14267:4;4242:10;14323:27;4242:10;14340:2;14344:5;14323:9;:27::i;34493:183::-;5905:13;:11;:13::i;:::-;34587:7:::1;34578:6;:16;34570:60;;;::::0;-1:-1:-1;;;34570:60:0;;9717:2:1;34570:60:0::1;::::0;::::1;9699:21:1::0;9756:2;9736:18;;;9729:30;9795:33;9775:18;;;9768:61;9846:18;;34570:60:0::1;9515:355:1::0;34570:60:0::1;34641:18;:27:::0;34493:183::o;28152:337::-;25663:10;;-1:-1:-1;;;;;25663:10:0;25677;25663:24;;:52;;-1:-1:-1;25691:10:0;;-1:-1:-1;;;;;25691:10:0;25705;25691:24;25663:52;25655:104;;;;-1:-1:-1;;;25655:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28234:20:0;::::1;28226:63;;;::::0;-1:-1:-1;;;28226:63:0;;10077:2:1;28226:63:0::1;::::0;::::1;10059:21:1::0;10116:2;10096:18;;;10089:30;10155:32;10135:18;;;10128:60;10205:18;;28226:63:0::1;9875:354:1::0;28226:63:0::1;28318:21;28358:11:::0;28350:42:::1;;;::::0;-1:-1:-1;;;28350:42:0;;10436:2:1;28350:42:0::1;::::0;::::1;10418:21:1::0;10475:2;10455:18;;;10448:30;-1:-1:-1;;;10494:18:1;;;10487:48;10552:18;;28350:42:0::1;10234:342:1::0;28350:42:0::1;28405:33;::::0;-1:-1:-1;;;;;28405:24:0;::::1;::::0;:33;::::1;;;::::0;28430:7;;28405:33:::1;::::0;;;28430:7;28405:24;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;28454:27:0::1;::::0;28473:7;;-1:-1:-1;;;;;28454:27:0;::::1;::::0;::::1;::::0;;;::::1;28215:274;28152:337:::0;:::o;32132:481::-;5905:13;:11;:13::i;:::-;-1:-1:-1;;;;;32236:29:0;::::1;32228:82;;;;-1:-1:-1::0;;;32228:82:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32329:29:0;::::1;32321:82;;;;-1:-1:-1::0;;;32321:82:0::1;;;;;;;:::i;:::-;32441:10;::::0;32419:48:::1;::::0;-1:-1:-1;;;;;32419:48:0;;::::1;::::0;32441:10:::1;::::0;32419:48:::1;::::0;32441:10:::1;::::0;32419:48:::1;32478:10;:26:::0;;-1:-1:-1;;;;;;32478:26:0::1;-1:-1:-1::0;;;;;32478:26:0;;::::1;::::0;;;::::1;::::0;;;32542:10:::1;::::0;32520:48:::1;::::0;;;::::1;::::0;32542:10;;;::::1;::::0;32520:48:::1;::::0;-1:-1:-1;;32520:48:0::1;32579:10;:26:::0;;-1:-1:-1;;;;;;32579:26:0::1;-1:-1:-1::0;;;;;32579:26:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;32132:481:0:o;14443:183::-;-1:-1:-1;;;;;14591:18:0;;;14559:7;14591:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14443:183::o;33748:235::-;5905:13;:11;:13::i;:::-;33841:1:::1;33830:7;:12;;:42;;;;;33865:7;23783:5;33846:26;;33830:42;33822:85;;;::::0;-1:-1:-1;;;33822:85:0;;11192:2:1;33822:85:0::1;::::0;::::1;11174:21:1::0;11231:2;11211:18;;;11204:30;11270:32;11250:18;;;11243:60;11320:18;;33822:85:0::1;10990:354:1::0;33822:85:0::1;23783:5;33936:20;33949:7:::0;23688:20:::1;33936;:::i;:::-;33935:40;;;;:::i;:::-;33918:14;:57:::0;-1:-1:-1;33748:235:0:o;29726:217::-;5905:13;:11;:13::i;:::-;29839:5:::1;29808:19;:28;29828:7;6092:6:::0;;-1:-1:-1;;;;;6092:6:0;;6019:87;29828:7:::1;-1:-1:-1::0;;;;;29808:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;29808:28:0;:36;;-1:-1:-1;;29808:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29855:33:::1;29879:8:::0;29855:23:::1;:33::i;:::-;-1:-1:-1::0;;;;;29899:29:0::1;;::::0;;;:19:::1;:29;::::0;;;;:36;;-1:-1:-1;;29899:36:0::1;29931:4;29899:36;::::0;;29726:217::o;30962:379::-;25521:10;;-1:-1:-1;;;;;25521:10:0;25535;25521:24;25513:77;;;;-1:-1:-1;;;25513:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31056:29:0;::::1;31048:82;;;;-1:-1:-1::0;;;31048:82:0::1;;;;;;;:::i;:::-;31161:10;::::0;;-1:-1:-1;;;;;31161:10:0;;::::1;31175:5;31141:31:::0;;;:19:::1;:31;::::0;;;;;:39;;-1:-1:-1;;31141:39:0;;::::1;::::0;;;31191:34;;::::1;::::0;;;;;;:41;;;;::::1;31161:10:::0;31191:41:::1;::::0;;;31270:10;;31248:48;;31270:10;::::1;::::0;31248:48:::1;::::0;31175:5;31248:48:::1;31307:10;:26:::0;;-1:-1:-1;;;;;;31307:26:0::1;-1:-1:-1::0;;;;;31307:26:0;;;::::1;::::0;;;::::1;::::0;;30962:379::o;19907:164::-;20026:37;20035:5;20042:7;20051:5;20058:4;20026:8;:37::i;6184:166::-;6092:6;;-1:-1:-1;;;;;6092:6:0;4242:10;6244:23;6240:103;;6291:40;;-1:-1:-1;;;6291:40:0;;4242:10;6291:40;;;1255:51:1;1228:18;;6291:40:0;1085:227:1;21700:603:0;21834:24;21861:25;21871:5;21878:7;21861:9;:25::i;:::-;21834:52;;-1:-1:-1;;21901:16:0;:37;21897:399;;21978:5;21959:16;:24;21955:214;;;22011:142;;-1:-1:-1;;;22011:142:0;;-1:-1:-1;;;;;11569:32:1;;22011:142:0;;;11551:51:1;11618:18;;;11611:34;;;11661:18;;;11654:34;;;11524:18;;22011:142:0;11349:345:1;21955:214:0;22212:57;22221:5;22228:7;22256:5;22237:16;:24;22263:5;22212:8;:57::i;:::-;21823:480;21700:603;;;:::o;16414:342::-;-1:-1:-1;;;;;16532:18:0;;16528:88;;16574:30;;-1:-1:-1;;;16574:30:0;;16601:1;16574:30;;;1255:51:1;1228:18;;16574:30:0;1085:227:1;16528:88:0;-1:-1:-1;;;;;16630:16:0;;16626:88;;16670:32;;-1:-1:-1;;;16670:32:0;;16699:1;16670:32;;;1255:51:1;1228:18;;16670:32:0;1085:227:1;16626:88:0;16724:24;16732:4;16738:2;16742:5;16724:7;:24::i;6694:103::-;5905:13;:11;:13::i;:::-;6759:30:::1;6786:1;6759:18;:30::i;6952:220::-:0;5905:13;:11;:13::i;:::-;-1:-1:-1;;;;;7037:22:0;::::1;7033:93;;7083:31;::::0;-1:-1:-1;;;7083:31:0;;7111:1:::1;7083:31;::::0;::::1;1255:51:1::0;1228:18;;7083:31:0::1;1085:227:1::0;7033:93:0::1;7136:28;7155:8;7136:18;:28::i;:::-;6952:220:::0;:::o;20922:486::-;-1:-1:-1;;;;;21078:19:0;;21074:91;;21121:32;;-1:-1:-1;;;21121:32:0;;21150:1;21121:32;;;1255:51:1;1228:18;;21121:32:0;1085:227:1;21074:91:0;-1:-1:-1;;;;;21179:21:0;;21175:92;;21224:31;;-1:-1:-1;;;21224:31:0;;21252:1;21224:31;;;1255:51:1;1228:18;;21224:31:0;1085:227:1;21175:92:0;-1:-1:-1;;;;;21277:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21323:78;;;;21374:7;-1:-1:-1;;;;;21358:31:0;21367:5;-1:-1:-1;;;;;21358:31:0;;21383:5;21358:31;;;;1463:25:1;;1451:2;1436:18;;1317:177;21358:31:0;;;;;;;;20922:486;;;;:::o;34829:2412::-;-1:-1:-1;;;;;35029:15:0;;;;;;:9;:15;;;;;;;;;:32;;-1:-1:-1;;;;;;35048:13:0;;;;;;:9;:13;;;;;;;;35029:32;35027:35;35019:80;;;;-1:-1:-1;;;35019:80:0;;11901:2:1;35019:80:0;;;11883:21:1;;;11920:18;;;11913:30;11979:34;11959:18;;;11952:62;12031:18;;35019:80:0;11699:356:1;35019:80:0;35120:7;;;;;:36;;-1:-1:-1;;;;;;35131:25:0;;;;;;:19;:25;;;;;;;;35120:36;:63;;;-1:-1:-1;;;;;;35160:23:0;;;;;;:19;:23;;;;;;;;35120:63;:132;;;;35214:15;-1:-1:-1;;;;;35198:32:0;:4;-1:-1:-1;;;;;35198:32:0;;:53;;;;;35240:11;-1:-1:-1;;;;;35234:17:0;:2;-1:-1:-1;;;;;35234:17:0;;35198:53;35120:191;;;;35271:15;-1:-1:-1;;;;;35257:30:0;:2;-1:-1:-1;;;;;35257:30:0;;:53;;;;;35299:11;-1:-1:-1;;;;;35291:19:0;:4;-1:-1:-1;;;;;35291:19:0;;35257:53;35112:245;;;;-1:-1:-1;;;35112:245:0;;12262:2:1;35112:245:0;;;12244:21:1;12301:2;12281:18;;;12274:30;12340:34;12320:18;;;12313:62;-1:-1:-1;;;12391:18:1;;;12384:39;12440:19;;35112:245:0;12060:405:1;35112:245:0;-1:-1:-1;;;;;35740:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;35769:23:0;;;;;;:19;:23;;;;;;;;35740:52;35738:55;:66;;;;-1:-1:-1;35797:7:0;;;;35738:66;35734:1000;;;35821:11;35856;-1:-1:-1;;;;;35850:17:0;:2;-1:-1:-1;;;;;35850:17:0;;35847:138;;35921:15;;-1:-1:-1;;;;;13967:18:0;;13940:7;13967:18;;;;;;;;;;;35895:22;;:6;:22;:::i;:::-;:41;;35887:82;;;;-1:-1:-1;;;35887:82:0;;12802:2:1;35887:82:0;;;12784:21:1;12841:2;12821:18;;;12814:30;12880;12860:18;;;12853:58;12928:18;;35887:82:0;12600:352:1;35887:82:0;36011:11;-1:-1:-1;;;;;36003:19:0;:4;-1:-1:-1;;;;;36003:19:0;;35999:535;;36061:14;;36051:6;:24;;36043:67;;;;-1:-1:-1;;;36043:67:0;;13159:2:1;36043:67:0;;;13141:21:1;13198:2;13178:18;;;13171:30;13237:32;13217:18;;;13210:60;13287:18;;36043:67:0;12957:354:1;36043:67:0;36135:11;;:15;36131:110;;23783:5;36191:11;;36182:6;:20;;;;:::i;:::-;36181:40;;;;:::i;:::-;36175:46;;36131:110;35999:535;;;36286:11;-1:-1:-1;;;;;36280:17:0;:2;-1:-1:-1;;;;;36280:17:0;;36276:258;;36336:14;;36326:6;:24;;36318:68;;;;-1:-1:-1;;;36318:68:0;;13518:2:1;36318:68:0;;;13500:21:1;13557:2;13537:18;;;13530:30;13596:33;13576:18;;;13569:61;13647:18;;36318:68:0;13316:355:1;36318:68:0;36411:12;;:16;36407:112;;23783:5;36468:12;;36459:6;:21;;;;:::i;:::-;36458:41;;;;:::i;:::-;36452:47;;36407:112;36554:17;;36567:3;;36554:17;;;;;36607:12;36616:3;36607:6;:12;:::i;:::-;36598:21;-1:-1:-1;36640:7:0;;36636:87;;36668:39;36682:4;36696;36703:3;36668:13;:39::i;:::-;35806:928;35734:1000;36790:4;36746:23;13967:18;;;;;;;;;;;36746:50;;36900:12;36934:18;;36915:15;:37;;:73;;;;;36977:11;-1:-1:-1;;;;;36969:19:0;:4;-1:-1:-1;;;;;36969:19:0;;;36915:73;:103;;;;-1:-1:-1;;;;;;36993:25:0;;;;;;:19;:25;;;;;;;;36992:26;36915:103;:116;;;;-1:-1:-1;37023:8:0;;;;37022:9;36915:116;:127;;;;-1:-1:-1;37035:7:0;;;;36915:127;36900:142;;37059:7;37055:135;;;37083:8;:15;;-1:-1:-1;;37083:15:0;37094:4;37083:15;;;37113:34;37131:15;37113:17;:34::i;:::-;37162:8;:16;;-1:-1:-1;;37162:16:0;;;37055:135;37202:31;37216:4;37222:2;37226:6;37202:13;:31::i;7332:191::-;7425:6;;;-1:-1:-1;;;;;7442:17:0;;;-1:-1:-1;;;;;;7442:17:0;;;;;;;7475:40;;7425:6;;;7442:17;7425:6;;7475:40;;7406:16;;7475:40;7395:128;7332:191;:::o;17080:1169::-;-1:-1:-1;;;;;17204:18:0;;17200:552;;17358:5;17342:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17200:552:0;;-1:-1:-1;17200:552:0;;-1:-1:-1;;;;;17418:15:0;;17396:19;17418:15;;;;;;;;;;;17452:19;;;17448:117;;;17499:50;;-1:-1:-1;;;17499:50:0;;-1:-1:-1;;;;;11569:32:1;;17499:50:0;;;11551:51:1;11618:18;;;11611:34;;;11661:18;;;11654:34;;;11524:18;;17499:50:0;11349:345:1;17448:117:0;-1:-1:-1;;;;;17688:15:0;;:9;:15;;;;;;;;;;17706:19;;;;17688:37;;17200:552;-1:-1:-1;;;;;17768:16:0;;17764:435;;17934:12;:21;;;;;;;17764:435;;;-1:-1:-1;;;;;18150:13:0;;:9;:13;;;;;;;;;;:22;;;;;;17764:435;18231:2;-1:-1:-1;;;;;18216:25:0;18225:4;-1:-1:-1;;;;;18216:25:0;;18235:5;18216:25;;;;1463::1;;1451:2;1436:18;;1317:177;18216:25:0;;;;;;;;17080:1169;;;:::o;37543:374::-;37624:1;37610:11;;:15;:35;;;;37644:1;37629:12;;:16;37610:35;37609:51;;;;;37659:1;37650:6;:10;37609:51;37605:305;;;37677:18;37688:6;37677:10;:18::i;:::-;37714:21;:25;37710:189;;37768:10;;-1:-1:-1;;;;;37768:10:0;37760:53;37789:23;37811:1;37789:21;:23;:::i;:::-;37760:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37840:10:0;;37832:51;;-1:-1:-1;;;;;37840:10:0;;;;37861:21;37832:51;;;;;37840:10;37832:51;37840:10;37832:51;37861:21;37840:10;37832:51;;;;;;;;;;;;;;;;;;;;;37543:374;:::o;38426:679::-;38565:16;;;38579:1;38565:16;;;;;;;;38541:21;;38565:16;;;;;;;;;;-1:-1:-1;38565:16:0;38541:40;;38610:4;38592;38597:1;38592:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;38592:23:0;;;-1:-1:-1;;;;;38592:23:0;;;;;38636:15;-1:-1:-1;;;;;38636:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38626:4;38631:1;38626:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;38626:32:0;;;-1:-1:-1;;;;;38626:32:0;;;;;38728:6;38675:50;38693:4;38708:15;38675:9;:50::i;:::-;:59;38671:226;;;38751:134;38786:4;38818:15;-1:-1:-1;;38751:8:0;:134::i;:::-;38935:162;;-1:-1:-1;;;38935:162:0;;-1:-1:-1;;;;;38935:15:0;:37;;;;:162;;38987:6;;39008:1;;39024:4;;39051;;39071:15;;38935:162;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38935: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;3557:615::-;3643:6;3651;3704:2;3692:9;3683:7;3679:23;3675:32;3672:52;;;3720:1;3717;3710:12;3672:52;3760:9;3747:23;3789:18;3830:2;3822:6;3819:14;3816:34;;;3846:1;3843;3836:12;3816:34;3884:6;3873:9;3869:22;3859:32;;3929:7;3922:4;3918:2;3914:13;3910:27;3900:55;;3951:1;3948;3941:12;3900:55;3991:2;3978:16;4017:2;4009:6;4006:14;4003:34;;;4033:1;4030;4023:12;4003:34;4086:7;4081:2;4071:6;4068:1;4064:14;4060:2;4056:23;4052:32;4049:45;4046:65;;;4107:1;4104;4097:12;4046:65;4138:2;4130:11;;;;;4160:6;;-1:-1:-1;3557:615:1;;-1:-1:-1;;;;3557:615:1:o;4385:388::-;4453:6;4461;4514:2;4502:9;4493:7;4489:23;4485:32;4482:52;;;4530:1;4527;4520:12;4482:52;4569:9;4556:23;4588:31;4613:5;4588:31;:::i;:::-;4638:5;-1:-1:-1;4695:2:1;4680:18;;4667:32;4708:33;4667:32;4708:33;:::i;4778:380::-;4857:1;4853:12;;;;4900;;;4921:61;;4975:4;4967:6;4963:17;4953:27;;4921:61;5028:2;5020:6;5017:14;4997:18;4994:38;4991:161;;5074:10;5069:3;5065:20;5062:1;5055:31;5109:4;5106:1;5099:15;5137:4;5134:1;5127:15;4991:161;;4778:380;;;:::o;5163:404::-;5365:2;5347:21;;;5404:2;5384:18;;;5377:30;5443:34;5438:2;5423:18;;5416:62;-1:-1:-1;;;5509:2:1;5494:18;;5487:38;5557:3;5542:19;;5163:404::o;5572:403::-;5774:2;5756:21;;;5813:2;5793:18;;;5786:30;5852:34;5847:2;5832:18;;5825:62;-1:-1:-1;;;5918:2:1;5903:18;;5896:37;5965:3;5950:19;;5572:403::o;6259:245::-;6326:6;6379:2;6367:9;6358:7;6354:23;6350:32;6347:52;;;6395:1;6392;6385:12;6347:52;6427:9;6421:16;6446:28;6468:5;6446:28;:::i;7219:404::-;7421:2;7403:21;;;7460:2;7440:18;;;7433:30;7499:34;7494:2;7479:18;;7472:62;-1:-1:-1;;;7565:2:1;7550:18;;7543:38;7613:3;7598:19;;7219:404::o;7628:::-;7830:2;7812:21;;;7869:2;7849:18;;;7842:30;7908:34;7903:2;7888:18;;7881:62;-1:-1:-1;;;7974:2:1;7959:18;;7952:38;8022:3;8007:19;;7628:404::o;8439:127::-;8500:10;8495:3;8491:20;8488:1;8481:31;8531:4;8528:1;8521:15;8555:4;8552:1;8545:15;8571:168;8644:9;;;8675;;8692:15;;;8686:22;;8672:37;8662:71;;8713:18;;:::i;8744:217::-;8784:1;8810;8800:132;;8854:10;8849:3;8845:20;8842:1;8835:31;8889:4;8886:1;8879:15;8917:4;8914:1;8907:15;8800:132;-1:-1:-1;8946:9:1;;8744:217::o;8966:127::-;9027:10;9022:3;9018:20;9015:1;9008:31;9058:4;9055:1;9048:15;9082:4;9079:1;9072:15;10581:404;10783:2;10765:21;;;10822:2;10802:18;;;10795:30;10861:34;10856:2;10841:18;;10834:62;-1:-1:-1;;;10927:2:1;10912:18;;10905:38;10975:3;10960:19;;10581:404::o;12470:125::-;12535:9;;;12556:10;;;12553:36;;;12569:18;;:::i;13676:128::-;13743:9;;;13764:11;;;13761:37;;;13778:18;;:::i;13809:127::-;13870:10;13865:3;13861:20;13858:1;13851:31;13901:4;13898:1;13891:15;13925:4;13922:1;13915:15;13941:251;14011:6;14064:2;14052:9;14043:7;14039:23;14035:32;14032:52;;;14080:1;14077;14070:12;14032:52;14112:9;14106:16;14131:31;14156:5;14131:31;:::i;14197:980::-;14459:4;14507:3;14496:9;14492:19;14538:6;14527:9;14520:25;14564:2;14602:6;14597:2;14586:9;14582:18;14575:34;14645:3;14640:2;14629:9;14625:18;14618:31;14669:6;14704;14698:13;14735:6;14727;14720:22;14773:3;14762:9;14758:19;14751:26;;14812:2;14804:6;14800:15;14786:29;;14833:1;14843:195;14857:6;14854:1;14851:13;14843:195;;;14922:13;;-1:-1:-1;;;;;14918:39:1;14906:52;;15013:15;;;;14978:12;;;;14954:1;14872:9;14843:195;;;-1:-1:-1;;;;;;;15094:32:1;;;;15089:2;15074:18;;15067:60;-1:-1:-1;;;15158:3:1;15143:19;15136:35;15055:3;14197:980;-1:-1:-1;;;14197:980:1:o;15182:1105::-;15277:6;15308:2;15351;15339:9;15330:7;15326:23;15322:32;15319:52;;;15367:1;15364;15357:12;15319:52;15400:9;15394:16;15429:18;15470:2;15462:6;15459:14;15456:34;;;15486:1;15483;15476:12;15456:34;15524:6;15513:9;15509:22;15499:32;;15569:7;15562:4;15558:2;15554:13;15550:27;15540:55;;15591:1;15588;15581:12;15540:55;15620:2;15614:9;15642:2;15638;15635:10;15632:36;;;15648:18;;:::i;:::-;15694:2;15691:1;15687:10;15726:2;15720:9;15789:2;15785:7;15780:2;15776;15772:11;15768:25;15760:6;15756:38;15844:6;15832:10;15829:22;15824:2;15812:10;15809:18;15806:46;15803:72;;;15855:18;;:::i;:::-;15891:2;15884:22;15941:18;;;15975:15;;;;-1:-1:-1;16017:11:1;;;16013:20;;;16045:19;;;16042:39;;;16077:1;16074;16067:12;16042:39;16101:11;;;;16121:135;16137:6;16132:3;16129:15;16121:135;;;16203:10;;16191:23;;16154:12;;;;16234;;;;16121:135;;;16275:6;15182:1105;-1:-1:-1;;;;;;;;15182:1105:1:o

Swarm Source

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