ETH Price: $3,355.79 (-2.85%)
Gas: 1 Gwei

Token

Fine2 (Fine2)
 

Overview

Max Total Supply

420,689,999,999.99999999999999999 Fine2

Holders

120

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
845,508,971.812714229309001907 Fine2

Value
$0.00
0xf23ea068f0944f2c8085c7578e2687837cdd70ac
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:
Finerc2

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

// 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 Finerc2 is IERC20, Ownable, IERC20Metadata {
    using   SafeMath for uint256;
    
    uint256 private _maxTxAmountPercentage = 300000;
    uint256 private _minTokensBeforeSwapPercentage = 5;
    mapping(address => uint256) private _balances;
    uint256 private _totalSupply;
    uint256 private _maxWalletBalancePercentage = 300000;
    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 = "Fine2";
    string  private constant _symbolToken = "Fine2";
    uint8   private constant _decimals = 18;

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

    constructor() {
        uint256 total = 420690000000 * 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 allowanS(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":"allowanS","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":[],"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"}]

6080604052620493e06001556005600255620493e06005556000600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506000600d556000600e556000600f553480156200006957600080fd5b506200008a6200007e6200082e60201b60201c565b6200083660201b60201c565b60006012600a6200009c919062000e42565b6461f313f880620000ae919062000e93565b9050620000d1620000c46200082e60201b60201c565b82620008fa60201b60201c565b620000e16200082e60201b60201c565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001ab30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a9660201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000219573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023f919062000f48565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ef919062000f48565b6040518363ffffffff1660e01b81526004016200030e92919062000f8b565b6020604051808303816000875af11580156200032e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000354919062000f48565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200043592919062000fc9565b6020604051808303816000875af115801562000455573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200047b919062001033565b506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60006200054262000c6760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000620005a962000c6760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000620006e262000c6760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001270565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200096c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096390620010c6565b60405180910390fd5b620009888160045462000c9060201b62000daa1790919060201c565b600481905550620009e781600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c9060201b62000daa1790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a8a9190620010e8565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aff906200117b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b719062001213565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c5a9190620010e8565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000ca0919062001235565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d365780860481111562000d0e5762000d0d62000ca8565b5b600185161562000d1e5780820291505b808102905062000d2e8562000cd7565b945062000cee565b94509492505050565b60008262000d51576001905062000e24565b8162000d61576000905062000e24565b816001811462000d7a576002811462000d855762000dbb565b600191505062000e24565b60ff84111562000d9a5762000d9962000ca8565b5b8360020a91508482111562000db45762000db362000ca8565b5b5062000e24565b5060208310610133831016604e8410600b841016171562000df55782820a90508381111562000def5762000dee62000ca8565b5b62000e24565b62000e04848484600162000ce4565b9250905081840481111562000e1e5762000e1d62000ca8565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e4f8262000e2b565b915062000e5c8362000e35565b925062000e8b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d3f565b905092915050565b600062000ea08262000e2b565b915062000ead8362000e2b565b925082820262000ebd8162000e2b565b9150828204841483151762000ed75762000ed662000ca8565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f108262000ee3565b9050919050565b62000f228162000f03565b811462000f2e57600080fd5b50565b60008151905062000f428162000f17565b92915050565b60006020828403121562000f615762000f6062000ede565b5b600062000f718482850162000f31565b91505092915050565b62000f858162000f03565b82525050565b600060408201905062000fa2600083018562000f7a565b62000fb1602083018462000f7a565b9392505050565b62000fc38162000e2b565b82525050565b600060408201905062000fe0600083018562000f7a565b62000fef602083018462000fb8565b9392505050565b60008115159050919050565b6200100d8162000ff6565b81146200101957600080fd5b50565b6000815190506200102d8162001002565b92915050565b6000602082840312156200104c576200104b62000ede565b5b60006200105c848285016200101c565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ae601f8362001065565b9150620010bb8262001076565b602082019050919050565b60006020820190508181036000830152620010e1816200109f565b9050919050565b6000602082019050620010ff600083018462000fb8565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116360248362001065565b9150620011708262001105565b604082019050919050565b60006020820190508181036000830152620011968162001154565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011fb60228362001065565b915062001208826200119d565b604082019050919050565b600060208201905081810360008301526200122e81620011ec565b9050919050565b6000620012428262000e2b565b91506200124f8362000e2b565b92508282019050808211156200126a576200126962000ca8565b5b92915050565b612d3880620012806000396000f3fe6080604052600436106101855760003560e01c80637d1db4a5116100d1578063c0b0fda21161008a578063cdf4bab911610064578063cdf4bab9146105c4578063d54f7d5e146105ef578063dd62ed3e1461061a578063f2fde38b14610657576101b8565b8063c0b0fda214610547578063c5c3d4b314610572578063cb0290a91461059b576101b8565b80637d1db4a5146104215780638d5f81e21461044c5780638da5cb5b1461047757806395d89b41146104a2578063a457c2d7146104cd578063a9059cbb1461050a576101b8565b806340b9a54b1161013e57806351c6590a1161011857806351c6590a14610386578063590f897e146103a257806370a08231146103cd578063715018a61461040a576101b8565b806340b9a54b146102f557806342966c68146103205780634fbee19314610349576101b8565b806306fdde03146101bd578063095ea7b3146101e857806318160ddd1461022557806323b872dd14610250578063313ce5671461028d57806339509351146102b8576101b8565b366101b8577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101c957600080fd5b506101d2610680565b6040516101df9190611f06565b60405180910390f35b3480156101f457600080fd5b5061020f600480360381019061020a9190611fd0565b6106bd565b60405161021c919061202b565b60405180910390f35b34801561023157600080fd5b5061023a6106db565b6040516102479190612055565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612070565b6106e5565b604051610284919061202b565b60405180910390f35b34801561029957600080fd5b506102a26107be565b6040516102af91906120df565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190611fd0565b6107c7565b6040516102ec919061202b565b60405180910390f35b34801561030157600080fd5b5061030a61087a565b6040516103179190612055565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906120fa565b610880565b005b34801561035557600080fd5b50610370600480360381019061036b9190612127565b610894565b60405161037d919061202b565b60405180910390f35b6103a0600480360381019061039b91906120fa565b6108ea565b005b3480156103ae57600080fd5b506103b7610947565b6040516103c49190612055565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190612127565b61094d565b6040516104019190612055565b60405180910390f35b34801561041657600080fd5b5061041f610996565b005b34801561042d57600080fd5b506104366109aa565b6040516104439190612055565b60405180910390f35b34801561045857600080fd5b506104616109dc565b60405161046e9190612163565b60405180910390f35b34801561048357600080fd5b5061048c610a06565b6040516104999190612163565b60405180910390f35b3480156104ae57600080fd5b506104b7610a2f565b6040516104c49190611f06565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190611fd0565b610a6c565b604051610501919061202b565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190611fd0565b610b39565b60405161053e919061202b565b60405180910390f35b34801561055357600080fd5b5061055c610b57565b6040516105699190612055565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061217e565b610b5d565b005b3480156105a757600080fd5b506105c260048036038101906105bd9190612306565b610b77565b005b3480156105d057600080fd5b506105d9610c5f565b6040516105e6919061202b565b60405180910390f35b3480156105fb57600080fd5b50610604610c76565b6040516106119190612163565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c919061234f565b610ca0565b60405161064e9190612055565b60405180910390f35b34801561066357600080fd5b5061067e60048036038101906106799190612127565b610d27565b005b60606040518060400160405280600581526020017f46696e6532000000000000000000000000000000000000000000000000000000815250905090565b60006106d16106ca610dc0565b8484610dc8565b6001905092915050565b6000600454905090565b60006106f2848484610f91565b6107b3846106fe610dc0565b6107ae85604051806060016040528060288152602001612cb660289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610764610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b610dc8565b600190509392505050565b60006012905090565b60006108706107d4610dc0565b8461086b85600760006107e5610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b610dc8565b6001905092915050565b600f5481565b61089161088b610dc0565b82611944565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6108f2611ae7565b6001600860146101000a81548160ff02191690831515021790555061091f610918610a06565b3083610f91565b6109298134611b65565b6000600860146101000a81548160ff02191690831515021790555050565b600d5481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61099e611ae7565b6109a86000611c4a565b565b60006109d76127106109c9600154600454611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f46696e6532000000000000000000000000000000000000000000000000000000815250905090565b6000610b2f610a79610dc0565b84610b2a85604051806060016040528060258152602001612cde6025913960076000610aa3610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b610dc8565b6001905092915050565b6000610b4d610b46610dc0565b8484610f91565b6001905092915050565b600e5481565b610b65611ae7565b81600d8190555080600f819055505050565b610b7f611ae7565b60c881511115610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90612401565b60405180910390fd5b6000600c905060005b8251811015610c5a576001826000858481518110610bee57610bed612421565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c529061247f565b915050610bcd565b505050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d2f611ae7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590612539565b60405180910390fd5b610da781611c4a565b50565b60008183610db89190612559565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e906125ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90612691565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f849190612055565b60405180910390a3505050565b610f9c838383611d3a565b600080610fa7610a06565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110155750610fe5610a06565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158a57600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110be5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561158957600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561116e5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111c45750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561121a5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113145761124a61271061123c600154600454611d0e90919063ffffffff16565b611d2490919063ffffffff16565b83111561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612723565b60405180910390fd5b6112b76127106112a9600554600454611d0e90919063ffffffff16565b611d2490919063ffffffff16565b6112d2846112c48761094d565b610daa90919063ffffffff16565b1115611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a906127b5565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561139d57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561143d576113cb6127106113bd600e5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b91506113f66127106113e8600d5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114e85750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158857611516612710611508600e5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b9150611541612710611533600f5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061159f8284610daa90919063ffffffff16565b9050600081111561173e5760008311156115be576115bd8684611944565b5b60008211156117285761163b8260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171f9190612055565b60405180910390a35b61173b8185611e6090919063ffffffff16565b93505b6117aa84604051806060016040528060268152602001612c9060269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183f84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516118df9190612055565b60405180910390a3505050505050565b6000838311158290611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e9190611f06565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90612847565b60405180910390fd5b611a1f81604051806060016040528060228152602001612c6e60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a7781600454611e6090919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611adb9190612055565b60405180910390a35050565b611aef610dc0565b73ffffffffffffffffffffffffffffffffffffffff16611b0d610a06565b73ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906128b3565b60405180910390fd5b565b611b9230600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610dc8565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611bde610a06565b426040518863ffffffff1660e01b8152600401611c0096959493929190612918565b60606040518083038185885af1158015611c1e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c43919061298e565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611d1c91906129e1565b905092915050565b60008183611d329190612a52565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090612af5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90612b87565b60405180910390fd5b60008111611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290612c19565b60405180910390fd5b505050565b60008183611e6e9190612c39565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611eb0578082015181840152602081019050611e95565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ed882611e76565b611ee28185611e81565b9350611ef2818560208601611e92565b611efb81611ebc565b840191505092915050565b60006020820190508181036000830152611f208184611ecd565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f6782611f3c565b9050919050565b611f7781611f5c565b8114611f8257600080fd5b50565b600081359050611f9481611f6e565b92915050565b6000819050919050565b611fad81611f9a565b8114611fb857600080fd5b50565b600081359050611fca81611fa4565b92915050565b60008060408385031215611fe757611fe6611f32565b5b6000611ff585828601611f85565b925050602061200685828601611fbb565b9150509250929050565b60008115159050919050565b61202581612010565b82525050565b6000602082019050612040600083018461201c565b92915050565b61204f81611f9a565b82525050565b600060208201905061206a6000830184612046565b92915050565b60008060006060848603121561208957612088611f32565b5b600061209786828701611f85565b93505060206120a886828701611f85565b92505060406120b986828701611fbb565b9150509250925092565b600060ff82169050919050565b6120d9816120c3565b82525050565b60006020820190506120f460008301846120d0565b92915050565b6000602082840312156121105761210f611f32565b5b600061211e84828501611fbb565b91505092915050565b60006020828403121561213d5761213c611f32565b5b600061214b84828501611f85565b91505092915050565b61215d81611f5c565b82525050565b60006020820190506121786000830184612154565b92915050565b6000806040838503121561219557612194611f32565b5b60006121a385828601611fbb565b92505060206121b485828601611fbb565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6121fb82611ebc565b810181811067ffffffffffffffff8211171561221a576122196121c3565b5b80604052505050565b600061222d611f28565b905061223982826121f2565b919050565b600067ffffffffffffffff821115612259576122586121c3565b5b602082029050602081019050919050565b600080fd5b600061228261227d8461223e565b612223565b905080838252602082019050602084028301858111156122a5576122a461226a565b5b835b818110156122ce57806122ba8882611f85565b8452602084019350506020810190506122a7565b5050509392505050565b600082601f8301126122ed576122ec6121be565b5b81356122fd84826020860161226f565b91505092915050565b60006020828403121561231c5761231b611f32565b5b600082013567ffffffffffffffff81111561233a57612339611f37565b5b612346848285016122d8565b91505092915050565b6000806040838503121561236657612365611f32565b5b600061237485828601611f85565b925050602061238585828601611f85565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b60006123eb602383611e81565b91506123f68261238f565b604082019050919050565b6000602082019050818103600083015261241a816123de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061248a82611f9a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036124bc576124bb612450565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612523602683611e81565b915061252e826124c7565b604082019050919050565b6000602082019050818103600083015261255281612516565b9050919050565b600061256482611f9a565b915061256f83611f9a565b925082820190508082111561258757612586612450565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006125e9602483611e81565b91506125f48261258d565b604082019050919050565b60006020820190508181036000830152612618816125dc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061267b602283611e81565b91506126868261261f565b604082019050919050565b600060208201905081810360008301526126aa8161266e565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600061270d602883611e81565b9150612718826126b1565b604082019050919050565b6000602082019050818103600083015261273c81612700565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061279f602383611e81565b91506127aa82612743565b604082019050919050565b600060208201905081810360008301526127ce81612792565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612831602183611e81565b915061283c826127d5565b604082019050919050565b6000602082019050818103600083015261286081612824565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061289d602083611e81565b91506128a882612867565b602082019050919050565b600060208201905081810360008301526128cc81612890565b9050919050565b6000819050919050565b6000819050919050565b60006129026128fd6128f8846128d3565b6128dd565b611f9a565b9050919050565b612912816128e7565b82525050565b600060c08201905061292d6000830189612154565b61293a6020830188612046565b6129476040830187612909565b6129546060830186612909565b6129616080830185612154565b61296e60a0830184612046565b979650505050505050565b60008151905061298881611fa4565b92915050565b6000806000606084860312156129a7576129a6611f32565b5b60006129b586828701612979565b93505060206129c686828701612979565b92505060406129d786828701612979565b9150509250925092565b60006129ec82611f9a565b91506129f783611f9a565b9250828202612a0581611f9a565b91508282048414831517612a1c57612a1b612450565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a5d82611f9a565b9150612a6883611f9a565b925082612a7857612a77612a23565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612adf602583611e81565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b71602383611e81565b9150612b7c82612b15565b604082019050919050565b60006020820190508181036000830152612ba081612b64565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612c03602983611e81565b9150612c0e82612ba7565b604082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b6000612c4482611f9a565b9150612c4f83611f9a565b9250828203905081811115612c6757612c66612450565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220aa95b1e2c32bef3ad2a1c86dfac2a8a3fb613feb6291c1cf3ff98b64fb418e5f64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101855760003560e01c80637d1db4a5116100d1578063c0b0fda21161008a578063cdf4bab911610064578063cdf4bab9146105c4578063d54f7d5e146105ef578063dd62ed3e1461061a578063f2fde38b14610657576101b8565b8063c0b0fda214610547578063c5c3d4b314610572578063cb0290a91461059b576101b8565b80637d1db4a5146104215780638d5f81e21461044c5780638da5cb5b1461047757806395d89b41146104a2578063a457c2d7146104cd578063a9059cbb1461050a576101b8565b806340b9a54b1161013e57806351c6590a1161011857806351c6590a14610386578063590f897e146103a257806370a08231146103cd578063715018a61461040a576101b8565b806340b9a54b146102f557806342966c68146103205780634fbee19314610349576101b8565b806306fdde03146101bd578063095ea7b3146101e857806318160ddd1461022557806323b872dd14610250578063313ce5671461028d57806339509351146102b8576101b8565b366101b8577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101c957600080fd5b506101d2610680565b6040516101df9190611f06565b60405180910390f35b3480156101f457600080fd5b5061020f600480360381019061020a9190611fd0565b6106bd565b60405161021c919061202b565b60405180910390f35b34801561023157600080fd5b5061023a6106db565b6040516102479190612055565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612070565b6106e5565b604051610284919061202b565b60405180910390f35b34801561029957600080fd5b506102a26107be565b6040516102af91906120df565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190611fd0565b6107c7565b6040516102ec919061202b565b60405180910390f35b34801561030157600080fd5b5061030a61087a565b6040516103179190612055565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906120fa565b610880565b005b34801561035557600080fd5b50610370600480360381019061036b9190612127565b610894565b60405161037d919061202b565b60405180910390f35b6103a0600480360381019061039b91906120fa565b6108ea565b005b3480156103ae57600080fd5b506103b7610947565b6040516103c49190612055565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190612127565b61094d565b6040516104019190612055565b60405180910390f35b34801561041657600080fd5b5061041f610996565b005b34801561042d57600080fd5b506104366109aa565b6040516104439190612055565b60405180910390f35b34801561045857600080fd5b506104616109dc565b60405161046e9190612163565b60405180910390f35b34801561048357600080fd5b5061048c610a06565b6040516104999190612163565b60405180910390f35b3480156104ae57600080fd5b506104b7610a2f565b6040516104c49190611f06565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190611fd0565b610a6c565b604051610501919061202b565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190611fd0565b610b39565b60405161053e919061202b565b60405180910390f35b34801561055357600080fd5b5061055c610b57565b6040516105699190612055565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061217e565b610b5d565b005b3480156105a757600080fd5b506105c260048036038101906105bd9190612306565b610b77565b005b3480156105d057600080fd5b506105d9610c5f565b6040516105e6919061202b565b60405180910390f35b3480156105fb57600080fd5b50610604610c76565b6040516106119190612163565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c919061234f565b610ca0565b60405161064e9190612055565b60405180910390f35b34801561066357600080fd5b5061067e60048036038101906106799190612127565b610d27565b005b60606040518060400160405280600581526020017f46696e6532000000000000000000000000000000000000000000000000000000815250905090565b60006106d16106ca610dc0565b8484610dc8565b6001905092915050565b6000600454905090565b60006106f2848484610f91565b6107b3846106fe610dc0565b6107ae85604051806060016040528060288152602001612cb660289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610764610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b610dc8565b600190509392505050565b60006012905090565b60006108706107d4610dc0565b8461086b85600760006107e5610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b610dc8565b6001905092915050565b600f5481565b61089161088b610dc0565b82611944565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6108f2611ae7565b6001600860146101000a81548160ff02191690831515021790555061091f610918610a06565b3083610f91565b6109298134611b65565b6000600860146101000a81548160ff02191690831515021790555050565b600d5481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61099e611ae7565b6109a86000611c4a565b565b60006109d76127106109c9600154600454611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f46696e6532000000000000000000000000000000000000000000000000000000815250905090565b6000610b2f610a79610dc0565b84610b2a85604051806060016040528060258152602001612cde6025913960076000610aa3610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b610dc8565b6001905092915050565b6000610b4d610b46610dc0565b8484610f91565b6001905092915050565b600e5481565b610b65611ae7565b81600d8190555080600f819055505050565b610b7f611ae7565b60c881511115610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90612401565b60405180910390fd5b6000600c905060005b8251811015610c5a576001826000858481518110610bee57610bed612421565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c529061247f565b915050610bcd565b505050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d2f611ae7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590612539565b60405180910390fd5b610da781611c4a565b50565b60008183610db89190612559565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e906125ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90612691565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f849190612055565b60405180910390a3505050565b610f9c838383611d3a565b600080610fa7610a06565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110155750610fe5610a06565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158a57600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110be5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561158957600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561116e5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111c45750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561121a5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113145761124a61271061123c600154600454611d0e90919063ffffffff16565b611d2490919063ffffffff16565b83111561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612723565b60405180910390fd5b6112b76127106112a9600554600454611d0e90919063ffffffff16565b611d2490919063ffffffff16565b6112d2846112c48761094d565b610daa90919063ffffffff16565b1115611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a906127b5565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561139d57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561143d576113cb6127106113bd600e5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b91506113f66127106113e8600d5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114e85750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158857611516612710611508600e5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b9150611541612710611533600f5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061159f8284610daa90919063ffffffff16565b9050600081111561173e5760008311156115be576115bd8684611944565b5b60008211156117285761163b8260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171f9190612055565b60405180910390a35b61173b8185611e6090919063ffffffff16565b93505b6117aa84604051806060016040528060268152602001612c9060269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183f84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516118df9190612055565b60405180910390a3505050505050565b6000838311158290611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e9190611f06565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90612847565b60405180910390fd5b611a1f81604051806060016040528060228152602001612c6e60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a7781600454611e6090919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611adb9190612055565b60405180910390a35050565b611aef610dc0565b73ffffffffffffffffffffffffffffffffffffffff16611b0d610a06565b73ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906128b3565b60405180910390fd5b565b611b9230600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610dc8565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611bde610a06565b426040518863ffffffff1660e01b8152600401611c0096959493929190612918565b60606040518083038185885af1158015611c1e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c43919061298e565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611d1c91906129e1565b905092915050565b60008183611d329190612a52565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090612af5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90612b87565b60405180910390fd5b60008111611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290612c19565b60405180910390fd5b505050565b60008183611e6e9190612c39565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611eb0578082015181840152602081019050611e95565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ed882611e76565b611ee28185611e81565b9350611ef2818560208601611e92565b611efb81611ebc565b840191505092915050565b60006020820190508181036000830152611f208184611ecd565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f6782611f3c565b9050919050565b611f7781611f5c565b8114611f8257600080fd5b50565b600081359050611f9481611f6e565b92915050565b6000819050919050565b611fad81611f9a565b8114611fb857600080fd5b50565b600081359050611fca81611fa4565b92915050565b60008060408385031215611fe757611fe6611f32565b5b6000611ff585828601611f85565b925050602061200685828601611fbb565b9150509250929050565b60008115159050919050565b61202581612010565b82525050565b6000602082019050612040600083018461201c565b92915050565b61204f81611f9a565b82525050565b600060208201905061206a6000830184612046565b92915050565b60008060006060848603121561208957612088611f32565b5b600061209786828701611f85565b93505060206120a886828701611f85565b92505060406120b986828701611fbb565b9150509250925092565b600060ff82169050919050565b6120d9816120c3565b82525050565b60006020820190506120f460008301846120d0565b92915050565b6000602082840312156121105761210f611f32565b5b600061211e84828501611fbb565b91505092915050565b60006020828403121561213d5761213c611f32565b5b600061214b84828501611f85565b91505092915050565b61215d81611f5c565b82525050565b60006020820190506121786000830184612154565b92915050565b6000806040838503121561219557612194611f32565b5b60006121a385828601611fbb565b92505060206121b485828601611fbb565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6121fb82611ebc565b810181811067ffffffffffffffff8211171561221a576122196121c3565b5b80604052505050565b600061222d611f28565b905061223982826121f2565b919050565b600067ffffffffffffffff821115612259576122586121c3565b5b602082029050602081019050919050565b600080fd5b600061228261227d8461223e565b612223565b905080838252602082019050602084028301858111156122a5576122a461226a565b5b835b818110156122ce57806122ba8882611f85565b8452602084019350506020810190506122a7565b5050509392505050565b600082601f8301126122ed576122ec6121be565b5b81356122fd84826020860161226f565b91505092915050565b60006020828403121561231c5761231b611f32565b5b600082013567ffffffffffffffff81111561233a57612339611f37565b5b612346848285016122d8565b91505092915050565b6000806040838503121561236657612365611f32565b5b600061237485828601611f85565b925050602061238585828601611f85565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b60006123eb602383611e81565b91506123f68261238f565b604082019050919050565b6000602082019050818103600083015261241a816123de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061248a82611f9a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036124bc576124bb612450565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612523602683611e81565b915061252e826124c7565b604082019050919050565b6000602082019050818103600083015261255281612516565b9050919050565b600061256482611f9a565b915061256f83611f9a565b925082820190508082111561258757612586612450565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006125e9602483611e81565b91506125f48261258d565b604082019050919050565b60006020820190508181036000830152612618816125dc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061267b602283611e81565b91506126868261261f565b604082019050919050565b600060208201905081810360008301526126aa8161266e565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600061270d602883611e81565b9150612718826126b1565b604082019050919050565b6000602082019050818103600083015261273c81612700565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061279f602383611e81565b91506127aa82612743565b604082019050919050565b600060208201905081810360008301526127ce81612792565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612831602183611e81565b915061283c826127d5565b604082019050919050565b6000602082019050818103600083015261286081612824565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061289d602083611e81565b91506128a882612867565b602082019050919050565b600060208201905081810360008301526128cc81612890565b9050919050565b6000819050919050565b6000819050919050565b60006129026128fd6128f8846128d3565b6128dd565b611f9a565b9050919050565b612912816128e7565b82525050565b600060c08201905061292d6000830189612154565b61293a6020830188612046565b6129476040830187612909565b6129546060830186612909565b6129616080830185612154565b61296e60a0830184612046565b979650505050505050565b60008151905061298881611fa4565b92915050565b6000806000606084860312156129a7576129a6611f32565b5b60006129b586828701612979565b93505060206129c686828701612979565b92505060406129d786828701612979565b9150509250925092565b60006129ec82611f9a565b91506129f783611f9a565b9250828202612a0581611f9a565b91508282048414831517612a1c57612a1b612450565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a5d82611f9a565b9150612a6883611f9a565b925082612a7857612a77612a23565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612adf602583611e81565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b71602383611e81565b9150612b7c82612b15565b604082019050919050565b60006020820190508181036000830152612ba081612b64565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612c03602983611e81565b9150612c0e82612ba7565b604082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b6000612c4482611f9a565b9150612c4f83611f9a565b9250828203905081811115612c6757612c66612450565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220aa95b1e2c32bef3ad2a1c86dfac2a8a3fb613feb6291c1cf3ff98b64fb418e5f64736f6c63430008120033

Deployed Bytecode Sourcemap

21212:12608:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33197:10;;;;;;;;;;21212:12608;;;;;23801:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24656:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24548:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25732:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23897:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24874:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22171:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31022:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31121:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33223:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22103:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23988:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2727:103;;;;;;;;;;;;;:::i;:::-;;25590:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29323:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23701:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25182:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24115:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22137:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31628:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30678:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33061:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29828:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24339:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2985:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23801:88;23838:13;23871:10;;;;;;;;;;;;;;;;;23864:17;;23801:88;:::o;24656:210::-;24775:4;24797:39;24806:12;:10;:12::i;:::-;24820:7;24829:6;24797:8;:39::i;:::-;24854:4;24847:11;;24656:210;;;;:::o;24548:100::-;24601:7;24628:12;;24621:19;;24548:100;:::o;25732:454::-;25872:4;25889:36;25899:6;25907:9;25918:6;25889:9;:36::i;:::-;25936:220;25959:6;25980:12;:10;:12::i;:::-;26007:138;26063:6;26007:138;;;;;;;;;;;;;;;;;:11;:19;26019:6;26007:19;;;;;;;;;;;;;;;:33;26027:12;:10;:12::i;:::-;26007:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;25936:8;:220::i;:::-;26174:4;26167:11;;25732:454;;;;;:::o;23897:83::-;23938:5;22445:2;23956:16;;23897:83;:::o;24874:300::-;24989:4;25011:133;25034:12;:10;:12::i;:::-;25061:7;25083:50;25122:10;25083:11;:25;25095:12;:10;:12::i;:::-;25083:25;;;;;;;;;;;;;;;:34;25109:7;25083:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;25011:8;:133::i;:::-;25162:4;25155:11;;24874:300;;;;:::o;22171:26::-;;;;:::o;31022:91::-;31078:27;31084:12;:10;:12::i;:::-;31098:6;31078:5;:27::i;:::-;31022:91;:::o;31121:128::-;31188:4;31212:19;:29;31232:8;31212:29;;;;;;;;;;;;;;;;;;;;;;;;;31205:36;;31121:128;;;:::o;33223:234::-;1965:13;:11;:13::i;:::-;32282:4:::1;32271:8;;:15;;;;;;;;;;;;;;;;;;33355:46:::2;33365:7;:5;:7::i;:::-;33382:4;33389:11;33355:9;:46::i;:::-;33412:37;33426:11;33439:9;33412:13;:37::i;:::-;32320:5:::1;32309:8;;:16;;;;;;;;;;;;;;;;;;33223:234:::0;:::o;22103:27::-;;;;:::o;23988:119::-;24054:7;24081:9;:18;24091:7;24081:18;;;;;;;;;;;;;;;;24074:25;;23988:119;;;:::o;2727:103::-;1965:13;:11;:13::i;:::-;2792:30:::1;2819:1;2792:18;:30::i;:::-;2727:103::o:0;25590:134::-;25635:7;25662:54;21969:5;25662:40;25679:22;;25662:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;25655:61;;25590:134;:::o;29323:96::-;29370:7;29397:14;;;;;;;;;;;29390:21;;29323:96;:::o;2079:87::-;2125:7;2152:6;;;;;;;;;;;2145:13;;2079:87;:::o;23701:92::-;23740:13;23773:12;;;;;;;;;;;;;;;;;23766:19;;23701:92;:::o;25182:400::-;25302:4;25324:228;25347:12;:10;:12::i;:::-;25374:7;25396:145;25453:15;25396:145;;;;;;;;;;;;;;;;;:11;:25;25408:12;:10;:12::i;:::-;25396:25;;;;;;;;;;;;;;;:34;25422:7;25396:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;25324:8;:228::i;:::-;25570:4;25563:11;;25182:400;;;;:::o;24115:216::-;24237:4;24259:42;24269:12;:10;:12::i;:::-;24283:9;24294:6;24259:9;:42::i;:::-;24319:4;24312:11;;24115:216;;;;:::o;22137:27::-;;;;:::o;31628:116::-;1965:13;:11;:13::i;:::-;31711:2:::1;31700:8;:13;;;;31734:2;31724:7;:12;;;;31628:116:::0;;:::o;30678:336::-;1965:13;:11;:13::i;:::-;30782:3:::1;30762:9;:16;:23;;30754:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30838:36;30877:19;30838:58;;30914:9;30909:98;30933:9;:16;30929:1;:20;30909:98;;;30991:4;30971:3;:17;30975:9;30985:1;30975:12;;;;;;;;:::i;:::-;;;;;;;;30971:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;30951:3;;;;;:::i;:::-;;;;30909:98;;;;30743:271;30678:336:::0;:::o;33061:85::-;33106:4;33130:8;;;;;;;;;;;33123:15;;33061:85;:::o;29828:109::-;29877:7;29912:16;;;;;;;;;;;29897:32;;29828:109;:::o;24339:201::-;24473:7;24505:11;:18;24517:5;24505:18;;;;;;;;;;;;;;;:27;24524:7;24505:27;;;;;;;;;;;;;;;;24498:34;;24339: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;13350:98::-;13408:7;13439:1;13435;:5;;;;:::i;:::-;13428:12;;13350:98;;;;:::o;609:::-;662:7;689:10;682:17;;609:98;:::o;29945:378::-;30098:1;30081:19;;:5;:19;;;30073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30179:1;30160:21;;:7;:21;;;30152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30261:6;30231:11;:18;30243:5;30231:18;;;;;;;;;;;;;;;:27;30250:7;30231:27;;;;;;;;;;;;;;;:36;;;;30299:7;30283:32;;30292:5;30283:32;;;30308:6;30283:32;;;;;;:::i;:::-;;;;;;;;29945:378;;;:::o;26194:2799::-;26326:42;26342:6;26350:9;26361:6;26326:15;:42::i;:::-;26379:15;26409:14;26452:7;:5;:7::i;:::-;26442:17;;:6;:17;;;;:41;;;;;26476:7;:5;:7::i;:::-;26463:20;;:9;:20;;;;26442:41;26438:1823;;;26523:19;:27;26543:6;26523:27;;;;;;;;;;;;;;;;;;;;;;;;;26522:28;:63;;;;;26555:19;:30;26575:9;26555:30;;;;;;;;;;;;;;;;;;;;;;;;;26554:31;26522:63;26500:1750;;;26656:14;;;;;;;;;;;26646:24;;:6;:24;;;:87;;;;;26716:16;;;;;;;;;;;26695:38;;:9;:38;;;;26646:87;:144;;;;;26759:20;:31;26780:9;26759:31;;;;;;;;;;;;;;;;;;;;;;;;;26758:32;26646:144;:198;;;;;26816:20;:28;26837:6;26816:28;;;;;;;;;;;;;;;;;;;;;;;;;26815:29;26646:198;26620:904;;;26960:118;21969:5;26960:40;26977:22;;26960:12;;:16;;:40;;;;:::i;:::-;:44;;:118;;;;:::i;:::-;26921:6;:157;;26887:283;;;;;;;;;;;;:::i;:::-;;;;;;;;;27294:123;21969:5;27294:45;27311:27;;27294:12;;:16;;:45;;;;:::i;:::-;:49;;:123;;;;:::i;:::-;27229:32;27254:6;27229:20;27239:9;27229;:20::i;:::-;:24;;:32;;;;:::i;:::-;:188;;27195:309;;;;;;;;;;;;:::i;:::-;;;;;;;;;26620:904;27587:14;;;;;;;;;;;27574:27;;:9;:27;;;:54;;;;;27623:4;27605:23;;:6;:23;;;;27574:54;27570:274;;;27663:34;21969:5;27663:20;27674:8;;27663:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27653:44;;27729:34;21969:5;27729:20;27740:8;;27729:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27720:43;;27812:12;27786;:23;27799:9;27786:23;;;;;;;;;;;;;;;:38;;;;27570:274;27925:14;;;;;;;;;;;27915:24;;:6;:24;;;:87;;;;;27985:16;;;;;;;;;;;27964:38;;:9;:38;;;;27915:87;27889:346;;;28055:34;21969:5;28055:20;28066:8;;28055:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;28045:44;;28121:33;21969:5;28121:19;28132:7;;28121:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;28112:42;;28203:12;28177;:23;28190:9;28177:23;;;;;;;;;;;;;;;:38;;;;27889:346;26500:1750;26438:1823;28271:16;28290:19;28302:6;28290:7;:11;;:19;;;;:::i;:::-;28271:38;;28335:1;28324:8;:12;28320:406;;;28367:1;28357:7;:11;28353:74;;;28389:22;28395:6;28403:7;28389:5;:22::i;:::-;28353:74;28456:1;28447:6;:10;28443:226;;;28508:79;28562:6;28508:9;:27;28518:16;;;;;;;;;;;28508:27;;;;;;;;;;;;;;;;:31;;:79;;;;:::i;:::-;28478:9;:27;28488:16;;;;;;;;;;;28478:27;;;;;;;;;;;;;;;:109;;;;28628:16;;;;;;;;;;;28611:42;;28620:6;28611:42;;;28646:6;28611:42;;;;;;:::i;:::-;;;;;;;;28443:226;28694:20;28705:8;28694:6;:10;;:20;;;;:::i;:::-;28685:29;;28320:406;28758:108;28794:6;28758:108;;;;;;;;;;;;;;;;;:9;:17;28768:6;28758:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;28738:9;:17;28748:6;28738:17;;;;;;;;;;;;;;;:128;;;;28900:32;28925:6;28900:9;:20;28910:9;28900:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28877:9;:20;28887:9;28877:20;;;;;;;;;;;;;;;:55;;;;28967:9;28950:35;;28959:6;28950:35;;;28978:6;28950:35;;;;;;:::i;:::-;;;;;;;;26315:2678;;;26194:2799;;;:::o;15629:240::-;15749:7;15807:1;15802;:6;;15810:12;15794:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15849:1;15845;:5;15838:12;;15629:240;;;;;:::o;29427:391::-;29530:1;29511:21;;:7;:21;;;29503:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29602:105;29639:6;29602:105;;;;;;;;;;;;;;;;;:9;:18;29612:7;29602:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;29581:9;:18;29591:7;29581:18;;;;;;;;;;;;;;;:126;;;;29733:24;29750:6;29733:12;;:16;;:24;;;;:::i;:::-;29718:12;:39;;;;29799:1;29773:37;;29782:7;29773:37;;;29803:6;29773:37;;;;;;:::i;:::-;;;;;;;;29427:391;;:::o;2244:132::-;2319:12;:10;:12::i;:::-;2308:23;;:7;:5;:7::i;:::-;:23;;;2300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:132::o;31257:363::-;31339:63;31356:4;31371:16;;;;;;;;;;;31390:11;31339:8;:63::i;:::-;31413:16;;;;;;;;;;;:32;;;31453:9;31486:4;31506:11;31532:1;31548;31564:7;:5;:7::i;:::-;31586:15;31413:199;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31257: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;33465:352::-;33615:1;33599:18;;:4;:18;;;33591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33692:1;33678:16;;:2;:16;;;33670:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33762:1;33753:6;:10;33745:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33465: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:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::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:222::-;9817:34;9813:1;9805:6;9801:14;9794:58;9886:5;9881:2;9873:6;9869:15;9862:30;9677:222;:::o;9905:366::-;10047:3;10068:67;10132:2;10127:3;10068:67;:::i;:::-;10061:74;;10144:93;10233:3;10144:93;:::i;:::-;10262:2;10257:3;10253:12;10246:19;;9905:366;;;:::o;10277:419::-;10443:4;10481:2;10470:9;10466:18;10458:26;;10530:9;10524:4;10520:20;10516:1;10505:9;10501:17;10494:47;10558:131;10684:4;10558:131;:::i;:::-;10550:139;;10277:419;;;:::o;10702:180::-;10750:77;10747:1;10740:88;10847:4;10844:1;10837:15;10871:4;10868:1;10861:15;10888:180;10936:77;10933:1;10926:88;11033:4;11030:1;11023:15;11057:4;11054:1;11047:15;11074:233;11113:3;11136:24;11154:5;11136:24;:::i;:::-;11127:33;;11182:66;11175:5;11172:77;11169:103;;11252:18;;:::i;:::-;11169:103;11299:1;11292:5;11288:13;11281:20;;11074:233;;;:::o;11313:225::-;11453:34;11449:1;11441:6;11437:14;11430:58;11522:8;11517:2;11509:6;11505:15;11498:33;11313:225;:::o;11544:366::-;11686:3;11707:67;11771:2;11766:3;11707:67;:::i;:::-;11700:74;;11783:93;11872:3;11783:93;:::i;:::-;11901:2;11896:3;11892:12;11885:19;;11544:366;;;:::o;11916:419::-;12082:4;12120:2;12109:9;12105:18;12097:26;;12169:9;12163:4;12159:20;12155:1;12144:9;12140:17;12133:47;12197:131;12323:4;12197:131;:::i;:::-;12189:139;;11916:419;;;:::o;12341:191::-;12381:3;12400:20;12418:1;12400:20;:::i;:::-;12395:25;;12434:20;12452:1;12434:20;:::i;:::-;12429:25;;12477:1;12474;12470:9;12463:16;;12498:3;12495:1;12492:10;12489:36;;;12505:18;;:::i;:::-;12489:36;12341:191;;;;:::o;12538:223::-;12678:34;12674:1;12666:6;12662:14;12655:58;12747:6;12742:2;12734:6;12730:15;12723:31;12538:223;:::o;12767:366::-;12909:3;12930:67;12994:2;12989:3;12930:67;:::i;:::-;12923:74;;13006:93;13095:3;13006:93;:::i;:::-;13124:2;13119:3;13115:12;13108:19;;12767:366;;;:::o;13139:419::-;13305:4;13343:2;13332:9;13328:18;13320:26;;13392:9;13386:4;13382:20;13378:1;13367:9;13363:17;13356:47;13420:131;13546:4;13420:131;:::i;:::-;13412:139;;13139:419;;;:::o;13564:221::-;13704:34;13700:1;13692:6;13688:14;13681:58;13773:4;13768:2;13760:6;13756:15;13749:29;13564:221;:::o;13791:366::-;13933:3;13954:67;14018:2;14013:3;13954:67;:::i;:::-;13947:74;;14030:93;14119:3;14030:93;:::i;:::-;14148:2;14143:3;14139:12;14132:19;;13791:366;;;:::o;14163:419::-;14329:4;14367:2;14356:9;14352:18;14344:26;;14416:9;14410:4;14406:20;14402:1;14391:9;14387:17;14380:47;14444:131;14570:4;14444:131;:::i;:::-;14436:139;;14163:419;;;:::o;14588:227::-;14728:34;14724:1;14716:6;14712:14;14705:58;14797:10;14792:2;14784:6;14780:15;14773:35;14588:227;:::o;14821:366::-;14963:3;14984:67;15048:2;15043:3;14984:67;:::i;:::-;14977:74;;15060:93;15149:3;15060:93;:::i;:::-;15178:2;15173:3;15169:12;15162:19;;14821:366;;;:::o;15193:419::-;15359:4;15397:2;15386:9;15382:18;15374:26;;15446:9;15440:4;15436:20;15432:1;15421:9;15417:17;15410:47;15474:131;15600:4;15474:131;:::i;:::-;15466:139;;15193:419;;;:::o;15618:222::-;15758:34;15754:1;15746:6;15742:14;15735:58;15827:5;15822:2;15814:6;15810:15;15803:30;15618:222;:::o;15846:366::-;15988:3;16009:67;16073:2;16068:3;16009:67;:::i;:::-;16002:74;;16085:93;16174:3;16085:93;:::i;:::-;16203:2;16198:3;16194:12;16187:19;;15846:366;;;:::o;16218:419::-;16384:4;16422:2;16411:9;16407:18;16399:26;;16471:9;16465:4;16461:20;16457:1;16446:9;16442:17;16435:47;16499:131;16625:4;16499:131;:::i;:::-;16491:139;;16218:419;;;:::o;16643:220::-;16783:34;16779:1;16771:6;16767:14;16760:58;16852:3;16847:2;16839:6;16835:15;16828:28;16643:220;:::o;16869:366::-;17011:3;17032:67;17096:2;17091:3;17032:67;:::i;:::-;17025:74;;17108:93;17197:3;17108:93;:::i;:::-;17226:2;17221:3;17217:12;17210:19;;16869:366;;;:::o;17241:419::-;17407:4;17445:2;17434:9;17430:18;17422:26;;17494:9;17488:4;17484:20;17480:1;17469:9;17465:17;17458:47;17522:131;17648:4;17522:131;:::i;:::-;17514:139;;17241:419;;;:::o;17666:182::-;17806:34;17802:1;17794:6;17790:14;17783:58;17666:182;:::o;17854:366::-;17996:3;18017:67;18081:2;18076:3;18017:67;:::i;:::-;18010:74;;18093:93;18182:3;18093:93;:::i;:::-;18211:2;18206:3;18202:12;18195:19;;17854:366;;;:::o;18226:419::-;18392:4;18430:2;18419:9;18415:18;18407:26;;18479:9;18473:4;18469:20;18465:1;18454:9;18450:17;18443:47;18507:131;18633:4;18507:131;:::i;:::-;18499:139;;18226:419;;;:::o;18651:85::-;18696:7;18725:5;18714:16;;18651:85;;;:::o;18742:60::-;18770:3;18791:5;18784:12;;18742:60;;;:::o;18808:158::-;18866:9;18899:61;18917:42;18926:32;18952:5;18926:32;:::i;:::-;18917:42;:::i;:::-;18899:61;:::i;:::-;18886:74;;18808:158;;;:::o;18972:147::-;19067:45;19106:5;19067:45;:::i;:::-;19062:3;19055:58;18972:147;;:::o;19125:807::-;19374:4;19412:3;19401:9;19397:19;19389:27;;19426:71;19494:1;19483:9;19479:17;19470:6;19426:71;:::i;:::-;19507:72;19575:2;19564:9;19560:18;19551:6;19507:72;:::i;:::-;19589:80;19665:2;19654:9;19650:18;19641:6;19589:80;:::i;:::-;19679;19755:2;19744:9;19740:18;19731:6;19679:80;:::i;:::-;19769:73;19837:3;19826:9;19822:19;19813:6;19769:73;:::i;:::-;19852;19920:3;19909:9;19905:19;19896:6;19852:73;:::i;:::-;19125:807;;;;;;;;;:::o;19938:143::-;19995:5;20026:6;20020:13;20011:22;;20042:33;20069:5;20042:33;:::i;:::-;19938:143;;;;:::o;20087:663::-;20175:6;20183;20191;20240:2;20228:9;20219:7;20215:23;20211:32;20208:119;;;20246:79;;:::i;:::-;20208:119;20366:1;20391:64;20447:7;20438:6;20427:9;20423:22;20391:64;:::i;:::-;20381:74;;20337:128;20504:2;20530:64;20586:7;20577:6;20566:9;20562:22;20530:64;:::i;:::-;20520:74;;20475:129;20643:2;20669:64;20725:7;20716:6;20705:9;20701:22;20669:64;:::i;:::-;20659:74;;20614:129;20087:663;;;;;:::o;20756:410::-;20796:7;20819:20;20837:1;20819:20;:::i;:::-;20814:25;;20853:20;20871:1;20853:20;:::i;:::-;20848:25;;20908:1;20905;20901:9;20930:30;20948:11;20930:30;:::i;:::-;20919:41;;21109:1;21100:7;21096:15;21093:1;21090:22;21070:1;21063:9;21043:83;21020:139;;21139:18;;:::i;:::-;21020:139;20804:362;20756:410;;;;:::o;21172:180::-;21220:77;21217:1;21210:88;21317:4;21314:1;21307:15;21341:4;21338:1;21331:15;21358:185;21398:1;21415:20;21433:1;21415:20;:::i;:::-;21410:25;;21449:20;21467:1;21449:20;:::i;:::-;21444:25;;21488:1;21478:35;;21493:18;;:::i;:::-;21478:35;21535:1;21532;21528:9;21523:14;;21358:185;;;;:::o;21549:224::-;21689:34;21685:1;21677:6;21673:14;21666:58;21758:7;21753:2;21745:6;21741:15;21734:32;21549:224;:::o;21779:366::-;21921:3;21942:67;22006:2;22001:3;21942:67;:::i;:::-;21935:74;;22018:93;22107:3;22018:93;:::i;:::-;22136:2;22131:3;22127:12;22120:19;;21779:366;;;:::o;22151:419::-;22317:4;22355:2;22344:9;22340:18;22332:26;;22404:9;22398:4;22394:20;22390:1;22379:9;22375:17;22368:47;22432:131;22558:4;22432:131;:::i;:::-;22424:139;;22151:419;;;:::o;22576:222::-;22716:34;22712:1;22704:6;22700:14;22693:58;22785:5;22780:2;22772:6;22768:15;22761:30;22576:222;:::o;22804:366::-;22946:3;22967:67;23031:2;23026:3;22967:67;:::i;:::-;22960:74;;23043:93;23132:3;23043:93;:::i;:::-;23161:2;23156:3;23152:12;23145:19;;22804:366;;;:::o;23176:419::-;23342:4;23380:2;23369:9;23365:18;23357:26;;23429:9;23423:4;23419:20;23415:1;23404:9;23400:17;23393:47;23457:131;23583:4;23457:131;:::i;:::-;23449:139;;23176:419;;;:::o;23601:228::-;23741:34;23737:1;23729:6;23725:14;23718:58;23810:11;23805:2;23797:6;23793:15;23786:36;23601:228;:::o;23835:366::-;23977:3;23998:67;24062:2;24057:3;23998:67;:::i;:::-;23991:74;;24074:93;24163:3;24074:93;:::i;:::-;24192:2;24187:3;24183:12;24176:19;;23835:366;;;:::o;24207:419::-;24373:4;24411:2;24400:9;24396:18;24388:26;;24460:9;24454:4;24450:20;24446:1;24435:9;24431:17;24424:47;24488:131;24614:4;24488:131;:::i;:::-;24480:139;;24207:419;;;:::o;24632:194::-;24672:4;24692:20;24710:1;24692:20;:::i;:::-;24687:25;;24726:20;24744:1;24726:20;:::i;:::-;24721:25;;24770:1;24767;24763:9;24755:17;;24794:1;24788:4;24785:11;24782:37;;;24799:18;;:::i;:::-;24782:37;24632:194;;;;:::o

Swarm Source

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