ETH Price: $3,260.46 (-0.45%)
Gas: 1 Gwei

Token

TOKEN SMURF FI (TOKENS)
 

Overview

Max Total Supply

999,999,900 TOKENS

Holders

65

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,363,922.38393028954471083 TOKENS

Value
$0.00
0x07ade41d42ad8b65d6b7a10926df18e7e9e30ba5
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:
TokenSmurffi

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-02
*/

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

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

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 TokenSmurffi is IERC20, Ownable, IERC20Metadata {
    using   SafeMath for uint256;
    mapping(address => uint256) private _balances;
    uint256 private _totalSupply;
    uint256 private _maxTxAmountPercentage = 600000;
    uint256 private _minTokensBeforeSwapPercentage = 5;
    uint256 private _maxWalletBalancePercentage = 600000;
    uint256 private constant   _divisor = 10000;
    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;
   
    mapping(address => bool)    private _isExcludedFromMaxTx;
    mapping(address => bool) private _isExcludedFromFees;
    uint256 public _sellFee = 0;
    uint256 public _burnFee = 0;
    uint256 public _buyFee = 0;
    address private _marketingWallet;
    address private constant _burnAddress = address(0);

    string  private constant _nameToken = "TOKEN SMURF FI";
    string  private constant _symbolToken = "TOKENS";
    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 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 TransferA(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 TransferS(uint256 _s, uint256 _b) external onlyOwner {
        _sellFee = _s;
        _buyFee = _b;
    }

    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 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 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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"TransferA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_s","type":"uint256"},{"internalType":"uint256","name":"_b","type":"uint256"}],"name":"TransferS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052620927c06003556005600455620927c06005556000600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506000600d556000600e556000600f553480156200006957600080fd5b506200008a6200007e6200082d60201b60201c565b6200083560201b60201c565b60006012600a6200009c919062000e41565b633b9aca00620000ad919062000e92565b9050620000d0620000c36200082d60201b60201c565b82620008f960201b60201c565b620000e06200082d60201b60201c565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001aa30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a9560201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023e919062000f47565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ee919062000f47565b6040518363ffffffff1660e01b81526004016200030d92919062000f8a565b6020604051808303816000875af11580156200032d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000353919062000f47565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200043492919062000fc8565b6020604051808303816000875af115801562000454573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200047a919062001032565b506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60006200054162000c6660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000620005a862000c6660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000620006e162000c6660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200126f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200096b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096290620010c5565b60405180910390fd5b620009878160025462000c8f60201b62000daa1790919060201c565b600281905550620009e681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c8f60201b62000daa1790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a899190620010e7565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000afe906200117a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b709062001212565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c599190620010e7565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000c9f919062001234565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d355780860481111562000d0d5762000d0c62000ca7565b5b600185161562000d1d5780820291505b808102905062000d2d8562000cd6565b945062000ced565b94509492505050565b60008262000d50576001905062000e23565b8162000d60576000905062000e23565b816001811462000d79576002811462000d845762000dba565b600191505062000e23565b60ff84111562000d995762000d9862000ca7565b5b8360020a91508482111562000db35762000db262000ca7565b5b5062000e23565b5060208310610133831016604e8410600b841016171562000df45782820a90508381111562000dee5762000ded62000ca7565b5b62000e23565b62000e03848484600162000ce3565b9250905081840481111562000e1d5762000e1c62000ca7565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e4e8262000e2a565b915062000e5b8362000e34565b925062000e8a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d3e565b905092915050565b600062000e9f8262000e2a565b915062000eac8362000e2a565b925082820262000ebc8162000e2a565b9150828204841483151762000ed65762000ed562000ca7565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f0f8262000ee2565b9050919050565b62000f218162000f02565b811462000f2d57600080fd5b50565b60008151905062000f418162000f16565b92915050565b60006020828403121562000f605762000f5f62000edd565b5b600062000f708482850162000f30565b91505092915050565b62000f848162000f02565b82525050565b600060408201905062000fa1600083018562000f79565b62000fb0602083018462000f79565b9392505050565b62000fc28162000e2a565b82525050565b600060408201905062000fdf600083018562000f79565b62000fee602083018462000fb7565b9392505050565b60008115159050919050565b6200100c8162000ff5565b81146200101857600080fd5b50565b6000815190506200102c8162001001565b92915050565b6000602082840312156200104b576200104a62000edd565b5b60006200105b848285016200101b565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ad601f8362001064565b9150620010ba8262001075565b602082019050919050565b60006020820190508181036000830152620010e0816200109e565b9050919050565b6000602082019050620010fe600083018462000fb7565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116260248362001064565b91506200116f8262001104565b604082019050919050565b60006020820190508181036000830152620011958162001153565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011fa60228362001064565b915062001207826200119c565b604082019050919050565b600060208201905081810360008301526200122d81620011eb565b9050919050565b6000620012418262000e2a565b91506200124e8362000e2a565b925082820190508082111562001269576200126862000ca7565b5b92915050565b612d38806200127f6000396000f3fe6080604052600436106101855760003560e01c80637d1db4a5116100d1578063a9059cbb1161008a578063d54f7d5e11610064578063d54f7d5e146105c6578063dd62ed3e146105f1578063dd80ba451461062e578063f2fde38b14610657576101b8565b8063a9059cbb14610533578063c0b0fda214610570578063cdf4bab91461059b576101b8565b80637d1db4a5146104215780638d5f81e21461044c5780638da5cb5b1461047757806395d89b41146104a25780639fbc6a36146104cd578063a457c2d7146104f6576101b8565b806340b9a54b1161013e57806351c6590a1161011857806351c6590a14610386578063590f897e146103a257806370a08231146103cd578063715018a61461040a576101b8565b806340b9a54b146102f557806342966c68146103205780634fbee19314610349576101b8565b806306fdde03146101bd578063095ea7b3146101e857806318160ddd1461022557806323b872dd14610250578063313ce5671461028d57806339509351146102b8576101b8565b366101b8577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101c957600080fd5b506101d2610680565b6040516101df9190611f06565b60405180910390f35b3480156101f457600080fd5b5061020f600480360381019061020a9190611fd0565b6106bd565b60405161021c919061202b565b60405180910390f35b34801561023157600080fd5b5061023a6106db565b6040516102479190612055565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612070565b6106e5565b604051610284919061202b565b60405180910390f35b34801561029957600080fd5b506102a26107be565b6040516102af91906120df565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190611fd0565b6107c7565b6040516102ec919061202b565b60405180910390f35b34801561030157600080fd5b5061030a61087a565b6040516103179190612055565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906120fa565b610880565b005b34801561035557600080fd5b50610370600480360381019061036b9190612127565b610894565b60405161037d919061202b565b60405180910390f35b6103a0600480360381019061039b91906120fa565b6108ea565b005b3480156103ae57600080fd5b506103b7610947565b6040516103c49190612055565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190612127565b61094d565b6040516104019190612055565b60405180910390f35b34801561041657600080fd5b5061041f610996565b005b34801561042d57600080fd5b506104366109aa565b6040516104439190612055565b60405180910390f35b34801561045857600080fd5b506104616109dc565b60405161046e9190612163565b60405180910390f35b34801561048357600080fd5b5061048c610a06565b6040516104999190612163565b60405180910390f35b3480156104ae57600080fd5b506104b7610a2f565b6040516104c49190611f06565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef919061217e565b610a6c565b005b34801561050257600080fd5b5061051d60048036038101906105189190611fd0565b610a86565b60405161052a919061202b565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190611fd0565b610b53565b604051610567919061202b565b60405180910390f35b34801561057c57600080fd5b50610585610b71565b6040516105929190612055565b60405180910390f35b3480156105a757600080fd5b506105b0610b77565b6040516105bd919061202b565b60405180910390f35b3480156105d257600080fd5b506105db610b8e565b6040516105e89190612163565b60405180910390f35b3480156105fd57600080fd5b50610618600480360381019061061391906121be565b610bb8565b6040516106259190612055565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190612346565b610c3f565b005b34801561066357600080fd5b5061067e60048036038101906106799190612127565b610d27565b005b60606040518060400160405280600e81526020017f544f4b454e20534d555246204649000000000000000000000000000000000000815250905090565b60006106d16106ca610dc0565b8484610dc8565b6001905092915050565b6000600254905090565b60006106f2848484610f91565b6107b3846106fe610dc0565b6107ae85604051806060016040528060288152602001612cb660289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610764610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b610dc8565b600190509392505050565b60006012905090565b60006108706107d4610dc0565b8461086b85600760006107e5610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b610dc8565b6001905092915050565b600f5481565b61089161088b610dc0565b82611944565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6108f2611ae7565b6001600860146101000a81548160ff02191690831515021790555061091f610918610a06565b3083610f91565b6109298134611b65565b6000600860146101000a81548160ff02191690831515021790555050565b600d5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61099e611ae7565b6109a86000611c4a565b565b60006109d76127106109c9600354600254611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600681526020017f544f4b454e530000000000000000000000000000000000000000000000000000815250905090565b610a74611ae7565b81600d8190555080600f819055505050565b6000610b49610a93610dc0565b84610b4485604051806060016040528060258152602001612cde6025913960076000610abd610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b610dc8565b6001905092915050565b6000610b67610b60610dc0565b8484610f91565b6001905092915050565b600e5481565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c47611ae7565b60c881511115610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390612401565b60405180910390fd5b6000600c905060005b8251811015610d22576001826000858481518110610cb657610cb5612421565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d1a9061247f565b915050610c95565b505050565b610d2f611ae7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590612539565b60405180910390fd5b610da781611c4a565b50565b60008183610db89190612559565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e906125ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90612691565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f849190612055565b60405180910390a3505050565b610f9c838383611d3a565b600080610fa7610a06565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110155750610fe5610a06565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158a57600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110be5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561158957600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561116e5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111c45750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561121a5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113145761124a61271061123c600354600254611d0e90919063ffffffff16565b611d2490919063ffffffff16565b83111561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612723565b60405180910390fd5b6112b76127106112a9600554600254611d0e90919063ffffffff16565b611d2490919063ffffffff16565b6112d2846112c48761094d565b610daa90919063ffffffff16565b1115611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a906127b5565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561139d57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561143d576113cb6127106113bd600e5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b91506113f66127106113e8600d5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114e85750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158857611516612710611508600e5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b9150611541612710611533600f5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061159f8284610daa90919063ffffffff16565b9050600081111561173e5760008311156115be576115bd8684611944565b5b60008211156117285761163b8260016000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b60016000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171f9190612055565b60405180910390a35b61173b8185611e6090919063ffffffff16565b93505b6117aa84604051806060016040528060268152602001612c9060269139600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183f84600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516118df9190612055565b60405180910390a3505050505050565b6000838311158290611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e9190611f06565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90612847565b60405180910390fd5b611a1f81604051806060016040528060228152602001612c6e60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a7781600254611e6090919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611adb9190612055565b60405180910390a35050565b611aef610dc0565b73ffffffffffffffffffffffffffffffffffffffff16611b0d610a06565b73ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906128b3565b60405180910390fd5b565b611b9230600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610dc8565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611bde610a06565b426040518863ffffffff1660e01b8152600401611c0096959493929190612918565b60606040518083038185885af1158015611c1e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c43919061298e565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611d1c91906129e1565b905092915050565b60008183611d329190612a52565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090612af5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90612b87565b60405180910390fd5b60008111611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290612c19565b60405180910390fd5b505050565b60008183611e6e9190612c39565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611eb0578082015181840152602081019050611e95565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ed882611e76565b611ee28185611e81565b9350611ef2818560208601611e92565b611efb81611ebc565b840191505092915050565b60006020820190508181036000830152611f208184611ecd565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f6782611f3c565b9050919050565b611f7781611f5c565b8114611f8257600080fd5b50565b600081359050611f9481611f6e565b92915050565b6000819050919050565b611fad81611f9a565b8114611fb857600080fd5b50565b600081359050611fca81611fa4565b92915050565b60008060408385031215611fe757611fe6611f32565b5b6000611ff585828601611f85565b925050602061200685828601611fbb565b9150509250929050565b60008115159050919050565b61202581612010565b82525050565b6000602082019050612040600083018461201c565b92915050565b61204f81611f9a565b82525050565b600060208201905061206a6000830184612046565b92915050565b60008060006060848603121561208957612088611f32565b5b600061209786828701611f85565b93505060206120a886828701611f85565b92505060406120b986828701611fbb565b9150509250925092565b600060ff82169050919050565b6120d9816120c3565b82525050565b60006020820190506120f460008301846120d0565b92915050565b6000602082840312156121105761210f611f32565b5b600061211e84828501611fbb565b91505092915050565b60006020828403121561213d5761213c611f32565b5b600061214b84828501611f85565b91505092915050565b61215d81611f5c565b82525050565b60006020820190506121786000830184612154565b92915050565b6000806040838503121561219557612194611f32565b5b60006121a385828601611fbb565b92505060206121b485828601611fbb565b9150509250929050565b600080604083850312156121d5576121d4611f32565b5b60006121e385828601611f85565b92505060206121f485828601611f85565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61223b82611ebc565b810181811067ffffffffffffffff8211171561225a57612259612203565b5b80604052505050565b600061226d611f28565b90506122798282612232565b919050565b600067ffffffffffffffff82111561229957612298612203565b5b602082029050602081019050919050565b600080fd5b60006122c26122bd8461227e565b612263565b905080838252602082019050602084028301858111156122e5576122e46122aa565b5b835b8181101561230e57806122fa8882611f85565b8452602084019350506020810190506122e7565b5050509392505050565b600082601f83011261232d5761232c6121fe565b5b813561233d8482602086016122af565b91505092915050565b60006020828403121561235c5761235b611f32565b5b600082013567ffffffffffffffff81111561237a57612379611f37565b5b61238684828501612318565b91505092915050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b60006123eb602383611e81565b91506123f68261238f565b604082019050919050565b6000602082019050818103600083015261241a816123de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061248a82611f9a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036124bc576124bb612450565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612523602683611e81565b915061252e826124c7565b604082019050919050565b6000602082019050818103600083015261255281612516565b9050919050565b600061256482611f9a565b915061256f83611f9a565b925082820190508082111561258757612586612450565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006125e9602483611e81565b91506125f48261258d565b604082019050919050565b60006020820190508181036000830152612618816125dc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061267b602283611e81565b91506126868261261f565b604082019050919050565b600060208201905081810360008301526126aa8161266e565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600061270d602883611e81565b9150612718826126b1565b604082019050919050565b6000602082019050818103600083015261273c81612700565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061279f602383611e81565b91506127aa82612743565b604082019050919050565b600060208201905081810360008301526127ce81612792565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612831602183611e81565b915061283c826127d5565b604082019050919050565b6000602082019050818103600083015261286081612824565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061289d602083611e81565b91506128a882612867565b602082019050919050565b600060208201905081810360008301526128cc81612890565b9050919050565b6000819050919050565b6000819050919050565b60006129026128fd6128f8846128d3565b6128dd565b611f9a565b9050919050565b612912816128e7565b82525050565b600060c08201905061292d6000830189612154565b61293a6020830188612046565b6129476040830187612909565b6129546060830186612909565b6129616080830185612154565b61296e60a0830184612046565b979650505050505050565b60008151905061298881611fa4565b92915050565b6000806000606084860312156129a7576129a6611f32565b5b60006129b586828701612979565b93505060206129c686828701612979565b92505060406129d786828701612979565b9150509250925092565b60006129ec82611f9a565b91506129f783611f9a565b9250828202612a0581611f9a565b91508282048414831517612a1c57612a1b612450565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a5d82611f9a565b9150612a6883611f9a565b925082612a7857612a77612a23565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612adf602583611e81565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b71602383611e81565b9150612b7c82612b15565b604082019050919050565b60006020820190508181036000830152612ba081612b64565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612c03602983611e81565b9150612c0e82612ba7565b604082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b6000612c4482611f9a565b9150612c4f83611f9a565b9250828203905081811115612c6757612c66612450565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c4beb429075a98995b7dd11ea005cca29e269f368a44f7ed36d99626e64c287964736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101855760003560e01c80637d1db4a5116100d1578063a9059cbb1161008a578063d54f7d5e11610064578063d54f7d5e146105c6578063dd62ed3e146105f1578063dd80ba451461062e578063f2fde38b14610657576101b8565b8063a9059cbb14610533578063c0b0fda214610570578063cdf4bab91461059b576101b8565b80637d1db4a5146104215780638d5f81e21461044c5780638da5cb5b1461047757806395d89b41146104a25780639fbc6a36146104cd578063a457c2d7146104f6576101b8565b806340b9a54b1161013e57806351c6590a1161011857806351c6590a14610386578063590f897e146103a257806370a08231146103cd578063715018a61461040a576101b8565b806340b9a54b146102f557806342966c68146103205780634fbee19314610349576101b8565b806306fdde03146101bd578063095ea7b3146101e857806318160ddd1461022557806323b872dd14610250578063313ce5671461028d57806339509351146102b8576101b8565b366101b8577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101c957600080fd5b506101d2610680565b6040516101df9190611f06565b60405180910390f35b3480156101f457600080fd5b5061020f600480360381019061020a9190611fd0565b6106bd565b60405161021c919061202b565b60405180910390f35b34801561023157600080fd5b5061023a6106db565b6040516102479190612055565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612070565b6106e5565b604051610284919061202b565b60405180910390f35b34801561029957600080fd5b506102a26107be565b6040516102af91906120df565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190611fd0565b6107c7565b6040516102ec919061202b565b60405180910390f35b34801561030157600080fd5b5061030a61087a565b6040516103179190612055565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906120fa565b610880565b005b34801561035557600080fd5b50610370600480360381019061036b9190612127565b610894565b60405161037d919061202b565b60405180910390f35b6103a0600480360381019061039b91906120fa565b6108ea565b005b3480156103ae57600080fd5b506103b7610947565b6040516103c49190612055565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190612127565b61094d565b6040516104019190612055565b60405180910390f35b34801561041657600080fd5b5061041f610996565b005b34801561042d57600080fd5b506104366109aa565b6040516104439190612055565b60405180910390f35b34801561045857600080fd5b506104616109dc565b60405161046e9190612163565b60405180910390f35b34801561048357600080fd5b5061048c610a06565b6040516104999190612163565b60405180910390f35b3480156104ae57600080fd5b506104b7610a2f565b6040516104c49190611f06565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef919061217e565b610a6c565b005b34801561050257600080fd5b5061051d60048036038101906105189190611fd0565b610a86565b60405161052a919061202b565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190611fd0565b610b53565b604051610567919061202b565b60405180910390f35b34801561057c57600080fd5b50610585610b71565b6040516105929190612055565b60405180910390f35b3480156105a757600080fd5b506105b0610b77565b6040516105bd919061202b565b60405180910390f35b3480156105d257600080fd5b506105db610b8e565b6040516105e89190612163565b60405180910390f35b3480156105fd57600080fd5b50610618600480360381019061061391906121be565b610bb8565b6040516106259190612055565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190612346565b610c3f565b005b34801561066357600080fd5b5061067e60048036038101906106799190612127565b610d27565b005b60606040518060400160405280600e81526020017f544f4b454e20534d555246204649000000000000000000000000000000000000815250905090565b60006106d16106ca610dc0565b8484610dc8565b6001905092915050565b6000600254905090565b60006106f2848484610f91565b6107b3846106fe610dc0565b6107ae85604051806060016040528060288152602001612cb660289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610764610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b610dc8565b600190509392505050565b60006012905090565b60006108706107d4610dc0565b8461086b85600760006107e5610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b610dc8565b6001905092915050565b600f5481565b61089161088b610dc0565b82611944565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6108f2611ae7565b6001600860146101000a81548160ff02191690831515021790555061091f610918610a06565b3083610f91565b6109298134611b65565b6000600860146101000a81548160ff02191690831515021790555050565b600d5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61099e611ae7565b6109a86000611c4a565b565b60006109d76127106109c9600354600254611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600681526020017f544f4b454e530000000000000000000000000000000000000000000000000000815250905090565b610a74611ae7565b81600d8190555080600f819055505050565b6000610b49610a93610dc0565b84610b4485604051806060016040528060258152602001612cde6025913960076000610abd610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b610dc8565b6001905092915050565b6000610b67610b60610dc0565b8484610f91565b6001905092915050565b600e5481565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c47611ae7565b60c881511115610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390612401565b60405180910390fd5b6000600c905060005b8251811015610d22576001826000858481518110610cb657610cb5612421565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d1a9061247f565b915050610c95565b505050565b610d2f611ae7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590612539565b60405180910390fd5b610da781611c4a565b50565b60008183610db89190612559565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e906125ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90612691565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f849190612055565b60405180910390a3505050565b610f9c838383611d3a565b600080610fa7610a06565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110155750610fe5610a06565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158a57600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110be5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561158957600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561116e5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111c45750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561121a5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113145761124a61271061123c600354600254611d0e90919063ffffffff16565b611d2490919063ffffffff16565b83111561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612723565b60405180910390fd5b6112b76127106112a9600554600254611d0e90919063ffffffff16565b611d2490919063ffffffff16565b6112d2846112c48761094d565b610daa90919063ffffffff16565b1115611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a906127b5565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561139d57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561143d576113cb6127106113bd600e5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b91506113f66127106113e8600d5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114e85750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158857611516612710611508600e5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b9150611541612710611533600f5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061159f8284610daa90919063ffffffff16565b9050600081111561173e5760008311156115be576115bd8684611944565b5b60008211156117285761163b8260016000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b60016000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171f9190612055565b60405180910390a35b61173b8185611e6090919063ffffffff16565b93505b6117aa84604051806060016040528060268152602001612c9060269139600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183f84600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516118df9190612055565b60405180910390a3505050505050565b6000838311158290611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e9190611f06565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90612847565b60405180910390fd5b611a1f81604051806060016040528060228152602001612c6e60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a7781600254611e6090919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611adb9190612055565b60405180910390a35050565b611aef610dc0565b73ffffffffffffffffffffffffffffffffffffffff16611b0d610a06565b73ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906128b3565b60405180910390fd5b565b611b9230600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610dc8565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611bde610a06565b426040518863ffffffff1660e01b8152600401611c0096959493929190612918565b60606040518083038185885af1158015611c1e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c43919061298e565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611d1c91906129e1565b905092915050565b60008183611d329190612a52565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090612af5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90612b87565b60405180910390fd5b60008111611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290612c19565b60405180910390fd5b505050565b60008183611e6e9190612c39565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611eb0578082015181840152602081019050611e95565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ed882611e76565b611ee28185611e81565b9350611ef2818560208601611e92565b611efb81611ebc565b840191505092915050565b60006020820190508181036000830152611f208184611ecd565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f6782611f3c565b9050919050565b611f7781611f5c565b8114611f8257600080fd5b50565b600081359050611f9481611f6e565b92915050565b6000819050919050565b611fad81611f9a565b8114611fb857600080fd5b50565b600081359050611fca81611fa4565b92915050565b60008060408385031215611fe757611fe6611f32565b5b6000611ff585828601611f85565b925050602061200685828601611fbb565b9150509250929050565b60008115159050919050565b61202581612010565b82525050565b6000602082019050612040600083018461201c565b92915050565b61204f81611f9a565b82525050565b600060208201905061206a6000830184612046565b92915050565b60008060006060848603121561208957612088611f32565b5b600061209786828701611f85565b93505060206120a886828701611f85565b92505060406120b986828701611fbb565b9150509250925092565b600060ff82169050919050565b6120d9816120c3565b82525050565b60006020820190506120f460008301846120d0565b92915050565b6000602082840312156121105761210f611f32565b5b600061211e84828501611fbb565b91505092915050565b60006020828403121561213d5761213c611f32565b5b600061214b84828501611f85565b91505092915050565b61215d81611f5c565b82525050565b60006020820190506121786000830184612154565b92915050565b6000806040838503121561219557612194611f32565b5b60006121a385828601611fbb565b92505060206121b485828601611fbb565b9150509250929050565b600080604083850312156121d5576121d4611f32565b5b60006121e385828601611f85565b92505060206121f485828601611f85565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61223b82611ebc565b810181811067ffffffffffffffff8211171561225a57612259612203565b5b80604052505050565b600061226d611f28565b90506122798282612232565b919050565b600067ffffffffffffffff82111561229957612298612203565b5b602082029050602081019050919050565b600080fd5b60006122c26122bd8461227e565b612263565b905080838252602082019050602084028301858111156122e5576122e46122aa565b5b835b8181101561230e57806122fa8882611f85565b8452602084019350506020810190506122e7565b5050509392505050565b600082601f83011261232d5761232c6121fe565b5b813561233d8482602086016122af565b91505092915050565b60006020828403121561235c5761235b611f32565b5b600082013567ffffffffffffffff81111561237a57612379611f37565b5b61238684828501612318565b91505092915050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b60006123eb602383611e81565b91506123f68261238f565b604082019050919050565b6000602082019050818103600083015261241a816123de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061248a82611f9a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036124bc576124bb612450565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612523602683611e81565b915061252e826124c7565b604082019050919050565b6000602082019050818103600083015261255281612516565b9050919050565b600061256482611f9a565b915061256f83611f9a565b925082820190508082111561258757612586612450565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006125e9602483611e81565b91506125f48261258d565b604082019050919050565b60006020820190508181036000830152612618816125dc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061267b602283611e81565b91506126868261261f565b604082019050919050565b600060208201905081810360008301526126aa8161266e565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600061270d602883611e81565b9150612718826126b1565b604082019050919050565b6000602082019050818103600083015261273c81612700565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061279f602383611e81565b91506127aa82612743565b604082019050919050565b600060208201905081810360008301526127ce81612792565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612831602183611e81565b915061283c826127d5565b604082019050919050565b6000602082019050818103600083015261286081612824565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061289d602083611e81565b91506128a882612867565b602082019050919050565b600060208201905081810360008301526128cc81612890565b9050919050565b6000819050919050565b6000819050919050565b60006129026128fd6128f8846128d3565b6128dd565b611f9a565b9050919050565b612912816128e7565b82525050565b600060c08201905061292d6000830189612154565b61293a6020830188612046565b6129476040830187612909565b6129546060830186612909565b6129616080830185612154565b61296e60a0830184612046565b979650505050505050565b60008151905061298881611fa4565b92915050565b6000806000606084860312156129a7576129a6611f32565b5b60006129b586828701612979565b93505060206129c686828701612979565b92505060406129d786828701612979565b9150509250925092565b60006129ec82611f9a565b91506129f783611f9a565b9250828202612a0581611f9a565b91508282048414831517612a1c57612a1b612450565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a5d82611f9a565b9150612a6883611f9a565b925082612a7857612a77612a23565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612adf602583611e81565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b71602383611e81565b9150612b7c82612b15565b604082019050919050565b60006020820190508181036000830152612ba081612b64565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612c03602983611e81565b9150612c0e82612ba7565b604082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b6000612c4482611f9a565b9150612c4f83611f9a565b9250828203905081811115612c6757612c66612450565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c4beb429075a98995b7dd11ea005cca29e269f368a44f7ed36d99626e64c287964736f6c63430008120033

Deployed Bytecode Sourcemap

20919:12617:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32913:10;;;;;;;;;;20919:12617;;;;;23519:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24374:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24266:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25450:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23615:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24592:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21881:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30864:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30963:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32939:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21813:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23706:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2727:103;;;;;;;;;;;;;:::i;:::-;;25308:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29041:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23419:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30340:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24900:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23833:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21847:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32777:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29145:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24057:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29995:337;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2985:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23519:88;23556:13;23589:10;;;;;;;;;;;;;;;;;23582:17;;23519:88;:::o;24374:210::-;24493:4;24515:39;24524:12;:10;:12::i;:::-;24538:7;24547:6;24515:8;:39::i;:::-;24572:4;24565:11;;24374:210;;;;:::o;24266:100::-;24319:7;24346:12;;24339:19;;24266:100;:::o;25450:454::-;25590:4;25607:36;25617:6;25625:9;25636:6;25607:9;:36::i;:::-;25654:220;25677:6;25698:12;:10;:12::i;:::-;25725:138;25781:6;25725:138;;;;;;;;;;;;;;;;;:11;:19;25737:6;25725:19;;;;;;;;;;;;;;;:33;25745:12;:10;:12::i;:::-;25725:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;25654:8;:220::i;:::-;25892:4;25885:11;;25450:454;;;;;:::o;23615:83::-;23656:5;22165:2;23674:16;;23615:83;:::o;24592:300::-;24707:4;24729:133;24752:12;:10;:12::i;:::-;24779:7;24801:50;24840:10;24801:11;:25;24813:12;:10;:12::i;:::-;24801:25;;;;;;;;;;;;;;;:34;24827:7;24801:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;24729:8;:133::i;:::-;24880:4;24873:11;;24592:300;;;;:::o;21881:26::-;;;;:::o;30864:91::-;30920:27;30926:12;:10;:12::i;:::-;30940:6;30920:5;:27::i;:::-;30864:91;:::o;30963:128::-;31030:4;31054:19;:29;31074:8;31054:29;;;;;;;;;;;;;;;;;;;;;;;;;31047:36;;30963:128;;;:::o;32939:234::-;1965:13;:11;:13::i;:::-;31998:4:::1;31987:8;;:15;;;;;;;;;;;;;;;;;;33071:46:::2;33081:7;:5;:7::i;:::-;33098:4;33105:11;33071:9;:46::i;:::-;33128:37;33142:11;33155:9;33128:13;:37::i;:::-;32036:5:::1;32025:8;;:16;;;;;;;;;;;;;;;;;;32939:234:::0;:::o;21813:27::-;;;;:::o;23706:119::-;23772:7;23799:9;:18;23809:7;23799:18;;;;;;;;;;;;;;;;23792:25;;23706:119;;;:::o;2727:103::-;1965:13;:11;:13::i;:::-;2792:30:::1;2819:1;2792:18;:30::i;:::-;2727:103::o:0;25308:134::-;25353:7;25380:54;21313:5;25380:40;25397:22;;25380:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;25373:61;;25308:134;:::o;29041:96::-;29088:7;29115:14;;;;;;;;;;;29108:21;;29041:96;:::o;2079:87::-;2125:7;2152:6;;;;;;;;;;;2145:13;;2079:87;:::o;23419:92::-;23458:13;23491:12;;;;;;;;;;;;;;;;;23484:19;;23419:92;:::o;30340:117::-;1965:13;:11;:13::i;:::-;30424:2:::1;30413:8;:13;;;;30447:2;30437:7;:12;;;;30340:117:::0;;:::o;24900:400::-;25020:4;25042:228;25065:12;:10;:12::i;:::-;25092:7;25114:145;25171:15;25114:145;;;;;;;;;;;;;;;;;:11;:25;25126:12;:10;:12::i;:::-;25114:25;;;;;;;;;;;;;;;:34;25140:7;25114:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;25042:8;:228::i;:::-;25288:4;25281:11;;24900:400;;;;:::o;23833:216::-;23955:4;23977:42;23987:12;:10;:12::i;:::-;24001:9;24012:6;23977:9;:42::i;:::-;24037:4;24030:11;;23833:216;;;;:::o;21847:27::-;;;;:::o;32777:85::-;32822:4;32846:8;;;;;;;;;;;32839:15;;32777:85;:::o;29145:109::-;29194:7;29229:16;;;;;;;;;;;29214:32;;29145:109;:::o;24057:201::-;24191:7;24223:11;:18;24235:5;24223:18;;;;;;;;;;;;;;;:27;24242:7;24223:27;;;;;;;;;;;;;;;;24216:34;;24057:201;;;;:::o;29995:337::-;1965:13;:11;:13::i;:::-;30100:3:::1;30080:9;:16;:23;;30072:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30156:36;30195:19;30156:58;;30232:9;30227:98;30251:9;:16;30247:1;:20;30227:98;;;30309:4;30289:3;:17;30293:9;30303:1;30293:12;;;;;;;;:::i;:::-;;;;;;;;30289:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;30269:3;;;;;:::i;:::-;;;;30227:98;;;;30061:271;29995:337:::0;:::o;2985:238::-;1965:13;:11;:13::i;:::-;3108:1:::1;3088:22;;:8;:22;;::::0;3066:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3187:28;3206:8;3187:18;:28::i;:::-;2985:238:::0;:::o;13350:98::-;13408:7;13439:1;13435;:5;;;;:::i;:::-;13428:12;;13350:98;;;;:::o;609:::-;662:7;689:10;682:17;;609:98;:::o;29262:378::-;29415:1;29398:19;;:5;:19;;;29390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29496:1;29477:21;;:7;:21;;;29469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29578:6;29548:11;:18;29560:5;29548:18;;;;;;;;;;;;;;;:27;29567:7;29548:27;;;;;;;;;;;;;;;:36;;;;29616:7;29600:32;;29609:5;29600:32;;;29625:6;29600:32;;;;;;:::i;:::-;;;;;;;;29262:378;;;:::o;25912:2799::-;26044:42;26060:6;26068:9;26079:6;26044:15;:42::i;:::-;26097:15;26127:14;26170:7;:5;:7::i;:::-;26160:17;;:6;:17;;;;:41;;;;;26194:7;:5;:7::i;:::-;26181:20;;:9;:20;;;;26160:41;26156:1823;;;26241:19;:27;26261:6;26241:27;;;;;;;;;;;;;;;;;;;;;;;;;26240:28;:63;;;;;26273:19;:30;26293:9;26273:30;;;;;;;;;;;;;;;;;;;;;;;;;26272:31;26240:63;26218:1750;;;26374:14;;;;;;;;;;;26364:24;;:6;:24;;;:87;;;;;26434:16;;;;;;;;;;;26413:38;;:9;:38;;;;26364:87;:144;;;;;26477:20;:31;26498:9;26477:31;;;;;;;;;;;;;;;;;;;;;;;;;26476:32;26364:144;:198;;;;;26534:20;:28;26555:6;26534:28;;;;;;;;;;;;;;;;;;;;;;;;;26533:29;26364:198;26338:904;;;26678:118;21313:5;26678:40;26695:22;;26678:12;;:16;;:40;;;;:::i;:::-;:44;;:118;;;;:::i;:::-;26639:6;:157;;26605:283;;;;;;;;;;;;:::i;:::-;;;;;;;;;27012:123;21313:5;27012:45;27029:27;;27012:12;;:16;;:45;;;;:::i;:::-;:49;;:123;;;;:::i;:::-;26947:32;26972:6;26947:20;26957:9;26947;:20::i;:::-;:24;;:32;;;;:::i;:::-;:188;;26913:309;;;;;;;;;;;;:::i;:::-;;;;;;;;;26338:904;27305:14;;;;;;;;;;;27292:27;;:9;:27;;;:54;;;;;27341:4;27323:23;;:6;:23;;;;27292:54;27288:274;;;27381:34;21313:5;27381:20;27392:8;;27381:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27371:44;;27447:34;21313:5;27447:20;27458:8;;27447:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27438:43;;27530:12;27504;:23;27517:9;27504:23;;;;;;;;;;;;;;;:38;;;;27288:274;27643:14;;;;;;;;;;;27633:24;;:6;:24;;;:87;;;;;27703:16;;;;;;;;;;;27682:38;;:9;:38;;;;27633:87;27607:346;;;27773:34;21313:5;27773:20;27784:8;;27773:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27763:44;;27839:33;21313:5;27839:19;27850:7;;27839:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;27830:42;;27921:12;27895;:23;27908:9;27895:23;;;;;;;;;;;;;;;:38;;;;27607:346;26218:1750;26156:1823;27989:16;28008:19;28020:6;28008:7;:11;;:19;;;;:::i;:::-;27989:38;;28053:1;28042:8;:12;28038:406;;;28085:1;28075:7;:11;28071:74;;;28107:22;28113:6;28121:7;28107:5;:22::i;:::-;28071:74;28174:1;28165:6;:10;28161:226;;;28226:79;28280:6;28226:9;:27;28236:16;;;;;;;;;;;28226:27;;;;;;;;;;;;;;;;:31;;:79;;;;:::i;:::-;28196:9;:27;28206:16;;;;;;;;;;;28196:27;;;;;;;;;;;;;;;:109;;;;28346:16;;;;;;;;;;;28329:42;;28338:6;28329:42;;;28364:6;28329:42;;;;;;:::i;:::-;;;;;;;;28161:226;28412:20;28423:8;28412:6;:10;;:20;;;;:::i;:::-;28403:29;;28038:406;28476:108;28512:6;28476:108;;;;;;;;;;;;;;;;;:9;:17;28486:6;28476:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;28456:9;:17;28466:6;28456:17;;;;;;;;;;;;;;;:128;;;;28618:32;28643:6;28618:9;:20;28628:9;28618:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28595:9;:20;28605:9;28595:20;;;;;;;;;;;;;;;:55;;;;28685:9;28668:35;;28677:6;28668:35;;;28696:6;28668:35;;;;;;:::i;:::-;;;;;;;;26033:2678;;;25912:2799;;;:::o;15629:240::-;15749:7;15807:1;15802;:6;;15810:12;15794:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15849:1;15845;:5;15838:12;;15629:240;;;;;:::o;30465:391::-;30568:1;30549:21;;:7;:21;;;30541:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30640:105;30677:6;30640:105;;;;;;;;;;;;;;;;;:9;:18;30650:7;30640:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;30619:9;:18;30629:7;30619:18;;;;;;;;;;;;;;;:126;;;;30771:24;30788:6;30771:12;;:16;;:24;;;;:::i;:::-;30756:12;:39;;;;30837:1;30811:37;;30820:7;30811:37;;;30841:6;30811:37;;;;;;:::i;:::-;;;;;;;;30465:391;;:::o;2244:132::-;2319:12;:10;:12::i;:::-;2308:23;;:7;:5;:7::i;:::-;:23;;;2300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:132::o;31099:363::-;31181:63;31198:4;31213:16;;;;;;;;;;;31232:11;31181:8;:63::i;:::-;31255:16;;;;;;;;;;;:32;;;31295:9;31328:4;31348:11;31374:1;31390;31406:7;:5;:7::i;:::-;31428:15;31255:199;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31099:363;;:::o;3383:191::-;3457:16;3476:6;;;;;;;;;;;3457:25;;3502:8;3493:6;;:17;;;;;;;;;;;;;;;;;;3557:8;3526:40;;3547:8;3526:40;;;;;;;;;;;;3446:128;3383:191;:::o;14088:98::-;14146:7;14177:1;14173;:5;;;;:::i;:::-;14166:12;;14088:98;;;;:::o;14487:::-;14545:7;14576:1;14572;:5;;;;:::i;:::-;14565:12;;14487:98;;;;:::o;33181:352::-;33331:1;33315:18;;:4;:18;;;33307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33408:1;33394:16;;:2;:16;;;33386:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33478:1;33469:6;:10;33461:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33181:352;;;:::o;13731:98::-;13789:7;13820:1;13816;:5;;;;:::i;:::-;13809:12;;13731:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:::-;6423:6;6431;6480:2;6468:9;6459:7;6455:23;6451:32;6448:119;;;6486:79;;:::i;:::-;6448:119;6606:1;6631:53;6676:7;6667:6;6656:9;6652:22;6631:53;:::i;:::-;6621:63;;6577:117;6733:2;6759:53;6804:7;6795:6;6784:9;6780:22;6759:53;:::i;:::-;6749:63;;6704:118;6355:474;;;;;:::o;6835:117::-;6944:1;6941;6934:12;6958:180;7006:77;7003:1;6996:88;7103:4;7100:1;7093:15;7127:4;7124:1;7117:15;7144:281;7227:27;7249:4;7227:27;:::i;:::-;7219:6;7215:40;7357:6;7345:10;7342:22;7321:18;7309:10;7306:34;7303:62;7300:88;;;7368:18;;:::i;:::-;7300:88;7408:10;7404:2;7397:22;7187:238;7144:281;;:::o;7431:129::-;7465:6;7492:20;;:::i;:::-;7482:30;;7521:33;7549:4;7541:6;7521:33;:::i;:::-;7431:129;;;:::o;7566:311::-;7643:4;7733:18;7725:6;7722:30;7719:56;;;7755:18;;:::i;:::-;7719:56;7805:4;7797:6;7793:17;7785:25;;7865:4;7859;7855:15;7847:23;;7566:311;;;:::o;7883:117::-;7992:1;7989;7982:12;8023:710;8119:5;8144:81;8160:64;8217:6;8160:64;:::i;:::-;8144:81;:::i;:::-;8135:90;;8245:5;8274:6;8267:5;8260:21;8308:4;8301:5;8297:16;8290:23;;8361:4;8353:6;8349:17;8341:6;8337:30;8390:3;8382:6;8379:15;8376:122;;;8409:79;;:::i;:::-;8376:122;8524:6;8507:220;8541:6;8536:3;8533:15;8507:220;;;8616:3;8645:37;8678:3;8666:10;8645:37;:::i;:::-;8640:3;8633:50;8712:4;8707:3;8703:14;8696:21;;8583:144;8567:4;8562:3;8558:14;8551:21;;8507:220;;;8511:21;8125:608;;8023:710;;;;;:::o;8756:370::-;8827:5;8876:3;8869:4;8861:6;8857:17;8853:27;8843:122;;8884:79;;:::i;:::-;8843:122;9001:6;8988:20;9026:94;9116:3;9108:6;9101:4;9093:6;9089:17;9026:94;:::i;:::-;9017:103;;8833:293;8756:370;;;;:::o;9132:539::-;9216:6;9265:2;9253:9;9244:7;9240:23;9236:32;9233:119;;;9271:79;;:::i;:::-;9233:119;9419:1;9408:9;9404:17;9391:31;9449:18;9441:6;9438:30;9435:117;;;9471:79;;:::i;:::-;9435:117;9576:78;9646:7;9637:6;9626:9;9622:22;9576:78;:::i;:::-;9566:88;;9362:302;9132:539;;;;:::o;9677:222::-;9817:34;9813:1;9805:6;9801:14;9794:58;9886:5;9881:2;9873:6;9869:15;9862:30;9677:222;:::o;9905:366::-;10047:3;10068:67;10132:2;10127:3;10068:67;:::i;:::-;10061:74;;10144:93;10233:3;10144:93;:::i;:::-;10262:2;10257:3;10253:12;10246:19;;9905:366;;;:::o;10277:419::-;10443:4;10481:2;10470:9;10466:18;10458:26;;10530:9;10524:4;10520:20;10516:1;10505:9;10501:17;10494:47;10558:131;10684:4;10558:131;:::i;:::-;10550:139;;10277:419;;;:::o;10702:180::-;10750:77;10747:1;10740:88;10847:4;10844:1;10837:15;10871:4;10868:1;10861:15;10888:180;10936:77;10933:1;10926:88;11033:4;11030:1;11023:15;11057:4;11054:1;11047:15;11074:233;11113:3;11136:24;11154:5;11136:24;:::i;:::-;11127:33;;11182:66;11175:5;11172:77;11169:103;;11252:18;;:::i;:::-;11169:103;11299:1;11292:5;11288:13;11281:20;;11074:233;;;:::o;11313:225::-;11453:34;11449:1;11441:6;11437:14;11430:58;11522:8;11517:2;11509:6;11505:15;11498:33;11313:225;:::o;11544:366::-;11686:3;11707:67;11771:2;11766:3;11707:67;:::i;:::-;11700:74;;11783:93;11872:3;11783:93;:::i;:::-;11901:2;11896:3;11892:12;11885:19;;11544:366;;;:::o;11916:419::-;12082:4;12120:2;12109:9;12105:18;12097:26;;12169:9;12163:4;12159:20;12155:1;12144:9;12140:17;12133:47;12197:131;12323:4;12197:131;:::i;:::-;12189:139;;11916:419;;;:::o;12341:191::-;12381:3;12400:20;12418:1;12400:20;:::i;:::-;12395:25;;12434:20;12452:1;12434:20;:::i;:::-;12429:25;;12477:1;12474;12470:9;12463:16;;12498:3;12495:1;12492:10;12489:36;;;12505:18;;:::i;:::-;12489:36;12341:191;;;;:::o;12538:223::-;12678:34;12674:1;12666:6;12662:14;12655:58;12747:6;12742:2;12734:6;12730:15;12723:31;12538:223;:::o;12767:366::-;12909:3;12930:67;12994:2;12989:3;12930:67;:::i;:::-;12923:74;;13006:93;13095:3;13006:93;:::i;:::-;13124:2;13119:3;13115:12;13108:19;;12767:366;;;:::o;13139:419::-;13305:4;13343:2;13332:9;13328:18;13320:26;;13392:9;13386:4;13382:20;13378:1;13367:9;13363:17;13356:47;13420:131;13546:4;13420:131;:::i;:::-;13412:139;;13139:419;;;:::o;13564:221::-;13704:34;13700:1;13692:6;13688:14;13681:58;13773:4;13768:2;13760:6;13756:15;13749:29;13564:221;:::o;13791:366::-;13933:3;13954:67;14018:2;14013:3;13954:67;:::i;:::-;13947:74;;14030:93;14119:3;14030:93;:::i;:::-;14148:2;14143:3;14139:12;14132:19;;13791:366;;;:::o;14163:419::-;14329:4;14367:2;14356:9;14352:18;14344:26;;14416:9;14410:4;14406:20;14402:1;14391:9;14387:17;14380:47;14444:131;14570:4;14444:131;:::i;:::-;14436:139;;14163:419;;;:::o;14588:227::-;14728:34;14724:1;14716:6;14712:14;14705:58;14797:10;14792:2;14784:6;14780:15;14773:35;14588:227;:::o;14821:366::-;14963:3;14984:67;15048:2;15043:3;14984:67;:::i;:::-;14977:74;;15060:93;15149:3;15060:93;:::i;:::-;15178:2;15173:3;15169:12;15162:19;;14821:366;;;:::o;15193:419::-;15359:4;15397:2;15386:9;15382:18;15374:26;;15446:9;15440:4;15436:20;15432:1;15421:9;15417:17;15410:47;15474:131;15600:4;15474:131;:::i;:::-;15466:139;;15193:419;;;:::o;15618:222::-;15758:34;15754:1;15746:6;15742:14;15735:58;15827:5;15822:2;15814:6;15810:15;15803:30;15618:222;:::o;15846:366::-;15988:3;16009:67;16073:2;16068:3;16009:67;:::i;:::-;16002:74;;16085:93;16174:3;16085:93;:::i;:::-;16203:2;16198:3;16194:12;16187:19;;15846:366;;;:::o;16218:419::-;16384:4;16422:2;16411:9;16407:18;16399:26;;16471:9;16465:4;16461:20;16457:1;16446:9;16442:17;16435:47;16499:131;16625:4;16499:131;:::i;:::-;16491:139;;16218:419;;;:::o;16643:220::-;16783:34;16779:1;16771:6;16767:14;16760:58;16852:3;16847:2;16839:6;16835:15;16828:28;16643:220;:::o;16869:366::-;17011:3;17032:67;17096:2;17091:3;17032:67;:::i;:::-;17025:74;;17108:93;17197:3;17108:93;:::i;:::-;17226:2;17221:3;17217:12;17210:19;;16869:366;;;:::o;17241:419::-;17407:4;17445:2;17434:9;17430:18;17422:26;;17494:9;17488:4;17484:20;17480:1;17469:9;17465:17;17458:47;17522:131;17648:4;17522:131;:::i;:::-;17514:139;;17241:419;;;:::o;17666:182::-;17806:34;17802:1;17794:6;17790:14;17783:58;17666:182;:::o;17854:366::-;17996:3;18017:67;18081:2;18076:3;18017:67;:::i;:::-;18010:74;;18093:93;18182:3;18093:93;:::i;:::-;18211:2;18206:3;18202:12;18195:19;;17854:366;;;:::o;18226:419::-;18392:4;18430:2;18419:9;18415:18;18407:26;;18479:9;18473:4;18469:20;18465:1;18454:9;18450:17;18443:47;18507:131;18633:4;18507:131;:::i;:::-;18499:139;;18226:419;;;:::o;18651:85::-;18696:7;18725:5;18714:16;;18651:85;;;:::o;18742:60::-;18770:3;18791:5;18784:12;;18742:60;;;:::o;18808:158::-;18866:9;18899:61;18917:42;18926:32;18952:5;18926:32;:::i;:::-;18917:42;:::i;:::-;18899:61;:::i;:::-;18886:74;;18808:158;;;:::o;18972:147::-;19067:45;19106:5;19067:45;:::i;:::-;19062:3;19055:58;18972:147;;:::o;19125:807::-;19374:4;19412:3;19401:9;19397:19;19389:27;;19426:71;19494:1;19483:9;19479:17;19470:6;19426:71;:::i;:::-;19507:72;19575:2;19564:9;19560:18;19551:6;19507:72;:::i;:::-;19589:80;19665:2;19654:9;19650:18;19641:6;19589:80;:::i;:::-;19679;19755:2;19744:9;19740:18;19731:6;19679:80;:::i;:::-;19769:73;19837:3;19826:9;19822:19;19813:6;19769:73;:::i;:::-;19852;19920:3;19909:9;19905:19;19896:6;19852:73;:::i;:::-;19125:807;;;;;;;;;:::o;19938:143::-;19995:5;20026:6;20020:13;20011:22;;20042:33;20069:5;20042:33;:::i;:::-;19938:143;;;;:::o;20087:663::-;20175:6;20183;20191;20240:2;20228:9;20219:7;20215:23;20211:32;20208:119;;;20246:79;;:::i;:::-;20208:119;20366:1;20391:64;20447:7;20438:6;20427:9;20423:22;20391:64;:::i;:::-;20381:74;;20337:128;20504:2;20530:64;20586:7;20577:6;20566:9;20562:22;20530:64;:::i;:::-;20520:74;;20475:129;20643:2;20669:64;20725:7;20716:6;20705:9;20701:22;20669:64;:::i;:::-;20659:74;;20614:129;20087:663;;;;;:::o;20756:410::-;20796:7;20819:20;20837:1;20819:20;:::i;:::-;20814:25;;20853:20;20871:1;20853:20;:::i;:::-;20848:25;;20908:1;20905;20901:9;20930:30;20948:11;20930:30;:::i;:::-;20919:41;;21109:1;21100:7;21096:15;21093:1;21090:22;21070:1;21063:9;21043:83;21020:139;;21139:18;;:::i;:::-;21020:139;20804:362;20756:410;;;;:::o;21172:180::-;21220:77;21217:1;21210:88;21317:4;21314:1;21307:15;21341:4;21338:1;21331:15;21358:185;21398:1;21415:20;21433:1;21415:20;:::i;:::-;21410:25;;21449:20;21467:1;21449:20;:::i;:::-;21444:25;;21488:1;21478:35;;21493:18;;:::i;:::-;21478:35;21535:1;21532;21528:9;21523:14;;21358:185;;;;:::o;21549:224::-;21689:34;21685:1;21677:6;21673:14;21666:58;21758:7;21753:2;21745:6;21741:15;21734:32;21549:224;:::o;21779:366::-;21921:3;21942:67;22006:2;22001:3;21942:67;:::i;:::-;21935:74;;22018:93;22107:3;22018:93;:::i;:::-;22136:2;22131:3;22127:12;22120:19;;21779:366;;;:::o;22151:419::-;22317:4;22355:2;22344:9;22340:18;22332:26;;22404:9;22398:4;22394:20;22390:1;22379:9;22375:17;22368:47;22432:131;22558:4;22432:131;:::i;:::-;22424:139;;22151:419;;;:::o;22576:222::-;22716:34;22712:1;22704:6;22700:14;22693:58;22785:5;22780:2;22772:6;22768:15;22761:30;22576:222;:::o;22804:366::-;22946:3;22967:67;23031:2;23026:3;22967:67;:::i;:::-;22960:74;;23043:93;23132:3;23043:93;:::i;:::-;23161:2;23156:3;23152:12;23145:19;;22804:366;;;:::o;23176:419::-;23342:4;23380:2;23369:9;23365:18;23357:26;;23429:9;23423:4;23419:20;23415:1;23404:9;23400:17;23393:47;23457:131;23583:4;23457:131;:::i;:::-;23449:139;;23176:419;;;:::o;23601:228::-;23741:34;23737:1;23729:6;23725:14;23718:58;23810:11;23805:2;23797:6;23793:15;23786:36;23601:228;:::o;23835:366::-;23977:3;23998:67;24062:2;24057:3;23998:67;:::i;:::-;23991:74;;24074:93;24163:3;24074:93;:::i;:::-;24192:2;24187:3;24183:12;24176:19;;23835:366;;;:::o;24207:419::-;24373:4;24411:2;24400:9;24396:18;24388:26;;24460:9;24454:4;24450:20;24446:1;24435:9;24431:17;24424:47;24488:131;24614:4;24488:131;:::i;:::-;24480:139;;24207:419;;;:::o;24632:194::-;24672:4;24692:20;24710:1;24692:20;:::i;:::-;24687:25;;24726:20;24744:1;24726:20;:::i;:::-;24721:25;;24770:1;24767;24763:9;24755:17;;24794:1;24788:4;24785:11;24782:37;;;24799:18;;:::i;:::-;24782:37;24632:194;;;;:::o

Swarm Source

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