ETH Price: $3,376.91 (-2.04%)
Gas: 3 Gwei

Token

Babypepe Dextoken (BPDT)
 

Overview

Max Total Supply

420,690,000,000,000 BPDT

Holders

131

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,060,986,888,734.232868121 BPDT

Value
$0.00
0x00b0f765792890f20630b7e709c1f77a10abf031
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:
BABYPEPEDEX

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-25
*/

/**


:::::::::      :::     :::::::::  :::   ::: :::::::::  :::::::::: :::::::::  ::::::::::      :::::::::  :::::::::: :::    ::: 
:+:    :+:   :+: :+:   :+:    :+: :+:   :+: :+:    :+: :+:        :+:    :+: :+:             :+:    :+: :+:        :+:    :+: 
+:+    +:+  +:+   +:+  +:+    +:+  +:+ +:+  +:+    +:+ +:+        +:+    +:+ +:+             +:+    +:+ +:+         +:+  +:+  
+#++:++#+  +#++:++#++: +#++:++#+    +#++:   +#++:++#+  +#++:++#   +#++:++#+  +#++:++#        +#+    +:+ +#++:++#     +#++:+   
+#+    +#+ +#+     +#+ +#+    +#+    +#+    +#+        +#+        +#+        +#+             +#+    +#+ +#+         +#+  +#+  
#+#    #+# #+#     #+# #+#    #+#    #+#    #+#        #+#        #+#        #+#             #+#    #+# #+#        #+#    #+# 
#########  ###     ### #########     ###    ###        ########## ###        ##########      #########  ########## ###    ### 

                                                                                                                                                                                          
Dapp : https://babypepedex.xyz/#/trade
Website : https://babypepedex.vip
Twitter : https://twitter.com/babypepedex
TG : https://t.me/BABYPEPEDEX
Whitepaper : https://docs.babypepedex.vip/babypepe-dex/babypepe-dex-introduction

The first Pepe leveraged Decentralized exchange

*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.21;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, amount);
    }
}

 contract BABYPEPEDEX is ERC20, Ownable {
    string private _name = "Babypepe Dextoken";
    string private _symbol = "BPDT";
    uint8 private _decimals = 9;
    uint256 private _supply = 420690000000000;
    uint256 private PEPELP = 1;
    uint256 private Governance = 5;
    uint256 public maxTxAmount = 8413800000000 * 10**_decimals;
    uint256 public maxWalletAmount = 8413800000000 * 10**_decimals;
    address private PEPELPGOV = 0x2DA3Cc6c45256523b9C9A4A1339d6E3E6975CbC1;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 1020690000000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 1020690000000 * 10**_decimals;
    bool inSwapAndLiquify;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10**_decimals));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[PEPELPGOV] = true;
    }

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

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    _marketingReserves -= _numTokensSellToAddToETH;
                    bool sent = payable(PEPELPGOV).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }

                uint256 marketingShare = ((amount * Governance) / 100);
                uint256 liquidityShare = ((amount * PEPELP) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount)
        private
        lockTheSwap
    {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function SetGovernance(address TOKEN)
        public
        onlyOwner
        returns (bool)
    {
        PEPELPGOV = TOKEN;
        return true;
    }

    function Setfee(uint256 _PEPELP, uint256 _Governancefee)
        public
        onlyOwner
        returns (bool)
    {
        require((_PEPELP+_Governancefee) <= 100, "ERC20: total tax must not be greater than 100");
        PEPELP = _PEPELP;
        Governance = _Governancefee;

        return true;
    }

    function SetMaxTX(uint256 _MaxTX)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _MaxTX;

        return true;
    }

    function SetMaxWallet(uint256 _MaxWallet)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _MaxWallet;

        return true;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"TOKEN","type":"address"}],"name":"SetGovernance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxTX","type":"uint256"}],"name":"SetMaxTX","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxWallet","type":"uint256"}],"name":"SetMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PEPELP","type":"uint256"},{"internalType":"uint256","name":"_Governancefee","type":"uint256"}],"name":"Setfee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060400160405280601181526020017f426162797065706520446578746f6b656e000000000000000000000000000000815250600690816200004a919062000b09565b506040518060400160405280600481526020017f42504454000000000000000000000000000000000000000000000000000000008152506007908162000091919062000b09565b50600960085f6101000a81548160ff021916908360ff16021790555066017e9d8602b4006009556001600a556005600b5560085f9054906101000a900460ff16600a620000df919062000d76565b6507a6fd8f6a00620000f2919062000dc6565b600c5560085f9054906101000a900460ff16600a62000112919062000d76565b6507a6fd8f6a0062000125919062000dc6565b600d55732da3cc6c45256523b9c9a4a1339d6e3e6975cbc1600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600f5560085f9054906101000a900460ff16600a6200019d919062000d76565b64eda5dd6880620001af919062000dc6565b60115560085f9054906101000a900460ff16600a620001cf919062000d76565b64eda5dd6880620001e1919062000dc6565b601255348015620001f0575f80fd5b5060068054620002009062000909565b80601f01602080910402602001604051908101604052809291908181526020018280546200022e9062000909565b80156200027d5780601f1062000253576101008083540402835291602001916200027d565b820191905f5260205f20905b8154815290600101906020018083116200025f57829003601f168201915b505050505060078054620002919062000909565b80601f0160208091040260200160405190810160405280929190818152602001828054620002bf9062000909565b80156200030e5780601f10620002e4576101008083540402835291602001916200030e565b820191905f5260205f20905b815481529060010190602001808311620002f057829003601f168201915b5050505050816003908162000324919062000b09565b50806004908162000336919062000b09565b505050620003596200034d6200069c60201b60201c565b620006a360201b60201c565b620003963360085f9054906101000a900460ff16600a6200037b919062000d76565b6009546200038a919062000dc6565b6200076660201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003f8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200041e919062000e75565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000484573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620004aa919062000e75565b6040518363ffffffff1660e01b8152600401620004c992919062000eb6565b6020604051808303815f875af1158015620004e6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200050c919062000e75565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050600160105f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160105f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160105f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505062000fc5565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ce9062000f3f565b60405180910390fd5b8060025f828254620007ea919062000f5f565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000899919062000faa565b60405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200092157607f821691505b602082108103620009375762000936620008dc565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200099b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200095e565b620009a786836200095e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620009f1620009eb620009e584620009bf565b620009c8565b620009bf565b9050919050565b5f819050919050565b62000a0c83620009d1565b62000a2462000a1b82620009f8565b8484546200096a565b825550505050565b5f90565b62000a3a62000a2c565b62000a4781848462000a01565b505050565b5b8181101562000a6e5762000a625f8262000a30565b60018101905062000a4d565b5050565b601f82111562000abd5762000a87816200093d565b62000a92846200094f565b8101602085101562000aa2578190505b62000aba62000ab1856200094f565b83018262000a4c565b50505b505050565b5f82821c905092915050565b5f62000adf5f198460080262000ac2565b1980831691505092915050565b5f62000af9838362000ace565b9150826002028217905092915050565b62000b1482620008a5565b67ffffffffffffffff81111562000b305762000b2f620008af565b5b62000b3c825462000909565b62000b4982828562000a72565b5f60209050601f83116001811462000b7f575f841562000b6a578287015190505b62000b76858262000aec565b86555062000be5565b601f19841662000b8f866200093d565b5f5b8281101562000bb85784890151825560018201915060208501945060208101905062000b91565b8683101562000bd8578489015162000bd4601f89168262000ace565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000c775780860481111562000c4f5762000c4e62000bed565b5b600185161562000c5f5780820291505b808102905062000c6f8562000c1a565b945062000c2f565b94509492505050565b5f8262000c91576001905062000d63565b8162000ca0575f905062000d63565b816001811462000cb9576002811462000cc45762000cfa565b600191505062000d63565b60ff84111562000cd95762000cd862000bed565b5b8360020a91508482111562000cf35762000cf262000bed565b5b5062000d63565b5060208310610133831016604e8410600b841016171562000d345782820a90508381111562000d2e5762000d2d62000bed565b5b62000d63565b62000d43848484600162000c26565b9250905081840481111562000d5d5762000d5c62000bed565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000d8282620009bf565b915062000d8f8362000d6a565b925062000dbe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000c80565b905092915050565b5f62000dd282620009bf565b915062000ddf83620009bf565b925082820262000def81620009bf565b9150828204841483151762000e095762000e0862000bed565b5b5092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e3f8262000e14565b9050919050565b62000e518162000e33565b811462000e5c575f80fd5b50565b5f8151905062000e6f8162000e46565b92915050565b5f6020828403121562000e8d5762000e8c62000e10565b5b5f62000e9c8482850162000e5f565b91505092915050565b62000eb08162000e33565b82525050565b5f60408201905062000ecb5f83018562000ea5565b62000eda602083018462000ea5565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f27601f8362000ee1565b915062000f348262000ef1565b602082019050919050565b5f6020820190508181035f83015262000f588162000f19565b9050919050565b5f62000f6b82620009bf565b915062000f7883620009bf565b925082820190508082111562000f935762000f9262000bed565b5b92915050565b62000fa481620009bf565b82525050565b5f60208201905062000fbf5f83018462000f99565b92915050565b60805160a0516127a9620010265f395f818161066a01528181610cee01528181610d4301528181610db00152610feb01525f81816105b5015281816113ed015281816114cc015281816114f30152818161181f015261184601526127a95ff3fe608060405260043610610122575f3560e01c8063715018a61161009f578063a3bf564911610063578063a3bf5649146103fb578063a9059cbb14610437578063aa4bde2814610473578063dd62ed3e1461049d578063f2fde38b146104d957610129565b8063715018a61461032b5780638c0b5e22146103415780638da5cb5b1461036b57806395d89b4114610395578063a2c87c3e146103bf57610129565b806324a8c480116100e657806324a8c48014610223578063313ce5671461025f57806349bd5a5e14610289578063672dd7af146102b357806370a08231146102ef57610129565b806306fdde031461012d578063095ea7b3146101575780631694505e1461019357806318160ddd146101bd57806323b872dd146101e757610129565b3661012957005b5f80fd5b348015610138575f80fd5b50610141610501565b60405161014e919061199a565b60405180910390f35b348015610162575f80fd5b5061017d60048036038101906101789190611a4b565b610591565b60405161018a9190611aa3565b60405180910390f35b34801561019e575f80fd5b506101a76105b3565b6040516101b49190611b17565b60405180910390f35b3480156101c8575f80fd5b506101d16105d7565b6040516101de9190611b3f565b60405180910390f35b3480156101f2575f80fd5b5061020d60048036038101906102089190611b58565b6105e0565b60405161021a9190611aa3565b60405180910390f35b34801561022e575f80fd5b5061024960048036038101906102449190611ba8565b61060e565b6040516102569190611aa3565b60405180910390f35b34801561026a575f80fd5b50610273610660565b6040516102809190611bee565b60405180910390f35b348015610294575f80fd5b5061029d610668565b6040516102aa9190611c16565b60405180910390f35b3480156102be575f80fd5b506102d960048036038101906102d49190611c2f565b61068c565b6040516102e69190611aa3565b60405180910390f35b3480156102fa575f80fd5b5061031560048036038101906103109190611ba8565b6106fc565b6040516103229190611b3f565b60405180910390f35b348015610336575f80fd5b5061033f610741565b005b34801561034c575f80fd5b50610355610754565b6040516103629190611b3f565b60405180910390f35b348015610376575f80fd5b5061037f61075a565b60405161038c9190611c16565b60405180910390f35b3480156103a0575f80fd5b506103a9610782565b6040516103b6919061199a565b60405180910390f35b3480156103ca575f80fd5b506103e560048036038101906103e09190611c6d565b610812565b6040516103f29190611aa3565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c9190611c6d565b61082b565b60405161042e9190611aa3565b60405180910390f35b348015610442575f80fd5b5061045d60048036038101906104589190611a4b565b610844565b60405161046a9190611aa3565b60405180910390f35b34801561047e575f80fd5b50610487610866565b6040516104949190611b3f565b60405180910390f35b3480156104a8575f80fd5b506104c360048036038101906104be9190611c98565b61086c565b6040516104d09190611b3f565b60405180910390f35b3480156104e4575f80fd5b506104ff60048036038101906104fa9190611ba8565b6108ee565b005b60606003805461051090611d03565b80601f016020809104026020016040519081016040528092919081815260200182805461053c90611d03565b80156105875780601f1061055e57610100808354040283529160200191610587565b820191905f5260205f20905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b5f8061059b610970565b90506105a8818585610977565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f806105ea610970565b90506105f7858285610b3a565b610602858585610bc5565b60019150509392505050565b5f61061761113b565b81600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b5f6009905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f61069561113b565b606482846106a39190611d60565b11156106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db90611e03565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61074961113b565b6107525f6111b9565b565b600c5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461079190611d03565b80601f01602080910402602001604051908101604052809291908181526020018280546107bd90611d03565b80156108085780601f106107df57610100808354040283529160200191610808565b820191905f5260205f20905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b5f61081b61113b565b81600d8190555060019050919050565b5f61083461113b565b81600c8190555060019050919050565b5f8061084e610970565b905061085b818585610bc5565b600191505092915050565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108f661113b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90611e91565b60405180910390fd5b61096d816111b9565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90611f1f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90611fad565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b2d9190611b3f565b60405180910390a3505050565b5f610b45848461086c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bbf5781811015610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890612015565b60405180910390fd5b610bbe8484848403610977565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a906120a3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890612131565b60405180910390fd5b80610cab846106fc565b1015610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce3906121bf565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610d9157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610da9575060135f9054906101000a900460ff16155b1561112a577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610efb575f600f54610e0e306106fc565b610e1891906121dd565b90506011548110610e2f57610e2e60115461127c565b5b601254600f5410610ef957610e45601254611336565b601254600f5f828254610e5891906121dd565b925050819055505f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050905080610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee9061225a565b60405180910390fd5b505b505b5f60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610f97575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610fa457819050611119565b600c54821115610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe0906122e8565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361109557600d54611048846106fc565b836110539190611d60565b1115611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90612376565b60405180910390fd5b5b5f6064600b54846110a69190612394565b6110b09190612402565b90505f6064600a54856110c39190612394565b6110cd9190612402565b905080826110db9190611d60565b846110e691906121dd565b925081600f5f8282546110f99190611d60565b92505081905550611116863083856111119190611d60565b6115a9565b50505b6111248484836115a9565b50611136565b6111358383836115a9565b5b505050565b611143610970565b73ffffffffffffffffffffffffffffffffffffffff1661116161075a565b73ffffffffffffffffffffffffffffffffffffffff16146111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae9061247c565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600160135f6101000a81548160ff0219169083151502179055505f6002826112a49190612402565b90505f81836112b391906121dd565b90505f4790506112c283611336565b5f81476112cf91906121dd565b90506112db83826117ff565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161130e9392919061249a565b60405180910390a1505050505f60135f6101000a81548160ff02191690831515021790555050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561136c5761136b6124cf565b5b60405190808252806020026020018201604052801561139a5781602001602082028036833780820191505090505b50905030815f815181106113b1576113b06124fc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611454573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611478919061253d565b8160018151811061148c5761148b6124fc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506114f1307f000000000000000000000000000000000000000000000000000000000000000084610977565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f843061012c4261153f9190611d60565b6040518663ffffffff1660e01b815260040161155f959493929190612658565b5f604051808303815f87803b158015611576575f80fd5b505af1158015611588573d5f803e3d5ffd5b50505050505f60135f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e906120a3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c90612131565b60405180910390fd5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff906121bf565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117f19190611b3f565b60405180910390a350505050565b600160135f6101000a81548160ff021916908315150217905550611844307f000000000000000000000000000000000000000000000000000000000000000084610977565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061188d61075a565b426040518863ffffffff1660e01b81526004016118af969594939291906126b0565b60606040518083038185885af11580156118cb573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906118f09190612723565b5050505f60135f6101000a81548160ff0219169083151502179055505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561194757808201518184015260208101905061192c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61196c82611910565b611976818561191a565b935061198681856020860161192a565b61198f81611952565b840191505092915050565b5f6020820190508181035f8301526119b28184611962565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6119e7826119be565b9050919050565b6119f7816119dd565b8114611a01575f80fd5b50565b5f81359050611a12816119ee565b92915050565b5f819050919050565b611a2a81611a18565b8114611a34575f80fd5b50565b5f81359050611a4581611a21565b92915050565b5f8060408385031215611a6157611a606119ba565b5b5f611a6e85828601611a04565b9250506020611a7f85828601611a37565b9150509250929050565b5f8115159050919050565b611a9d81611a89565b82525050565b5f602082019050611ab65f830184611a94565b92915050565b5f819050919050565b5f611adf611ada611ad5846119be565b611abc565b6119be565b9050919050565b5f611af082611ac5565b9050919050565b5f611b0182611ae6565b9050919050565b611b1181611af7565b82525050565b5f602082019050611b2a5f830184611b08565b92915050565b611b3981611a18565b82525050565b5f602082019050611b525f830184611b30565b92915050565b5f805f60608486031215611b6f57611b6e6119ba565b5b5f611b7c86828701611a04565b9350506020611b8d86828701611a04565b9250506040611b9e86828701611a37565b9150509250925092565b5f60208284031215611bbd57611bbc6119ba565b5b5f611bca84828501611a04565b91505092915050565b5f60ff82169050919050565b611be881611bd3565b82525050565b5f602082019050611c015f830184611bdf565b92915050565b611c10816119dd565b82525050565b5f602082019050611c295f830184611c07565b92915050565b5f8060408385031215611c4557611c446119ba565b5b5f611c5285828601611a37565b9250506020611c6385828601611a37565b9150509250929050565b5f60208284031215611c8257611c816119ba565b5b5f611c8f84828501611a37565b91505092915050565b5f8060408385031215611cae57611cad6119ba565b5b5f611cbb85828601611a04565b9250506020611ccc85828601611a04565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611d1a57607f821691505b602082108103611d2d57611d2c611cd6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611d6a82611a18565b9150611d7583611a18565b9250828201905080821115611d8d57611d8c611d33565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f74206265206772655f8201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b5f611ded602d8361191a565b9150611df882611d93565b604082019050919050565b5f6020820190508181035f830152611e1a81611de1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611e7b60268361191a565b9150611e8682611e21565b604082019050919050565b5f6020820190508181035f830152611ea881611e6f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611f0960248361191a565b9150611f1482611eaf565b604082019050919050565b5f6020820190508181035f830152611f3681611efd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611f9760228361191a565b9150611fa282611f3d565b604082019050919050565b5f6020820190508181035f830152611fc481611f8b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611fff601d8361191a565b915061200a82611fcb565b602082019050919050565b5f6020820190508181035f83015261202c81611ff3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61208d60258361191a565b915061209882612033565b604082019050919050565b5f6020820190508181035f8301526120ba81612081565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61211b60238361191a565b9150612126826120c1565b604082019050919050565b5f6020820190508181035f8301526121488161210f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6121a960268361191a565b91506121b48261214f565b604082019050919050565b5f6020820190508181035f8301526121d68161219d565b9050919050565b5f6121e782611a18565b91506121f283611a18565b925082820390508181111561220a57612209611d33565b5b92915050565b7f4661696c656420746f2073656e642045544800000000000000000000000000005f82015250565b5f61224460128361191a565b915061224f82612210565b602082019050919050565b5f6020820190508181035f83015261227181612238565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320745f8201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b5f6122d260398361191a565b91506122dd82612278565b604082019050919050565b5f6020820190508181035f8301526122ff816122c6565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d5f8201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b5f61236060368361191a565b915061236b82612306565b604082019050919050565b5f6020820190508181035f83015261238d81612354565b9050919050565b5f61239e82611a18565b91506123a983611a18565b92508282026123b781611a18565b915082820484148315176123ce576123cd611d33565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61240c82611a18565b915061241783611a18565b925082612427576124266123d5565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61246660208361191a565b915061247182612432565b602082019050919050565b5f6020820190508181035f8301526124938161245a565b9050919050565b5f6060820190506124ad5f830186611b30565b6124ba6020830185611b30565b6124c76040830184611b30565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612537816119ee565b92915050565b5f60208284031215612552576125516119ba565b5b5f61255f84828501612529565b91505092915050565b5f819050919050565b5f61258b61258661258184612568565b611abc565b611a18565b9050919050565b61259b81612571565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6125d3816119dd565b82525050565b5f6125e483836125ca565b60208301905092915050565b5f602082019050919050565b5f612606826125a1565b61261081856125ab565b935061261b836125bb565b805f5b8381101561264b57815161263288826125d9565b975061263d836125f0565b92505060018101905061261e565b5085935050505092915050565b5f60a08201905061266b5f830188611b30565b6126786020830187612592565b818103604083015261268a81866125fc565b90506126996060830185611c07565b6126a66080830184611b30565b9695505050505050565b5f60c0820190506126c35f830189611c07565b6126d06020830188611b30565b6126dd6040830187612592565b6126ea6060830186612592565b6126f76080830185611c07565b61270460a0830184611b30565b979650505050505050565b5f8151905061271d81611a21565b92915050565b5f805f6060848603121561273a576127396119ba565b5b5f6127478682870161270f565b93505060206127588682870161270f565b92505060406127698682870161270f565b915050925092509256fea2646970667358221220fbaafcdceb928934615bda55333551a5c60f8e78f68d98596c6e3eca2967190964736f6c63430008150033

Deployed Bytecode

0x608060405260043610610122575f3560e01c8063715018a61161009f578063a3bf564911610063578063a3bf5649146103fb578063a9059cbb14610437578063aa4bde2814610473578063dd62ed3e1461049d578063f2fde38b146104d957610129565b8063715018a61461032b5780638c0b5e22146103415780638da5cb5b1461036b57806395d89b4114610395578063a2c87c3e146103bf57610129565b806324a8c480116100e657806324a8c48014610223578063313ce5671461025f57806349bd5a5e14610289578063672dd7af146102b357806370a08231146102ef57610129565b806306fdde031461012d578063095ea7b3146101575780631694505e1461019357806318160ddd146101bd57806323b872dd146101e757610129565b3661012957005b5f80fd5b348015610138575f80fd5b50610141610501565b60405161014e919061199a565b60405180910390f35b348015610162575f80fd5b5061017d60048036038101906101789190611a4b565b610591565b60405161018a9190611aa3565b60405180910390f35b34801561019e575f80fd5b506101a76105b3565b6040516101b49190611b17565b60405180910390f35b3480156101c8575f80fd5b506101d16105d7565b6040516101de9190611b3f565b60405180910390f35b3480156101f2575f80fd5b5061020d60048036038101906102089190611b58565b6105e0565b60405161021a9190611aa3565b60405180910390f35b34801561022e575f80fd5b5061024960048036038101906102449190611ba8565b61060e565b6040516102569190611aa3565b60405180910390f35b34801561026a575f80fd5b50610273610660565b6040516102809190611bee565b60405180910390f35b348015610294575f80fd5b5061029d610668565b6040516102aa9190611c16565b60405180910390f35b3480156102be575f80fd5b506102d960048036038101906102d49190611c2f565b61068c565b6040516102e69190611aa3565b60405180910390f35b3480156102fa575f80fd5b5061031560048036038101906103109190611ba8565b6106fc565b6040516103229190611b3f565b60405180910390f35b348015610336575f80fd5b5061033f610741565b005b34801561034c575f80fd5b50610355610754565b6040516103629190611b3f565b60405180910390f35b348015610376575f80fd5b5061037f61075a565b60405161038c9190611c16565b60405180910390f35b3480156103a0575f80fd5b506103a9610782565b6040516103b6919061199a565b60405180910390f35b3480156103ca575f80fd5b506103e560048036038101906103e09190611c6d565b610812565b6040516103f29190611aa3565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c9190611c6d565b61082b565b60405161042e9190611aa3565b60405180910390f35b348015610442575f80fd5b5061045d60048036038101906104589190611a4b565b610844565b60405161046a9190611aa3565b60405180910390f35b34801561047e575f80fd5b50610487610866565b6040516104949190611b3f565b60405180910390f35b3480156104a8575f80fd5b506104c360048036038101906104be9190611c98565b61086c565b6040516104d09190611b3f565b60405180910390f35b3480156104e4575f80fd5b506104ff60048036038101906104fa9190611ba8565b6108ee565b005b60606003805461051090611d03565b80601f016020809104026020016040519081016040528092919081815260200182805461053c90611d03565b80156105875780601f1061055e57610100808354040283529160200191610587565b820191905f5260205f20905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b5f8061059b610970565b90506105a8818585610977565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f806105ea610970565b90506105f7858285610b3a565b610602858585610bc5565b60019150509392505050565b5f61061761113b565b81600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b5f6009905090565b7f000000000000000000000000a3deca05952ba721d7be6b5e655e00f11918638d81565b5f61069561113b565b606482846106a39190611d60565b11156106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db90611e03565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61074961113b565b6107525f6111b9565b565b600c5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461079190611d03565b80601f01602080910402602001604051908101604052809291908181526020018280546107bd90611d03565b80156108085780601f106107df57610100808354040283529160200191610808565b820191905f5260205f20905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b5f61081b61113b565b81600d8190555060019050919050565b5f61083461113b565b81600c8190555060019050919050565b5f8061084e610970565b905061085b818585610bc5565b600191505092915050565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108f661113b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90611e91565b60405180910390fd5b61096d816111b9565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90611f1f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90611fad565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b2d9190611b3f565b60405180910390a3505050565b5f610b45848461086c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bbf5781811015610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890612015565b60405180910390fd5b610bbe8484848403610977565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a906120a3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890612131565b60405180910390fd5b80610cab846106fc565b1015610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce3906121bf565b60405180910390fd5b7f000000000000000000000000a3deca05952ba721d7be6b5e655e00f11918638d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610d9157507f000000000000000000000000a3deca05952ba721d7be6b5e655e00f11918638d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610da9575060135f9054906101000a900460ff16155b1561112a577f000000000000000000000000a3deca05952ba721d7be6b5e655e00f11918638d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610efb575f600f54610e0e306106fc565b610e1891906121dd565b90506011548110610e2f57610e2e60115461127c565b5b601254600f5410610ef957610e45601254611336565b601254600f5f828254610e5891906121dd565b925050819055505f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050905080610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee9061225a565b60405180910390fd5b505b505b5f60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610f97575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610fa457819050611119565b600c54821115610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe0906122e8565b60405180910390fd5b7f000000000000000000000000a3deca05952ba721d7be6b5e655e00f11918638d73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361109557600d54611048846106fc565b836110539190611d60565b1115611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90612376565b60405180910390fd5b5b5f6064600b54846110a69190612394565b6110b09190612402565b90505f6064600a54856110c39190612394565b6110cd9190612402565b905080826110db9190611d60565b846110e691906121dd565b925081600f5f8282546110f99190611d60565b92505081905550611116863083856111119190611d60565b6115a9565b50505b6111248484836115a9565b50611136565b6111358383836115a9565b5b505050565b611143610970565b73ffffffffffffffffffffffffffffffffffffffff1661116161075a565b73ffffffffffffffffffffffffffffffffffffffff16146111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae9061247c565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600160135f6101000a81548160ff0219169083151502179055505f6002826112a49190612402565b90505f81836112b391906121dd565b90505f4790506112c283611336565b5f81476112cf91906121dd565b90506112db83826117ff565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161130e9392919061249a565b60405180910390a1505050505f60135f6101000a81548160ff02191690831515021790555050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561136c5761136b6124cf565b5b60405190808252806020026020018201604052801561139a5781602001602082028036833780820191505090505b50905030815f815181106113b1576113b06124fc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611454573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611478919061253d565b8160018151811061148c5761148b6124fc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506114f1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610977565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f843061012c4261153f9190611d60565b6040518663ffffffff1660e01b815260040161155f959493929190612658565b5f604051808303815f87803b158015611576575f80fd5b505af1158015611588573d5f803e3d5ffd5b50505050505f60135f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e906120a3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c90612131565b60405180910390fd5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff906121bf565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117f19190611b3f565b60405180910390a350505050565b600160135f6101000a81548160ff021916908315150217905550611844307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610977565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061188d61075a565b426040518863ffffffff1660e01b81526004016118af969594939291906126b0565b60606040518083038185885af11580156118cb573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906118f09190612723565b5050505f60135f6101000a81548160ff0219169083151502179055505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561194757808201518184015260208101905061192c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61196c82611910565b611976818561191a565b935061198681856020860161192a565b61198f81611952565b840191505092915050565b5f6020820190508181035f8301526119b28184611962565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6119e7826119be565b9050919050565b6119f7816119dd565b8114611a01575f80fd5b50565b5f81359050611a12816119ee565b92915050565b5f819050919050565b611a2a81611a18565b8114611a34575f80fd5b50565b5f81359050611a4581611a21565b92915050565b5f8060408385031215611a6157611a606119ba565b5b5f611a6e85828601611a04565b9250506020611a7f85828601611a37565b9150509250929050565b5f8115159050919050565b611a9d81611a89565b82525050565b5f602082019050611ab65f830184611a94565b92915050565b5f819050919050565b5f611adf611ada611ad5846119be565b611abc565b6119be565b9050919050565b5f611af082611ac5565b9050919050565b5f611b0182611ae6565b9050919050565b611b1181611af7565b82525050565b5f602082019050611b2a5f830184611b08565b92915050565b611b3981611a18565b82525050565b5f602082019050611b525f830184611b30565b92915050565b5f805f60608486031215611b6f57611b6e6119ba565b5b5f611b7c86828701611a04565b9350506020611b8d86828701611a04565b9250506040611b9e86828701611a37565b9150509250925092565b5f60208284031215611bbd57611bbc6119ba565b5b5f611bca84828501611a04565b91505092915050565b5f60ff82169050919050565b611be881611bd3565b82525050565b5f602082019050611c015f830184611bdf565b92915050565b611c10816119dd565b82525050565b5f602082019050611c295f830184611c07565b92915050565b5f8060408385031215611c4557611c446119ba565b5b5f611c5285828601611a37565b9250506020611c6385828601611a37565b9150509250929050565b5f60208284031215611c8257611c816119ba565b5b5f611c8f84828501611a37565b91505092915050565b5f8060408385031215611cae57611cad6119ba565b5b5f611cbb85828601611a04565b9250506020611ccc85828601611a04565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611d1a57607f821691505b602082108103611d2d57611d2c611cd6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611d6a82611a18565b9150611d7583611a18565b9250828201905080821115611d8d57611d8c611d33565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f74206265206772655f8201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b5f611ded602d8361191a565b9150611df882611d93565b604082019050919050565b5f6020820190508181035f830152611e1a81611de1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611e7b60268361191a565b9150611e8682611e21565b604082019050919050565b5f6020820190508181035f830152611ea881611e6f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611f0960248361191a565b9150611f1482611eaf565b604082019050919050565b5f6020820190508181035f830152611f3681611efd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611f9760228361191a565b9150611fa282611f3d565b604082019050919050565b5f6020820190508181035f830152611fc481611f8b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611fff601d8361191a565b915061200a82611fcb565b602082019050919050565b5f6020820190508181035f83015261202c81611ff3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61208d60258361191a565b915061209882612033565b604082019050919050565b5f6020820190508181035f8301526120ba81612081565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61211b60238361191a565b9150612126826120c1565b604082019050919050565b5f6020820190508181035f8301526121488161210f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6121a960268361191a565b91506121b48261214f565b604082019050919050565b5f6020820190508181035f8301526121d68161219d565b9050919050565b5f6121e782611a18565b91506121f283611a18565b925082820390508181111561220a57612209611d33565b5b92915050565b7f4661696c656420746f2073656e642045544800000000000000000000000000005f82015250565b5f61224460128361191a565b915061224f82612210565b602082019050919050565b5f6020820190508181035f83015261227181612238565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320745f8201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b5f6122d260398361191a565b91506122dd82612278565b604082019050919050565b5f6020820190508181035f8301526122ff816122c6565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d5f8201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b5f61236060368361191a565b915061236b82612306565b604082019050919050565b5f6020820190508181035f83015261238d81612354565b9050919050565b5f61239e82611a18565b91506123a983611a18565b92508282026123b781611a18565b915082820484148315176123ce576123cd611d33565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61240c82611a18565b915061241783611a18565b925082612427576124266123d5565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61246660208361191a565b915061247182612432565b602082019050919050565b5f6020820190508181035f8301526124938161245a565b9050919050565b5f6060820190506124ad5f830186611b30565b6124ba6020830185611b30565b6124c76040830184611b30565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612537816119ee565b92915050565b5f60208284031215612552576125516119ba565b5b5f61255f84828501612529565b91505092915050565b5f819050919050565b5f61258b61258661258184612568565b611abc565b611a18565b9050919050565b61259b81612571565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6125d3816119dd565b82525050565b5f6125e483836125ca565b60208301905092915050565b5f602082019050919050565b5f612606826125a1565b61261081856125ab565b935061261b836125bb565b805f5b8381101561264b57815161263288826125d9565b975061263d836125f0565b92505060018101905061261e565b5085935050505092915050565b5f60a08201905061266b5f830188611b30565b6126786020830187612592565b818103604083015261268a81866125fc565b90506126996060830185611c07565b6126a66080830184611b30565b9695505050505050565b5f60c0820190506126c35f830189611c07565b6126d06020830188611b30565b6126dd6040830187612592565b6126ea6060830186612592565b6126f76080830185611c07565b61270460a0830184611b30565b979650505050505050565b5f8151905061271d81611a21565b92915050565b5f805f6060848603121561273a576127396119ba565b5b5f6127478682870161270f565b93505060206127588682870161270f565b92505060406127698682870161270f565b915050925092509256fea2646970667358221220fbaafcdceb928934615bda55333551a5c60f8e78f68d98596c6e3eca2967190964736f6c63430008150033

Deployed Bytecode Sourcemap

26364:6895:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19248:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21522:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26862:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20386:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22346:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32379:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20229:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26920:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32547:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19413:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16507:103;;;;;;;;;;;;;:::i;:::-;;26649:58;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15859:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19072:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33042:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32873:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20966:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26714:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20559:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16765:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19248:102;19304:13;19337:5;19330:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19248:102;:::o;21522:244::-;21643:4;21665:13;21681:12;:10;:12::i;:::-;21665:28;;21704:32;21713:5;21720:7;21729:6;21704:8;:32::i;:::-;21754:4;21747:11;;;21522:244;;;;:::o;26862:51::-;;;:::o;20386:110::-;20449:7;20476:12;;20469:19;;20386:110;:::o;22346:297::-;22479:4;22496:15;22514:12;:10;:12::i;:::-;22496:30;;22537:38;22553:4;22559:7;22568:6;22537:15;:38::i;:::-;22586:27;22596:4;22602:2;22606:6;22586:9;:27::i;:::-;22631:4;22624:11;;;22346:297;;;;;:::o;32379:160::-;32470:4;15745:13;:11;:13::i;:::-;32504:5:::1;32492:9;;:17;;;;;;;;;;;;;;;;;;32527:4;32520:11;;32379:160:::0;;;:::o;20229:92::-;20287:5;20312:1;20305:8;;20229:92;:::o;26920:38::-;;;:::o;32547:318::-;32657:4;15745:13;:11;:13::i;:::-;32715:3:::1;32696:14;32688:7;:22;;;;:::i;:::-;32687:31;;32679:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;32788:7;32779:6;:16;;;;32819:14;32806:10;:27;;;;32853:4;32846:11;;32547:318:::0;;;;:::o;19413:177::-;19532:7;19564:9;:18;19574:7;19564:18;;;;;;;;;;;;;;;;19557:25;;19413:177;;;:::o;16507:103::-;15745:13;:11;:13::i;:::-;16572:30:::1;16599:1;16572:18;:30::i;:::-;16507:103::o:0;26649:58::-;;;;:::o;15859:87::-;15905:7;15932:6;;;;;;;;;;;15925:13;;15859:87;:::o;19072:106::-;19130:13;19163:7;19156:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19072:106;:::o;33042:177::-;33137:4;15745:13;:11;:13::i;:::-;33177:10:::1;33159:15;:28;;;;33207:4;33200:11;;33042:177:::0;;;:::o;32873:161::-;32960:4;15745:13;:11;:13::i;:::-;32996:6:::1;32982:11;:20;;;;33022:4;33015:11;;32873:161:::0;;;:::o;20966:236::-;21083:4;21105:13;21121:12;:10;:12::i;:::-;21105:28;;21144;21154:5;21161:2;21165:6;21144:9;:28::i;:::-;21190:4;21183:11;;;20966:236;;;;:::o;26714:62::-;;;;:::o;20559:201::-;20693:7;20725:11;:18;20737:5;20725:18;;;;;;;;;;;;;;;:27;20744:7;20725:27;;;;;;;;;;;;;;;;20718:34;;20559:201;;;;:::o;16765:238::-;15745:13;:11;:13::i;:::-;16888:1:::1;16868:22;;:8;:22;;::::0;16846:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16967:28;16986:8;16967:18;:28::i;:::-;16765:238:::0;:::o;14652:98::-;14705:7;14732:10;14725:17;;14652:98;:::o;24399:380::-;24552:1;24535:19;;:5;:19;;;24527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24633:1;24614:21;;:7;:21;;;24606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24717:6;24687:11;:18;24699:5;24687:18;;;;;;;;;;;;;;;:27;24706:7;24687:27;;;;;;;;;;;;;;;:36;;;;24755:7;24739:32;;24748:5;24739:32;;;24764:6;24739:32;;;;;;:::i;:::-;;;;;;;;24399:380;;;:::o;25070:502::-;25205:24;25232:25;25242:5;25249:7;25232:9;:25::i;:::-;25205:52;;25292:17;25272:16;:37;25268:297;;25372:6;25352:16;:26;;25326:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;25487:51;25496:5;25503:7;25531:6;25512:16;:25;25487:8;:51::i;:::-;25268:297;25194:378;25070:502;;;:::o;28850:2129::-;28964:1;28948:18;;:4;:18;;;28940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29041:1;29027:16;;:2;:16;;;29019:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29121:6;29102:15;29112:4;29102:9;:15::i;:::-;:25;;29094:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;29196:13;29188:21;;:4;:21;;;:44;;;;29219:13;29213:19;;:2;:19;;;29188:44;29187:67;;;;;29238:16;;;;;;;;;;;29237:17;29187:67;29183:1789;;;29283:13;29275:21;;:4;:21;;;29271:680;;29317:32;29379:18;;29352:24;29370:4;29352:9;:24::i;:::-;:45;;;;:::i;:::-;29317:80;;29448:30;;29420:24;:58;29416:154;;29503:47;29519:30;;29503:15;:47::i;:::-;29416:154;29616:24;;29593:18;;29592:48;29588:348;;29665:43;29683:24;;29665:17;:43::i;:::-;29753:24;;29731:18;;:46;;;;;;;:::i;:::-;;;;;;;;29800:9;29820;;;;;;;;;;;29812:23;;:46;29836:21;29812:46;;;;;;;;;;;;;;;;;;;;;;;29800:58;;29889:4;29881:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;29642:294;29588:348;29298:653;29271:680;29967:22;30008:18;:24;30027:4;30008:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;30036:18;:22;30055:2;30036:22;;;;;;;;;;;;;;;;;;;;;;;;;30008:50;30004:825;;;30096:6;30079:23;;30004:825;;;30175:11;;30165:6;:21;;30157:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;30278:13;30270:21;;:4;:21;;;30267:178;;30351:15;;30333:13;30343:2;30333:9;:13::i;:::-;30324:6;:22;;;;:::i;:::-;30323:43;;30315:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;30267:178;30465:22;30515:3;30501:10;;30492:6;:19;;;;:::i;:::-;30491:27;;;;:::i;:::-;30465:54;;30538:22;30584:3;30574:6;;30565;:15;;;;:::i;:::-;30564:23;;;;:::i;:::-;30538:50;;30651:14;30634;:31;;;;:::i;:::-;30624:6;:42;;;;:::i;:::-;30607:59;;30707:14;30685:18;;:36;;;;;;;:::i;:::-;;;;;;;;30742:71;30758:4;30772;30797:14;30780;:31;;;;:::i;:::-;30742:15;:71::i;:::-;30138:691;;30004:825;30843:41;30859:4;30865:2;30869:14;30843:15;:41::i;:::-;29256:1640;29183:1789;;;30927:33;30943:4;30949:2;30953:6;30927:15;:33::i;:::-;29183:1789;28850:2129;;;:::o;16024:132::-;16099:12;:10;:12::i;:::-;16088:23;;:7;:5;:7::i;:::-;:23;;;16080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16024:132::o;17163:191::-;17237:16;17256:6;;;;;;;;;;;17237:25;;17282:8;17273:6;;:17;;;;;;;;;;;;;;;;;;17337:8;17306:40;;17327:8;17306:40;;;;;;;;;;;;17226:128;17163:191;:::o;30987:474::-;27452:4;27433:16;;:23;;;;;;;;;;;;;;;;;;31073:12:::1;31112:1;31089:20;:24;;;;:::i;:::-;31073:41;;31125:17;31169:4;31146:20;:27;;;;:::i;:::-;31125:49;;31187:22;31212:21;31187:46;;31246:23;31264:4;31246:17;:23::i;:::-;31282:18;31328:14;31304:21;:38;;;;:::i;:::-;31282:61;;31356:36;31370:9;31381:10;31356:13;:36::i;:::-;31410:43;31425:4;31431:10;31443:9;31410:43;;;;;;;;:::i;:::-;;;;;;;;31062:399;;;;27498:5:::0;27479:16;;:24;;;;;;;;;;;;;;;;;;30987:474;:::o;31469:496::-;27452:4;27433:16;;:23;;;;;;;;;;;;;;;;;;31548:21:::1;31586:1;31572:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31548:40;;31617:4;31599;31604:1;31599:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;31643:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31633:4;31638:1;31633:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;31678:62;31695:4;31710:15;31728:11;31678:8;:62::i;:::-;31753:15;:66;;;31834:11;31860:1;31876:4;31903;31942:3;31924:15;:21;;;;:::i;:::-;31753:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;31537:428;27498:5:::0;27479:16;;:24;;;;;;;;;;;;;;;;;;31469:496;:::o;25580:776::-;25727:1;25711:18;;:4;:18;;;25703:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25804:1;25790:16;;:2;:16;;;25782:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;25859:19;25881:9;:15;25891:4;25881:15;;;;;;;;;;;;;;;;25859:37;;25944:6;25929:11;:21;;25907:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26084:6;26070:11;:20;26052:9;:15;26062:4;26052:15;;;;;;;;;;;;;;;:38;;;;26287:6;26270:9;:13;26280:2;26270:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;26337:2;26322:26;;26331:4;26322:26;;;26341:6;26322:26;;;;;;:::i;:::-;;;;;;;;25692:664;25580:776;;;:::o;31973:398::-;27452:4;27433:16;;:23;;;;;;;;;;;;;;;;;;32090:62:::1;32107:4;32122:15;32140:11;32090:8;:62::i;:::-;32165:15;:31;;;32204:9;32237:4;32257:11;32283:1;32299::::0;32315:7:::1;:5;:7::i;:::-;32337:15;32165:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;27498:5:::0;27479:16;;:24;;;;;;;;;;;;;;;;;;31973:398;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:329::-;5455:6;5504:2;5492:9;5483:7;5479:23;5475:32;5472:119;;;5510:79;;:::i;:::-;5472:119;5630:1;5655:53;5700:7;5691:6;5680:9;5676:22;5655:53;:::i;:::-;5645:63;;5601:117;5396:329;;;;:::o;5731:86::-;5766:7;5806:4;5799:5;5795:16;5784:27;;5731:86;;;:::o;5823:112::-;5906:22;5922:5;5906:22;:::i;:::-;5901:3;5894:35;5823:112;;:::o;5941:214::-;6030:4;6068:2;6057:9;6053:18;6045:26;;6081:67;6145:1;6134:9;6130:17;6121:6;6081:67;:::i;:::-;5941:214;;;;:::o;6161:118::-;6248:24;6266:5;6248:24;:::i;:::-;6243:3;6236:37;6161:118;;:::o;6285:222::-;6378:4;6416:2;6405:9;6401:18;6393:26;;6429:71;6497:1;6486:9;6482:17;6473:6;6429:71;:::i;:::-;6285:222;;;;:::o;6513:474::-;6581:6;6589;6638:2;6626:9;6617:7;6613:23;6609:32;6606:119;;;6644:79;;:::i;:::-;6606:119;6764:1;6789:53;6834:7;6825:6;6814:9;6810:22;6789:53;:::i;:::-;6779:63;;6735:117;6891:2;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6862:118;6513:474;;;;;:::o;6993:329::-;7052:6;7101:2;7089:9;7080:7;7076:23;7072:32;7069:119;;;7107:79;;:::i;:::-;7069:119;7227:1;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7198:117;6993:329;;;;:::o;7328:474::-;7396:6;7404;7453:2;7441:9;7432:7;7428:23;7424:32;7421:119;;;7459:79;;:::i;:::-;7421:119;7579:1;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7550:117;7706:2;7732:53;7777:7;7768:6;7757:9;7753:22;7732:53;:::i;:::-;7722:63;;7677:118;7328:474;;;;;:::o;7808:180::-;7856:77;7853:1;7846:88;7953:4;7950:1;7943:15;7977:4;7974:1;7967:15;7994:320;8038:6;8075:1;8069:4;8065:12;8055:22;;8122:1;8116:4;8112:12;8143:18;8133:81;;8199:4;8191:6;8187:17;8177:27;;8133:81;8261:2;8253:6;8250:14;8230:18;8227:38;8224:84;;8280:18;;:::i;:::-;8224:84;8045:269;7994:320;;;:::o;8320:180::-;8368:77;8365:1;8358:88;8465:4;8462:1;8455:15;8489:4;8486:1;8479:15;8506:191;8546:3;8565:20;8583:1;8565:20;:::i;:::-;8560:25;;8599:20;8617:1;8599:20;:::i;:::-;8594:25;;8642:1;8639;8635:9;8628:16;;8663:3;8660:1;8657:10;8654:36;;;8670:18;;:::i;:::-;8654:36;8506:191;;;;:::o;8703:232::-;8843:34;8839:1;8831:6;8827:14;8820:58;8912:15;8907:2;8899:6;8895:15;8888:40;8703:232;:::o;8941:366::-;9083:3;9104:67;9168:2;9163:3;9104:67;:::i;:::-;9097:74;;9180:93;9269:3;9180:93;:::i;:::-;9298:2;9293:3;9289:12;9282:19;;8941:366;;;:::o;9313:419::-;9479:4;9517:2;9506:9;9502:18;9494:26;;9566:9;9560:4;9556:20;9552:1;9541:9;9537:17;9530:47;9594:131;9720:4;9594:131;:::i;:::-;9586:139;;9313:419;;;:::o;9738:225::-;9878:34;9874:1;9866:6;9862:14;9855:58;9947:8;9942:2;9934:6;9930:15;9923:33;9738:225;:::o;9969:366::-;10111:3;10132:67;10196:2;10191:3;10132:67;:::i;:::-;10125:74;;10208:93;10297:3;10208:93;:::i;:::-;10326:2;10321:3;10317:12;10310:19;;9969:366;;;:::o;10341:419::-;10507:4;10545:2;10534:9;10530:18;10522:26;;10594:9;10588:4;10584:20;10580:1;10569:9;10565:17;10558:47;10622:131;10748:4;10622:131;:::i;:::-;10614:139;;10341:419;;;:::o;10766:223::-;10906:34;10902:1;10894:6;10890:14;10883:58;10975:6;10970:2;10962:6;10958:15;10951:31;10766:223;:::o;10995:366::-;11137:3;11158:67;11222:2;11217:3;11158:67;:::i;:::-;11151:74;;11234:93;11323:3;11234:93;:::i;:::-;11352:2;11347:3;11343:12;11336:19;;10995:366;;;:::o;11367:419::-;11533:4;11571:2;11560:9;11556:18;11548:26;;11620:9;11614:4;11610:20;11606:1;11595:9;11591:17;11584:47;11648:131;11774:4;11648:131;:::i;:::-;11640:139;;11367:419;;;:::o;11792:221::-;11932:34;11928:1;11920:6;11916:14;11909:58;12001:4;11996:2;11988:6;11984:15;11977:29;11792:221;:::o;12019:366::-;12161:3;12182:67;12246:2;12241:3;12182:67;:::i;:::-;12175:74;;12258:93;12347:3;12258:93;:::i;:::-;12376:2;12371:3;12367:12;12360:19;;12019:366;;;:::o;12391:419::-;12557:4;12595:2;12584:9;12580:18;12572:26;;12644:9;12638:4;12634:20;12630:1;12619:9;12615:17;12608:47;12672:131;12798:4;12672:131;:::i;:::-;12664:139;;12391:419;;;:::o;12816:179::-;12956:31;12952:1;12944:6;12940:14;12933:55;12816:179;:::o;13001:366::-;13143:3;13164:67;13228:2;13223:3;13164:67;:::i;:::-;13157:74;;13240:93;13329:3;13240:93;:::i;:::-;13358:2;13353:3;13349:12;13342:19;;13001:366;;;:::o;13373:419::-;13539:4;13577:2;13566:9;13562:18;13554:26;;13626:9;13620:4;13616:20;13612:1;13601:9;13597:17;13590:47;13654:131;13780:4;13654:131;:::i;:::-;13646:139;;13373:419;;;:::o;13798:224::-;13938:34;13934:1;13926:6;13922:14;13915:58;14007:7;14002:2;13994:6;13990:15;13983:32;13798:224;:::o;14028:366::-;14170:3;14191:67;14255:2;14250:3;14191:67;:::i;:::-;14184:74;;14267:93;14356:3;14267:93;:::i;:::-;14385:2;14380:3;14376:12;14369:19;;14028:366;;;:::o;14400:419::-;14566:4;14604:2;14593:9;14589:18;14581:26;;14653:9;14647:4;14643:20;14639:1;14628:9;14624:17;14617:47;14681:131;14807:4;14681:131;:::i;:::-;14673:139;;14400:419;;;:::o;14825:222::-;14965:34;14961:1;14953:6;14949:14;14942:58;15034:5;15029:2;15021:6;15017:15;15010:30;14825:222;:::o;15053:366::-;15195:3;15216:67;15280:2;15275:3;15216:67;:::i;:::-;15209:74;;15292:93;15381:3;15292:93;:::i;:::-;15410:2;15405:3;15401:12;15394:19;;15053:366;;;:::o;15425:419::-;15591:4;15629:2;15618:9;15614:18;15606:26;;15678:9;15672:4;15668:20;15664:1;15653:9;15649:17;15642:47;15706:131;15832:4;15706:131;:::i;:::-;15698:139;;15425:419;;;:::o;15850:225::-;15990:34;15986:1;15978:6;15974:14;15967:58;16059:8;16054:2;16046:6;16042:15;16035:33;15850:225;:::o;16081:366::-;16223:3;16244:67;16308:2;16303:3;16244:67;:::i;:::-;16237:74;;16320:93;16409:3;16320:93;:::i;:::-;16438:2;16433:3;16429:12;16422:19;;16081:366;;;:::o;16453:419::-;16619:4;16657:2;16646:9;16642:18;16634:26;;16706:9;16700:4;16696:20;16692:1;16681:9;16677:17;16670:47;16734:131;16860:4;16734:131;:::i;:::-;16726:139;;16453:419;;;:::o;16878:194::-;16918:4;16938:20;16956:1;16938:20;:::i;:::-;16933:25;;16972:20;16990:1;16972:20;:::i;:::-;16967:25;;17016:1;17013;17009:9;17001:17;;17040:1;17034:4;17031:11;17028:37;;;17045:18;;:::i;:::-;17028:37;16878:194;;;;:::o;17078:168::-;17218:20;17214:1;17206:6;17202:14;17195:44;17078:168;:::o;17252:366::-;17394:3;17415:67;17479:2;17474:3;17415:67;:::i;:::-;17408:74;;17491:93;17580:3;17491:93;:::i;:::-;17609:2;17604:3;17600:12;17593:19;;17252:366;;;:::o;17624:419::-;17790:4;17828:2;17817:9;17813:18;17805:26;;17877:9;17871:4;17867:20;17863:1;17852:9;17848:17;17841:47;17905:131;18031:4;17905:131;:::i;:::-;17897:139;;17624:419;;;:::o;18049:244::-;18189:34;18185:1;18177:6;18173:14;18166:58;18258:27;18253:2;18245:6;18241:15;18234:52;18049:244;:::o;18299:366::-;18441:3;18462:67;18526:2;18521:3;18462:67;:::i;:::-;18455:74;;18538:93;18627:3;18538:93;:::i;:::-;18656:2;18651:3;18647:12;18640:19;;18299:366;;;:::o;18671:419::-;18837:4;18875:2;18864:9;18860:18;18852:26;;18924:9;18918:4;18914:20;18910:1;18899:9;18895:17;18888:47;18952:131;19078:4;18952:131;:::i;:::-;18944:139;;18671:419;;;:::o;19096:241::-;19236:34;19232:1;19224:6;19220:14;19213:58;19305:24;19300:2;19292:6;19288:15;19281:49;19096:241;:::o;19343:366::-;19485:3;19506:67;19570:2;19565:3;19506:67;:::i;:::-;19499:74;;19582:93;19671:3;19582:93;:::i;:::-;19700:2;19695:3;19691:12;19684:19;;19343:366;;;:::o;19715:419::-;19881:4;19919:2;19908:9;19904:18;19896:26;;19968:9;19962:4;19958:20;19954:1;19943:9;19939:17;19932:47;19996:131;20122:4;19996:131;:::i;:::-;19988:139;;19715:419;;;:::o;20140:410::-;20180:7;20203:20;20221:1;20203:20;:::i;:::-;20198:25;;20237:20;20255:1;20237:20;:::i;:::-;20232:25;;20292:1;20289;20285:9;20314:30;20332:11;20314:30;:::i;:::-;20303:41;;20493:1;20484:7;20480:15;20477:1;20474:22;20454:1;20447:9;20427:83;20404:139;;20523:18;;:::i;:::-;20404:139;20188:362;20140:410;;;;:::o;20556:180::-;20604:77;20601:1;20594:88;20701:4;20698:1;20691:15;20725:4;20722:1;20715:15;20742:185;20782:1;20799:20;20817:1;20799:20;:::i;:::-;20794:25;;20833:20;20851:1;20833:20;:::i;:::-;20828:25;;20872:1;20862:35;;20877:18;;:::i;:::-;20862:35;20919:1;20916;20912:9;20907:14;;20742:185;;;;:::o;20933:182::-;21073:34;21069:1;21061:6;21057:14;21050:58;20933:182;:::o;21121:366::-;21263:3;21284:67;21348:2;21343:3;21284:67;:::i;:::-;21277:74;;21360:93;21449:3;21360:93;:::i;:::-;21478:2;21473:3;21469:12;21462:19;;21121:366;;;:::o;21493:419::-;21659:4;21697:2;21686:9;21682:18;21674:26;;21746:9;21740:4;21736:20;21732:1;21721:9;21717:17;21710:47;21774:131;21900:4;21774:131;:::i;:::-;21766:139;;21493:419;;;:::o;21918:442::-;22067:4;22105:2;22094:9;22090:18;22082:26;;22118:71;22186:1;22175:9;22171:17;22162:6;22118:71;:::i;:::-;22199:72;22267:2;22256:9;22252:18;22243:6;22199:72;:::i;:::-;22281;22349:2;22338:9;22334:18;22325:6;22281:72;:::i;:::-;21918:442;;;;;;:::o;22366:180::-;22414:77;22411:1;22404:88;22511:4;22508:1;22501:15;22535:4;22532:1;22525:15;22552:180;22600:77;22597:1;22590:88;22697:4;22694:1;22687:15;22721:4;22718:1;22711:15;22738:143;22795:5;22826:6;22820:13;22811:22;;22842:33;22869:5;22842:33;:::i;:::-;22738:143;;;;:::o;22887:351::-;22957:6;23006:2;22994:9;22985:7;22981:23;22977:32;22974:119;;;23012:79;;:::i;:::-;22974:119;23132:1;23157:64;23213:7;23204:6;23193:9;23189:22;23157:64;:::i;:::-;23147:74;;23103:128;22887:351;;;;:::o;23244:85::-;23289:7;23318:5;23307:16;;23244:85;;;:::o;23335:158::-;23393:9;23426:61;23444:42;23453:32;23479:5;23453:32;:::i;:::-;23444:42;:::i;:::-;23426:61;:::i;:::-;23413:74;;23335:158;;;:::o;23499:147::-;23594:45;23633:5;23594:45;:::i;:::-;23589:3;23582:58;23499:147;;:::o;23652:114::-;23719:6;23753:5;23747:12;23737:22;;23652:114;;;:::o;23772:184::-;23871:11;23905:6;23900:3;23893:19;23945:4;23940:3;23936:14;23921:29;;23772:184;;;;:::o;23962:132::-;24029:4;24052:3;24044:11;;24082:4;24077:3;24073:14;24065:22;;23962:132;;;:::o;24100:108::-;24177:24;24195:5;24177:24;:::i;:::-;24172:3;24165:37;24100:108;;:::o;24214:179::-;24283:10;24304:46;24346:3;24338:6;24304:46;:::i;:::-;24382:4;24377:3;24373:14;24359:28;;24214:179;;;;:::o;24399:113::-;24469:4;24501;24496:3;24492:14;24484:22;;24399:113;;;:::o;24548:732::-;24667:3;24696:54;24744:5;24696:54;:::i;:::-;24766:86;24845:6;24840:3;24766:86;:::i;:::-;24759:93;;24876:56;24926:5;24876:56;:::i;:::-;24955:7;24986:1;24971:284;24996:6;24993:1;24990:13;24971:284;;;25072:6;25066:13;25099:63;25158:3;25143:13;25099:63;:::i;:::-;25092:70;;25185:60;25238:6;25185:60;:::i;:::-;25175:70;;25031:224;25018:1;25015;25011:9;25006:14;;24971:284;;;24975:14;25271:3;25264:10;;24672:608;;;24548:732;;;;:::o;25286:831::-;25549:4;25587:3;25576:9;25572:19;25564:27;;25601:71;25669:1;25658:9;25654:17;25645:6;25601:71;:::i;:::-;25682:80;25758:2;25747:9;25743:18;25734:6;25682:80;:::i;:::-;25809:9;25803:4;25799:20;25794:2;25783:9;25779:18;25772:48;25837:108;25940:4;25931:6;25837:108;:::i;:::-;25829:116;;25955:72;26023:2;26012:9;26008:18;25999:6;25955:72;:::i;:::-;26037:73;26105:3;26094:9;26090:19;26081:6;26037:73;:::i;:::-;25286:831;;;;;;;;:::o;26123:807::-;26372:4;26410:3;26399:9;26395:19;26387:27;;26424:71;26492:1;26481:9;26477:17;26468:6;26424:71;:::i;:::-;26505:72;26573:2;26562:9;26558:18;26549:6;26505:72;:::i;:::-;26587:80;26663:2;26652:9;26648:18;26639:6;26587:80;:::i;:::-;26677;26753:2;26742:9;26738:18;26729:6;26677:80;:::i;:::-;26767:73;26835:3;26824:9;26820:19;26811:6;26767:73;:::i;:::-;26850;26918:3;26907:9;26903:19;26894:6;26850:73;:::i;:::-;26123:807;;;;;;;;;:::o;26936:143::-;26993:5;27024:6;27018:13;27009:22;;27040:33;27067:5;27040:33;:::i;:::-;26936:143;;;;:::o;27085:663::-;27173:6;27181;27189;27238:2;27226:9;27217:7;27213:23;27209:32;27206:119;;;27244:79;;:::i;:::-;27206:119;27364:1;27389:64;27445:7;27436:6;27425:9;27421:22;27389:64;:::i;:::-;27379:74;;27335:128;27502:2;27528:64;27584:7;27575:6;27564:9;27560:22;27528:64;:::i;:::-;27518:74;;27473:129;27641:2;27667:64;27723:7;27714:6;27703:9;27699:22;27667:64;:::i;:::-;27657:74;;27612:129;27085:663;;;;;:::o

Swarm Source

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