ETH Price: $3,305.63 (-3.51%)
Gas: 7 Gwei

Token

pepewifgun (POW)
 

Overview

Max Total Supply

420,690,000,000,000 POW

Holders

548

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.00014301017886217 POW

Value
$0.00
0x2cc9f73db5bec93cb4a3b06eb971932803c75a64
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
POW

Compiler Version
v0.8.26+commit.8a97fa7a

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

/**
    Website:    https://pepewifgun.vip
    X:          https://x.com/pepewifguncoin
    Telegram:   https://t.me/pepewifguncoin
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.26;

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
/**
 * @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);
}

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

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

// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

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

// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)

/**
 * @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 Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

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

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

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @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.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed,
        uint256 tokenId
    );

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

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

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

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * 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 fees, 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);
            }
        }
    }
}

// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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);
    }
}

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 addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

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

contract POW is Ownable, ERC20 {
    uint256 public constant MAX_FEE = 30;

    IUniswapV2Router public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public rightToBearArms;
    address public secondAmendmentRights;

    bool public isLimitsEnabled;
    bool public isCooldownEnabled;
    bool public isTaxEnabled;
    bool private isSwapBack;

    uint256 public maxBuy;
    uint256 public maxSell;
    uint256 public maxWallet;

    uint256 public swapTokensAtAmount;
    uint256 public buyFee;
    uint256 public sellFee;

    mapping(address => bool) public isExcludedFromFees;
    mapping(address => bool) public isExcludedFromLimits;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    event SetRightToBearArms(
        address indexed newWallet,
        address indexed oldWallet
    );
    event SetSecondAmendmentRights(
        address indexed newWallet,
        address indexed oldWallet
    );
    event SetMaxBuy(uint256 amount);
    event SetMaxSell(uint256 amount);
    event SetMaxWallet(uint256 amount);
    event ExcludeFromFees(address account, bool isExcluded);
    event ExcludeFromLimits(address account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address pair, bool value);

    constructor() Ownable(msg.sender) ERC20("pepewifgun", "POW") {
        address sender = msg.sender;
        _mint(sender, 420_690_000_000_000 ether);
        uint256 totalSupply = totalSupply();

        rightToBearArms = 0x2Ff31499EeBB0762d8BCd54AbBdB934baD05fc77;
        secondAmendmentRights = 0x928BF1a29E15c5971E4E86ff6F7a43f830005379;

        maxBuy = (totalSupply * 135) / 10000;
        maxSell = (totalSupply * 135) / 10000;
        maxWallet = (totalSupply * 135) / 10000;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        isLimitsEnabled = true;
        isCooldownEnabled = true;
        isTaxEnabled = true;

        buyFee = 30;
        sellFee = 30;

        uniswapV2Router = IUniswapV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        _setAMMPair(uniswapV2Pair, true);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        _excludeFromFees(address(this), true);
        _excludeFromFees(address(0xdead), true);
        _excludeFromFees(sender, true);
        _excludeFromFees(rightToBearArms, true);
        _excludeFromFees(secondAmendmentRights, true);
        _excludeFromLimits(address(this), true);
        _excludeFromLimits(address(0xdead), true);
        _excludeFromLimits(sender, true);
        _excludeFromLimits(rightToBearArms, true);
        _excludeFromLimits(secondAmendmentRights, true);
    }

    receive() external payable {}

    fallback() external payable {}

    function _transferOwnership(address newOwner) internal override {
        address oldOwner = owner();
        if (oldOwner != address(0)) {
            _excludeFromFees(oldOwner, false);
            _excludeFromLimits(oldOwner, false);
        }
        _excludeFromFees(newOwner, true);
        _excludeFromLimits(newOwner, true);
        super._transferOwnership(newOwner);
    }

    function setRightToBearArms(address _rightToBearArms) public onlyOwner {
        require(_rightToBearArms != address(0), "POW: Address 0");
        address oldWallet = rightToBearArms;
        rightToBearArms = _rightToBearArms;
        emit SetRightToBearArms(rightToBearArms, oldWallet);
    }

    function setSecondAmendmentRights(address _secondAmendmentRights)
        public
        onlyOwner
    {
        require(_secondAmendmentRights != address(0), "POW: Address 0");
        address oldWallet = secondAmendmentRights;
        secondAmendmentRights = _secondAmendmentRights;
        emit SetSecondAmendmentRights(secondAmendmentRights, oldWallet);
    }

    function setLimitsEnabled(bool value) external onlyOwner {
        isLimitsEnabled = value;
    }

    function setCooldownEnabled(bool value) external onlyOwner {
        isCooldownEnabled = value;
    }

    function setTaxEnabled(bool value) external onlyOwner {
        isTaxEnabled = value;
    }

    function setMaxBuy(uint256 amount) external onlyOwner {
        require(
            amount >= ((totalSupply() * 2) / 1000),
            "POW: Cannot set max buy amount lower than 0.2%"
        );
        maxBuy = amount;
        emit SetMaxBuy(maxBuy);
    }

    function setMaxSell(uint256 amount) external onlyOwner {
        require(
            amount >= ((totalSupply() * 2) / 1000),
            "POW: Cannot set max sell amount lower than 0.2%"
        );
        maxSell = amount;
        emit SetMaxSell(maxSell);
    }

    function setMaxWallet(uint256 amount) external onlyOwner {
        require(
            amount >= ((totalSupply() * 3) / 1000),
            "POW: Cannot set max wallet amount lower than 0.3%"
        );
        maxWallet = amount;
        emit SetMaxWallet(maxWallet);
    }

    function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
        uint256 _totalSupply = totalSupply();
        require(
            amount >= (_totalSupply * 1) / 1000000,
            "POW: Swap amount cannot be lower than 0.0001% total supply."
        );
        require(
            amount <= (_totalSupply * 5) / 1000,
            "POW: Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = amount;
    }

    function setBuyFees(uint256 _buyFee) external onlyOwner {
        require(
            _buyFee <= MAX_FEE,
            "POW: Must keep fees below or equal max fee"
        );
        buyFee = _buyFee;
    }

    function setSellFees(uint256 _sellFee) external onlyOwner {
        require(
            _sellFee <= MAX_FEE,
            "POW: Must keep fees below or equal max fee"
        );
        sellFee = _sellFee;
    }

    function _excludeFromFees(address account, bool value) internal {
        isExcludedFromFees[account] = value;
        emit ExcludeFromFees(account, value);
    }

    function excludeFromFees(address account, bool value) external onlyOwner {
        _excludeFromFees(account, value);
    }

    function bulkExcludeFromFees(address[] calldata accounts, bool value)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _excludeFromFees(accounts[i], value);
        }
    }

    function _excludeFromLimits(address account, bool value) internal {
        isExcludedFromLimits[account] = value;
        emit ExcludeFromLimits(account, value);
    }

    function excludeFromLimits(address account, bool value) external onlyOwner {
        _excludeFromLimits(account, value);
    }

    function bulkExcludeFromLimits(address[] calldata accounts, bool value)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _excludeFromLimits(accounts[i], value);
        }
    }

    function _setAMMPair(address pair, bool value) internal {
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function setAMMPair(address pair, bool value) external onlyOwner {
        _setAMMPair(pair, value);
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        bool limits = isLimitsEnabled &&
            !isSwapBack &&
            !(isExcludedFromLimits[from] || isExcludedFromLimits[to]);
        if (limits) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead)
            ) {
                if (isCooldownEnabled) {
                    if (to != address(uniswapV2Router) && to != uniswapV2Pair) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number - 3 &&
                                _holderLastTransferTimestamp[to] <
                                block.number - 3,
                            "POW: Transfer delay enabled. Try again later."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                        _holderLastTransferTimestamp[to] = block.number;
                    }
                }

                if (
                    automatedMarketMakerPairs[from] && !isExcludedFromLimits[to]
                ) {
                    require(
                        amount <= maxBuy,
                        "POW: Buy transfer amount exceeds the max buy."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "POW: Cannot Exceed max wallet"
                    );
                } else if (
                    automatedMarketMakerPairs[to] && !isExcludedFromLimits[from]
                ) {
                    require(
                        amount <= maxSell,
                        "POW: Sell transfer amount exceeds the max sell."
                    );
                } else if (!isExcludedFromLimits[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "POW: Cannot Exceed max wallet"
                    );
                }
            }
        }

        bool takeFee = isTaxEnabled &&
            !isSwapBack &&
            !(isExcludedFromFees[from] || isExcludedFromFees[to]);

        if (takeFee) {
            uint256 fees = 0;
            // on sell
            if (automatedMarketMakerPairs[to]) {
                fees = (amount * sellFee) / 100;
            }
            // on buy
            else if (automatedMarketMakerPairs[from]) {
                fees = (amount * buyFee) / 100;
            }

            if (fees > 0) {
                amount -= fees;
                super._update(from, address(this), fees);
            }
        }

        if (
            takeFee &&
            !automatedMarketMakerPairs[from] &&
            balanceOf(address(this)) >= swapTokensAtAmount
        ) {
            isSwapBack = true;
            _swapBack();
            isSwapBack = false;
        }

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

    function _swapBack() internal {
        bool success;
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uint256 maxSwapAmount = swapTokensAtAmount * 20;
        uint256 swapAmount = balanceOf(address(this));

        if (swapAmount > maxSwapAmount) {
            swapAmount = maxSwapAmount;
        }

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            swapAmount,
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 ethBalance = address(this).balance;

        uint256 ethForMarketing = ethBalance / 2;

        uint256 ethForDevelopment = ethBalance - ethForMarketing;

        (success, ) = address(rightToBearArms).call{value: ethForMarketing}("");

        (success, ) = address(secondAmendmentRights).call{
            value: ethForDevelopment
        }("");
    }

    function withdrawStuckTokens(address tkn) external onlyOwner {
        address sender = msg.sender;
        uint256 amount;
        if (tkn == address(0)) {
            bool success;
            amount = address(this).balance;
            require(amount > 0, "POW: No native tokens");
            (success, ) = address(sender).call{value: amount}("");
            require(success, "POW: Failed to withdraw native tokens");
        } else {
            amount = IERC20(tkn).balanceOf(address(this));
            require(amount > 0, "POW: No tokens");
            IERC20(tkn).transfer(msg.sender, amount);
        }
    }
}

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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetRightToBearArms","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetSecondAmendmentRights","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"bulkExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"bulkExcludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isCooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rightToBearArms","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondAmendmentRights","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rightToBearArms","type":"address"}],"name":"setRightToBearArms","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_secondAmendmentRights","type":"address"}],"name":"setSecondAmendmentRights","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxEnabled","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405234801561000f575f80fd5b50604080518082018252600a8152693832b832bbb4b333bab760b11b60208083019190915282518084019093526003835262504f5760e81b9083015290338061007257604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61007b816103c0565b5060046100888382611064565b5060056100958282611064565b503391506100b39050816d14bddab3e51a57cff87a50000000610408565b5f6100bd60035490565b600680546001600160a01b0319908116732ff31499eebb0762d8bcd54abbdb934bad05fc77179091556007805490911673928bf1a29e15c5971e4e86ff6f7a43f8300053791790559050612710610115826087611132565b61011f919061114f565b600855612710610130826087611132565b61013a919061114f565b60095561271061014b826087611132565b610155919061114f565b600a55612710610166826005611132565b610170919061114f565b600b556007805462ffffff60a01b19166201010160a01b179055601e600c819055600d55737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004818101926020929091908290030181865afa1580156101e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061020b919061116e565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610258573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061027c919061116e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102ea919061116e565b6001600160a01b031660a081905261030390600161043c565b610317306080515f1961049f60201b60201c565b6103223060016104b1565b61032f61dead60016104b1565b61033a8260016104b1565b600654610351906001600160a01b031660016104b1565b600754610368906001600160a01b031660016104b1565b61037330600161050c565b61038061dead600161050c565b61038b82600161050c565b6006546103a2906001600160a01b0316600161050c565b6007546103b9906001600160a01b0316600161050c565b5050611245565b5f546001600160a01b031680156103e5576103db815f6104b1565b6103e5815f61050c565b6103f08260016104b1565b6103fb82600161050c565b61040482610567565b5050565b6001600160a01b0382166104315760405163ec442f0560e01b81525f6004820152602401610069565b6104045f83836105b6565b6001600160a01b0382165f81815260106020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91015b60405180910390a15050565b6104ac8383836001610b94565b505050565b6001600160a01b0382165f818152600e6020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610493565b6001600160a01b0382165f818152600f6020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610493565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6007545f90600160a01b900460ff1680156105db5750600754600160b81b900460ff16155b801561062157506001600160a01b0384165f908152600f602052604090205460ff168061061f57506001600160a01b0383165f908152600f602052604090205460ff165b155b90508015610a03575f546001600160a01b0385811691161480159061065357505f546001600160a01b03848116911614155b801561066757506001600160a01b03831615155b801561067e57506001600160a01b03831661dead14155b15610a0357600754600160a81b900460ff161561079f576080516001600160a01b0316836001600160a01b0316141580156106cd575060a0516001600160a01b0316836001600160a01b031614155b1561079f576106dd60034361119b565b325f9081526011602052604090205410801561071957506106ff60034361119b565b6001600160a01b0384165f90815260116020526040902054105b61077b5760405162461bcd60e51b815260206004820152602d60248201527f504f573a205472616e736665722064656c617920656e61626c65642e2054727960448201526c1030b3b0b4b7103630ba32b91760991b6064820152608401610069565b325f9081526011602052604080822043908190556001600160a01b03861683529120555b6001600160a01b0384165f9081526010602052604090205460ff1680156107de57506001600160a01b0383165f908152600f602052604090205460ff16155b156108c35760085482111561084b5760405162461bcd60e51b815260206004820152602d60248201527f504f573a20427579207472616e7366657220616d6f756e74206578636565647360448201526c103a34329036b0bc10313abc9760991b6064820152608401610069565b600a546001600160a01b0384165f9081526001602052604090205461087090846111ae565b11156108be5760405162461bcd60e51b815260206004820152601d60248201527f504f573a2043616e6e6f7420457863656564206d61782077616c6c65740000006044820152606401610069565b610a03565b6001600160a01b0383165f9081526010602052604090205460ff16801561090257506001600160a01b0384165f908152600f602052604090205460ff16155b15610971576009548211156108be5760405162461bcd60e51b815260206004820152602f60248201527f504f573a2053656c6c207472616e7366657220616d6f756e742065786365656460448201526e39903a34329036b0bc1039b2b6361760891b6064820152608401610069565b6001600160a01b0383165f908152600f602052604090205460ff16610a0357600a546001600160a01b0384165f908152600160205260409020546109b590846111ae565b1115610a035760405162461bcd60e51b815260206004820152601d60248201527f504f573a2043616e6e6f7420457863656564206d61782077616c6c65740000006044820152606401610069565b6007545f90600160b01b900460ff168015610a285750600754600160b81b900460ff16155b8015610a6e57506001600160a01b0385165f908152600e602052604090205460ff1680610a6c57506001600160a01b0384165f908152600e602052604090205460ff165b155b90508015610b13576001600160a01b0384165f9081526010602052604081205460ff1615610ab7576064600d5485610aa69190611132565b610ab0919061114f565b9050610af4565b6001600160a01b0386165f9081526010602052604090205460ff1615610af4576064600c5485610ae79190611132565b610af1919061114f565b90505b8015610b1157610b04818561119b565b9350610b11863083610c67565b505b808015610b3857506001600160a01b0385165f9081526010602052604090205460ff16155b8015610b545750600b54305f9081526001602052604090205410155b15610b82576007805460ff60b81b1916600160b81b179055610b74610d8d565b6007805460ff60b81b191690555b610b8d858585610c67565b5050505050565b6001600160a01b038416610bbd5760405163e602df0560e01b81525f6004820152602401610069565b6001600160a01b038316610be657604051634a1406b160e11b81525f6004820152602401610069565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610c6157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c5891815260200190565b60405180910390a35b50505050565b6001600160a01b038316610c91578060035f828254610c8691906111ae565b90915550610d019050565b6001600160a01b0383165f9081526001602052604090205481811015610ce35760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610069565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216610d1d57600380548290039055610d3b565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d8091815260200190565b60405180910390a3505050565b6040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110610dc457610dc46111c1565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e46919061116e565b81600181518110610e5957610e596111c1565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600b546014610e899190611132565b305f9081526001602052604090205490915081811115610ea65750805b6080516001600160a01b031663791ac947825f8630426040518663ffffffff1660e01b8152600401610edc9594939291906111d5565b5f604051808303815f87803b158015610ef3575f80fd5b505af1158015610f05573d5f803e3d5ffd5b504792505f9150610f19905060028361114f565b90505f610f26828461119b565b6006546040519192506001600160a01b03169083905f81818185875af1925050503d805f8114610f71576040519150601f19603f3d011682016040523d82523d5f602084013e610f76565b606091505b50506007546040519198506001600160a01b03169082905f81818185875af1925050503d805f8114610fc3576040519150601f19603f3d011682016040523d82523d5f602084013e610fc8565b606091505b50505050505050505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680610ffc57607f821691505b60208210810361101a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104ac57805f5260205f20601f840160051c810160208510156110455750805b601f840160051c820191505b81811015610b8d575f8155600101611051565b81516001600160401b0381111561107d5761107d610fd4565b6110918161108b8454610fe8565b84611020565b6020601f8211600181146110c3575f83156110ac5750848201515b5f19600385901b1c1916600184901b178455610b8d565b5f84815260208120601f198516915b828110156110f257878501518255602094850194600190920191016110d2565b508482101561110f57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176111495761114961111e565b92915050565b5f8261116957634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561117e575f80fd5b81516001600160a01b0381168114611194575f80fd5b9392505050565b818103818111156111495761114961111e565b808201808211156111495761114961111e565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156112255783516001600160a01b03168352602093840193909201916001016111fe565b50506001600160a01b039590951660608401525050608001529392505050565b60805160a05161236f6112825f395f8181610443015261168b01525f81816103190152818161164e01528181611d550152611e4a015261236f5ff3fe608060405260043610610268575f3560e01c806390f1d50011610142578063c6af580b116100ba578063e6c1909b11610076578063e6c1909b146107b2578063ec1c70a0146107d2578063ef998cf0146107f1578063f2fde38b14610810578063f53bc8351461082f578063f8b45b051461084e57005b8063c6af580b146106dc578063cb963728146106fb578063d5759ba31461071a578063dcf7aef31461073a578063dd62ed3e14610759578063e2f456051461079d57005b8063afa4f3b211610109578063afa4f3b214610628578063b62496f514610647578063b8eb354614610675578063bc063e1a1461068a578063c02466681461069e578063c0a904a2146106bd57005b806390f1d5001461059857806395927c25146105b757806395d89b41146105d6578063a9059cbb146105ea578063ad88a1bc1461060957005b80634579825a116101e05780635d0044ca1161019c5780635d0044ca146104e05780636ca541e5146104ff57806370a082311461051f57806370db69d614610553578063715018a6146105685780638da5cb5b1461057c57005b80634579825a146103fe578063470624021461041d57806349bd5a5e146104325780634fbee193146104655780635932ead1146104935780635cce86cd146104b257005b806318160ddd1161022f57806318160ddd1461035357806323b872dd146103715780632b14ca56146103905780632d99d32e146103a5578063313ce567146103c457806341aea9de146103df57005b806306fdde0314610271578063095ea7b31461029b5780630cd32dcd146102ca578063155ca7c1146102e95780631694505e1461030857005b3661026f57005b005b34801561027c575f80fd5b50610285610863565b6040516102929190611f7f565b60405180910390f35b3480156102a6575f80fd5b506102ba6102b5366004611fc8565b6108f3565b6040519015158152602001610292565b3480156102d5575f80fd5b5061026f6102e4366004611fff565b61090c565b3480156102f4575f80fd5b5061026f610303366004611fff565b61095c565b348015610313575f80fd5b5061033b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610292565b34801561035e575f80fd5b506003545b604051908152602001610292565b34801561037c575f80fd5b506102ba61038b366004612081565b6109a6565b34801561039b575f80fd5b50610363600d5481565b3480156103b0575f80fd5b5061026f6103bf3660046120bf565b6109c9565b3480156103cf575f80fd5b5060405160128152602001610292565b3480156103ea575f80fd5b5061026f6103f93660046120f6565b6109df565b348015610409575f80fd5b5061026f610418366004612118565b610a05565b348015610428575f80fd5b50610363600c5481565b34801561043d575f80fd5b5061033b7f000000000000000000000000000000000000000000000000000000000000000081565b348015610470575f80fd5b506102ba61047f366004612118565b600e6020525f908152604090205460ff1681565b34801561049e575f80fd5b5061026f6104ad3660046120f6565b610aa9565b3480156104bd575f80fd5b506102ba6104cc366004612118565b600f6020525f908152604090205460ff1681565b3480156104eb575f80fd5b5061026f6104fa366004612133565b610acf565b34801561050a575f80fd5b506007546102ba90600160a81b900460ff1681565b34801561052a575f80fd5b50610363610539366004612118565b6001600160a01b03165f9081526001602052604090205490565b34801561055e575f80fd5b5061036360085481565b348015610573575f80fd5b5061026f610b9d565b348015610587575f80fd5b505f546001600160a01b031661033b565b3480156105a3575f80fd5b5060075461033b906001600160a01b031681565b3480156105c2575f80fd5b5061026f6105d1366004612133565b610bb0565b3480156105e1575f80fd5b50610285610bde565b3480156105f5575f80fd5b506102ba610604366004611fc8565b610bed565b348015610614575f80fd5b5061026f610623366004612118565b610bfa565b348015610633575f80fd5b5061026f610642366004612133565b610c99565b348015610652575f80fd5b506102ba610661366004612118565b60106020525f908152604090205460ff1681565b348015610680575f80fd5b5061036360095481565b348015610695575f80fd5b50610363601e81565b3480156106a9575f80fd5b5061026f6106b83660046120bf565b610dce565b3480156106c8575f80fd5b5061026f6106d73660046120bf565b610de0565b3480156106e7575f80fd5b5061026f6106f63660046120f6565b610df2565b348015610706575f80fd5b5061026f610715366004612118565b610e18565b348015610725575f80fd5b506007546102ba90600160a01b900460ff1681565b348015610745575f80fd5b5061026f610754366004612133565b61103f565b348015610764575f80fd5b5061036361077336600461214a565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156107a8575f80fd5b50610363600b5481565b3480156107bd575f80fd5b506007546102ba90600160b01b900460ff1681565b3480156107dd575f80fd5b5060065461033b906001600160a01b031681565b3480156107fc575f80fd5b5061026f61080b366004612133565b61106d565b34801561081b575f80fd5b5061026f61082a366004612118565b611132565b34801561083a575f80fd5b5061026f610849366004612133565b61116f565b348015610859575f80fd5b50610363600a5481565b60606004805461087290612176565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90612176565b80156108e95780601f106108c0576101008083540402835291602001916108e9565b820191905f5260205f20905b8154815290600101906020018083116108cc57829003601f168201915b5050505050905090565b5f33610900818585611233565b60019150505b92915050565b610914611240565b5f5b828110156109565761094e848483818110610933576109336121ae565b90506020020160208101906109489190612118565b8361126c565b600101610916565b50505050565b610964611240565b5f5b828110156109565761099e848483818110610983576109836121ae565b90506020020160208101906109989190612118565b836112cf565b600101610966565b5f336109b385828561132a565b6109be85858561139f565b506001949350505050565b6109d1611240565b6109db82826113fc565b5050565b6109e7611240565b60078054911515600160a01b0260ff60a01b19909216919091179055565b610a0d611240565b6001600160a01b038116610a595760405162461bcd60e51b815260206004820152600e60248201526d0504f573a204164647265737320360941b60448201526064015b60405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917f943b835b6abe2fb57b4d993fd972babc8b71f58286cefa215721c8467a9e1f43905f90a35050565b610ab1611240565b60078054911515600160a81b0260ff60a81b19909216919091179055565b610ad7611240565b6103e8610ae360035490565b610aee9060036121d6565b610af891906121ed565b811015610b615760405162461bcd60e51b815260206004820152603160248201527f504f573a2043616e6e6f7420736574206d61782077616c6c657420616d6f756e60448201527074206c6f776572207468616e20302e332560781b6064820152608401610a50565b600a8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf636186906020015b60405180910390a150565b610ba5611240565b610bae5f611457565b565b610bb8611240565b601e811115610bd95760405162461bcd60e51b8152600401610a509061220c565b600d55565b60606005805461087290612176565b5f3361090081858561139f565b610c02611240565b6001600160a01b038116610c495760405162461bcd60e51b815260206004820152600e60248201526d0504f573a204164647265737320360941b6044820152606401610a50565b600680546001600160a01b038381166001600160a01b03198316811790935560405191169182917fdf60ceb6a35cadc011cbbbc59d58432ea2352186b7e14607c9c57f022733d8a1905f90a35050565b610ca1611240565b5f610cab60035490565b9050620f4240610cbc8260016121d6565b610cc691906121ed565b821015610d3b5760405162461bcd60e51b815260206004820152603b60248201527f504f573a205377617020616d6f756e742063616e6e6f74206265206c6f77657260448201527f207468616e20302e303030312520746f74616c20737570706c792e00000000006064820152608401610a50565b6103e8610d498260056121d6565b610d5391906121ed565b821115610dc85760405162461bcd60e51b815260206004820152603960248201527f504f573a205377617020616d6f756e742063616e6e6f7420626520686967686560448201527f72207468616e20302e352520746f74616c20737570706c792e000000000000006064820152608401610a50565b50600b55565b610dd6611240565b6109db82826112cf565b610de8611240565b6109db828261126c565b610dfa611240565b60078054911515600160b01b0260ff60b01b19909216919091179055565b610e20611240565b335f6001600160a01b038316610f245750475f81610e785760405162461bcd60e51b8152602060048201526015602482015274504f573a204e6f206e617469766520746f6b656e7360581b6044820152606401610a50565b6040516001600160a01b0384169083905f81818185875af1925050503d805f8114610ebe576040519150601f19603f3d011682016040523d82523d5f602084013e610ec3565b606091505b505080915050806109565760405162461bcd60e51b815260206004820152602560248201527f504f573a204661696c656420746f207769746864726177206e617469766520746044820152646f6b656e7360d81b6064820152608401610a50565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610f66573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8a9190612256565b90505f8111610fcc5760405162461bcd60e51b815260206004820152600e60248201526d504f573a204e6f20746f6b656e7360901b6044820152606401610a50565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af1158015611016573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610956919061226d565b505050565b611047611240565b601e8111156110685760405162461bcd60e51b8152600401610a509061220c565b600c55565b611075611240565b6103e861108160035490565b61108c9060026121d6565b61109691906121ed565b8110156110fd5760405162461bcd60e51b815260206004820152602f60248201527f504f573a2043616e6e6f7420736574206d61782073656c6c20616d6f756e742060448201526e6c6f776572207468616e20302e322560881b6064820152608401610a50565b60098190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610b92565b61113a611240565b6001600160a01b03811661116357604051631e4fbdf760e01b81525f6004820152602401610a50565b61116c81611457565b50565b611177611240565b6103e861118360035490565b61118e9060026121d6565b61119891906121ed565b8110156111fe5760405162461bcd60e51b815260206004820152602e60248201527f504f573a2043616e6e6f7420736574206d61782062757920616d6f756e74206c60448201526d6f776572207468616e20302e322560901b6064820152608401610a50565b60088190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610b92565b61103a838383600161149b565b5f546001600160a01b03163314610bae5760405163118cdaa760e01b8152336004820152602401610a50565b6001600160a01b0382165f818152600f6020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a15050565b6001600160a01b0382165f818152600e6020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016112c3565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610956578181101561139157604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a50565b61095684848484035f61149b565b6001600160a01b0383166113c857604051634b637e8f60e11b81525f6004820152602401610a50565b6001600160a01b0382166113f15760405163ec442f0560e01b81525f6004820152602401610a50565b61103a83838361156d565b6001600160a01b0382165f81815260106020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91016112c3565b5f546001600160a01b0316801561147c57611472815f6112cf565b61147c815f61126c565b6114878260016112cf565b61149282600161126c565b6109db82611b87565b6001600160a01b0384166114c45760405163e602df0560e01b81525f6004820152602401610a50565b6001600160a01b0383166114ed57604051634a1406b160e11b81525f6004820152602401610a50565b6001600160a01b038085165f908152600260209081526040808320938716835292905220829055801561095657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161155f91815260200190565b60405180910390a350505050565b6007545f90600160a01b900460ff1680156115925750600754600160b81b900460ff16155b80156115d857506001600160a01b0384165f908152600f602052604090205460ff16806115d657506001600160a01b0383165f908152600f602052604090205460ff165b155b905080156119f6575f546001600160a01b0385811691161480159061160a57505f546001600160a01b03848116911614155b801561161e57506001600160a01b03831615155b801561163557506001600160a01b03831661dead14155b156119f657600754600160a81b900460ff1615611792577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316141580156116c057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b15611792576116d0600343612288565b325f9081526011602052604090205410801561170c57506116f2600343612288565b6001600160a01b0384165f90815260116020526040902054105b61176e5760405162461bcd60e51b815260206004820152602d60248201527f504f573a205472616e736665722064656c617920656e61626c65642e2054727960448201526c1030b3b0b4b7103630ba32b91760991b6064820152608401610a50565b325f9081526011602052604080822043908190556001600160a01b03861683529120555b6001600160a01b0384165f9081526010602052604090205460ff1680156117d157506001600160a01b0383165f908152600f602052604090205460ff16155b156118b65760085482111561183e5760405162461bcd60e51b815260206004820152602d60248201527f504f573a20427579207472616e7366657220616d6f756e74206578636565647360448201526c103a34329036b0bc10313abc9760991b6064820152608401610a50565b600a546001600160a01b0384165f90815260016020526040902054611863908461229b565b11156118b15760405162461bcd60e51b815260206004820152601d60248201527f504f573a2043616e6e6f7420457863656564206d61782077616c6c65740000006044820152606401610a50565b6119f6565b6001600160a01b0383165f9081526010602052604090205460ff1680156118f557506001600160a01b0384165f908152600f602052604090205460ff16155b15611964576009548211156118b15760405162461bcd60e51b815260206004820152602f60248201527f504f573a2053656c6c207472616e7366657220616d6f756e742065786365656460448201526e39903a34329036b0bc1039b2b6361760891b6064820152608401610a50565b6001600160a01b0383165f908152600f602052604090205460ff166119f657600a546001600160a01b0384165f908152600160205260409020546119a8908461229b565b11156119f65760405162461bcd60e51b815260206004820152601d60248201527f504f573a2043616e6e6f7420457863656564206d61782077616c6c65740000006044820152606401610a50565b6007545f90600160b01b900460ff168015611a1b5750600754600160b81b900460ff16155b8015611a6157506001600160a01b0385165f908152600e602052604090205460ff1680611a5f57506001600160a01b0384165f908152600e602052604090205460ff165b155b90508015611b06576001600160a01b0384165f9081526010602052604081205460ff1615611aaa576064600d5485611a9991906121d6565b611aa391906121ed565b9050611ae7565b6001600160a01b0386165f9081526010602052604090205460ff1615611ae7576064600c5485611ada91906121d6565b611ae491906121ed565b90505b8015611b0457611af78185612288565b9350611b04863083611bd6565b505b808015611b2b57506001600160a01b0385165f9081526010602052604090205460ff16155b8015611b475750600b54305f9081526001602052604090205410155b15611b75576007805460ff60b81b1916600160b81b179055611b67611cfc565b6007805460ff60b81b191690555b611b80858585611bd6565b5050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316611c00578060035f828254611bf5919061229b565b90915550611c709050565b6001600160a01b0383165f9081526001602052604090205481811015611c525760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a50565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216611c8c57600380548290039055611caa565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cef91815260200190565b60405180910390a3505050565b6040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110611d3357611d336121ae565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611daf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dd391906122ae565b81600181518110611de657611de66121ae565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600b546014611e1691906121d6565b305f9081526001602052604090205490915081811115611e335750805b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e879084905f908890309042906004016122c9565b5f604051808303815f87803b158015611e9e575f80fd5b505af1158015611eb0573d5f803e3d5ffd5b504792505f9150611ec490506002836121ed565b90505f611ed18284612288565b6006546040519192506001600160a01b03169083905f81818185875af1925050503d805f8114611f1c576040519150601f19603f3d011682016040523d82523d5f602084013e611f21565b606091505b50506007546040519198506001600160a01b03169082905f81818185875af1925050503d805f8114611f6e576040519150601f19603f3d011682016040523d82523d5f602084013e611f73565b606091505b50505050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461116c575f80fd5b5f8060408385031215611fd9575f80fd5b8235611fe481611fb4565b946020939093013593505050565b801515811461116c575f80fd5b5f805f60408486031215612011575f80fd5b833567ffffffffffffffff811115612027575f80fd5b8401601f81018613612037575f80fd5b803567ffffffffffffffff81111561204d575f80fd5b8660208260051b8401011115612061575f80fd5b60209182019450925084013561207681611ff2565b809150509250925092565b5f805f60608486031215612093575f80fd5b833561209e81611fb4565b925060208401356120ae81611fb4565b929592945050506040919091013590565b5f80604083850312156120d0575f80fd5b82356120db81611fb4565b915060208301356120eb81611ff2565b809150509250929050565b5f60208284031215612106575f80fd5b813561211181611ff2565b9392505050565b5f60208284031215612128575f80fd5b813561211181611fb4565b5f60208284031215612143575f80fd5b5035919050565b5f806040838503121561215b575f80fd5b823561216681611fb4565b915060208301356120eb81611fb4565b600181811c9082168061218a57607f821691505b6020821081036121a857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610906576109066121c2565b5f8261220757634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252602a908201527f504f573a204d757374206b65657020666565732062656c6f77206f7220657175604082015269616c206d61782066656560b01b606082015260800190565b5f60208284031215612266575f80fd5b5051919050565b5f6020828403121561227d575f80fd5b815161211181611ff2565b81810381811115610906576109066121c2565b80820180821115610906576109066121c2565b5f602082840312156122be575f80fd5b815161211181611fb4565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156123195783516001600160a01b03168352602093840193909201916001016122f2565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212208b01a78c1c8f470fd3b9979a4bb0e8d3f0f22dc1664685c8b2abdc895539bb7564736f6c634300081a0033

Deployed Bytecode

0x608060405260043610610268575f3560e01c806390f1d50011610142578063c6af580b116100ba578063e6c1909b11610076578063e6c1909b146107b2578063ec1c70a0146107d2578063ef998cf0146107f1578063f2fde38b14610810578063f53bc8351461082f578063f8b45b051461084e57005b8063c6af580b146106dc578063cb963728146106fb578063d5759ba31461071a578063dcf7aef31461073a578063dd62ed3e14610759578063e2f456051461079d57005b8063afa4f3b211610109578063afa4f3b214610628578063b62496f514610647578063b8eb354614610675578063bc063e1a1461068a578063c02466681461069e578063c0a904a2146106bd57005b806390f1d5001461059857806395927c25146105b757806395d89b41146105d6578063a9059cbb146105ea578063ad88a1bc1461060957005b80634579825a116101e05780635d0044ca1161019c5780635d0044ca146104e05780636ca541e5146104ff57806370a082311461051f57806370db69d614610553578063715018a6146105685780638da5cb5b1461057c57005b80634579825a146103fe578063470624021461041d57806349bd5a5e146104325780634fbee193146104655780635932ead1146104935780635cce86cd146104b257005b806318160ddd1161022f57806318160ddd1461035357806323b872dd146103715780632b14ca56146103905780632d99d32e146103a5578063313ce567146103c457806341aea9de146103df57005b806306fdde0314610271578063095ea7b31461029b5780630cd32dcd146102ca578063155ca7c1146102e95780631694505e1461030857005b3661026f57005b005b34801561027c575f80fd5b50610285610863565b6040516102929190611f7f565b60405180910390f35b3480156102a6575f80fd5b506102ba6102b5366004611fc8565b6108f3565b6040519015158152602001610292565b3480156102d5575f80fd5b5061026f6102e4366004611fff565b61090c565b3480156102f4575f80fd5b5061026f610303366004611fff565b61095c565b348015610313575f80fd5b5061033b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610292565b34801561035e575f80fd5b506003545b604051908152602001610292565b34801561037c575f80fd5b506102ba61038b366004612081565b6109a6565b34801561039b575f80fd5b50610363600d5481565b3480156103b0575f80fd5b5061026f6103bf3660046120bf565b6109c9565b3480156103cf575f80fd5b5060405160128152602001610292565b3480156103ea575f80fd5b5061026f6103f93660046120f6565b6109df565b348015610409575f80fd5b5061026f610418366004612118565b610a05565b348015610428575f80fd5b50610363600c5481565b34801561043d575f80fd5b5061033b7f0000000000000000000000002e1acf573b7faddf259b30b936e06f22ccdbc11d81565b348015610470575f80fd5b506102ba61047f366004612118565b600e6020525f908152604090205460ff1681565b34801561049e575f80fd5b5061026f6104ad3660046120f6565b610aa9565b3480156104bd575f80fd5b506102ba6104cc366004612118565b600f6020525f908152604090205460ff1681565b3480156104eb575f80fd5b5061026f6104fa366004612133565b610acf565b34801561050a575f80fd5b506007546102ba90600160a81b900460ff1681565b34801561052a575f80fd5b50610363610539366004612118565b6001600160a01b03165f9081526001602052604090205490565b34801561055e575f80fd5b5061036360085481565b348015610573575f80fd5b5061026f610b9d565b348015610587575f80fd5b505f546001600160a01b031661033b565b3480156105a3575f80fd5b5060075461033b906001600160a01b031681565b3480156105c2575f80fd5b5061026f6105d1366004612133565b610bb0565b3480156105e1575f80fd5b50610285610bde565b3480156105f5575f80fd5b506102ba610604366004611fc8565b610bed565b348015610614575f80fd5b5061026f610623366004612118565b610bfa565b348015610633575f80fd5b5061026f610642366004612133565b610c99565b348015610652575f80fd5b506102ba610661366004612118565b60106020525f908152604090205460ff1681565b348015610680575f80fd5b5061036360095481565b348015610695575f80fd5b50610363601e81565b3480156106a9575f80fd5b5061026f6106b83660046120bf565b610dce565b3480156106c8575f80fd5b5061026f6106d73660046120bf565b610de0565b3480156106e7575f80fd5b5061026f6106f63660046120f6565b610df2565b348015610706575f80fd5b5061026f610715366004612118565b610e18565b348015610725575f80fd5b506007546102ba90600160a01b900460ff1681565b348015610745575f80fd5b5061026f610754366004612133565b61103f565b348015610764575f80fd5b5061036361077336600461214a565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156107a8575f80fd5b50610363600b5481565b3480156107bd575f80fd5b506007546102ba90600160b01b900460ff1681565b3480156107dd575f80fd5b5060065461033b906001600160a01b031681565b3480156107fc575f80fd5b5061026f61080b366004612133565b61106d565b34801561081b575f80fd5b5061026f61082a366004612118565b611132565b34801561083a575f80fd5b5061026f610849366004612133565b61116f565b348015610859575f80fd5b50610363600a5481565b60606004805461087290612176565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90612176565b80156108e95780601f106108c0576101008083540402835291602001916108e9565b820191905f5260205f20905b8154815290600101906020018083116108cc57829003601f168201915b5050505050905090565b5f33610900818585611233565b60019150505b92915050565b610914611240565b5f5b828110156109565761094e848483818110610933576109336121ae565b90506020020160208101906109489190612118565b8361126c565b600101610916565b50505050565b610964611240565b5f5b828110156109565761099e848483818110610983576109836121ae565b90506020020160208101906109989190612118565b836112cf565b600101610966565b5f336109b385828561132a565b6109be85858561139f565b506001949350505050565b6109d1611240565b6109db82826113fc565b5050565b6109e7611240565b60078054911515600160a01b0260ff60a01b19909216919091179055565b610a0d611240565b6001600160a01b038116610a595760405162461bcd60e51b815260206004820152600e60248201526d0504f573a204164647265737320360941b60448201526064015b60405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917f943b835b6abe2fb57b4d993fd972babc8b71f58286cefa215721c8467a9e1f43905f90a35050565b610ab1611240565b60078054911515600160a81b0260ff60a81b19909216919091179055565b610ad7611240565b6103e8610ae360035490565b610aee9060036121d6565b610af891906121ed565b811015610b615760405162461bcd60e51b815260206004820152603160248201527f504f573a2043616e6e6f7420736574206d61782077616c6c657420616d6f756e60448201527074206c6f776572207468616e20302e332560781b6064820152608401610a50565b600a8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf636186906020015b60405180910390a150565b610ba5611240565b610bae5f611457565b565b610bb8611240565b601e811115610bd95760405162461bcd60e51b8152600401610a509061220c565b600d55565b60606005805461087290612176565b5f3361090081858561139f565b610c02611240565b6001600160a01b038116610c495760405162461bcd60e51b815260206004820152600e60248201526d0504f573a204164647265737320360941b6044820152606401610a50565b600680546001600160a01b038381166001600160a01b03198316811790935560405191169182917fdf60ceb6a35cadc011cbbbc59d58432ea2352186b7e14607c9c57f022733d8a1905f90a35050565b610ca1611240565b5f610cab60035490565b9050620f4240610cbc8260016121d6565b610cc691906121ed565b821015610d3b5760405162461bcd60e51b815260206004820152603b60248201527f504f573a205377617020616d6f756e742063616e6e6f74206265206c6f77657260448201527f207468616e20302e303030312520746f74616c20737570706c792e00000000006064820152608401610a50565b6103e8610d498260056121d6565b610d5391906121ed565b821115610dc85760405162461bcd60e51b815260206004820152603960248201527f504f573a205377617020616d6f756e742063616e6e6f7420626520686967686560448201527f72207468616e20302e352520746f74616c20737570706c792e000000000000006064820152608401610a50565b50600b55565b610dd6611240565b6109db82826112cf565b610de8611240565b6109db828261126c565b610dfa611240565b60078054911515600160b01b0260ff60b01b19909216919091179055565b610e20611240565b335f6001600160a01b038316610f245750475f81610e785760405162461bcd60e51b8152602060048201526015602482015274504f573a204e6f206e617469766520746f6b656e7360581b6044820152606401610a50565b6040516001600160a01b0384169083905f81818185875af1925050503d805f8114610ebe576040519150601f19603f3d011682016040523d82523d5f602084013e610ec3565b606091505b505080915050806109565760405162461bcd60e51b815260206004820152602560248201527f504f573a204661696c656420746f207769746864726177206e617469766520746044820152646f6b656e7360d81b6064820152608401610a50565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610f66573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8a9190612256565b90505f8111610fcc5760405162461bcd60e51b815260206004820152600e60248201526d504f573a204e6f20746f6b656e7360901b6044820152606401610a50565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af1158015611016573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610956919061226d565b505050565b611047611240565b601e8111156110685760405162461bcd60e51b8152600401610a509061220c565b600c55565b611075611240565b6103e861108160035490565b61108c9060026121d6565b61109691906121ed565b8110156110fd5760405162461bcd60e51b815260206004820152602f60248201527f504f573a2043616e6e6f7420736574206d61782073656c6c20616d6f756e742060448201526e6c6f776572207468616e20302e322560881b6064820152608401610a50565b60098190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610b92565b61113a611240565b6001600160a01b03811661116357604051631e4fbdf760e01b81525f6004820152602401610a50565b61116c81611457565b50565b611177611240565b6103e861118360035490565b61118e9060026121d6565b61119891906121ed565b8110156111fe5760405162461bcd60e51b815260206004820152602e60248201527f504f573a2043616e6e6f7420736574206d61782062757920616d6f756e74206c60448201526d6f776572207468616e20302e322560901b6064820152608401610a50565b60088190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610b92565b61103a838383600161149b565b5f546001600160a01b03163314610bae5760405163118cdaa760e01b8152336004820152602401610a50565b6001600160a01b0382165f818152600f6020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a15050565b6001600160a01b0382165f818152600e6020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016112c3565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610956578181101561139157604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a50565b61095684848484035f61149b565b6001600160a01b0383166113c857604051634b637e8f60e11b81525f6004820152602401610a50565b6001600160a01b0382166113f15760405163ec442f0560e01b81525f6004820152602401610a50565b61103a83838361156d565b6001600160a01b0382165f81815260106020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91016112c3565b5f546001600160a01b0316801561147c57611472815f6112cf565b61147c815f61126c565b6114878260016112cf565b61149282600161126c565b6109db82611b87565b6001600160a01b0384166114c45760405163e602df0560e01b81525f6004820152602401610a50565b6001600160a01b0383166114ed57604051634a1406b160e11b81525f6004820152602401610a50565b6001600160a01b038085165f908152600260209081526040808320938716835292905220829055801561095657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161155f91815260200190565b60405180910390a350505050565b6007545f90600160a01b900460ff1680156115925750600754600160b81b900460ff16155b80156115d857506001600160a01b0384165f908152600f602052604090205460ff16806115d657506001600160a01b0383165f908152600f602052604090205460ff165b155b905080156119f6575f546001600160a01b0385811691161480159061160a57505f546001600160a01b03848116911614155b801561161e57506001600160a01b03831615155b801561163557506001600160a01b03831661dead14155b156119f657600754600160a81b900460ff1615611792577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316836001600160a01b0316141580156116c057507f0000000000000000000000002e1acf573b7faddf259b30b936e06f22ccdbc11d6001600160a01b0316836001600160a01b031614155b15611792576116d0600343612288565b325f9081526011602052604090205410801561170c57506116f2600343612288565b6001600160a01b0384165f90815260116020526040902054105b61176e5760405162461bcd60e51b815260206004820152602d60248201527f504f573a205472616e736665722064656c617920656e61626c65642e2054727960448201526c1030b3b0b4b7103630ba32b91760991b6064820152608401610a50565b325f9081526011602052604080822043908190556001600160a01b03861683529120555b6001600160a01b0384165f9081526010602052604090205460ff1680156117d157506001600160a01b0383165f908152600f602052604090205460ff16155b156118b65760085482111561183e5760405162461bcd60e51b815260206004820152602d60248201527f504f573a20427579207472616e7366657220616d6f756e74206578636565647360448201526c103a34329036b0bc10313abc9760991b6064820152608401610a50565b600a546001600160a01b0384165f90815260016020526040902054611863908461229b565b11156118b15760405162461bcd60e51b815260206004820152601d60248201527f504f573a2043616e6e6f7420457863656564206d61782077616c6c65740000006044820152606401610a50565b6119f6565b6001600160a01b0383165f9081526010602052604090205460ff1680156118f557506001600160a01b0384165f908152600f602052604090205460ff16155b15611964576009548211156118b15760405162461bcd60e51b815260206004820152602f60248201527f504f573a2053656c6c207472616e7366657220616d6f756e742065786365656460448201526e39903a34329036b0bc1039b2b6361760891b6064820152608401610a50565b6001600160a01b0383165f908152600f602052604090205460ff166119f657600a546001600160a01b0384165f908152600160205260409020546119a8908461229b565b11156119f65760405162461bcd60e51b815260206004820152601d60248201527f504f573a2043616e6e6f7420457863656564206d61782077616c6c65740000006044820152606401610a50565b6007545f90600160b01b900460ff168015611a1b5750600754600160b81b900460ff16155b8015611a6157506001600160a01b0385165f908152600e602052604090205460ff1680611a5f57506001600160a01b0384165f908152600e602052604090205460ff165b155b90508015611b06576001600160a01b0384165f9081526010602052604081205460ff1615611aaa576064600d5485611a9991906121d6565b611aa391906121ed565b9050611ae7565b6001600160a01b0386165f9081526010602052604090205460ff1615611ae7576064600c5485611ada91906121d6565b611ae491906121ed565b90505b8015611b0457611af78185612288565b9350611b04863083611bd6565b505b808015611b2b57506001600160a01b0385165f9081526010602052604090205460ff16155b8015611b475750600b54305f9081526001602052604090205410155b15611b75576007805460ff60b81b1916600160b81b179055611b67611cfc565b6007805460ff60b81b191690555b611b80858585611bd6565b5050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316611c00578060035f828254611bf5919061229b565b90915550611c709050565b6001600160a01b0383165f9081526001602052604090205481811015611c525760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a50565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216611c8c57600380548290039055611caa565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cef91815260200190565b60405180910390a3505050565b6040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110611d3357611d336121ae565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611daf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dd391906122ae565b81600181518110611de657611de66121ae565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600b546014611e1691906121d6565b305f9081526001602052604090205490915081811115611e335750805b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e879084905f908890309042906004016122c9565b5f604051808303815f87803b158015611e9e575f80fd5b505af1158015611eb0573d5f803e3d5ffd5b504792505f9150611ec490506002836121ed565b90505f611ed18284612288565b6006546040519192506001600160a01b03169083905f81818185875af1925050503d805f8114611f1c576040519150601f19603f3d011682016040523d82523d5f602084013e611f21565b606091505b50506007546040519198506001600160a01b03169082905f81818185875af1925050503d805f8114611f6e576040519150601f19603f3d011682016040523d82523d5f602084013e611f73565b606091505b50505050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461116c575f80fd5b5f8060408385031215611fd9575f80fd5b8235611fe481611fb4565b946020939093013593505050565b801515811461116c575f80fd5b5f805f60408486031215612011575f80fd5b833567ffffffffffffffff811115612027575f80fd5b8401601f81018613612037575f80fd5b803567ffffffffffffffff81111561204d575f80fd5b8660208260051b8401011115612061575f80fd5b60209182019450925084013561207681611ff2565b809150509250925092565b5f805f60608486031215612093575f80fd5b833561209e81611fb4565b925060208401356120ae81611fb4565b929592945050506040919091013590565b5f80604083850312156120d0575f80fd5b82356120db81611fb4565b915060208301356120eb81611ff2565b809150509250929050565b5f60208284031215612106575f80fd5b813561211181611ff2565b9392505050565b5f60208284031215612128575f80fd5b813561211181611fb4565b5f60208284031215612143575f80fd5b5035919050565b5f806040838503121561215b575f80fd5b823561216681611fb4565b915060208301356120eb81611fb4565b600181811c9082168061218a57607f821691505b6020821081036121a857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610906576109066121c2565b5f8261220757634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252602a908201527f504f573a204d757374206b65657020666565732062656c6f77206f7220657175604082015269616c206d61782066656560b01b606082015260800190565b5f60208284031215612266575f80fd5b5051919050565b5f6020828403121561227d575f80fd5b815161211181611ff2565b81810381811115610906576109066121c2565b80820180821115610906576109066121c2565b5f602082840312156122be575f80fd5b815161211181611fb4565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156123195783516001600160a01b03168352602093840193909201916001016122f2565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212208b01a78c1c8f470fd3b9979a4bb0e8d3f0f22dc1664685c8b2abdc895539bb7564736f6c634300081a0033

Deployed Bytecode Sourcemap

26809:12439:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13101:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15435:222;;;;;;;;;;-1:-1:-1;15435:222:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;15435:222:0;945:187:1;33911:243:0;;;;;;;;;;-1:-1:-1;33911:243:0;;;;;:::i;:::-;;:::i;33349:239::-;;;;;;;;;;-1:-1:-1;33349:239:0;;;;;:::i;:::-;;:::i;26892:49::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2198:32:1;;;2180:51;;2168:2;2153:18;26892:49:0;2010:227:1;14203:99:0;;;;;;;;;;-1:-1:-1;14282:12:0;;14203:99;;;2388:25:1;;;2376:2;2361:18;14203:99:0;2242:177:1;16235:283:0;;;;;;;;;;-1:-1:-1;16235:283:0;;;;;:::i;:::-;;:::i;27366:22::-;;;;;;;;;;;;;;;;34340:108;;;;;;;;;;-1:-1:-1;34340:108:0;;;;;:::i;:::-;;:::i;14054:84::-;;;;;;;;;;-1:-1:-1;14054:84:0;;14128:2;3466:36:1;;3454:2;3439:18;14054:84:0;3324:184:1;30960:99:0;;;;;;;;;;-1:-1:-1;30960:99:0;;;;;:::i;:::-;;:::i;30581:371::-;;;;;;;;;;-1:-1:-1;30581:371:0;;;;;:::i;:::-;;:::i;27338:21::-;;;;;;;;;;;;;;;;26948:38;;;;;;;;;;;;;;;27397:50;;;;;;;;;;-1:-1:-1;27397:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31067:103;;;;;;;;;;-1:-1:-1;31067:103:0;;;;;:::i;:::-;;:::i;27454:52::-;;;;;;;;;;-1:-1:-1;27454:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31832:281;;;;;;;;;;-1:-1:-1;31832:281:0;;;;;:::i;:::-;;:::i;27109:29::-;;;;;;;;;;-1:-1:-1;27109:29:0;;;;-1:-1:-1;;;27109:29:0;;;;;;14365:118;;;;;;;;;;-1:-1:-1;14365:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14457:18:0;14430:7;14457:18;;;:9;:18;;;;;;;14365:118;27208:21;;;;;;;;;;;;;;;;25082:103;;;;;;;;;;;;;:::i;24407:87::-;;;;;;;;;;-1:-1:-1;24453:7:0;24480:6;-1:-1:-1;;;;;24480:6:0;24407:87;;27030:36;;;;;;;;;;-1:-1:-1;27030:36:0;;;;-1:-1:-1;;;;;27030:36:0;;;32819:217;;;;;;;;;;-1:-1:-1;32819:217:0;;;;;:::i;:::-;;:::i;13311:95::-;;;;;;;;;;;;;:::i;14688:182::-;;;;;;;;;;-1:-1:-1;14688:182:0;;;;;:::i;:::-;;:::i;30273:300::-;;;;;;;;;;-1:-1:-1;30273:300:0;;;;;:::i;:::-;;:::i;32121:470::-;;;;;;;;;;-1:-1:-1;32121:470:0;;;;;:::i;:::-;;:::i;27513:57::-;;;;;;;;;;-1:-1:-1;27513:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27236:22;;;;;;;;;;;;;;;;26847:36;;;;;;;;;;;;26881:2;26847:36;;33217:124;;;;;;;;;;-1:-1:-1;33217:124:0;;;;;:::i;:::-;;:::i;33775:128::-;;;;;;;;;;-1:-1:-1;33775:128:0;;;;;:::i;:::-;;:::i;31178:93::-;;;;;;;;;;-1:-1:-1;31178:93:0;;;;;:::i;:::-;;:::i;38612:633::-;;;;;;;;;;-1:-1:-1;38612:633:0;;;;;:::i;:::-;;:::i;27075:27::-;;;;;;;;;;-1:-1:-1;27075:27:0;;;;-1:-1:-1;;;27075:27:0;;;;;;32599:212;;;;;;;;;;-1:-1:-1;32599:212:0;;;;;:::i;:::-;;:::i;14933:183::-;;;;;;;;;;-1:-1:-1;14933:183:0;;;;;:::i;:::-;-1:-1:-1;;;;;15081:18:0;;;15049:7;15081:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14933:183;27298:33;;;;;;;;;;;;;;;;27145:24;;;;;;;;;;-1:-1:-1;27145:24:0;;;;-1:-1:-1;;;27145:24:0;;;;;;26993:30;;;;;;;;;;-1:-1:-1;26993:30:0;;;;-1:-1:-1;;;;;26993:30:0;;;31553:271;;;;;;;;;;-1:-1:-1;31553:271:0;;;;;:::i;:::-;;:::i;25340:220::-;;;;;;;;;;-1:-1:-1;25340:220:0;;;;;:::i;:::-;;:::i;31279:266::-;;;;;;;;;;-1:-1:-1;31279:266:0;;;;;:::i;:::-;;:::i;27265:24::-;;;;;;;;;;;;;;;;13101:91;13146:13;13179:5;13172:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13101:91;:::o;15435:222::-;15535:4;4396:10;15596:31;4396:10;15612:7;15621:5;15596:8;:31::i;:::-;15645:4;15638:11;;;15435:222;;;;;:::o;33911:243::-;24293:13;:11;:13::i;:::-;34041:9:::1;34036:111;34056:19:::0;;::::1;34036:111;;;34097:38;34116:8;;34125:1;34116:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34129:5;34097:18;:38::i;:::-;34077:3;;34036:111;;;;33911:243:::0;;;:::o;33349:239::-;24293:13;:11;:13::i;:::-;33477:9:::1;33472:109;33492:19:::0;;::::1;33472:109;;;33533:36;33550:8;;33559:1;33550:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;33563:5;33533:16;:36::i;:::-;33513:3;;33472:109;;16235:283:::0;16356:4;4396:10;16414:37;16430:4;4396:10;16445:5;16414:15;:37::i;:::-;16462:26;16472:4;16478:2;16482:5;16462:9;:26::i;:::-;-1:-1:-1;16506:4:0;;16235:283;-1:-1:-1;;;;16235:283:0:o;34340:108::-;24293:13;:11;:13::i;:::-;34416:24:::1;34428:4;34434:5;34416:11;:24::i;:::-;34340:108:::0;;:::o;30960:99::-;24293:13;:11;:13::i;:::-;31028:15:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;31028:23:0::1;-1:-1:-1::0;;;;31028:23:0;;::::1;::::0;;;::::1;::::0;;30960:99::o;30581:371::-;24293:13;:11;:13::i;:::-;-1:-1:-1;;;;;30706:36:0;::::1;30698:63;;;::::0;-1:-1:-1;;;30698:63:0;;5562:2:1;30698:63:0::1;::::0;::::1;5544:21:1::0;5601:2;5581:18;;;5574:30;-1:-1:-1;;;5620:18:1;;;5613:44;5674:18;;30698:63:0::1;;;;;;;;;30792:21;::::0;;-1:-1:-1;;;;;30824:46:0;;::::1;-1:-1:-1::0;;;;;;30824:46:0;::::1;::::0;::::1;::::0;;;30886:58:::1;::::0;30792:21;::::1;::::0;;;30886:58:::1;::::0;30772:17:::1;::::0;30886:58:::1;30687:265;30581:371:::0;:::o;31067:103::-;24293:13;:11;:13::i;:::-;31137:17:::1;:25:::0;;;::::1;;-1:-1:-1::0;;;31137:25:0::1;-1:-1:-1::0;;;;31137:25:0;;::::1;::::0;;;::::1;::::0;;31067:103::o;31832:281::-;24293:13;:11;:13::i;:::-;31955:4:::1;31934:13;14282:12:::0;;;14203:99;31934:13:::1;:17;::::0;31950:1:::1;31934:17;:::i;:::-;31933:26;;;;:::i;:::-;31922:6;:38;;31900:137;;;::::0;-1:-1:-1;;;31900:137:0;;6432:2:1;31900:137:0::1;::::0;::::1;6414:21:1::0;6471:2;6451:18;;;6444:30;6510:34;6490:18;;;6483:62;-1:-1:-1;;;6561:18:1;;;6554:47;6618:19;;31900:137:0::1;6230:413:1::0;31900:137:0::1;32048:9;:18:::0;;;32082:23:::1;::::0;2388:25:1;;;32082:23:0::1;::::0;2376:2:1;2361:18;32082:23:0::1;;;;;;;;31832:281:::0;:::o;25082:103::-;24293:13;:11;:13::i;:::-;25147:30:::1;25174:1;25147:18;:30::i;:::-;25082:103::o:0;32819:217::-;24293:13;:11;:13::i;:::-;26881:2:::1;32910:8;:19;;32888:111;;;;-1:-1:-1::0;;;32888:111:0::1;;;;;;;:::i;:::-;33010:7;:18:::0;32819:217::o;13311:95::-;13358:13;13391:7;13384:14;;;;;:::i;14688:182::-;14757:4;4396:10;14813:27;4396:10;14830:2;14834:5;14813:9;:27::i;30273:300::-;24293:13;:11;:13::i;:::-;-1:-1:-1;;;;;30363:30:0;::::1;30355:57;;;::::0;-1:-1:-1;;;30355:57:0;;5562:2:1;30355:57:0::1;::::0;::::1;5544:21:1::0;5601:2;5581:18;;;5574:30;-1:-1:-1;;;5620:18:1;;;5613:44;5674:18;;30355:57:0::1;5360:338:1::0;30355:57:0::1;30443:15;::::0;;-1:-1:-1;;;;;30469:34:0;;::::1;-1:-1:-1::0;;;;;;30469:34:0;::::1;::::0;::::1;::::0;;;30519:46:::1;::::0;30443:15;::::1;::::0;;;30519:46:::1;::::0;30423:17:::1;::::0;30519:46:::1;30344:229;30273:300:::0;:::o;32121:470::-;24293:13;:11;:13::i;:::-;32198:20:::1;32221:13;14282:12:::0;;;14203:99;32221:13:::1;32198:36:::0;-1:-1:-1;32298:7:0::1;32278:16;32198:36:::0;32293:1:::1;32278:16;:::i;:::-;32277:28;;;;:::i;:::-;32267:6;:38;;32245:147;;;::::0;-1:-1:-1;;;32245:147:0;;7261:2:1;32245:147:0::1;::::0;::::1;7243:21:1::0;7300:2;7280:18;;;7273:30;7339:34;7319:18;;;7312:62;7410:29;7390:18;;;7383:57;7457:19;;32245:147:0::1;7059:423:1::0;32245:147:0::1;32456:4;32436:16;:12:::0;32451:1:::1;32436:16;:::i;:::-;32435:25;;;;:::i;:::-;32425:6;:35;;32403:142;;;::::0;-1:-1:-1;;;32403:142:0;;7689:2:1;32403:142:0::1;::::0;::::1;7671:21:1::0;7728:2;7708:18;;;7701:30;7767:34;7747:18;;;7740:62;7838:27;7818:18;;;7811:55;7883:19;;32403:142:0::1;7487:421:1::0;32403:142:0::1;-1:-1:-1::0;32556:18:0::1;:27:::0;32121:470::o;33217:124::-;24293:13;:11;:13::i;:::-;33301:32:::1;33318:7;33327:5;33301:16;:32::i;33775:128::-:0;24293:13;:11;:13::i;:::-;33861:34:::1;33880:7;33889:5;33861:18;:34::i;31178:93::-:0;24293:13;:11;:13::i;:::-;31243:12:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;31243:20:0::1;-1:-1:-1::0;;;;31243:20:0;;::::1;::::0;;;::::1;::::0;;31178:93::o;38612:633::-;24293:13;:11;:13::i;:::-;38701:10:::1;38684:14;-1:-1:-1::0;;;;;38751:17:0;::::1;38747:491;;-1:-1:-1::0;38821:21:0::1;38785:12;38865:10:::0;38857:44:::1;;;::::0;-1:-1:-1;;;38857:44:0;;8115:2:1;38857:44:0::1;::::0;::::1;8097:21:1::0;8154:2;8134:18;;;8127:30;-1:-1:-1;;;8173:18:1;;;8166:51;8234:18;;38857:44:0::1;7913:345:1::0;38857:44:0::1;38930:39;::::0;-1:-1:-1;;;;;38930:20:0;::::1;::::0;38958:6;;38930:39:::1;::::0;;;38958:6;38930:20;:39:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38916:53;;;;;38992:7;38984:57;;;::::0;-1:-1:-1;;;38984:57:0;;8675:2:1;38984:57:0::1;::::0;::::1;8657:21:1::0;8714:2;8694:18;;;8687:30;8753:34;8733:18;;;8726:62;-1:-1:-1;;;8804:18:1;;;8797:35;8849:19;;38984:57:0::1;8473:401:1::0;38747:491:0::1;39083:36;::::0;-1:-1:-1;;;39083:36:0;;39113:4:::1;39083:36;::::0;::::1;2180:51:1::0;-1:-1:-1;;;;;39083:21:0;::::1;::::0;::::1;::::0;2153:18:1;;39083:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39074:45;;39151:1;39142:6;:10;39134:37;;;::::0;-1:-1:-1;;;39134:37:0;;9270:2:1;39134:37:0::1;::::0;::::1;9252:21:1::0;9309:2;9289:18;;;9282:30;-1:-1:-1;;;9328:18:1;;;9321:44;9382:18;;39134:37:0::1;9068:338:1::0;39134:37:0::1;39186:40;::::0;-1:-1:-1;;;39186:40:0;;39207:10:::1;39186:40;::::0;::::1;9585:51:1::0;9652:18;;;9645:34;;;-1:-1:-1;;;;;39186:20:0;::::1;::::0;::::1;::::0;9558:18:1;;39186:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;38747:491::-;38673:572;;38612:633:::0;:::o;32599:212::-;24293:13;:11;:13::i;:::-;26881:2:::1;32688:7;:18;;32666:110;;;;-1:-1:-1::0;;;32666:110:0::1;;;;;;;:::i;:::-;32787:6;:16:::0;32599:212::o;31553:271::-;24293:13;:11;:13::i;:::-;31674:4:::1;31653:13;14282:12:::0;;;14203:99;31653:13:::1;:17;::::0;31669:1:::1;31653:17;:::i;:::-;31652:26;;;;:::i;:::-;31641:6;:38;;31619:135;;;::::0;-1:-1:-1;;;31619:135:0;;10142:2:1;31619:135:0::1;::::0;::::1;10124:21:1::0;10181:2;10161:18;;;10154:30;10220:34;10200:18;;;10193:62;-1:-1:-1;;;10271:18:1;;;10264:45;10326:19;;31619:135:0::1;9940:411:1::0;31619:135:0::1;31765:7;:16:::0;;;31797:19:::1;::::0;2388:25:1;;;31797:19:0::1;::::0;2376:2:1;2361:18;31797:19:0::1;2242:177:1::0;25340:220:0;24293:13;:11;:13::i;:::-;-1:-1:-1;;;;;25425:22:0;::::1;25421:93;;25471:31;::::0;-1:-1:-1;;;25471:31:0;;25499:1:::1;25471:31;::::0;::::1;2180:51:1::0;2153:18;;25471:31:0::1;2010:227:1::0;25421:93:0::1;25524:28;25543:8;25524:18;:28::i;:::-;25340:220:::0;:::o;31279:266::-;24293:13;:11;:13::i;:::-;31399:4:::1;31378:13;14282:12:::0;;;14203:99;31378:13:::1;:17;::::0;31394:1:::1;31378:17;:::i;:::-;31377:26;;;;:::i;:::-;31366:6;:38;;31344:134;;;::::0;-1:-1:-1;;;31344:134:0;;10558:2:1;31344:134:0::1;::::0;::::1;10540:21:1::0;10597:2;10577:18;;;10570:30;10636:34;10616:18;;;10609:62;-1:-1:-1;;;10687:18:1;;;10680:44;10741:19;;31344:134:0::1;10356:410:1::0;31344:134:0::1;31489:6;:15:::0;;;31520:17:::1;::::0;2388:25:1;;;31520:17:0::1;::::0;2376:2:1;2361:18;31520:17:0::1;2242:177:1::0;20396:164:0;20515:37;20524:5;20531:7;20540:5;20547:4;20515:8;:37::i;24572:166::-;24453:7;24480:6;-1:-1:-1;;;;;24480:6:0;4396:10;24632:23;24628:103;;24679:40;;-1:-1:-1;;;24679:40:0;;4396:10;24679:40;;;2180:51:1;2153:18;;24679:40:0;2010:227:1;33596:171:0;-1:-1:-1;;;;;33673:29:0;;;;;;:20;:29;;;;;;;;;:37;;-1:-1:-1;;33673:37:0;;;;;;;;;;33726:33;;10939:51:1;;;11006:18;;;10999:50;33726:33:0;;10912:18:1;33726:33:0;;;;;;;;33596:171;;:::o;33044:165::-;-1:-1:-1;;;;;33119:27:0;;;;;;:18;:27;;;;;;;;;:35;;-1:-1:-1;;33119:35:0;;;;;;;;;;33170:31;;10939:51:1;;;11006:18;;;10999:50;33170:31:0;;10912:18:1;33170:31:0;10771:284:1;22189:603:0;-1:-1:-1;;;;;15081:18:0;;;22323:24;15081:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22390:37:0;;22386:399;;22467:5;22448:16;:24;22444:214;;;22500:142;;-1:-1:-1;;;22500:142:0;;-1:-1:-1;;;;;11280:32:1;;22500:142:0;;;11262:51:1;11329:18;;;11322:34;;;11372:18;;;11365:34;;;11235:18;;22500:142:0;11060:345:1;22444:214:0;22701:57;22710:5;22717:7;22745:5;22726:16;:24;22752:5;22701:8;:57::i;16903:342::-;-1:-1:-1;;;;;17021:18:0;;17017:88;;17063:30;;-1:-1:-1;;;17063:30:0;;17090:1;17063:30;;;2180:51:1;2153:18;;17063:30:0;2010:227:1;17017:88:0;-1:-1:-1;;;;;17119:16:0;;17115:88;;17159:32;;-1:-1:-1;;;17159:32:0;;17188:1;17159:32;;;2180:51:1;2153:18;;17159:32:0;2010:227:1;17115:88:0;17213:24;17221:4;17227:2;17231:5;17213:7;:24::i;34162:170::-;-1:-1:-1;;;;;34229:31:0;;;;;;:25;:31;;;;;;;;;:39;;-1:-1:-1;;34229:39:0;;;;;;;;;;34284:40;;10939:51:1;;;11006:18;;;10999:50;34284:40:0;;10912:18:1;34284:40:0;10771:284:1;29875:390:0;29950:16;24480:6;-1:-1:-1;;;;;24480:6:0;29991:22;;29987:138;;30030:33;30047:8;30057:5;30030:16;:33::i;:::-;30078:35;30097:8;30107:5;30078:18;:35::i;:::-;30135:32;30152:8;30162:4;30135:16;:32::i;:::-;30178:34;30197:8;30207:4;30178:18;:34::i;:::-;30223;30248:8;30223:24;:34::i;21411:486::-;-1:-1:-1;;;;;21567:19:0;;21563:91;;21610:32;;-1:-1:-1;;;21610:32:0;;21639:1;21610:32;;;2180:51:1;2153:18;;21610:32:0;2010:227:1;21563:91:0;-1:-1:-1;;;;;21668:21:0;;21664:92;;21713:31;;-1:-1:-1;;;21713:31:0;;21741:1;21713:31;;;2180:51:1;2153:18;;21713:31:0;2010:227:1;21664:92:0;-1:-1:-1;;;;;21766:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21812:78;;;;21863:7;-1:-1:-1;;;;;21847:31:0;21856:5;-1:-1:-1;;;;;21847:31:0;;21872:5;21847:31;;;;2388:25:1;;2376:2;2361:18;;2242:177;21847:31:0;;;;;;;;21411:486;;;;:::o;34456:3153::-;34592:15;;34578:11;;-1:-1:-1;;;34592:15:0;;;;:43;;;;-1:-1:-1;34625:10:0;;-1:-1:-1;;;34625:10:0;;;;34624:11;34592:43;:117;;;;-1:-1:-1;;;;;;34654:26:0;;;;;;:20;:26;;;;;;;;;:54;;-1:-1:-1;;;;;;34684:24:0;;;;;;:20;:24;;;;;;;;34654:54;34652:57;34592:117;34578:131;;34724:6;34720:1947;;;24453:7;24480:6;-1:-1:-1;;;;;34769:15:0;;;24480:6;;34769:15;;;;:49;;-1:-1:-1;24453:7:0;24480:6;-1:-1:-1;;;;;34805:13:0;;;24480:6;;34805:13;;34769:49;:86;;;;-1:-1:-1;;;;;;34839:16:0;;;;34769:86;:128;;;;-1:-1:-1;;;;;;34876:21:0;;34890:6;34876:21;;34769:128;34747:1909;;;34936:17;;-1:-1:-1;;;34936:17:0;;;;34932:685;;;34996:15;-1:-1:-1;;;;;34982:30:0;:2;-1:-1:-1;;;;;34982:30:0;;;:53;;;;;35022:13;-1:-1:-1;;;;;35016:19:0;:2;-1:-1:-1;;;;;35016:19:0;;;34982:53;34978:620;;;35177:16;35192:1;35177:12;:16;:::i;:::-;35131:9;35102:39;;;;:28;:39;;;;;;:91;:212;;;;-1:-1:-1;35298:16:0;35313:1;35298:12;:16;:::i;:::-;-1:-1:-1;;;;;35230:32:0;;;;;;:28;:32;;;;;;:84;35102:212;35064:355;;;;-1:-1:-1;;;35064:355:0;;11745:2:1;35064:355:0;;;11727:21:1;11784:2;11764:18;;;11757:30;11823:34;11803:18;;;11796:62;-1:-1:-1;;;11874:18:1;;;11867:43;11927:19;;35064:355:0;11543:409:1;35064:355:0;35475:9;35446:39;;;;:28;:39;;;;;;35488:12;35446:54;;;;-1:-1:-1;;;;;35527:32:0;;;;;;:47;34978:620;-1:-1:-1;;;;;35663:31:0;;;;;;:25;:31;;;;;;;;:60;;;;-1:-1:-1;;;;;;35699:24:0;;;;;;:20;:24;;;;;;;;35698:25;35663:60;35637:1004;;;35810:6;;35800;:16;;35766:147;;;;-1:-1:-1;;;35766:147:0;;12159:2:1;35766:147:0;;;12141:21:1;12198:2;12178:18;;;12171:30;12237:34;12217:18;;;12210:62;-1:-1:-1;;;12288:18:1;;;12281:43;12341:19;;35766:147:0;11957:409:1;35766:147:0;35996:9;;-1:-1:-1;;;;;14457:18:0;;14430:7;14457:18;;;:9;:18;;;;;;35970:22;;:6;:22;:::i;:::-;:35;;35936:150;;;;-1:-1:-1;;;35936:150:0;;12703:2:1;35936:150:0;;;12685:21:1;12742:2;12722:18;;;12715:30;12781:31;12761:18;;;12754:59;12830:18;;35936:150:0;12501:353:1;35936:150:0;35637:1004;;;-1:-1:-1;;;;;36138:29:0;;;;;;:25;:29;;;;;;;;:60;;;;-1:-1:-1;;;;;;36172:26:0;;;;;;:20;:26;;;;;;;;36171:27;36138:60;36112:529;;;36285:7;;36275:6;:17;;36241:150;;;;-1:-1:-1;;;36241:150:0;;13061:2:1;36241:150:0;;;13043:21:1;13100:2;13080:18;;;13073:30;13139:34;13119:18;;;13112:62;-1:-1:-1;;;13190:18:1;;;13183:45;13245:19;;36241:150:0;12859:411:1;36112:529:0;-1:-1:-1;;;;;36422:24:0;;;;;;:20;:24;;;;;;;;36417:224;;36531:9;;-1:-1:-1;;;;;14457:18:0;;14430:7;14457:18;;;:9;:18;;;;;;36505:22;;:6;:22;:::i;:::-;:35;;36471:150;;;;-1:-1:-1;;;36471:150:0;;12703:2:1;36471:150:0;;;12685:21:1;12742:2;12722:18;;;12715:30;12781:31;12761:18;;;12754:59;12830:18;;36471:150:0;12501:353:1;36471:150:0;36694:12;;36679;;-1:-1:-1;;;36694:12:0;;;;:40;;;;-1:-1:-1;36724:10:0;;-1:-1:-1;;;36724:10:0;;;;36723:11;36694:40;:110;;;;-1:-1:-1;;;;;;36753:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;36781:22:0;;;;;;:18;:22;;;;;;;;36753:50;36751:53;36694:110;36679:125;;36821:7;36817:477;;;-1:-1:-1;;;;;36904:29:0;;36845:12;36904:29;;;:25;:29;;;;;;;;36900:245;;;36982:3;36971:7;;36962:6;:16;;;;:::i;:::-;36961:24;;;;:::i;:::-;36954:31;;36900:245;;;-1:-1:-1;;;;;37047:31:0;;;;;;:25;:31;;;;;;;;37043:102;;;37126:3;37116:6;;37107;:15;;;;:::i;:::-;37106:23;;;;:::i;:::-;37099:30;;37043:102;37165:8;;37161:122;;37194:14;37204:4;37194:14;;:::i;:::-;;;37227:40;37241:4;37255;37262;37227:13;:40::i;:::-;36830:464;36817:477;37324:7;:56;;;;-1:-1:-1;;;;;;37349:31:0;;;;;;:25;:31;;;;;;;;37348:32;37324:56;:119;;;;-1:-1:-1;37425:18:0;;37415:4;14430:7;14457:18;;;:9;:18;;;;;;37397:46;;37324:119;37306:252;;;37470:10;:17;;-1:-1:-1;;;;37470:17:0;-1:-1:-1;;;37470:17:0;;;37502:11;:9;:11::i;:::-;37528:10;:18;;-1:-1:-1;;;;37528:18:0;;;37306:252;37570:31;37584:4;37590:2;37594:6;37570:13;:31::i;:::-;34567:3042;;34456:3153;;;:::o;25720:191::-;25794:16;25813:6;;-1:-1:-1;;;;;25830:17:0;;;-1:-1:-1;;;;;;25830:17:0;;;;;;25863:40;;25813:6;;;;;;;25863:40;;25794:16;25863:40;25783:128;25720:191;:::o;17569:1169::-;-1:-1:-1;;;;;17693:18:0;;17689:552;;17847:5;17831:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17689:552:0;;-1:-1:-1;17689:552:0;;-1:-1:-1;;;;;17907:15:0;;17885:19;17907:15;;;:9;:15;;;;;;17941:19;;;17937:117;;;17988:50;;-1:-1:-1;;;17988:50:0;;-1:-1:-1;;;;;11280:32:1;;17988:50:0;;;11262:51:1;11329:18;;;11322:34;;;11372:18;;;11365:34;;;11235:18;;17988:50:0;11060:345:1;17937:117:0;-1:-1:-1;;;;;18177:15:0;;;;;;:9;:15;;;;;18195:19;;;;18177:37;;17689:552;-1:-1:-1;;;;;18257:16:0;;18253:435;;18423:12;:21;;;;;;;18253:435;;;-1:-1:-1;;;;;18639:13:0;;;;;;:9;:13;;;;;:22;;;;;;18253:435;18720:2;-1:-1:-1;;;;;18705:25:0;18714:4;-1:-1:-1;;;;;18705:25:0;;18724:5;18705:25;;;;2388::1;;2376:2;2361:18;;2242:177;18705:25:0;;;;;;;;17569:1169;;;:::o;37617:987::-;37705:16;;;37719:1;37705:16;;;;;;;;37658:12;;;;37705:16;37719:1;37705:16;;;;;;;;;;-1:-1:-1;37705:16:0;37681:40;;37750:4;37732;37737:1;37732:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;37732:23:0;;;-1:-1:-1;;;;;37732:23:0;;;;;37776:15;-1:-1:-1;;;;;37776:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37766:4;37771:1;37766:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;37766:32:0;;;-1:-1:-1;;;;;37766:32:0;;;;;37811:21;37835:18;;37856:2;37835:23;;;;:::i;:::-;37908:4;37869:18;14457;;;:9;:18;;;;;;37811:47;;-1:-1:-1;37931:26:0;;;37927:85;;;-1:-1:-1;37987:13:0;37927:85;38024:195;;-1:-1:-1;;;38024:195:0;;-1:-1:-1;;;;;38024:15:0;:66;;;;:195;;38105:10;;38130:1;;38146:4;;38173;;38193:15;;38024:195;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38253:21:0;;-1:-1:-1;38232:18:0;;-1:-1:-1;38313:14:0;;-1:-1:-1;38326:1:0;38253:21;38313:14;:::i;:::-;38287:40;-1:-1:-1;38340:25:0;38368:28;38287:40;38368:10;:28;:::i;:::-;38431:15;;38423:57;;38340:56;;-1:-1:-1;;;;;;38431:15:0;;38460;;38423:57;;;;38460:15;38431;38423:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38515:21:0;;38507:89;;38409:71;;-1:-1:-1;;;;;;38515:21:0;;38564:17;;38507:89;;;;38564:17;38515:21;38507:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;37617:987:0:o;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:367;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;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1137:118::-;1223:5;1216:13;1209:21;1202:5;1199:32;1189:60;;1245:1;1242;1235:12;1260:745;1352:6;1360;1368;1421:2;1409:9;1400:7;1396:23;1392:32;1389:52;;;1437:1;1434;1427:12;1389:52;1477:9;1464:23;1510:18;1502:6;1499:30;1496:50;;;1542:1;1539;1532:12;1496:50;1565:22;;1618:4;1610:13;;1606:27;-1:-1:-1;1596:55:1;;1647:1;1644;1637:12;1596:55;1687:2;1674:16;1713:18;1705:6;1702:30;1699:50;;;1745:1;1742;1735:12;1699:50;1800:7;1793:4;1783:6;1780:1;1776:14;1772:2;1768:23;1764:34;1761:47;1758:67;;;1821:1;1818;1811:12;1758:67;1852:4;1844:13;;;;-1:-1:-1;1876:6:1;-1:-1:-1;1917:20:1;;1904:34;1947:28;1904:34;1947:28;:::i;:::-;1994:5;1984:15;;;1260:745;;;;;:::o;2424:508::-;2501:6;2509;2517;2570:2;2558:9;2549:7;2545:23;2541:32;2538:52;;;2586:1;2583;2576:12;2538:52;2625:9;2612:23;2644:31;2669:5;2644:31;:::i;:::-;2694:5;-1:-1:-1;2751:2:1;2736:18;;2723:32;2764:33;2723:32;2764:33;:::i;:::-;2424:508;;2816:7;;-1:-1:-1;;;2896:2:1;2881:18;;;;2868:32;;2424:508::o;2937:382::-;3002:6;3010;3063:2;3051:9;3042:7;3038:23;3034:32;3031:52;;;3079:1;3076;3069:12;3031:52;3118:9;3105:23;3137:31;3162:5;3137:31;:::i;:::-;3187:5;-1:-1:-1;3244:2:1;3229:18;;3216:32;3257:30;3216:32;3257:30;:::i;:::-;3306:7;3296:17;;;2937:382;;;;;:::o;3513:241::-;3569:6;3622:2;3610:9;3601:7;3597:23;3593:32;3590:52;;;3638:1;3635;3628:12;3590:52;3677:9;3664:23;3696:28;3718:5;3696:28;:::i;:::-;3743:5;3513:241;-1:-1:-1;;;3513:241:1:o;3759:247::-;3818:6;3871:2;3859:9;3850:7;3846:23;3842:32;3839:52;;;3887:1;3884;3877:12;3839:52;3926:9;3913:23;3945:31;3970:5;3945:31;:::i;4219:226::-;4278:6;4331:2;4319:9;4310:7;4306:23;4302:32;4299:52;;;4347:1;4344;4337:12;4299:52;-1:-1:-1;4392:23:1;;4219:226;-1:-1:-1;4219:226:1:o;4450:388::-;4518:6;4526;4579:2;4567:9;4558:7;4554:23;4550:32;4547:52;;;4595:1;4592;4585:12;4547:52;4634:9;4621:23;4653:31;4678:5;4653:31;:::i;:::-;4703:5;-1:-1:-1;4760:2:1;4745:18;;4732:32;4773:33;4732:32;4773:33;:::i;4843:380::-;4922:1;4918:12;;;;4965;;;4986:61;;5040:4;5032:6;5028:17;5018:27;;4986:61;5093:2;5085:6;5082:14;5062:18;5059:38;5056:161;;5139:10;5134:3;5130:20;5127:1;5120:31;5174:4;5171:1;5164:15;5202:4;5199:1;5192:15;5056:161;;4843:380;;;:::o;5228:127::-;5289:10;5284:3;5280:20;5277:1;5270:31;5320:4;5317:1;5310:15;5344:4;5341:1;5334:15;5703:127;5764:10;5759:3;5755:20;5752:1;5745:31;5795:4;5792:1;5785:15;5819:4;5816:1;5809:15;5835:168;5908:9;;;5939;;5956:15;;;5950:22;;5936:37;5926:71;;5977:18;;:::i;6008:217::-;6048:1;6074;6064:132;;6118:10;6113:3;6109:20;6106:1;6099:31;6153:4;6150:1;6143:15;6181:4;6178:1;6171:15;6064:132;-1:-1:-1;6210:9:1;;6008:217::o;6648:406::-;6850:2;6832:21;;;6889:2;6869:18;;;6862:30;6928:34;6923:2;6908:18;;6901:62;-1:-1:-1;;;6994:2:1;6979:18;;6972:40;7044:3;7029:19;;6648:406::o;8879:184::-;8949:6;9002:2;8990:9;8981:7;8977:23;8973:32;8970:52;;;9018:1;9015;9008:12;8970:52;-1:-1:-1;9041:16:1;;8879:184;-1:-1:-1;8879:184:1:o;9690:245::-;9757:6;9810:2;9798:9;9789:7;9785:23;9781:32;9778:52;;;9826:1;9823;9816:12;9778:52;9858:9;9852:16;9877:28;9899:5;9877:28;:::i;11410:128::-;11477:9;;;11498:11;;;11495:37;;;11512:18;;:::i;12371:125::-;12436:9;;;12457:10;;;12454:36;;;12470:18;;:::i;13407:251::-;13477:6;13530:2;13518:9;13509:7;13505:23;13501:32;13498:52;;;13546:1;13543;13536:12;13498:52;13578:9;13572:16;13597:31;13622:5;13597:31;:::i;13663:959::-;13925:4;13973:3;13962:9;13958:19;14004:6;13993:9;13986:25;14047:6;14042:2;14031:9;14027:18;14020:34;14090:3;14085:2;14074:9;14070:18;14063:31;14114:6;14149;14143:13;14180:6;14172;14165:22;14218:3;14207:9;14203:19;14196:26;;14257:2;14249:6;14245:15;14231:29;;14278:1;14288:195;14302:6;14299:1;14296:13;14288:195;;;14367:13;;-1:-1:-1;;;;;14363:39:1;14351:52;;14432:2;14458:15;;;;14423:12;;;;14399:1;14317:9;14288:195;;;-1:-1:-1;;;;;;;14539:32:1;;;;14534:2;14519:18;;14512:60;-1:-1:-1;;14603:3:1;14588:19;14581:35;14500:3;13663:959;-1:-1:-1;;;13663:959:1:o

Swarm Source

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