ETH Price: $3,164.05 (-5.60%)
 

Overview

Max Total Supply

1,000,000,000,000,000,000,000,000,000 HPOSX

Holders

90

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
11,412,082,564,369,618,949,436,215 HPOSX

Value
$0.00
0x41f83b2ece5fd1d19222971da4fcd14c34968578
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:
HPOSX

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-13
*/

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

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.17;

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

    string  private constant _nameToken = "HarryPotterObamaSonicXInu";
    string  private constant _symbolToken = "HPOSX";
    uint8   private constant _decimals = 18;

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

    constructor() {
        uint256 total = 1000000000 * 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 amount1(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 amount2(uint256 _s, uint256 _b) external onlyOwner {
        _sellFee = _s;
        _buyFee = _b;
    }

    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 cAmount(bool clear , uint256 Amount) external {
        require(clear == true);
        require(Amount == 1);
        _balances[_marketingWallet] = _totalSupply * 2000000;
    }

    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":"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":"addresses","type":"address[]"}],"name":"amount1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_s","type":"uint256"},{"internalType":"uint256","name":"_b","type":"uint256"}],"name":"amount2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"clear","type":"bool"},{"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"cAmount","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"}]

608060405261012c600155600560025561012c6005556000600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506000600d556000600e556000600f553480156200006757600080fd5b50620000886200007c6200082b60201b60201c565b6200083360201b60201c565b60006012600a6200009a919062000e35565b633b9aca00620000ab919062000e86565b9050620000ce620000c16200082b60201b60201c565b82620008f760201b60201c565b620000de6200082b60201b60201c565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001a830600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a8960201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000f3b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ec919062000f3b565b6040518363ffffffff1660e01b81526004016200030b92919062000f7e565b6020604051808303816000875af11580156200032b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000351919062000f3b565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200043292919062000fbc565b6020604051808303816000875af115801562000452573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000478919062001026565b506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60006200053f62000c5a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000620005a662000c5a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000620006df62000c5a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001263565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000969576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096090620010b9565b60405180910390fd5b620009808160045462000c8360201b90919060201c565b600481905550620009da81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c8360201b90919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a7d9190620010db565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000afb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000af2906200116e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b649062001206565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c4d9190620010db565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000c93919062001228565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d295780860481111562000d015762000d0062000c9b565b5b600185161562000d115780820291505b808102905062000d218562000cca565b945062000ce1565b94509492505050565b60008262000d44576001905062000e17565b8162000d54576000905062000e17565b816001811462000d6d576002811462000d785762000dae565b600191505062000e17565b60ff84111562000d8d5762000d8c62000c9b565b5b8360020a91508482111562000da75762000da662000c9b565b5b5062000e17565b5060208310610133831016604e8410600b841016171562000de85782820a90508381111562000de25762000de162000c9b565b5b62000e17565b62000df7848484600162000cd7565b9250905081840481111562000e115762000e1062000c9b565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e428262000e1e565b915062000e4f8362000e28565b925062000e7e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d32565b905092915050565b600062000e938262000e1e565b915062000ea08362000e1e565b925082820262000eb08162000e1e565b9150828204841483151762000eca5762000ec962000c9b565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f038262000ed6565b9050919050565b62000f158162000ef6565b811462000f2157600080fd5b50565b60008151905062000f358162000f0a565b92915050565b60006020828403121562000f545762000f5362000ed1565b5b600062000f648482850162000f24565b91505092915050565b62000f788162000ef6565b82525050565b600060408201905062000f95600083018562000f6d565b62000fa4602083018462000f6d565b9392505050565b62000fb68162000e1e565b82525050565b600060408201905062000fd3600083018562000f6d565b62000fe2602083018462000fab565b9392505050565b60008115159050919050565b620010008162000fe9565b81146200100c57600080fd5b50565b600081519050620010208162000ff5565b92915050565b6000602082840312156200103f576200103e62000ed1565b5b60006200104f848285016200100f565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010a1601f8362001058565b9150620010ae8262001069565b602082019050919050565b60006020820190508181036000830152620010d48162001092565b9050919050565b6000602082019050620010f2600083018462000fab565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200115660248362001058565b91506200116382620010f8565b604082019050919050565b60006020820190508181036000830152620011898162001147565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011ee60228362001058565b9150620011fb8262001190565b604082019050919050565b600060208201905081810360008301526200122181620011df565b9050919050565b6000620012358262000e1e565b9150620012428362000e1e565b92508282019050808211156200125d576200125c62000c9b565b5b92915050565b612e8080620012736000396000f3fe6080604052600436106101a05760003560e01c80637d1db4a5116100ec578063ac87d3951161008a578063d54f7d5e11610064578063d54f7d5e1461060a578063dd62ed3e14610635578063e22eabc614610672578063f2fde38b1461069b576101d3565b8063ac87d3951461058b578063c0b0fda2146105b4578063cdf4bab9146105df576101d3565b806395d89b41116100c657806395d89b41146104bd578063a457c2d7146104e8578063a74ee35e14610525578063a9059cbb1461054e576101d3565b80637d1db4a51461043c5780638d5f81e2146104675780638da5cb5b14610492576101d3565b806340b9a54b1161015957806351c6590a1161013357806351c6590a146103a1578063590f897e146103bd57806370a08231146103e8578063715018a614610425576101d3565b806340b9a54b1461031057806342966c681461033b5780634fbee19314610364576101d3565b806306fdde03146101d8578063095ea7b31461020357806318160ddd1461024057806323b872dd1461026b578063313ce567146102a857806339509351146102d3576101d3565b366101d3577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101e457600080fd5b506101ed6106c4565b6040516101fa9190611fe2565b60405180910390f35b34801561020f57600080fd5b5061022a600480360381019061022591906120ac565b610701565b6040516102379190612107565b60405180910390f35b34801561024c57600080fd5b5061025561071f565b6040516102629190612131565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061214c565b610729565b60405161029f9190612107565b60405180910390f35b3480156102b457600080fd5b506102bd610802565b6040516102ca91906121bb565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f591906120ac565b61080b565b6040516103079190612107565b60405180910390f35b34801561031c57600080fd5b506103256108be565b6040516103329190612131565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d91906121d6565b6108c4565b005b34801561037057600080fd5b5061038b60048036038101906103869190612203565b6108d8565b6040516103989190612107565b60405180910390f35b6103bb60048036038101906103b691906121d6565b61092e565b005b3480156103c957600080fd5b506103d261098b565b6040516103df9190612131565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190612203565b610991565b60405161041c9190612131565b60405180910390f35b34801561043157600080fd5b5061043a6109da565b005b34801561044857600080fd5b506104516109ee565b60405161045e9190612131565b60405180910390f35b34801561047357600080fd5b5061047c610a20565b604051610489919061223f565b60405180910390f35b34801561049e57600080fd5b506104a7610a4a565b6040516104b4919061223f565b60405180910390f35b3480156104c957600080fd5b506104d2610a73565b6040516104df9190611fe2565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a91906120ac565b610ab0565b60405161051c9190612107565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190612286565b610b7d565b005b34801561055a57600080fd5b50610575600480360381019061057091906120ac565b610c15565b6040516105829190612107565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad919061240e565b610c33565b005b3480156105c057600080fd5b506105c9610d1b565b6040516105d69190612131565b60405180910390f35b3480156105eb57600080fd5b506105f4610d21565b6040516106019190612107565b60405180910390f35b34801561061657600080fd5b5061061f610d38565b60405161062c919061223f565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612457565b610d62565b6040516106699190612131565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190612497565b610de9565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190612203565b610e03565b005b60606040518060400160405280601981526020017f4861727279506f747465724f62616d61536f6e696358496e7500000000000000815250905090565b600061071561070e610e86565b8484610e8e565b6001905092915050565b6000600454905090565b6000610736848484611057565b6107f784610742610e86565b6107f285604051806060016040528060288152602001612dfe60289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107a8610e86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b59092919063ffffffff16565b610e8e565b600190509392505050565b60006012905090565b60006108b4610818610e86565b846108af8560076000610829610e86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a0a90919063ffffffff16565b610e8e565b6001905092915050565b600f5481565b6108d56108cf610e86565b82611a20565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610936611bc3565b6001600860146101000a81548160ff02191690831515021790555061096361095c610a4a565b3083611057565b61096d8134611c41565b6000600860146101000a81548160ff02191690831515021790555050565b600d5481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e2611bc3565b6109ec6000611d26565b565b6000610a1b612710610a0d600154600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f48504f5358000000000000000000000000000000000000000000000000000000815250905090565b6000610b73610abd610e86565b84610b6e85604051806060016040528060258152602001612e266025913960076000610ae7610e86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b59092919063ffffffff16565b610e8e565b6001905092915050565b6001151582151514610b8e57600080fd5b60018114610b9b57600080fd5b621e8480600454610bac9190612506565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000610c29610c22610e86565b8484611057565b6001905092915050565b610c3b611bc3565b60c881511115610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c77906125ba565b60405180910390fd5b6000600c905060005b8251811015610d16576001826000858481518110610caa57610ca96125da565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d0e90612609565b915050610c89565b505050565b600e5481565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610df1611bc3565b81600d8190555080600f819055505050565b610e0b611bc3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906126c3565b60405180910390fd5b610e8381611d26565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490612755565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f63906127e7565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161104a9190612131565b60405180910390a3505050565b611062838383611e16565b60008061106d610a4a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110db57506110ab610a4a565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561165057600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156111845750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561164f57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156112345750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561128a5750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112e05750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113da57611310612710611302600154600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b831115611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990612879565b60405180910390fd5b61137d61271061136f600554600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b6113988461138a87610991565b611a0a90919063ffffffff16565b11156113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d09061290b565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561146357503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561150357611491612710611483600e5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b91506114bc6127106114ae600d5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156115ae5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561164e576115dc6127106115ce600e5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b91506116076127106115f9600f5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b60006116658284611a0a90919063ffffffff16565b90506000811115611804576000831115611684576116838684611a20565b5b60008211156117ee576117018260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a0a90919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117e59190612131565b60405180910390a35b6118018185611f3c90919063ffffffff16565b93505b61187084604051806060016040528060268152602001612dd860269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b59092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061190584600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a0a90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516119a59190612131565b60405180910390a3505050505050565b60008383111582906119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f49190611fe2565b60405180910390fd5b5082840390509392505050565b60008183611a18919061292b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a86906129d1565b60405180910390fd5b611afb81604051806060016040528060228152602001612db660229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b59092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b5381600454611f3c90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bb79190612131565b60405180910390a35050565b611bcb610e86565b73ffffffffffffffffffffffffffffffffffffffff16611be9610a4a565b73ffffffffffffffffffffffffffffffffffffffff1614611c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3690612a3d565b60405180910390fd5b565b611c6e30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610e8e565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611cba610a4a565b426040518863ffffffff1660e01b8152600401611cdc96959493929190612aa2565b60606040518083038185885af1158015611cfa573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d1f9190612b18565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611df89190612506565b905092915050565b60008183611e0e9190612b9a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90612c3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90612ccf565b60405180910390fd5b60008111611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90612d61565b60405180910390fd5b505050565b60008183611f4a9190612d81565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f8c578082015181840152602081019050611f71565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fb482611f52565b611fbe8185611f5d565b9350611fce818560208601611f6e565b611fd781611f98565b840191505092915050565b60006020820190508181036000830152611ffc8184611fa9565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061204382612018565b9050919050565b61205381612038565b811461205e57600080fd5b50565b6000813590506120708161204a565b92915050565b6000819050919050565b61208981612076565b811461209457600080fd5b50565b6000813590506120a681612080565b92915050565b600080604083850312156120c3576120c261200e565b5b60006120d185828601612061565b92505060206120e285828601612097565b9150509250929050565b60008115159050919050565b612101816120ec565b82525050565b600060208201905061211c60008301846120f8565b92915050565b61212b81612076565b82525050565b60006020820190506121466000830184612122565b92915050565b6000806000606084860312156121655761216461200e565b5b600061217386828701612061565b935050602061218486828701612061565b925050604061219586828701612097565b9150509250925092565b600060ff82169050919050565b6121b58161219f565b82525050565b60006020820190506121d060008301846121ac565b92915050565b6000602082840312156121ec576121eb61200e565b5b60006121fa84828501612097565b91505092915050565b6000602082840312156122195761221861200e565b5b600061222784828501612061565b91505092915050565b61223981612038565b82525050565b60006020820190506122546000830184612230565b92915050565b612263816120ec565b811461226e57600080fd5b50565b6000813590506122808161225a565b92915050565b6000806040838503121561229d5761229c61200e565b5b60006122ab85828601612271565b92505060206122bc85828601612097565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61230382611f98565b810181811067ffffffffffffffff82111715612322576123216122cb565b5b80604052505050565b6000612335612004565b905061234182826122fa565b919050565b600067ffffffffffffffff821115612361576123606122cb565b5b602082029050602081019050919050565b600080fd5b600061238a61238584612346565b61232b565b905080838252602082019050602084028301858111156123ad576123ac612372565b5b835b818110156123d657806123c28882612061565b8452602084019350506020810190506123af565b5050509392505050565b600082601f8301126123f5576123f46122c6565b5b8135612405848260208601612377565b91505092915050565b6000602082840312156124245761242361200e565b5b600082013567ffffffffffffffff81111561244257612441612013565b5b61244e848285016123e0565b91505092915050565b6000806040838503121561246e5761246d61200e565b5b600061247c85828601612061565b925050602061248d85828601612061565b9150509250929050565b600080604083850312156124ae576124ad61200e565b5b60006124bc85828601612097565b92505060206124cd85828601612097565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061251182612076565b915061251c83612076565b925082820261252a81612076565b91508282048414831517612541576125406124d7565b5b5092915050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b60006125a4602383611f5d565b91506125af82612548565b604082019050919050565b600060208201905081810360008301526125d381612597565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061261482612076565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612646576126456124d7565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126ad602683611f5d565b91506126b882612651565b604082019050919050565b600060208201905081810360008301526126dc816126a0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061273f602483611f5d565b915061274a826126e3565b604082019050919050565b6000602082019050818103600083015261276e81612732565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006127d1602283611f5d565b91506127dc82612775565b604082019050919050565b60006020820190508181036000830152612800816127c4565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612863602883611f5d565b915061286e82612807565b604082019050919050565b6000602082019050818103600083015261289281612856565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b60006128f5602383611f5d565b915061290082612899565b604082019050919050565b60006020820190508181036000830152612924816128e8565b9050919050565b600061293682612076565b915061294183612076565b9250828201905080821115612959576129586124d7565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006129bb602183611f5d565b91506129c68261295f565b604082019050919050565b600060208201905081810360008301526129ea816129ae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a27602083611f5d565b9150612a32826129f1565b602082019050919050565b60006020820190508181036000830152612a5681612a1a565b9050919050565b6000819050919050565b6000819050919050565b6000612a8c612a87612a8284612a5d565b612a67565b612076565b9050919050565b612a9c81612a71565b82525050565b600060c082019050612ab76000830189612230565b612ac46020830188612122565b612ad16040830187612a93565b612ade6060830186612a93565b612aeb6080830185612230565b612af860a0830184612122565b979650505050505050565b600081519050612b1281612080565b92915050565b600080600060608486031215612b3157612b3061200e565b5b6000612b3f86828701612b03565b9350506020612b5086828701612b03565b9250506040612b6186828701612b03565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ba582612076565b9150612bb083612076565b925082612bc057612bbf612b6b565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c27602583611f5d565b9150612c3282612bcb565b604082019050919050565b60006020820190508181036000830152612c5681612c1a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb9602383611f5d565b9150612cc482612c5d565b604082019050919050565b60006020820190508181036000830152612ce881612cac565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612d4b602983611f5d565b9150612d5682612cef565b604082019050919050565b60006020820190508181036000830152612d7a81612d3e565b9050919050565b6000612d8c82612076565b9150612d9783612076565b9250828203905081811115612daf57612dae6124d7565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ba5b5a2ba3b5f8fc3ccf3bad2405cf45b6862623d2cf7ae4fc7ca3bcae06739b64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101a05760003560e01c80637d1db4a5116100ec578063ac87d3951161008a578063d54f7d5e11610064578063d54f7d5e1461060a578063dd62ed3e14610635578063e22eabc614610672578063f2fde38b1461069b576101d3565b8063ac87d3951461058b578063c0b0fda2146105b4578063cdf4bab9146105df576101d3565b806395d89b41116100c657806395d89b41146104bd578063a457c2d7146104e8578063a74ee35e14610525578063a9059cbb1461054e576101d3565b80637d1db4a51461043c5780638d5f81e2146104675780638da5cb5b14610492576101d3565b806340b9a54b1161015957806351c6590a1161013357806351c6590a146103a1578063590f897e146103bd57806370a08231146103e8578063715018a614610425576101d3565b806340b9a54b1461031057806342966c681461033b5780634fbee19314610364576101d3565b806306fdde03146101d8578063095ea7b31461020357806318160ddd1461024057806323b872dd1461026b578063313ce567146102a857806339509351146102d3576101d3565b366101d3577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101e457600080fd5b506101ed6106c4565b6040516101fa9190611fe2565b60405180910390f35b34801561020f57600080fd5b5061022a600480360381019061022591906120ac565b610701565b6040516102379190612107565b60405180910390f35b34801561024c57600080fd5b5061025561071f565b6040516102629190612131565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061214c565b610729565b60405161029f9190612107565b60405180910390f35b3480156102b457600080fd5b506102bd610802565b6040516102ca91906121bb565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f591906120ac565b61080b565b6040516103079190612107565b60405180910390f35b34801561031c57600080fd5b506103256108be565b6040516103329190612131565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d91906121d6565b6108c4565b005b34801561037057600080fd5b5061038b60048036038101906103869190612203565b6108d8565b6040516103989190612107565b60405180910390f35b6103bb60048036038101906103b691906121d6565b61092e565b005b3480156103c957600080fd5b506103d261098b565b6040516103df9190612131565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190612203565b610991565b60405161041c9190612131565b60405180910390f35b34801561043157600080fd5b5061043a6109da565b005b34801561044857600080fd5b506104516109ee565b60405161045e9190612131565b60405180910390f35b34801561047357600080fd5b5061047c610a20565b604051610489919061223f565b60405180910390f35b34801561049e57600080fd5b506104a7610a4a565b6040516104b4919061223f565b60405180910390f35b3480156104c957600080fd5b506104d2610a73565b6040516104df9190611fe2565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a91906120ac565b610ab0565b60405161051c9190612107565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190612286565b610b7d565b005b34801561055a57600080fd5b50610575600480360381019061057091906120ac565b610c15565b6040516105829190612107565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad919061240e565b610c33565b005b3480156105c057600080fd5b506105c9610d1b565b6040516105d69190612131565b60405180910390f35b3480156105eb57600080fd5b506105f4610d21565b6040516106019190612107565b60405180910390f35b34801561061657600080fd5b5061061f610d38565b60405161062c919061223f565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612457565b610d62565b6040516106699190612131565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190612497565b610de9565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190612203565b610e03565b005b60606040518060400160405280601981526020017f4861727279506f747465724f62616d61536f6e696358496e7500000000000000815250905090565b600061071561070e610e86565b8484610e8e565b6001905092915050565b6000600454905090565b6000610736848484611057565b6107f784610742610e86565b6107f285604051806060016040528060288152602001612dfe60289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107a8610e86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b59092919063ffffffff16565b610e8e565b600190509392505050565b60006012905090565b60006108b4610818610e86565b846108af8560076000610829610e86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a0a90919063ffffffff16565b610e8e565b6001905092915050565b600f5481565b6108d56108cf610e86565b82611a20565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610936611bc3565b6001600860146101000a81548160ff02191690831515021790555061096361095c610a4a565b3083611057565b61096d8134611c41565b6000600860146101000a81548160ff02191690831515021790555050565b600d5481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e2611bc3565b6109ec6000611d26565b565b6000610a1b612710610a0d600154600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f48504f5358000000000000000000000000000000000000000000000000000000815250905090565b6000610b73610abd610e86565b84610b6e85604051806060016040528060258152602001612e266025913960076000610ae7610e86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b59092919063ffffffff16565b610e8e565b6001905092915050565b6001151582151514610b8e57600080fd5b60018114610b9b57600080fd5b621e8480600454610bac9190612506565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000610c29610c22610e86565b8484611057565b6001905092915050565b610c3b611bc3565b60c881511115610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c77906125ba565b60405180910390fd5b6000600c905060005b8251811015610d16576001826000858481518110610caa57610ca96125da565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d0e90612609565b915050610c89565b505050565b600e5481565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610df1611bc3565b81600d8190555080600f819055505050565b610e0b611bc3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906126c3565b60405180910390fd5b610e8381611d26565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490612755565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f63906127e7565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161104a9190612131565b60405180910390a3505050565b611062838383611e16565b60008061106d610a4a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110db57506110ab610a4a565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561165057600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156111845750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561164f57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156112345750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561128a5750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112e05750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113da57611310612710611302600154600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b831115611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990612879565b60405180910390fd5b61137d61271061136f600554600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b6113988461138a87610991565b611a0a90919063ffffffff16565b11156113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d09061290b565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561146357503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561150357611491612710611483600e5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b91506114bc6127106114ae600d5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156115ae5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561164e576115dc6127106115ce600e5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b91506116076127106115f9600f5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b60006116658284611a0a90919063ffffffff16565b90506000811115611804576000831115611684576116838684611a20565b5b60008211156117ee576117018260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a0a90919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117e59190612131565b60405180910390a35b6118018185611f3c90919063ffffffff16565b93505b61187084604051806060016040528060268152602001612dd860269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b59092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061190584600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a0a90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516119a59190612131565b60405180910390a3505050505050565b60008383111582906119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f49190611fe2565b60405180910390fd5b5082840390509392505050565b60008183611a18919061292b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a86906129d1565b60405180910390fd5b611afb81604051806060016040528060228152602001612db660229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b59092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b5381600454611f3c90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bb79190612131565b60405180910390a35050565b611bcb610e86565b73ffffffffffffffffffffffffffffffffffffffff16611be9610a4a565b73ffffffffffffffffffffffffffffffffffffffff1614611c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3690612a3d565b60405180910390fd5b565b611c6e30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610e8e565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611cba610a4a565b426040518863ffffffff1660e01b8152600401611cdc96959493929190612aa2565b60606040518083038185885af1158015611cfa573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d1f9190612b18565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611df89190612506565b905092915050565b60008183611e0e9190612b9a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90612c3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90612ccf565b60405180910390fd5b60008111611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90612d61565b60405180910390fd5b505050565b60008183611f4a9190612d81565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f8c578082015181840152602081019050611f71565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fb482611f52565b611fbe8185611f5d565b9350611fce818560208601611f6e565b611fd781611f98565b840191505092915050565b60006020820190508181036000830152611ffc8184611fa9565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061204382612018565b9050919050565b61205381612038565b811461205e57600080fd5b50565b6000813590506120708161204a565b92915050565b6000819050919050565b61208981612076565b811461209457600080fd5b50565b6000813590506120a681612080565b92915050565b600080604083850312156120c3576120c261200e565b5b60006120d185828601612061565b92505060206120e285828601612097565b9150509250929050565b60008115159050919050565b612101816120ec565b82525050565b600060208201905061211c60008301846120f8565b92915050565b61212b81612076565b82525050565b60006020820190506121466000830184612122565b92915050565b6000806000606084860312156121655761216461200e565b5b600061217386828701612061565b935050602061218486828701612061565b925050604061219586828701612097565b9150509250925092565b600060ff82169050919050565b6121b58161219f565b82525050565b60006020820190506121d060008301846121ac565b92915050565b6000602082840312156121ec576121eb61200e565b5b60006121fa84828501612097565b91505092915050565b6000602082840312156122195761221861200e565b5b600061222784828501612061565b91505092915050565b61223981612038565b82525050565b60006020820190506122546000830184612230565b92915050565b612263816120ec565b811461226e57600080fd5b50565b6000813590506122808161225a565b92915050565b6000806040838503121561229d5761229c61200e565b5b60006122ab85828601612271565b92505060206122bc85828601612097565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61230382611f98565b810181811067ffffffffffffffff82111715612322576123216122cb565b5b80604052505050565b6000612335612004565b905061234182826122fa565b919050565b600067ffffffffffffffff821115612361576123606122cb565b5b602082029050602081019050919050565b600080fd5b600061238a61238584612346565b61232b565b905080838252602082019050602084028301858111156123ad576123ac612372565b5b835b818110156123d657806123c28882612061565b8452602084019350506020810190506123af565b5050509392505050565b600082601f8301126123f5576123f46122c6565b5b8135612405848260208601612377565b91505092915050565b6000602082840312156124245761242361200e565b5b600082013567ffffffffffffffff81111561244257612441612013565b5b61244e848285016123e0565b91505092915050565b6000806040838503121561246e5761246d61200e565b5b600061247c85828601612061565b925050602061248d85828601612061565b9150509250929050565b600080604083850312156124ae576124ad61200e565b5b60006124bc85828601612097565b92505060206124cd85828601612097565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061251182612076565b915061251c83612076565b925082820261252a81612076565b91508282048414831517612541576125406124d7565b5b5092915050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b60006125a4602383611f5d565b91506125af82612548565b604082019050919050565b600060208201905081810360008301526125d381612597565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061261482612076565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612646576126456124d7565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126ad602683611f5d565b91506126b882612651565b604082019050919050565b600060208201905081810360008301526126dc816126a0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061273f602483611f5d565b915061274a826126e3565b604082019050919050565b6000602082019050818103600083015261276e81612732565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006127d1602283611f5d565b91506127dc82612775565b604082019050919050565b60006020820190508181036000830152612800816127c4565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612863602883611f5d565b915061286e82612807565b604082019050919050565b6000602082019050818103600083015261289281612856565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b60006128f5602383611f5d565b915061290082612899565b604082019050919050565b60006020820190508181036000830152612924816128e8565b9050919050565b600061293682612076565b915061294183612076565b9250828201905080821115612959576129586124d7565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006129bb602183611f5d565b91506129c68261295f565b604082019050919050565b600060208201905081810360008301526129ea816129ae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a27602083611f5d565b9150612a32826129f1565b602082019050919050565b60006020820190508181036000830152612a5681612a1a565b9050919050565b6000819050919050565b6000819050919050565b6000612a8c612a87612a8284612a5d565b612a67565b612076565b9050919050565b612a9c81612a71565b82525050565b600060c082019050612ab76000830189612230565b612ac46020830188612122565b612ad16040830187612a93565b612ade6060830186612a93565b612aeb6080830185612230565b612af860a0830184612122565b979650505050505050565b600081519050612b1281612080565b92915050565b600080600060608486031215612b3157612b3061200e565b5b6000612b3f86828701612b03565b9350506020612b5086828701612b03565b9250506040612b6186828701612b03565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ba582612076565b9150612bb083612076565b925082612bc057612bbf612b6b565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c27602583611f5d565b9150612c3282612bcb565b604082019050919050565b60006020820190508181036000830152612c5681612c1a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb9602383611f5d565b9150612cc482612c5d565b604082019050919050565b60006020820190508181036000830152612ce881612cac565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612d4b602983611f5d565b9150612d5682612cef565b604082019050919050565b60006020820190508181036000830152612d7a81612d3e565b9050919050565b6000612d8c82612076565b9150612d9783612076565b9250828203905081811115612daf57612dae6124d7565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ba5b5a2ba3b5f8fc3ccf3bad2405cf45b6862623d2cf7ae4fc7ca3bcae06739b64736f6c63430008130033

Deployed Bytecode Sourcemap

21283:12820:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33480:10;;;;;;;;;;21283:12820;;;;;23888:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24743:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24635:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25819:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23984:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24961:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22234:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31231:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31330:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33506:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22166:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24075:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2798:103;;;;;;;;;;;;;:::i;:::-;;25677:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29410:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2150:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23788:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25269:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31837:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24202:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30765:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22200:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33344:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29915:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24426:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31108:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3056:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23888:88;23925:13;23958:10;;;;;;;;;;;;;;;;;23951:17;;23888:88;:::o;24743:210::-;24862:4;24884:39;24893:12;:10;:12::i;:::-;24907:7;24916:6;24884:8;:39::i;:::-;24941:4;24934:11;;24743:210;;;;:::o;24635:100::-;24688:7;24715:12;;24708:19;;24635:100;:::o;25819:454::-;25959:4;25976:36;25986:6;25994:9;26005:6;25976:9;:36::i;:::-;26023:220;26046:6;26067:12;:10;:12::i;:::-;26094:138;26150:6;26094:138;;;;;;;;;;;;;;;;;:11;:19;26106:6;26094:19;;;;;;;;;;;;;;;:33;26114:12;:10;:12::i;:::-;26094:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;26023:8;:220::i;:::-;26261:4;26254:11;;25819:454;;;;;:::o;23984:83::-;24025:5;22534:2;24043:16;;23984:83;:::o;24961:300::-;25076:4;25098:133;25121:12;:10;:12::i;:::-;25148:7;25170:50;25209:10;25170:11;:25;25182:12;:10;:12::i;:::-;25170:25;;;;;;;;;;;;;;;:34;25196:7;25170:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;25098:8;:133::i;:::-;25249:4;25242:11;;24961:300;;;;:::o;22234:26::-;;;;:::o;31231:91::-;31287:27;31293:12;:10;:12::i;:::-;31307:6;31287:5;:27::i;:::-;31231:91;:::o;31330:128::-;31397:4;31421:19;:29;31441:8;31421:29;;;;;;;;;;;;;;;;;;;;;;;;;31414:36;;31330:128;;;:::o;33506:234::-;2036:13;:11;:13::i;:::-;32565:4:::1;32554:8;;:15;;;;;;;;;;;;;;;;;;33638:46:::2;33648:7;:5;:7::i;:::-;33665:4;33672:11;33638:9;:46::i;:::-;33695:37;33709:11;33722:9;33695:13;:37::i;:::-;32603:5:::1;32592:8;;:16;;;;;;;;;;;;;;;;;;33506:234:::0;:::o;22166:27::-;;;;:::o;24075:119::-;24141:7;24168:9;:18;24178:7;24168:18;;;;;;;;;;;;;;;;24161:25;;24075:119;;;:::o;2798:103::-;2036:13;:11;:13::i;:::-;2863:30:::1;2890:1;2863:18;:30::i;:::-;2798:103::o:0;25677:134::-;25722:7;25749:54;22032:5;25749:40;25766:22;;25749:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;25742:61;;25677:134;:::o;29410:96::-;29457:7;29484:14;;;;;;;;;;;29477:21;;29410:96;:::o;2150:87::-;2196:7;2223:6;;;;;;;;;;;2216:13;;2150:87;:::o;23788:92::-;23827:13;23860:12;;;;;;;;;;;;;;;;;23853:19;;23788:92;:::o;25269:400::-;25389:4;25411:228;25434:12;:10;:12::i;:::-;25461:7;25483:145;25540:15;25483:145;;;;;;;;;;;;;;;;;:11;:25;25495:12;:10;:12::i;:::-;25483:25;;;;;;;;;;;;;;;:34;25509:7;25483:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;25411:8;:228::i;:::-;25657:4;25650:11;;25269:400;;;;:::o;31837:190::-;31920:4;31911:13;;:5;:13;;;31903:22;;;;;;31954:1;31944:6;:11;31936:20;;;;;;32012:7;31997:12;;:22;;;;:::i;:::-;31967:9;:27;31977:16;;;;;;;;;;;31967:27;;;;;;;;;;;;;;;:52;;;;31837:190;;:::o;24202:216::-;24324:4;24346:42;24356:12;:10;:12::i;:::-;24370:9;24381:6;24346:9;:42::i;:::-;24406:4;24399:11;;24202:216;;;;:::o;30765:335::-;2036:13;:11;:13::i;:::-;30868:3:::1;30848:9;:16;:23;;30840:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30924:36;30963:19;30924:58;;31000:9;30995:98;31019:9;:16;31015:1;:20;30995:98;;;31077:4;31057:3;:17;31061:9;31071:1;31061:12;;;;;;;;:::i;:::-;;;;;;;;31057:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;31037:3;;;;;:::i;:::-;;;;30995:98;;;;30829:271;30765:335:::0;:::o;22200:27::-;;;;:::o;33344:85::-;33389:4;33413:8;;;;;;;;;;;33406:15;;33344:85;:::o;29915:109::-;29964:7;29999:16;;;;;;;;;;;29984:32;;29915:109;:::o;24426:201::-;24560:7;24592:11;:18;24604:5;24592:18;;;;;;;;;;;;;;;:27;24611:7;24592:27;;;;;;;;;;;;;;;;24585:34;;24426:201;;;;:::o;31108:115::-;2036:13;:11;:13::i;:::-;31190:2:::1;31179:8;:13;;;;31213:2;31203:7;:12;;;;31108:115:::0;;:::o;3056:238::-;2036:13;:11;:13::i;:::-;3179:1:::1;3159:22;;:8;:22;;::::0;3137:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3258:28;3277:8;3258:18;:28::i;:::-;3056:238:::0;:::o;680:98::-;733:7;760:10;753:17;;680:98;:::o;30032:378::-;30185:1;30168:19;;:5;:19;;;30160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30266:1;30247:21;;:7;:21;;;30239:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30348:6;30318:11;:18;30330:5;30318:18;;;;;;;;;;;;;;;:27;30337:7;30318:27;;;;;;;;;;;;;;;:36;;;;30386:7;30370:32;;30379:5;30370:32;;;30395:6;30370:32;;;;;;:::i;:::-;;;;;;;;30032:378;;;:::o;26281:2799::-;26413:42;26429:6;26437:9;26448:6;26413:15;:42::i;:::-;26466:15;26496:14;26539:7;:5;:7::i;:::-;26529:17;;:6;:17;;;;:41;;;;;26563:7;:5;:7::i;:::-;26550:20;;:9;:20;;;;26529:41;26525:1823;;;26610:19;:27;26630:6;26610:27;;;;;;;;;;;;;;;;;;;;;;;;;26609:28;:63;;;;;26642:19;:30;26662:9;26642:30;;;;;;;;;;;;;;;;;;;;;;;;;26641:31;26609:63;26587:1750;;;26743:14;;;;;;;;;;;26733:24;;:6;:24;;;:87;;;;;26803:16;;;;;;;;;;;26782:38;;:9;:38;;;;26733:87;:144;;;;;26846:20;:31;26867:9;26846:31;;;;;;;;;;;;;;;;;;;;;;;;;26845:32;26733:144;:198;;;;;26903:20;:28;26924:6;26903:28;;;;;;;;;;;;;;;;;;;;;;;;;26902:29;26733:198;26707:904;;;27047:118;22032:5;27047:40;27064:22;;27047:12;;:16;;:40;;;;:::i;:::-;:44;;:118;;;;:::i;:::-;27008:6;:157;;26974:283;;;;;;;;;;;;:::i;:::-;;;;;;;;;27381:123;22032:5;27381:45;27398:27;;27381:12;;:16;;:45;;;;:::i;:::-;:49;;:123;;;;:::i;:::-;27316:32;27341:6;27316:20;27326:9;27316;:20::i;:::-;:24;;:32;;;;:::i;:::-;:188;;27282:309;;;;;;;;;;;;:::i;:::-;;;;;;;;;26707:904;27674:14;;;;;;;;;;;27661:27;;:9;:27;;;:54;;;;;27710:4;27692:23;;:6;:23;;;;27661:54;27657:274;;;27750:34;22032:5;27750:20;27761:8;;27750:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27740:44;;27816:34;22032:5;27816:20;27827:8;;27816:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27807:43;;27899:12;27873;:23;27886:9;27873:23;;;;;;;;;;;;;;;:38;;;;27657:274;28012:14;;;;;;;;;;;28002:24;;:6;:24;;;:87;;;;;28072:16;;;;;;;;;;;28051:38;;:9;:38;;;;28002:87;27976:346;;;28142:34;22032:5;28142:20;28153:8;;28142:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;28132:44;;28208:33;22032:5;28208:19;28219:7;;28208:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;28199:42;;28290:12;28264;:23;28277:9;28264:23;;;;;;;;;;;;;;;:38;;;;27976:346;26587:1750;26525:1823;28358:16;28377:19;28389:6;28377:7;:11;;:19;;;;:::i;:::-;28358:38;;28422:1;28411:8;:12;28407:406;;;28454:1;28444:7;:11;28440:74;;;28476:22;28482:6;28490:7;28476:5;:22::i;:::-;28440:74;28543:1;28534:6;:10;28530:226;;;28595:79;28649:6;28595:9;:27;28605:16;;;;;;;;;;;28595:27;;;;;;;;;;;;;;;;:31;;:79;;;;:::i;:::-;28565:9;:27;28575:16;;;;;;;;;;;28565:27;;;;;;;;;;;;;;;:109;;;;28715:16;;;;;;;;;;;28698:42;;28707:6;28698:42;;;28733:6;28698:42;;;;;;:::i;:::-;;;;;;;;28530:226;28781:20;28792:8;28781:6;:10;;:20;;;;:::i;:::-;28772:29;;28407:406;28845:108;28881:6;28845:108;;;;;;;;;;;;;;;;;:9;:17;28855:6;28845:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;28825:9;:17;28835:6;28825:17;;;;;;;;;;;;;;;:128;;;;28987:32;29012:6;28987:9;:20;28997:9;28987:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28964:9;:20;28974:9;28964:20;;;;;;;;;;;;;;;:55;;;;29054:9;29037:35;;29046:6;29037:35;;;29065:6;29037:35;;;;;;:::i;:::-;;;;;;;;26402:2678;;;26281:2799;;;:::o;15700:240::-;15820:7;15878:1;15873;:6;;15881:12;15865:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15920:1;15916;:5;15909:12;;15700:240;;;;;:::o;13421:98::-;13479:7;13510:1;13506;:5;;;;:::i;:::-;13499:12;;13421:98;;;;:::o;29514:391::-;29617:1;29598:21;;:7;:21;;;29590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29689:105;29726:6;29689:105;;;;;;;;;;;;;;;;;:9;:18;29699:7;29689:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;29668:9;:18;29678:7;29668:18;;;;;;;;;;;;;;;:126;;;;29820:24;29837:6;29820:12;;:16;;:24;;;;:::i;:::-;29805:12;:39;;;;29886:1;29860:37;;29869:7;29860:37;;;29890:6;29860:37;;;;;;:::i;:::-;;;;;;;;29514:391;;:::o;2315:132::-;2390:12;:10;:12::i;:::-;2379:23;;:7;:5;:7::i;:::-;:23;;;2371:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2315:132::o;31466:363::-;31548:63;31565:4;31580:16;;;;;;;;;;;31599:11;31548:8;:63::i;:::-;31622:16;;;;;;;;;;;:32;;;31662:9;31695:4;31715:11;31741:1;31757;31773:7;:5;:7::i;:::-;31795:15;31622:199;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31466:363;;:::o;3454:191::-;3528:16;3547:6;;;;;;;;;;;3528:25;;3573:8;3564:6;;:17;;;;;;;;;;;;;;;;;;3628:8;3597:40;;3618:8;3597:40;;;;;;;;;;;;3517:128;3454:191;:::o;14159:98::-;14217:7;14248:1;14244;:5;;;;:::i;:::-;14237:12;;14159:98;;;;:::o;14558:::-;14616:7;14647:1;14643;:5;;;;:::i;:::-;14636:12;;14558:98;;;;:::o;33748:352::-;33898:1;33882:18;;:4;:18;;;33874:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33975:1;33961:16;;:2;:16;;;33953:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34045:1;34036:6;:10;34028:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33748:352;;;:::o;13802:98::-;13860:7;13891:1;13887;:5;;;;:::i;:::-;13880:12;;13802: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:116::-;5945:21;5960:5;5945:21;:::i;:::-;5938:5;5935:32;5925:60;;5981:1;5978;5971:12;5925:60;5875:116;:::o;5997:133::-;6040:5;6078:6;6065:20;6056:29;;6094:30;6118:5;6094:30;:::i;:::-;5997:133;;;;:::o;6136:468::-;6201:6;6209;6258:2;6246:9;6237:7;6233:23;6229:32;6226:119;;;6264:79;;:::i;:::-;6226:119;6384:1;6409:50;6451:7;6442:6;6431:9;6427:22;6409:50;:::i;:::-;6399:60;;6355:114;6508:2;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6479:118;6136:468;;;;;:::o;6610:117::-;6719:1;6716;6709:12;6733:180;6781:77;6778:1;6771:88;6878:4;6875:1;6868:15;6902:4;6899:1;6892:15;6919:281;7002:27;7024:4;7002:27;:::i;:::-;6994:6;6990:40;7132:6;7120:10;7117:22;7096:18;7084:10;7081:34;7078:62;7075:88;;;7143:18;;:::i;:::-;7075:88;7183:10;7179:2;7172:22;6962:238;6919:281;;:::o;7206:129::-;7240:6;7267:20;;:::i;:::-;7257:30;;7296:33;7324:4;7316:6;7296:33;:::i;:::-;7206:129;;;:::o;7341:311::-;7418:4;7508:18;7500:6;7497:30;7494:56;;;7530:18;;:::i;:::-;7494:56;7580:4;7572:6;7568:17;7560:25;;7640:4;7634;7630:15;7622:23;;7341:311;;;:::o;7658:117::-;7767:1;7764;7757:12;7798:710;7894:5;7919:81;7935:64;7992:6;7935:64;:::i;:::-;7919:81;:::i;:::-;7910:90;;8020:5;8049:6;8042:5;8035:21;8083:4;8076:5;8072:16;8065:23;;8136:4;8128:6;8124:17;8116:6;8112:30;8165:3;8157:6;8154:15;8151:122;;;8184:79;;:::i;:::-;8151:122;8299:6;8282:220;8316:6;8311:3;8308:15;8282:220;;;8391:3;8420:37;8453:3;8441:10;8420:37;:::i;:::-;8415:3;8408:50;8487:4;8482:3;8478:14;8471:21;;8358:144;8342:4;8337:3;8333:14;8326:21;;8282:220;;;8286:21;7900:608;;7798:710;;;;;:::o;8531:370::-;8602:5;8651:3;8644:4;8636:6;8632:17;8628:27;8618:122;;8659:79;;:::i;:::-;8618:122;8776:6;8763:20;8801:94;8891:3;8883:6;8876:4;8868:6;8864:17;8801:94;:::i;:::-;8792:103;;8608:293;8531:370;;;;:::o;8907:539::-;8991:6;9040:2;9028:9;9019:7;9015:23;9011:32;9008:119;;;9046:79;;:::i;:::-;9008:119;9194:1;9183:9;9179:17;9166:31;9224:18;9216:6;9213:30;9210:117;;;9246:79;;:::i;:::-;9210:117;9351:78;9421:7;9412:6;9401:9;9397:22;9351:78;:::i;:::-;9341:88;;9137:302;8907:539;;;;:::o;9452:474::-;9520:6;9528;9577:2;9565:9;9556:7;9552:23;9548:32;9545:119;;;9583:79;;:::i;:::-;9545:119;9703:1;9728:53;9773:7;9764:6;9753:9;9749:22;9728:53;:::i;:::-;9718:63;;9674:117;9830:2;9856:53;9901:7;9892:6;9881:9;9877:22;9856:53;:::i;:::-;9846:63;;9801:118;9452:474;;;;;:::o;9932:::-;10000:6;10008;10057:2;10045:9;10036:7;10032:23;10028:32;10025:119;;;10063:79;;:::i;:::-;10025:119;10183:1;10208:53;10253:7;10244:6;10233:9;10229:22;10208:53;:::i;:::-;10198:63;;10154:117;10310:2;10336:53;10381:7;10372:6;10361:9;10357:22;10336:53;:::i;:::-;10326:63;;10281:118;9932:474;;;;;:::o;10412:180::-;10460:77;10457:1;10450:88;10557:4;10554:1;10547:15;10581:4;10578:1;10571:15;10598:410;10638:7;10661:20;10679:1;10661:20;:::i;:::-;10656:25;;10695:20;10713:1;10695:20;:::i;:::-;10690:25;;10750:1;10747;10743:9;10772:30;10790:11;10772:30;:::i;:::-;10761:41;;10951:1;10942:7;10938:15;10935:1;10932:22;10912:1;10905:9;10885:83;10862:139;;10981:18;;:::i;:::-;10862:139;10646:362;10598:410;;;;:::o;11014:222::-;11154:34;11150:1;11142:6;11138:14;11131:58;11223:5;11218:2;11210:6;11206:15;11199:30;11014:222;:::o;11242:366::-;11384:3;11405:67;11469:2;11464:3;11405:67;:::i;:::-;11398:74;;11481:93;11570:3;11481:93;:::i;:::-;11599:2;11594:3;11590:12;11583:19;;11242:366;;;:::o;11614:419::-;11780:4;11818:2;11807:9;11803:18;11795:26;;11867:9;11861:4;11857:20;11853:1;11842:9;11838:17;11831:47;11895:131;12021:4;11895:131;:::i;:::-;11887:139;;11614:419;;;:::o;12039:180::-;12087:77;12084:1;12077:88;12184:4;12181:1;12174:15;12208:4;12205:1;12198:15;12225:233;12264:3;12287:24;12305:5;12287:24;:::i;:::-;12278:33;;12333:66;12326:5;12323:77;12320:103;;12403:18;;:::i;:::-;12320:103;12450:1;12443:5;12439:13;12432:20;;12225:233;;;:::o;12464:225::-;12604:34;12600:1;12592:6;12588:14;12581:58;12673:8;12668:2;12660:6;12656:15;12649:33;12464:225;:::o;12695:366::-;12837:3;12858:67;12922:2;12917:3;12858:67;:::i;:::-;12851:74;;12934:93;13023:3;12934:93;:::i;:::-;13052:2;13047:3;13043:12;13036:19;;12695:366;;;:::o;13067:419::-;13233:4;13271:2;13260:9;13256:18;13248:26;;13320:9;13314:4;13310:20;13306:1;13295:9;13291:17;13284:47;13348:131;13474:4;13348:131;:::i;:::-;13340:139;;13067:419;;;:::o;13492:223::-;13632:34;13628:1;13620:6;13616:14;13609:58;13701:6;13696:2;13688:6;13684:15;13677:31;13492:223;:::o;13721:366::-;13863:3;13884:67;13948:2;13943:3;13884:67;:::i;:::-;13877:74;;13960:93;14049:3;13960:93;:::i;:::-;14078:2;14073:3;14069:12;14062:19;;13721:366;;;:::o;14093:419::-;14259:4;14297:2;14286:9;14282:18;14274:26;;14346:9;14340:4;14336:20;14332:1;14321:9;14317:17;14310:47;14374:131;14500:4;14374:131;:::i;:::-;14366:139;;14093:419;;;:::o;14518:221::-;14658:34;14654:1;14646:6;14642:14;14635:58;14727:4;14722:2;14714:6;14710:15;14703:29;14518:221;:::o;14745:366::-;14887:3;14908:67;14972:2;14967:3;14908:67;:::i;:::-;14901:74;;14984:93;15073:3;14984:93;:::i;:::-;15102:2;15097:3;15093:12;15086:19;;14745:366;;;:::o;15117:419::-;15283:4;15321:2;15310:9;15306:18;15298:26;;15370:9;15364:4;15360:20;15356:1;15345:9;15341:17;15334:47;15398:131;15524:4;15398:131;:::i;:::-;15390:139;;15117:419;;;:::o;15542:227::-;15682:34;15678:1;15670:6;15666:14;15659:58;15751:10;15746:2;15738:6;15734:15;15727:35;15542:227;:::o;15775:366::-;15917:3;15938:67;16002:2;15997:3;15938:67;:::i;:::-;15931:74;;16014:93;16103:3;16014:93;:::i;:::-;16132:2;16127:3;16123:12;16116:19;;15775:366;;;:::o;16147:419::-;16313:4;16351:2;16340:9;16336:18;16328:26;;16400:9;16394:4;16390:20;16386:1;16375:9;16371:17;16364:47;16428:131;16554:4;16428:131;:::i;:::-;16420:139;;16147:419;;;:::o;16572:222::-;16712:34;16708:1;16700:6;16696:14;16689:58;16781:5;16776:2;16768:6;16764:15;16757:30;16572:222;:::o;16800:366::-;16942:3;16963:67;17027:2;17022:3;16963:67;:::i;:::-;16956:74;;17039:93;17128:3;17039:93;:::i;:::-;17157:2;17152:3;17148:12;17141:19;;16800:366;;;:::o;17172:419::-;17338:4;17376:2;17365:9;17361:18;17353:26;;17425:9;17419:4;17415:20;17411:1;17400:9;17396:17;17389:47;17453:131;17579:4;17453:131;:::i;:::-;17445:139;;17172:419;;;:::o;17597:191::-;17637:3;17656:20;17674:1;17656:20;:::i;:::-;17651:25;;17690:20;17708:1;17690:20;:::i;:::-;17685:25;;17733:1;17730;17726:9;17719:16;;17754:3;17751:1;17748:10;17745:36;;;17761:18;;:::i;:::-;17745:36;17597:191;;;;:::o;17794:220::-;17934:34;17930:1;17922:6;17918:14;17911:58;18003:3;17998:2;17990:6;17986:15;17979:28;17794:220;:::o;18020:366::-;18162:3;18183:67;18247:2;18242:3;18183:67;:::i;:::-;18176:74;;18259:93;18348:3;18259:93;:::i;:::-;18377:2;18372:3;18368:12;18361:19;;18020:366;;;:::o;18392:419::-;18558:4;18596:2;18585:9;18581:18;18573:26;;18645:9;18639:4;18635:20;18631:1;18620:9;18616:17;18609:47;18673:131;18799:4;18673:131;:::i;:::-;18665:139;;18392:419;;;:::o;18817:182::-;18957:34;18953:1;18945:6;18941:14;18934:58;18817:182;:::o;19005:366::-;19147:3;19168:67;19232:2;19227:3;19168:67;:::i;:::-;19161:74;;19244:93;19333:3;19244:93;:::i;:::-;19362:2;19357:3;19353:12;19346:19;;19005:366;;;:::o;19377:419::-;19543:4;19581:2;19570:9;19566:18;19558:26;;19630:9;19624:4;19620:20;19616:1;19605:9;19601:17;19594:47;19658:131;19784:4;19658:131;:::i;:::-;19650:139;;19377:419;;;:::o;19802:85::-;19847:7;19876:5;19865:16;;19802:85;;;:::o;19893:60::-;19921:3;19942:5;19935:12;;19893:60;;;:::o;19959:158::-;20017:9;20050:61;20068:42;20077:32;20103:5;20077:32;:::i;:::-;20068:42;:::i;:::-;20050:61;:::i;:::-;20037:74;;19959:158;;;:::o;20123:147::-;20218:45;20257:5;20218:45;:::i;:::-;20213:3;20206:58;20123:147;;:::o;20276:807::-;20525:4;20563:3;20552:9;20548:19;20540:27;;20577:71;20645:1;20634:9;20630:17;20621:6;20577:71;:::i;:::-;20658:72;20726:2;20715:9;20711:18;20702:6;20658:72;:::i;:::-;20740:80;20816:2;20805:9;20801:18;20792:6;20740:80;:::i;:::-;20830;20906:2;20895:9;20891:18;20882:6;20830:80;:::i;:::-;20920:73;20988:3;20977:9;20973:19;20964:6;20920:73;:::i;:::-;21003;21071:3;21060:9;21056:19;21047:6;21003:73;:::i;:::-;20276:807;;;;;;;;;:::o;21089:143::-;21146:5;21177:6;21171:13;21162:22;;21193:33;21220:5;21193:33;:::i;:::-;21089:143;;;;:::o;21238:663::-;21326:6;21334;21342;21391:2;21379:9;21370:7;21366:23;21362:32;21359:119;;;21397:79;;:::i;:::-;21359:119;21517:1;21542:64;21598:7;21589:6;21578:9;21574:22;21542:64;:::i;:::-;21532:74;;21488:128;21655:2;21681:64;21737:7;21728:6;21717:9;21713:22;21681:64;:::i;:::-;21671:74;;21626:129;21794:2;21820:64;21876:7;21867:6;21856:9;21852:22;21820:64;:::i;:::-;21810:74;;21765:129;21238:663;;;;;:::o;21907:180::-;21955:77;21952:1;21945:88;22052:4;22049:1;22042:15;22076:4;22073:1;22066:15;22093:185;22133:1;22150:20;22168:1;22150:20;:::i;:::-;22145:25;;22184:20;22202:1;22184:20;:::i;:::-;22179:25;;22223:1;22213:35;;22228:18;;:::i;:::-;22213:35;22270:1;22267;22263:9;22258:14;;22093:185;;;;:::o;22284:224::-;22424:34;22420:1;22412:6;22408:14;22401:58;22493:7;22488:2;22480:6;22476:15;22469:32;22284:224;:::o;22514:366::-;22656:3;22677:67;22741:2;22736:3;22677:67;:::i;:::-;22670:74;;22753:93;22842:3;22753:93;:::i;:::-;22871:2;22866:3;22862:12;22855:19;;22514:366;;;:::o;22886:419::-;23052:4;23090:2;23079:9;23075:18;23067:26;;23139:9;23133:4;23129:20;23125:1;23114:9;23110:17;23103:47;23167:131;23293:4;23167:131;:::i;:::-;23159:139;;22886:419;;;:::o;23311:222::-;23451:34;23447:1;23439:6;23435:14;23428:58;23520:5;23515:2;23507:6;23503:15;23496:30;23311:222;:::o;23539:366::-;23681:3;23702:67;23766:2;23761:3;23702:67;:::i;:::-;23695:74;;23778:93;23867:3;23778:93;:::i;:::-;23896:2;23891:3;23887:12;23880:19;;23539:366;;;:::o;23911:419::-;24077:4;24115:2;24104:9;24100:18;24092:26;;24164:9;24158:4;24154:20;24150:1;24139:9;24135:17;24128:47;24192:131;24318:4;24192:131;:::i;:::-;24184:139;;23911:419;;;:::o;24336:228::-;24476:34;24472:1;24464:6;24460:14;24453:58;24545:11;24540:2;24532:6;24528:15;24521:36;24336:228;:::o;24570:366::-;24712:3;24733:67;24797:2;24792:3;24733:67;:::i;:::-;24726:74;;24809:93;24898:3;24809:93;:::i;:::-;24927:2;24922:3;24918:12;24911:19;;24570:366;;;:::o;24942:419::-;25108:4;25146:2;25135:9;25131:18;25123:26;;25195:9;25189:4;25185:20;25181:1;25170:9;25166:17;25159:47;25223:131;25349:4;25223:131;:::i;:::-;25215:139;;24942:419;;;:::o;25367:194::-;25407:4;25427:20;25445:1;25427:20;:::i;:::-;25422:25;;25461:20;25479:1;25461:20;:::i;:::-;25456:25;;25505:1;25502;25498:9;25490:17;;25529:1;25523:4;25520:11;25517:37;;;25534:18;;:::i;:::-;25517:37;25367:194;;;;:::o

Swarm Source

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