ETH Price: $2,636.62 (+1.78%)

Token

whirlwindprotocol.com (WRL)
 

Overview

Max Total Supply

700,000 WRL

Holders

170

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
zieja.eth
Balance
1.188467347017090089 WRL

Value
$0.00
0x868490398931ffEaD3c38d6D9aF71F4F06D3F4F6
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:
WhirlwindToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-29
*/

/**
 * https://whirlwindprotocol.com
 *  ____      ____  ____  ____  _____  _______     _____  ____      ____  _____  ____  _____  ______    
 * |_  _|    |_  _||_   ||   _||_   _||_   __ \   |_   _||_  _|    |_  _||_   _||_   \|_   _||_   _ `.  
 *   \ \  /\  / /    | |__| |    | |    | |__) |    | |    \ \  /\  / /    | |    |   \ | |    | | `. \ 
 *    \ \/  \/ /     |  __  |    | |    |  __ /     | |   _ \ \/  \/ /     | |    | |\ \| |    | |  | | 
 *     \  /\  /     _| |  | |_  _| |_  _| |  \ \_  _| |__/ | \  /\  /     _| |_  _| |_\   |_  _| |_.' / 
 *      \/  \/     |____||____||_____||____| |___||________|  \/  \/     |_____||_____|\____||______.'  
 *                                                                                                      
 * \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\                      
 *    \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\                        
 *       \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\                        
 *          \\\\\\\\\\\\\\\\\\\\\\\\\\\\\                          
 *            \\\\\\\\\\\\\\\\\\\\\\\\\\                           
 *               \\\\\\\\\\\\\\\\\\\\\                             
 *                  \\\\\\\\\\\\\\\\\                              
 *                    \\\\\\\\\\\\\\                               
 *                    \\\\\\\\\\\\\                                
 *                    \\\\\\\\\\\\                                 
 *                   \\\\\\\\\\\\                                  
 *                  \\\\\\\\\\\\                                   
 *                 \\\\\\\\\\\\                                    
 *                \\\\\\\\\\\\                                     
 *               \\\\\\\\\\\\                                      
 *               \\\\\\\\\\\\                                      
 *          `     \\\\\\\\\\\\      `    `                         
 *             *    \\\\\\\\\\\\  *   *                            
 *      `    *    *   \\\\\\\\\\\\   *  *   `                      
 *              *   *   \\\\\\\\\\  *                              
 *           `    *   * \\\\\\\\\ *   *   `                        
 *        `    `     *  \\\\\\\\   *   `_____                      
 *              \ \ \ * \\\\\\\  * /  /\`````\                    
 *            \ \ \ \  \\\\\\  / / / /  \`````\                    
 *          \ \ \ \ \ \\\\\\ / / / / |[] | [] |
 */
//SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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.
 */
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @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 Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [// importANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * // importANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


// pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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



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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}



interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


contract WhirlwindToken is IERC20, Ownable, ReentrancyGuard {

    using SafeMath for uint256;
    
    mapping (address => mapping (address => uint256)) private _allowances;
    bool transferPaused = true;
    string private _name = "whirlwindprotocol.com";
    string private _symbol = "WRL";
    uint8 private _decimals = 18;
  
    IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public immutable uniswapV2Pair;
    address public _burnPool = 0x000000000000000000000000000000000000dEaD;
    mapping (address => uint256) private _aOwned;
    mapping (address => uint256) private _tOwned;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 70 * 10**4 * 10**18;
    uint256 private _aTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;


    uint8 public feeDecimals;
    uint32 public feePercentage;
    uint256 public minTokensBeforeAddToLP;
    uint256 feeDivider = 9999999999999999999999999;

    uint256 internal _minimumSupply; 
    uint256 public _totalBurnedTokens;
    uint256 public _totalBurnedLpTokens;
    uint256 public _balanceOfLpTokens; 
    
    bool public inSwapAndAbsorb;
    bool public swapAndAbsorbEnabled;

    event FeeUpdated(uint8 feeDecimals, uint32 feePercentage);
    event MinTokensBeforeAddToLPUpdated(uint256 minTokensBeforeAddToLP);
    event SwapAndAbsorbEnabledUpdated(bool enabled);
    event SwapAndAbsorb(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    modifier lockTheAbsorption {
        inSwapAndAbsorb = true;
        _;
        inSwapAndAbsorb = false;
    }

    constructor(
        uint8 _feeDecimals,
        uint32 _feePercentage,
        uint256 _minTokensBeforeAddToLP,
        bool _swapAndAbsorbEnabled) public {
        // Internal Token creation to the deployer
        // deployer needs to then seed the pair with some liquidity
       _aOwned[_msgSender()] = _aTotal;

        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());

        // set the rest of the contract variables

        updateFee(_feeDecimals, _feePercentage);
        updateMinTokensBeforeAddToLP(_minTokensBeforeAddToLP);
        updateSwapAndAbsorbEnabled(_swapAndAbsorbEnabled);
        emit Transfer(address(0), _msgSender(), _tTotal);
    }



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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
         if (_isExcluded[account]) return _tOwned[account];
        return tokenFromAllocation(_aOwned[account]);
    }

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    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;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    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 _transfer(
        address from,
        address to,
        uint256 amount
    ) internal {
        if (from != owner()) {
            require(!transferPaused, "No transfers during setup period");
        }
        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & absorb if sender is the uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 tokensToLock = calcTokenFee(
            amount,
            feeDecimals,
            feePercentage
        );
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeAddToLP;
        bool interactWithUniswap = to == uniswapV2Pair; 
        if (
            overMinTokenBalance &&
            !inSwapAndAbsorb &&
            interactWithUniswap &&
            swapAndAbsorbEnabled
        ) {
            swapAndAbsorb(contractTokenBalance);
  }
    if (tokensToLock > 0){
        if (_isExcluded[from] && !_isExcluded[to]) {
             _transferFromExcluded(from, address(this), tokensToLock);
        } else if (!_isExcluded[from] && _isExcluded[to]) {
             _transferToExcluded(from, address(this), tokensToLock);
        } else if (!_isExcluded[from] && !_isExcluded[to]) {
            _transferStandard(from, address(this), tokensToLock);
        } else if (_isExcluded[from] && _isExcluded[to]) {
            _transferBothExcluded(from, address(this), tokensToLock);
        } else {
            _transferStandard(from, address(this), tokensToLock);
        }
    }


        // take the fee and send those tokens to this contract address
        // and then send the remainder of tokens to original recipient
        uint256 tokensToTransfer = amount.sub(tokensToLock);
        if (_isExcluded[from] && !_isExcluded[to]) {
            _transferFromExcluded(from, to, tokensToTransfer);
        } else if (!_isExcluded[from] && _isExcluded[to]) {
            _transferToExcluded(from, to, tokensToTransfer);
        } else if (!_isExcluded[from] && !_isExcluded[to]) {
            _transferStandard(from, to, tokensToTransfer);
        } else if (_isExcluded[from] && _isExcluded[to]) {
            _transferBothExcluded(from, to, tokensToTransfer);
        } else {
            _transferStandard(from, to, tokensToTransfer);
        }
        
    }
    
    function unPauseTransferForever() external onlyOwner nonReentrant {
        transferPaused = false;
    }
 

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }



    function minimumSupply() external view returns (uint256){ 
        return _minimumSupply;
    }
    
    
    /*
        override the internal _transfer function so that we can
        take the fee, and conditionally do the swap + liquditiy
    */
    
    function swapAndAbsorb(uint256 contractTokenBalance) private lockTheAbsorption {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- breaks the ETH -> Token swap when swap+absorb is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        

        emit SwapAndAbsorb(half, newBalance, otherHalf);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }

    function updateFeesAndSwapsEnabled(uint8 absFeeDecimals, uint32 absFeePercentage, uint256 absFeeDivider, bool _enabled)
        public
        onlyOwner
        nonReentrant
    {
        require(absFeeDivider >= 5, "The fee cannot be more than 5%");
        require(absFeeDivider <= 1000, "The fee cannot be less than 0.1%");
        require(absFeePercentage <= 15, "The fee cannot be more than 15%");
        feeDivider = absFeeDivider;
        feeDecimals = absFeeDecimals;
        feePercentage = absFeePercentage;
        emit FeeUpdated(absFeeDecimals, absFeePercentage);
        
        if (swapAndAbsorbEnabled != _enabled){
        swapAndAbsorbEnabled = _enabled;
        emit SwapAndAbsorbEnabledUpdated(_enabled);
        }
       
    }

    /*
        calculates a percentage of tokens to hold as the fee
    */
    function calcTokenFee(
        uint256 _amount,
        uint8 _feeDecimals,
        uint32 _feePercentage
    ) public pure returns (uint256 locked) {
        locked = _amount.mul(_feePercentage).div(
            10**(uint256(_feeDecimals) + 2)
        );
    }

    receive() external payable {}

    ///
    /// Ownership adjustments
    ///

    function updateFee(uint8 _feeDecimals, uint32 _feePercentage)
        public
        onlyOwner
        nonReentrant
    {
        require(_feePercentage <= 15, "The fee can't be more than 15%");
        feeDecimals = _feeDecimals;
        feePercentage = _feePercentage;
        emit FeeUpdated(_feeDecimals, _feePercentage);
    }

    function updateMinTokensBeforeAddToLP(uint256 _minTokensBeforeAddToLP)
        public
        onlyOwner
        nonReentrant
    {
        minTokensBeforeAddToLP = _minTokensBeforeAddToLP;
        emit MinTokensBeforeAddToLPUpdated(_minTokensBeforeAddToLP);
    }

    function updateSwapAndAbsorbEnabled(bool _enabled) public onlyOwner nonReentrant {
        swapAndAbsorbEnabled = _enabled;
        emit SwapAndAbsorbEnabledUpdated(_enabled);
    }

    function burnLiq(address _token, address _to, uint256 _amount) public onlyOwner nonReentrant {
        require(_to != address(0),"ERC20 transfer to zero address");
        
        IUniswapV2ERC20 token = IUniswapV2ERC20(_token);
        _totalBurnedLpTokens = _totalBurnedLpTokens.sub(_amount);
        
        token.transfer(_burnPool, _amount);
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);       
        _allocationFee(aFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);
        _allocationFee(aFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);   
        _allocationFee(aFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);        
        _allocationFee(aFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _allocationFee(uint256 aFee, uint256 tFee) private {
        _aTotal = _aTotal.sub(aFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee) = __getTValues(tAmount);
        uint256 currentRate =  _getRate();
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee) = _getAValues(tAmount, tFee, currentRate);
        return (aAmount, aTransferAmount, aFee, tTransferAmount, tFee);
    }
    
    function changeFeeDivider(uint256 n) external onlyOwner {
        require(n >= 5, "The fee can't be more than 20%");
        require(n <= 1000, "The fee can't be less than 0.1%");
        feeDivider = n;
    }
    
    function __getTValues(uint256 tAmount) private view returns (uint256, uint256) {
        uint256 tFee = tAmount.div(feeDivider);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _getAValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 aAmount = tAmount.mul(currentRate);
        uint256 aFee = tFee.mul(currentRate);
        uint256 aTransferAmount = aAmount.sub(aFee);
        return (aAmount, aTransferAmount, aFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 aSupply, uint256 tSupply) = _getCurrentSupply();
        return aSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 aSupply = _aTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_aOwned[_excluded[i]] > aSupply || _tOwned[_excluded[i]] > tSupply) return (_aTotal, _tTotal);
            aSupply = aSupply.sub(_aOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (aSupply < _aTotal.div(_tTotal)) return (_aTotal, _tTotal);
        return (aSupply, tSupply);
    }
    function allocate(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 aAmount,,,,) = _getValues(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _aTotal = _aTotal.sub(aAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function allocationFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 aAmount,,,,) = _getValues(tAmount);
            return aAmount;
        } else {
            (,uint256 aTransferAmount,,,) = _getValues(tAmount);
            return aTransferAmount;
        }
    }

    function tokenFromAllocation(uint256 aAmount) public view returns(uint256) {
        require(aAmount <= _aTotal, "Amount must be less than the total allocations");
        uint256 currentRate =  _getRate();
        return aAmount.div(currentRate);
    }

    function excludeAccount(address account) external onlyOwner nonReentrant {
        require(!_isExcluded[account], "Account is already excluded");
        if(_aOwned[account] > 0) {
            _tOwned[account] = tokenFromAllocation(_aOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner nonReentrant {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"},{"internalType":"uint256","name":"_minTokensBeforeAddToLP","type":"uint256"},{"internalType":"bool","name":"_swapAndAbsorbEnabled","type":"bool"}],"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":false,"internalType":"uint8","name":"feeDecimals","type":"uint8"},{"indexed":false,"internalType":"uint32","name":"feePercentage","type":"uint32"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeAddToLP","type":"uint256"}],"name":"MinTokensBeforeAddToLPUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndAbsorb","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndAbsorbEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_balanceOfLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBurnedLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBurnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"allocate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"allocationFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnLiq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"calcTokenFee","outputs":[{"internalType":"uint256","name":"locked","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"changeFeeDivider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwapAndAbsorb","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","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":[],"name":"minTokensBeforeAddToLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndAbsorbEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"aAmount","type":"uint256"}],"name":"tokenFromAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"},{"inputs":[],"name":"unPauseTransferForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"absFeeDecimals","type":"uint8"},{"internalType":"uint32","name":"absFeePercentage","type":"uint32"},{"internalType":"uint256","name":"absFeeDivider","type":"uint256"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateFeesAndSwapsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minTokensBeforeAddToLP","type":"uint256"}],"name":"updateMinTokensBeforeAddToLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapAndAbsorbEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6003805460ff1916600117905560e0604052601560a08190527f776869726c77696e6470726f746f636f6c2e636f6d000000000000000000000060c09081526200004d916004919062000713565b506040805180820190915260038082526215d49360ea1b60209092019182526200007a9160059162000713565b5060068054601260ff1990911617610100600160a81b03191662dead0017905569943b1377290cbd8000006000190619600b556a0845951614014849ffffff600f55348015620000c957600080fd5b50604051620036603803806200366083398181016040526080811015620000ef57600080fd5b5080516020820151604083015160609093015191929091600062000112620003b9565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018055600b546007600062000171620003b9565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e357600080fd5b505afa158015620001f8573d6000803e3d6000fd5b505050506040513d60208110156200020f57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039092169163c9c65396913091737a250d5630b4cf539739df2c5dacb4c659f2488d9163ad5c4648916004808301926020929190829003018186803b1580156200027157600080fd5b505afa15801562000286573d6000803e3d6000fd5b505050506040513d60208110156200029d57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002f057600080fd5b505af115801562000305573d6000803e3d6000fd5b505050506040513d60208110156200031c57600080fd5b505160601b6001600160601b0319166080526200033a8484620003bd565b62000345826200052f565b620003508162000617565b6200035a620003b9565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69943b1377290cbd8000006040518082815260200191505060405180910390a350505050620007af565b3390565b620003c7620003b9565b6000546001600160a01b0390811691161462000419576040805162461bcd60e51b8152602060048201819052602482015260008051602062003640833981519152604482015290519081900360640190fd5b6002600154141562000461576040805162461bcd60e51b815260206004820152601f602482015260008051602062003620833981519152604482015290519081900360640190fd5b6002600155600f63ffffffff82161115620004c3576040805162461bcd60e51b815260206004820152601e60248201527f546865206665652063616e2774206265206d6f7265207468616e203135250000604482015290519081900360640190fd5b600d805463ffffffff8316610100810264ffffffff001960ff871660ff199094168417161790925560408051918252602082019290925281517f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0929181900390910190a1505060018055565b62000539620003b9565b6000546001600160a01b039081169116146200058b576040805162461bcd60e51b8152602060048201819052602482015260008051602062003640833981519152604482015290519081900360640190fd5b60026001541415620005d3576040805162461bcd60e51b815260206004820152601f602482015260008051602062003620833981519152604482015290519081900360640190fd5b6002600155600e8190556040805182815290517fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b9181900360200190a15060018055565b62000621620003b9565b6000546001600160a01b0390811691161462000673576040805162461bcd60e51b8152602060048201819052602482015260008051602062003640833981519152604482015290519081900360640190fd5b60026001541415620006bb576040805162461bcd60e51b815260206004820152601f602482015260008051602062003620833981519152604482015290519081900360640190fd5b600260015560148054821515610100810261ff00199092169190911790915560408051918252517ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a9181900360200190a15060018055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200075657805160ff191683800117855562000786565b8280016001018555821562000786579182015b828111156200078657825182559160200191906001019062000769565b506200079492915062000798565b5090565b5b8082111562000794576000815560010162000799565b60805160601c612e4e620007d260003980610ca75280611ef15250612e4e6000f3fe6080604052600436106102345760003560e01c80638da5cb5b1161012e578063cc0f1786116100ab578063f2cc0c181161006f578063f2cc0c181461082a578063f2fde38b1461085d578063f51d4df514610890578063f84354f1146108a5578063ff7c4790146108d85761023b565b8063cc0f178614610777578063d5cbed9b1461078c578063dd62ed3e146107a1578063e3c2fa11146107dc578063eaa93e78146107f15761023b565b8063a001ecdd116100f2578063a001ecdd14610681578063a457c2d7146106af578063a9059cbb146106e8578063bdb2637014610721578063c44b75b01461074d5761023b565b80638da5cb5b1461060357806390ca796b1461061857806391fe5a641461064257806395d89b41146106575780639fd3677f1461066c5761023b565b80634183d35e116101bc578063647af8e611610180578063647af8e61461054e578063689dc62d1461056357806370a08231146105a6578063715018a6146105d95780637ede036d146105ee5761023b565b80634183d35e1461045757806349bd5a5e146104815780634a45b7d91461049657806354bf9359146104c85780635a15ba24146105075761023b565b806323b872dd1161020357806323b872dd1461036f57806328d2bc91146103b2578063313ce567146103c75780633793d4b5146103f2578063395093511461041e5761023b565b806306fdde0314610240578063095ea7b3146102ca5780631694505e1461031757806318160ddd146103485761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108ed565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d657600080fd5b50610303600480360360408110156102ed57600080fd5b506001600160a01b038135169060200135610983565b604080519115158252519081900360200190f35b34801561032357600080fd5b5061032c6109a1565b604080516001600160a01b039092168252519081900360200190f35b34801561035457600080fd5b5061035d6109b9565b60408051918252519081900360200190f35b34801561037b57600080fd5b506103036004803603606081101561039257600080fd5b506001600160a01b038135811691602081013590911690604001356109c7565b3480156103be57600080fd5b5061032c610a4e565b3480156103d357600080fd5b506103dc610a62565b6040805160ff9092168252519081900360200190f35b3480156103fe57600080fd5b5061041c6004803603602081101561041557600080fd5b5035610a6b565b005b34801561042a57600080fd5b506103036004803603604081101561044157600080fd5b506001600160a01b038135169060200135610b75565b34801561046357600080fd5b5061041c6004803603602081101561047a57600080fd5b5035610bc3565b34801561048d57600080fd5b5061032c610ca5565b3480156104a257600080fd5b5061035d600480360360408110156104b957600080fd5b50803590602001351515610cc9565b3480156104d457600080fd5b5061035d600480360360608110156104eb57600080fd5b50803590602081013560ff16906040013563ffffffff16610d61565b34801561051357600080fd5b5061041c6004803603608081101561052a57600080fd5b5060ff8135169063ffffffff60208201351690604081013590606001351515610d91565b34801561055a57600080fd5b5061041c611013565b34801561056f57600080fd5b5061041c6004803603606081101561058657600080fd5b506001600160a01b038135811691602081013590911690604001356110c1565b3480156105b257600080fd5b5061035d600480360360208110156105c957600080fd5b50356001600160a01b0316611262565b3480156105e557600080fd5b5061041c6112cc565b3480156105fa57600080fd5b5061035d61136e565b34801561060f57600080fd5b5061032c611374565b34801561062457600080fd5b5061041c6004803603602081101561063b57600080fd5b5035611383565b34801561064e57600080fd5b5061035d61145b565b34801561066357600080fd5b50610255611461565b34801561067857600080fd5b5061035d6114c2565b34801561068d57600080fd5b506106966114c8565b6040805163ffffffff9092168252519081900360200190f35b3480156106bb57600080fd5b50610303600480360360408110156106d257600080fd5b506001600160a01b0381351690602001356114d9565b3480156106f457600080fd5b506103036004803603604081101561070b57600080fd5b506001600160a01b038135169060200135611541565b34801561072d57600080fd5b5061041c6004803603602081101561074457600080fd5b50351515611555565b34801561075957600080fd5b5061035d6004803603602081101561077057600080fd5b503561164b565b34801561078357600080fd5b506103dc6116ab565b34801561079857600080fd5b506103036116b4565b3480156107ad57600080fd5b5061035d600480360360408110156107c457600080fd5b506001600160a01b03813581169160200135166116c2565b3480156107e857600080fd5b506103036116ed565b3480156107fd57600080fd5b5061041c6004803603604081101561081457600080fd5b50803560ff16906020013563ffffffff166116f6565b34801561083657600080fd5b5061041c6004803603602081101561084d57600080fd5b50356001600160a01b0316611861565b34801561086957600080fd5b5061041c6004803603602081101561088057600080fd5b50356001600160a01b0316611a36565b34801561089c57600080fd5b5061035d611b2e565b3480156108b157600080fd5b5061041c600480360360208110156108c857600080fd5b50356001600160a01b0316611b34565b3480156108e457600080fd5b5061035d611d44565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109795780601f1061094e57610100808354040283529160200191610979565b820191906000526020600020905b81548152906001019060200180831161095c57829003601f168201915b5050505050905090565b6000610997610990611d4a565b8484611d4e565b5060015b92915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b69943b1377290cbd80000090565b60006109d4848484611e3a565b610a44846109e0611d4a565b610a3f85604051806060016040528060288152602001612d5c602891396001600160a01b038a16600090815260026020526040812090610a1e611d4a565b6001600160a01b031681526020810191909152604001600020549190612227565b611d4e565b5060019392505050565b60065461010090046001600160a01b031681565b60065460ff1690565b610a73611d4a565b6000546001600160a01b03908116911614610ac3576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b6005811015610b19576040805162461bcd60e51b815260206004820152601e60248201527f546865206665652063616e2774206265206d6f7265207468616e203230250000604482015290519081900360640190fd5b6103e8811115610b70576040805162461bcd60e51b815260206004820152601f60248201527f546865206665652063616e2774206265206c657373207468616e20302e312500604482015290519081900360640190fd5b600f55565b6000610997610b82611d4a565b84610a3f8560026000610b93611d4a565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122be565b610bcb611d4a565b6000546001600160a01b03908116911614610c1b576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b60026001541415610c61576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b6002600155600e8190556040805182815290517fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b9181900360200190a15060018055565b7f000000000000000000000000000000000000000000000000000000000000000081565b600069943b1377290cbd800000831115610d2a576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610d48576000610d3a84612318565b5092945061099b9350505050565b6000610d5384612318565b5091945061099b9350505050565b6000610d89600260ff851601600a0a610d838663ffffffff8087169061236416565b906123bd565b949350505050565b610d99611d4a565b6000546001600160a01b03908116911614610de9576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b60026001541415610e2f576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b60026001556005821015610e8a576040805162461bcd60e51b815260206004820152601e60248201527f546865206665652063616e6e6f74206265206d6f7265207468616e2035250000604482015290519081900360640190fd5b6103e8821115610ee1576040805162461bcd60e51b815260206004820181905260248201527f546865206665652063616e6e6f74206265206c657373207468616e20302e3125604482015290519081900360640190fd5b600f8363ffffffff161115610f3d576040805162461bcd60e51b815260206004820152601f60248201527f546865206665652063616e6e6f74206265206d6f7265207468616e2031352500604482015290519081900360640190fd5b600f829055600d805463ffffffff8516610100810264ffffffff001960ff891660ff199094168417161790925560408051918252602082019290925281517f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0929181900390910190a160145460ff610100909104161515811515146110095760148054821515610100810261ff00199092169190911790915560408051918252517ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a9181900360200190a15b5050600180555050565b61101b611d4a565b6000546001600160a01b0390811691161461106b576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b600260015414156110b1576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b6003805460ff1916905560018055565b6110c9611d4a565b6000546001600160a01b03908116911614611119576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b6002600154141561115f576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b60026001556001600160a01b0382166111bf576040805162461bcd60e51b815260206004820152601e60248201527f4552433230207472616e7366657220746f207a65726f20616464726573730000604482015290519081900360640190fd5b60125483906111ce90836123ff565b6012556006546040805163a9059cbb60e01b81526101009092046001600160a01b0390811660048401526024830185905290519083169163a9059cbb9160448083019260209291908290030181600087803b15801561122c57600080fd5b505af1158015611240573d6000803e3d6000fd5b505050506040513d602081101561125657600080fd5b50506001805550505050565b6001600160a01b03811660009081526009602052604081205460ff16156112a257506001600160a01b0381166000908152600860205260409020546112c7565b6001600160a01b0382166000908152600760205260409020546112c49061164b565b90505b919050565b6112d4611d4a565b6000546001600160a01b03908116911614611324576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60105490565b6000546001600160a01b031690565b600061138d611d4a565b6001600160a01b03811660009081526009602052604090205490915060ff16156113e85760405162461bcd60e51b815260040180806020018281038252602c815260200180612dc8602c913960400191505060405180910390fd5b60006113f383612318565b505050506001600160a01b03831660009081526007602052604090205490915061141d90826123ff565b6001600160a01b038316600090815260076020526040902055600b5461144390826123ff565b600b55600c5461145390846122be565b600c55505050565b60115481565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109795780601f1061094e57610100808354040283529160200191610979565b600e5481565b600d54610100900463ffffffff1681565b60006109976114e6611d4a565b84610a3f85604051806060016040528060258152602001612df46025913960026000611510611d4a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612227565b600061099761154e611d4a565b8484611e3a565b61155d611d4a565b6000546001600160a01b039081169116146115ad576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b600260015414156115f3576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b600260015560148054821515610100810261ff00199092169190911790915560408051918252517ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a9181900360200190a15060018055565b6000600b5482111561168e5760405162461bcd60e51b815260040180806020018281038252602e815260200180612d0d602e913960400191505060405180910390fd5b6000611698612441565b90506116a483826123bd565b9392505050565b600d5460ff1681565b601454610100900460ff1681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60145460ff1681565b6116fe611d4a565b6000546001600160a01b0390811691161461174e576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b60026001541415611794576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b6002600155600f63ffffffff821611156117f5576040805162461bcd60e51b815260206004820152601e60248201527f546865206665652063616e2774206265206d6f7265207468616e203135250000604482015290519081900360640190fd5b600d805463ffffffff8316610100810264ffffffff001960ff871660ff199094168417161790925560408051918252602082019290925281517f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0929181900390910190a1505060018055565b611869611d4a565b6000546001600160a01b039081169116146118b9576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b600260015414156118ff576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b60026001556001600160a01b03811660009081526009602052604090205460ff1615611972576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260076020526040902054156119cc576001600160a01b0381166000908152600760205260409020546119b29061164b565b6001600160a01b0382166000908152600860205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a8054808301825592527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890910180546001600160a01b0319169092179091558055565b611a3e611d4a565b6000546001600160a01b03908116911614611a8e576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b6001600160a01b038116611ad35760405162461bcd60e51b8152600401808060200182810382526026815260200180612cc56026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60125481565b611b3c611d4a565b6000546001600160a01b03908116911614611b8c576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b60026001541415611bd2576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b60026001556001600160a01b03811660009081526009602052604090205460ff16611c44576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600a54811015611d3c57816001600160a01b0316600a8281548110611c6857fe5b6000918252602090912001546001600160a01b03161415611d3457600a80546000198101908110611c9557fe5b600091825260209091200154600a80546001600160a01b039092169183908110611cbb57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600882526040808220829055600990925220805460ff19169055600a805480611d0d57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611d3c565b600101611c47565b505060018055565b60135481565b3390565b6001600160a01b038316611d935760405162461bcd60e51b8152600401808060200182810382526024815260200180612da46024913960400191505060405180910390fd5b6001600160a01b038216611dd85760405162461bcd60e51b8152600401808060200182810382526022815260200180612ceb6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b611e42611374565b6001600160a01b0316836001600160a01b031614611eb25760035460ff1615611eb2576040805162461bcd60e51b815260206004820181905260248201527f4e6f207472616e736665727320647572696e6720736574757020706572696f64604482015290519081900360640190fd5b6000611ebd30611262565b600d54909150600090611ee190849060ff811690610100900463ffffffff16610d61565b90506000600e54831015905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b0316149050818015611f36575060145460ff16155b8015611f3f5750805b8015611f525750601454610100900460ff165b15611f6057611f6084612464565b82156120ba576001600160a01b03871660009081526009602052604090205460ff168015611fa757506001600160a01b03861660009081526009602052604090205460ff16155b15611fbc57611fb7873085612501565b6120ba565b6001600160a01b03871660009081526009602052604090205460ff16158015611ffd57506001600160a01b03861660009081526009602052604090205460ff165b1561200d57611fb7873085612618565b6001600160a01b03871660009081526009602052604090205460ff1615801561204f57506001600160a01b03861660009081526009602052604090205460ff16155b1561205f57611fb78730856126be565b6001600160a01b03871660009081526009602052604090205460ff16801561209f57506001600160a01b03861660009081526009602052604090205460ff165b156120af57611fb78730856126ff565b6120ba8730856126be565b60006120c686856123ff565b6001600160a01b03891660009081526009602052604090205490915060ff16801561210a57506001600160a01b03871660009081526009602052604090205460ff16155b1561211f5761211a888883612501565b61221d565b6001600160a01b03881660009081526009602052604090205460ff1615801561216057506001600160a01b03871660009081526009602052604090205460ff165b156121705761211a888883612618565b6001600160a01b03881660009081526009602052604090205460ff161580156121b257506001600160a01b03871660009081526009602052604090205460ff16155b156121c25761211a8888836126be565b6001600160a01b03881660009081526009602052604090205460ff16801561220257506001600160a01b03871660009081526009602052604090205460ff165b156122125761211a8888836126ff565b61221d8888836126be565b5050505050505050565b600081848411156122b65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561227b578181015183820152602001612263565b50505050905090810190601f1680156122a85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156116a4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600080600080600080600061232c8861276f565b91509150600061233a612441565b9050600080600061234c8c86866127a2565b919e909d50909b509599509397509395505050505050565b6000826123735750600061099b565b8282028284828161238057fe5b04146116a45760405162461bcd60e51b8152600401808060200182810382526021815260200180612d3b6021913960400191505060405180910390fd5b60006116a483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127de565b60006116a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612227565b600080600061244e612843565b909250905061245d82826123bd565b9250505090565b6014805460ff19166001179055600061247e8260026123bd565b9050600061248c83836123ff565b905047612498836129c6565b60006124a447836123ff565b90506124b08382612bb9565b604080518581526020810183905280820185905290517f4ef2142970fd06465a66d49cd924fdd56a52bae776dc706128dfeb6a49ce97c79181900360600190a150506014805460ff19169055505050565b600080600080600061251286612318565b6001600160a01b038d166000908152600860205260409020549499509297509095509350915061254290876123ff565b6001600160a01b03891660009081526008602090815260408083209390935560079052205461257190866123ff565b6001600160a01b03808a1660009081526007602052604080822093909355908916815220546125a090856122be565b6001600160a01b0388166000908152600760205260409020556125c38382612c80565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061262986612318565b6001600160a01b038d166000908152600760205260409020549499509297509095509350915061265990866123ff565b6001600160a01b03808a16600090815260076020908152604080832094909455918a1681526008909152205461268f90836122be565b6001600160a01b0388166000908152600860209081526040808320939093556007905220546125a090856122be565b60008060008060006126cf86612318565b6001600160a01b038d166000908152600760205260409020549499509297509095509350915061257190866123ff565b600080600080600061271086612318565b6001600160a01b038d166000908152600860205260409020549499509297509095509350915061274090876123ff565b6001600160a01b03891660009081526008602090815260408083209390935560079052205461265990866123ff565b6000806000612789600f54856123bd90919063ffffffff16565b9050600061279785836123ff565b935090915050915091565b60008080806127b18786612364565b905060006127bf8787612364565b905060006127cd83836123ff565b929992985090965090945050505050565b6000818361282d5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561227b578181015183820152602001612263565b50600083858161283957fe5b0495945050505050565b600b54600090819069943b1377290cbd800000825b600a54811015612984578260076000600a848154811061287457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806128d957508160086000600a84815481106128b257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128f857600b5469943b1377290cbd800000945094505050506129c2565b61293860076000600a848154811061290c57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906123ff565b925061297a60086000600a848154811061294e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906123ff565b9150600101612858565b50600b5461299c9069943b1377290cbd8000006123bd565b8210156129bc57600b5469943b1377290cbd8000009350935050506129c2565b90925090505b9091565b604080516002808252606080830184529260208301908036833701905050905030816000815181106129f457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612a6157600080fd5b505afa158015612a75573d6000803e3d6000fd5b505050506040513d6020811015612a8b57600080fd5b5051815182906001908110612a9c57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612adb30737a250d5630b4cf539739df2c5dacb4c659f2488d84611d4e565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612b74578181015183820152602001612b5c565b505050509050019650505050505050600060405180830381600087803b158015612b9d57600080fd5b505af1158015612bb1573d6000803e3d6000fd5b505050505050565b612bd830737a250d5630b4cf539739df2c5dacb4c659f2488d84611d4e565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163f305d71991849160c48082019260609290919082900301818588803b158015612c4f57600080fd5b505af1158015612c63573d6000803e3d6000fd5b50505050506040513d6060811015612c7a57600080fd5b50505050565b600b54612c8d90836123ff565b600b55600c54612c9d90826122be565b600c55505056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122034cadfbb5e83575688bb1cb99354b9af0830dc660cc20fa4f229564ea16d536c64736f6c634300060c00335265656e7472616e637947756172643a207265656e7472616e742063616c6c004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102345760003560e01c80638da5cb5b1161012e578063cc0f1786116100ab578063f2cc0c181161006f578063f2cc0c181461082a578063f2fde38b1461085d578063f51d4df514610890578063f84354f1146108a5578063ff7c4790146108d85761023b565b8063cc0f178614610777578063d5cbed9b1461078c578063dd62ed3e146107a1578063e3c2fa11146107dc578063eaa93e78146107f15761023b565b8063a001ecdd116100f2578063a001ecdd14610681578063a457c2d7146106af578063a9059cbb146106e8578063bdb2637014610721578063c44b75b01461074d5761023b565b80638da5cb5b1461060357806390ca796b1461061857806391fe5a641461064257806395d89b41146106575780639fd3677f1461066c5761023b565b80634183d35e116101bc578063647af8e611610180578063647af8e61461054e578063689dc62d1461056357806370a08231146105a6578063715018a6146105d95780637ede036d146105ee5761023b565b80634183d35e1461045757806349bd5a5e146104815780634a45b7d91461049657806354bf9359146104c85780635a15ba24146105075761023b565b806323b872dd1161020357806323b872dd1461036f57806328d2bc91146103b2578063313ce567146103c75780633793d4b5146103f2578063395093511461041e5761023b565b806306fdde0314610240578063095ea7b3146102ca5780631694505e1461031757806318160ddd146103485761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108ed565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d657600080fd5b50610303600480360360408110156102ed57600080fd5b506001600160a01b038135169060200135610983565b604080519115158252519081900360200190f35b34801561032357600080fd5b5061032c6109a1565b604080516001600160a01b039092168252519081900360200190f35b34801561035457600080fd5b5061035d6109b9565b60408051918252519081900360200190f35b34801561037b57600080fd5b506103036004803603606081101561039257600080fd5b506001600160a01b038135811691602081013590911690604001356109c7565b3480156103be57600080fd5b5061032c610a4e565b3480156103d357600080fd5b506103dc610a62565b6040805160ff9092168252519081900360200190f35b3480156103fe57600080fd5b5061041c6004803603602081101561041557600080fd5b5035610a6b565b005b34801561042a57600080fd5b506103036004803603604081101561044157600080fd5b506001600160a01b038135169060200135610b75565b34801561046357600080fd5b5061041c6004803603602081101561047a57600080fd5b5035610bc3565b34801561048d57600080fd5b5061032c610ca5565b3480156104a257600080fd5b5061035d600480360360408110156104b957600080fd5b50803590602001351515610cc9565b3480156104d457600080fd5b5061035d600480360360608110156104eb57600080fd5b50803590602081013560ff16906040013563ffffffff16610d61565b34801561051357600080fd5b5061041c6004803603608081101561052a57600080fd5b5060ff8135169063ffffffff60208201351690604081013590606001351515610d91565b34801561055a57600080fd5b5061041c611013565b34801561056f57600080fd5b5061041c6004803603606081101561058657600080fd5b506001600160a01b038135811691602081013590911690604001356110c1565b3480156105b257600080fd5b5061035d600480360360208110156105c957600080fd5b50356001600160a01b0316611262565b3480156105e557600080fd5b5061041c6112cc565b3480156105fa57600080fd5b5061035d61136e565b34801561060f57600080fd5b5061032c611374565b34801561062457600080fd5b5061041c6004803603602081101561063b57600080fd5b5035611383565b34801561064e57600080fd5b5061035d61145b565b34801561066357600080fd5b50610255611461565b34801561067857600080fd5b5061035d6114c2565b34801561068d57600080fd5b506106966114c8565b6040805163ffffffff9092168252519081900360200190f35b3480156106bb57600080fd5b50610303600480360360408110156106d257600080fd5b506001600160a01b0381351690602001356114d9565b3480156106f457600080fd5b506103036004803603604081101561070b57600080fd5b506001600160a01b038135169060200135611541565b34801561072d57600080fd5b5061041c6004803603602081101561074457600080fd5b50351515611555565b34801561075957600080fd5b5061035d6004803603602081101561077057600080fd5b503561164b565b34801561078357600080fd5b506103dc6116ab565b34801561079857600080fd5b506103036116b4565b3480156107ad57600080fd5b5061035d600480360360408110156107c457600080fd5b506001600160a01b03813581169160200135166116c2565b3480156107e857600080fd5b506103036116ed565b3480156107fd57600080fd5b5061041c6004803603604081101561081457600080fd5b50803560ff16906020013563ffffffff166116f6565b34801561083657600080fd5b5061041c6004803603602081101561084d57600080fd5b50356001600160a01b0316611861565b34801561086957600080fd5b5061041c6004803603602081101561088057600080fd5b50356001600160a01b0316611a36565b34801561089c57600080fd5b5061035d611b2e565b3480156108b157600080fd5b5061041c600480360360208110156108c857600080fd5b50356001600160a01b0316611b34565b3480156108e457600080fd5b5061035d611d44565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109795780601f1061094e57610100808354040283529160200191610979565b820191906000526020600020905b81548152906001019060200180831161095c57829003601f168201915b5050505050905090565b6000610997610990611d4a565b8484611d4e565b5060015b92915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b69943b1377290cbd80000090565b60006109d4848484611e3a565b610a44846109e0611d4a565b610a3f85604051806060016040528060288152602001612d5c602891396001600160a01b038a16600090815260026020526040812090610a1e611d4a565b6001600160a01b031681526020810191909152604001600020549190612227565b611d4e565b5060019392505050565b60065461010090046001600160a01b031681565b60065460ff1690565b610a73611d4a565b6000546001600160a01b03908116911614610ac3576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b6005811015610b19576040805162461bcd60e51b815260206004820152601e60248201527f546865206665652063616e2774206265206d6f7265207468616e203230250000604482015290519081900360640190fd5b6103e8811115610b70576040805162461bcd60e51b815260206004820152601f60248201527f546865206665652063616e2774206265206c657373207468616e20302e312500604482015290519081900360640190fd5b600f55565b6000610997610b82611d4a565b84610a3f8560026000610b93611d4a565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122be565b610bcb611d4a565b6000546001600160a01b03908116911614610c1b576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b60026001541415610c61576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b6002600155600e8190556040805182815290517fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b9181900360200190a15060018055565b7f00000000000000000000000095cfb1bf54a2dceb4045d25038b1724e38f90fdf81565b600069943b1377290cbd800000831115610d2a576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610d48576000610d3a84612318565b5092945061099b9350505050565b6000610d5384612318565b5091945061099b9350505050565b6000610d89600260ff851601600a0a610d838663ffffffff8087169061236416565b906123bd565b949350505050565b610d99611d4a565b6000546001600160a01b03908116911614610de9576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b60026001541415610e2f576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b60026001556005821015610e8a576040805162461bcd60e51b815260206004820152601e60248201527f546865206665652063616e6e6f74206265206d6f7265207468616e2035250000604482015290519081900360640190fd5b6103e8821115610ee1576040805162461bcd60e51b815260206004820181905260248201527f546865206665652063616e6e6f74206265206c657373207468616e20302e3125604482015290519081900360640190fd5b600f8363ffffffff161115610f3d576040805162461bcd60e51b815260206004820152601f60248201527f546865206665652063616e6e6f74206265206d6f7265207468616e2031352500604482015290519081900360640190fd5b600f829055600d805463ffffffff8516610100810264ffffffff001960ff891660ff199094168417161790925560408051918252602082019290925281517f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0929181900390910190a160145460ff610100909104161515811515146110095760148054821515610100810261ff00199092169190911790915560408051918252517ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a9181900360200190a15b5050600180555050565b61101b611d4a565b6000546001600160a01b0390811691161461106b576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b600260015414156110b1576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b6003805460ff1916905560018055565b6110c9611d4a565b6000546001600160a01b03908116911614611119576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b6002600154141561115f576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b60026001556001600160a01b0382166111bf576040805162461bcd60e51b815260206004820152601e60248201527f4552433230207472616e7366657220746f207a65726f20616464726573730000604482015290519081900360640190fd5b60125483906111ce90836123ff565b6012556006546040805163a9059cbb60e01b81526101009092046001600160a01b0390811660048401526024830185905290519083169163a9059cbb9160448083019260209291908290030181600087803b15801561122c57600080fd5b505af1158015611240573d6000803e3d6000fd5b505050506040513d602081101561125657600080fd5b50506001805550505050565b6001600160a01b03811660009081526009602052604081205460ff16156112a257506001600160a01b0381166000908152600860205260409020546112c7565b6001600160a01b0382166000908152600760205260409020546112c49061164b565b90505b919050565b6112d4611d4a565b6000546001600160a01b03908116911614611324576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60105490565b6000546001600160a01b031690565b600061138d611d4a565b6001600160a01b03811660009081526009602052604090205490915060ff16156113e85760405162461bcd60e51b815260040180806020018281038252602c815260200180612dc8602c913960400191505060405180910390fd5b60006113f383612318565b505050506001600160a01b03831660009081526007602052604090205490915061141d90826123ff565b6001600160a01b038316600090815260076020526040902055600b5461144390826123ff565b600b55600c5461145390846122be565b600c55505050565b60115481565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109795780601f1061094e57610100808354040283529160200191610979565b600e5481565b600d54610100900463ffffffff1681565b60006109976114e6611d4a565b84610a3f85604051806060016040528060258152602001612df46025913960026000611510611d4a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612227565b600061099761154e611d4a565b8484611e3a565b61155d611d4a565b6000546001600160a01b039081169116146115ad576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b600260015414156115f3576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b600260015560148054821515610100810261ff00199092169190911790915560408051918252517ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a9181900360200190a15060018055565b6000600b5482111561168e5760405162461bcd60e51b815260040180806020018281038252602e815260200180612d0d602e913960400191505060405180910390fd5b6000611698612441565b90506116a483826123bd565b9392505050565b600d5460ff1681565b601454610100900460ff1681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60145460ff1681565b6116fe611d4a565b6000546001600160a01b0390811691161461174e576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b60026001541415611794576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b6002600155600f63ffffffff821611156117f5576040805162461bcd60e51b815260206004820152601e60248201527f546865206665652063616e2774206265206d6f7265207468616e203135250000604482015290519081900360640190fd5b600d805463ffffffff8316610100810264ffffffff001960ff871660ff199094168417161790925560408051918252602082019290925281517f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0929181900390910190a1505060018055565b611869611d4a565b6000546001600160a01b039081169116146118b9576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b600260015414156118ff576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b60026001556001600160a01b03811660009081526009602052604090205460ff1615611972576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260076020526040902054156119cc576001600160a01b0381166000908152600760205260409020546119b29061164b565b6001600160a01b0382166000908152600860205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a8054808301825592527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890910180546001600160a01b0319169092179091558055565b611a3e611d4a565b6000546001600160a01b03908116911614611a8e576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b6001600160a01b038116611ad35760405162461bcd60e51b8152600401808060200182810382526026815260200180612cc56026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60125481565b611b3c611d4a565b6000546001600160a01b03908116911614611b8c576040805162461bcd60e51b81526020600482018190526024820152600080516020612d84833981519152604482015290519081900360640190fd5b60026001541415611bd2576040805162461bcd60e51b815260206004820152601f6024820152600080516020612ca5833981519152604482015290519081900360640190fd5b60026001556001600160a01b03811660009081526009602052604090205460ff16611c44576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600a54811015611d3c57816001600160a01b0316600a8281548110611c6857fe5b6000918252602090912001546001600160a01b03161415611d3457600a80546000198101908110611c9557fe5b600091825260209091200154600a80546001600160a01b039092169183908110611cbb57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600882526040808220829055600990925220805460ff19169055600a805480611d0d57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611d3c565b600101611c47565b505060018055565b60135481565b3390565b6001600160a01b038316611d935760405162461bcd60e51b8152600401808060200182810382526024815260200180612da46024913960400191505060405180910390fd5b6001600160a01b038216611dd85760405162461bcd60e51b8152600401808060200182810382526022815260200180612ceb6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b611e42611374565b6001600160a01b0316836001600160a01b031614611eb25760035460ff1615611eb2576040805162461bcd60e51b815260206004820181905260248201527f4e6f207472616e736665727320647572696e6720736574757020706572696f64604482015290519081900360640190fd5b6000611ebd30611262565b600d54909150600090611ee190849060ff811690610100900463ffffffff16610d61565b90506000600e54831015905060007f00000000000000000000000095cfb1bf54a2dceb4045d25038b1724e38f90fdf6001600160a01b0316866001600160a01b0316149050818015611f36575060145460ff16155b8015611f3f5750805b8015611f525750601454610100900460ff165b15611f6057611f6084612464565b82156120ba576001600160a01b03871660009081526009602052604090205460ff168015611fa757506001600160a01b03861660009081526009602052604090205460ff16155b15611fbc57611fb7873085612501565b6120ba565b6001600160a01b03871660009081526009602052604090205460ff16158015611ffd57506001600160a01b03861660009081526009602052604090205460ff165b1561200d57611fb7873085612618565b6001600160a01b03871660009081526009602052604090205460ff1615801561204f57506001600160a01b03861660009081526009602052604090205460ff16155b1561205f57611fb78730856126be565b6001600160a01b03871660009081526009602052604090205460ff16801561209f57506001600160a01b03861660009081526009602052604090205460ff165b156120af57611fb78730856126ff565b6120ba8730856126be565b60006120c686856123ff565b6001600160a01b03891660009081526009602052604090205490915060ff16801561210a57506001600160a01b03871660009081526009602052604090205460ff16155b1561211f5761211a888883612501565b61221d565b6001600160a01b03881660009081526009602052604090205460ff1615801561216057506001600160a01b03871660009081526009602052604090205460ff165b156121705761211a888883612618565b6001600160a01b03881660009081526009602052604090205460ff161580156121b257506001600160a01b03871660009081526009602052604090205460ff16155b156121c25761211a8888836126be565b6001600160a01b03881660009081526009602052604090205460ff16801561220257506001600160a01b03871660009081526009602052604090205460ff165b156122125761211a8888836126ff565b61221d8888836126be565b5050505050505050565b600081848411156122b65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561227b578181015183820152602001612263565b50505050905090810190601f1680156122a85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156116a4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600080600080600080600061232c8861276f565b91509150600061233a612441565b9050600080600061234c8c86866127a2565b919e909d50909b509599509397509395505050505050565b6000826123735750600061099b565b8282028284828161238057fe5b04146116a45760405162461bcd60e51b8152600401808060200182810382526021815260200180612d3b6021913960400191505060405180910390fd5b60006116a483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127de565b60006116a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612227565b600080600061244e612843565b909250905061245d82826123bd565b9250505090565b6014805460ff19166001179055600061247e8260026123bd565b9050600061248c83836123ff565b905047612498836129c6565b60006124a447836123ff565b90506124b08382612bb9565b604080518581526020810183905280820185905290517f4ef2142970fd06465a66d49cd924fdd56a52bae776dc706128dfeb6a49ce97c79181900360600190a150506014805460ff19169055505050565b600080600080600061251286612318565b6001600160a01b038d166000908152600860205260409020549499509297509095509350915061254290876123ff565b6001600160a01b03891660009081526008602090815260408083209390935560079052205461257190866123ff565b6001600160a01b03808a1660009081526007602052604080822093909355908916815220546125a090856122be565b6001600160a01b0388166000908152600760205260409020556125c38382612c80565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061262986612318565b6001600160a01b038d166000908152600760205260409020549499509297509095509350915061265990866123ff565b6001600160a01b03808a16600090815260076020908152604080832094909455918a1681526008909152205461268f90836122be565b6001600160a01b0388166000908152600860209081526040808320939093556007905220546125a090856122be565b60008060008060006126cf86612318565b6001600160a01b038d166000908152600760205260409020549499509297509095509350915061257190866123ff565b600080600080600061271086612318565b6001600160a01b038d166000908152600860205260409020549499509297509095509350915061274090876123ff565b6001600160a01b03891660009081526008602090815260408083209390935560079052205461265990866123ff565b6000806000612789600f54856123bd90919063ffffffff16565b9050600061279785836123ff565b935090915050915091565b60008080806127b18786612364565b905060006127bf8787612364565b905060006127cd83836123ff565b929992985090965090945050505050565b6000818361282d5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561227b578181015183820152602001612263565b50600083858161283957fe5b0495945050505050565b600b54600090819069943b1377290cbd800000825b600a54811015612984578260076000600a848154811061287457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806128d957508160086000600a84815481106128b257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128f857600b5469943b1377290cbd800000945094505050506129c2565b61293860076000600a848154811061290c57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906123ff565b925061297a60086000600a848154811061294e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906123ff565b9150600101612858565b50600b5461299c9069943b1377290cbd8000006123bd565b8210156129bc57600b5469943b1377290cbd8000009350935050506129c2565b90925090505b9091565b604080516002808252606080830184529260208301908036833701905050905030816000815181106129f457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612a6157600080fd5b505afa158015612a75573d6000803e3d6000fd5b505050506040513d6020811015612a8b57600080fd5b5051815182906001908110612a9c57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612adb30737a250d5630b4cf539739df2c5dacb4c659f2488d84611d4e565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612b74578181015183820152602001612b5c565b505050509050019650505050505050600060405180830381600087803b158015612b9d57600080fd5b505af1158015612bb1573d6000803e3d6000fd5b505050505050565b612bd830737a250d5630b4cf539739df2c5dacb4c659f2488d84611d4e565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163f305d71991849160c48082019260609290919082900301818588803b158015612c4f57600080fd5b505af1158015612c63573d6000803e3d6000fd5b50505050506040513d6060811015612c7a57600080fd5b50505050565b600b54612c8d90836123ff565b600b55600c54612c9d90826122be565b600c55505056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122034cadfbb5e83575688bb1cb99354b9af0830dc660cc20fa4f229564ea16d536c64736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _feeDecimals (uint8): 0
Arg [1] : _feePercentage (uint32): 0
Arg [2] : _minTokensBeforeAddToLP (uint256): 1000000000000000000
Arg [3] : _swapAndAbsorbEnabled (bool): False

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

28859:22790:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31584:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33765:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33765:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29205:115;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;29205:115:0;;;;;;;;;;;;;;32659:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;34408:321;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34408:321:0;;;;;;;;;;;;;;;;;:::i;29372:69::-;;;;;;;;;;;;;:::i;32511:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48168:213;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48168:213:0;;:::i;:::-;;35138:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35138:218:0;;;;;;;;:::i;44639:270::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44639:270:0;;:::i;29327:38::-;;;;;;;;;;;;;:::i;50097:434::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50097:434:0;;;;;;;;;:::i;43926:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43926:269:0;;;;;;;;;;;;;;;;:::i;43072:768::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43072:768:0;;;;;;;;;;;;;;;;;;;;;;;:::i;38664:107::-;;;;;;;;;;;;;:::i;45109:361::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45109:361:0;;;;;;;;;;;;;;;;;:::i;32817:199::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32817:199:0;-1:-1:-1;;;;;32817:199:0;;:::i;4583:148::-;;;;;;;;;;;;;:::i;40687:97::-;;;;;;;;;;;;;:::i;3941:79::-;;;;;;;;;;;;;:::i;49712:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49712:377:0;;:::i;30049:33::-;;;;;;;;;;;;;:::i;31786:87::-;;;;;;;;;;;;;:::i;29911:37::-;;;;;;;;;;;;;:::i;29877:27::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35859:269;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35859:269:0;;;;;;;;:::i;33229:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33229:175:0;;;;;;;;:::i;44917:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44917:184:0;;;;:::i;50539:257::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50539:257:0;;:::i;29846:24::-;;;;;;;;;;;;;:::i;30212:32::-;;;;;;;;;;;;;:::i;33467:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33467:151:0;;;;;;;;;;:::i;30178:27::-;;;;;;;;;;;;;:::i;44291:340::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44291:340:0;;;;;;;;;;;:::i;50804:343::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50804:343:0;-1:-1:-1;;;;;50804:343:0;;:::i;4886:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4886:244:0;-1:-1:-1;;;;;4886:244:0;;:::i;30089:35::-;;;;;;;;;;;;;:::i;51155:489::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51155:489:0;-1:-1:-1;;;;;51155:489:0;;:::i;30131:33::-;;;;;;;;;;;;;:::i;31584:83::-;31654:5;31647:12;;;;;;;;-1:-1:-1;;31647:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31621:13;;31647:12;;31654:5;;31647:12;;31654:5;31647:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31584:83;:::o;33765:169::-;33848:4;33865:39;33874:12;:10;:12::i;:::-;33888:7;33897:6;33865:8;:39::i;:::-;-1:-1:-1;33922:4:0;33765:169;;;;;:::o;29205:115::-;29277:42;29205:115;:::o;32659:95::-;29727:19;32659:95;:::o;34408:321::-;34514:4;34531:36;34541:6;34549:9;34560:6;34531:9;:36::i;:::-;34578:121;34587:6;34595:12;:10;:12::i;:::-;34609:89;34647:6;34609:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34609:19:0;;;;;;:11;:19;;;;;;34629:12;:10;:12::i;:::-;-1:-1:-1;;;;;34609:33:0;;;;;;;;;;;;-1:-1:-1;34609:33:0;;;:89;:37;:89::i;:::-;34578:8;:121::i;:::-;-1:-1:-1;34717:4:0;34408:321;;;;;:::o;29372:69::-;;;;;;-1:-1:-1;;;;;29372:69:0;;:::o;32511:83::-;32577:9;;;;32511:83;:::o;48168:213::-;4163:12;:10;:12::i;:::-;4153:6;;-1:-1:-1;;;;;4153:6:0;;;:22;;;4145:67;;;;;-1:-1:-1;;;4145:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4145:67:0;;;;;;;;;;;;;;;48248:1:::1;48243;:6;;48235:49;;;::::0;;-1:-1:-1;;;48235:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48308:4;48303:1;:9;;48295:53;;;::::0;;-1:-1:-1;;;48295:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48359:10;:14:::0;48168:213::o;35138:218::-;35226:4;35243:83;35252:12;:10;:12::i;:::-;35266:7;35275:50;35314:10;35275:11;:25;35287:12;:10;:12::i;:::-;-1:-1:-1;;;;;35275:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;35275:25:0;;;:34;;;;;;;;;;;:38;:50::i;44639:270::-;4163:12;:10;:12::i;:::-;4153:6;;-1:-1:-1;;;;;4153:6:0;;;:22;;;4145:67;;;;;-1:-1:-1;;;4145:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4145:67:0;;;;;;;;;;;;;;;27902:1:::1;28508:7;;:19;;28500:63;;;::::0;;-1:-1:-1;;;28500:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;28500:63:0;;;;;;;;;;;;;::::1;;27902:1;28641:7;:18:::0;44783:22:::2;:48:::0;;;44847:54:::2;::::0;;;;;;;::::2;::::0;;;;::::2;::::0;;::::2;-1:-1:-1::0;27858:1:0::1;28820:22:::0;;44639:270::o;29327:38::-;;;:::o;50097:434::-;50187:7;29727:19;50215:7;:18;;50207:62;;;;;-1:-1:-1;;;50207:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;50285:17;50280:244;;50320:15;50343:19;50354:7;50343:10;:19::i;:::-;-1:-1:-1;50319:43:0;;-1:-1:-1;50377:14:0;;-1:-1:-1;;;;50377:14:0;50280:244;50426:23;50456:19;50467:7;50456:10;:19::i;:::-;-1:-1:-1;50424:51:0;;-1:-1:-1;50490:22:0;;-1:-1:-1;;;;50490:22:0;43926:269;44063:14;44099:88;44174:1;44150:21;;;:25;44145:2;:31;44099:27;:7;:27;;;;;:11;:27;:::i;:::-;:31;;:88::i;:::-;44090:97;43926:269;-1:-1:-1;;;;43926:269:0:o;43072:768::-;4163:12;:10;:12::i;:::-;4153:6;;-1:-1:-1;;;;;4153:6:0;;;:22;;;4145:67;;;;;-1:-1:-1;;;4145:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4145:67:0;;;;;;;;;;;;;;;27902:1:::1;28508:7;;:19;;28500:63;;;::::0;;-1:-1:-1;;;28500:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;28500:63:0;;;;;;;;;;;;;::::1;;27902:1;28641:7;:18:::0;43290:1:::2;43273:18:::0;::::2;;43265:61;;;::::0;;-1:-1:-1;;;43265:61:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;43362:4;43345:13;:21;;43337:66;;;::::0;;-1:-1:-1;;;43337:66:0;;::::2;;::::0;::::2;::::0;;;;;;;::::2;::::0;;;;;;;;;;;;;::::2;;43442:2;43422:16;:22;;;;43414:66;;;::::0;;-1:-1:-1;;;43414:66:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;43491:10;:26:::0;;;43528:11:::2;:28:::0;;43567:32:::2;::::0;::::2;43528:28;43567:32:::0;::::2;-1:-1:-1::0;;43528:28:0::2;::::0;::::2;-1:-1:-1::0;;43528:28:0;;::::2;::::0;::::2;43567:32;;::::0;;;43615:44:::2;::::0;;;;;::::2;::::0;::::2;::::0;;;;;;::::2;::::0;;;;;;;;;::::2;43684:20;::::0;::::2;;::::0;;::::2;;:32;;::::0;::::2;;;43680:144;;43728:20;:31:::0;;;::::2;;;::::0;::::2;-1:-1:-1::0;;43728:31:0;;::::2;::::0;;;::::2;::::0;;;43775:37:::2;::::0;;;;;;::::2;::::0;;;;::::2;::::0;;::::2;43680:144;-1:-1:-1::0;;27858:1:0::1;28820:22:::0;;-1:-1:-1;;43072:768:0:o;38664:107::-;4163:12;:10;:12::i;:::-;4153:6;;-1:-1:-1;;;;;4153:6:0;;;:22;;;4145:67;;;;;-1:-1:-1;;;4145:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4145:67:0;;;;;;;;;;;;;;;27902:1:::1;28508:7;;:19;;28500:63;;;::::0;;-1:-1:-1;;;28500:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;28500:63:0;;;;;;;;;;;;;::::1;;38741:14:::2;:22:::0;;-1:-1:-1;;38741:22:0::2;::::0;;28641:7:::1;28820:22:::0;;38664:107::o;45109:361::-;4163:12;:10;:12::i;:::-;4153:6;;-1:-1:-1;;;;;4153:6:0;;;:22;;;4145:67;;;;;-1:-1:-1;;;4145:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4145:67:0;;;;;;;;;;;;;;;27902:1:::1;28508:7;;:19;;28500:63;;;::::0;;-1:-1:-1;;;28500:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;28500:63:0;;;;;;;;;;;;;::::1;;27902:1;28641:7;:18:::0;-1:-1:-1;;;;;45221:17:0;::::2;45213:59;;;::::0;;-1:-1:-1;;;45213:59:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;45374:20;::::0;45333:6;;45374:33:::2;::::0;45399:7;45374:24:::2;:33::i;:::-;45351:20;:56:::0;45443:9:::2;::::0;45428:34:::2;::::0;;-1:-1:-1;;;45428:34:0;;45443:9:::2;::::0;;::::2;-1:-1:-1::0;;;;;45443:9:0;;::::2;45428:34;::::0;::::2;::::0;;;;;;;;;:14;;::::2;::::0;::::2;::::0;:34;;;;;::::2;::::0;;;;;;;;-1:-1:-1;45428:14:0;:34;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;;27858:1:0::1;28820:22:::0;;-1:-1:-1;;;;45109:361:0:o;32817:199::-;-1:-1:-1;;;;;32908:20:0;;32883:7;32908:20;;;:11;:20;;;;;;;;32904:49;;;-1:-1:-1;;;;;;32937:16:0;;;;;;:7;:16;;;;;;32930:23;;32904:49;-1:-1:-1;;;;;32991:16:0;;;;;;:7;:16;;;;;;32971:37;;:19;:37::i;:::-;32964:44;;32817:199;;;;:::o;4583:148::-;4163:12;:10;:12::i;:::-;4153:6;;-1:-1:-1;;;;;4153:6:0;;;:22;;;4145:67;;;;;-1:-1:-1;;;4145:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4145:67:0;;;;;;;;;;;;;;;4690:1:::1;4674:6:::0;;4653:40:::1;::::0;-1:-1:-1;;;;;4674:6:0;;::::1;::::0;4653:40:::1;::::0;4690:1;;4653:40:::1;4721:1;4704:19:::0;;-1:-1:-1;;;;;;4704:19:0::1;::::0;;4583:148::o;40687:97::-;40762:14;;40687:97;:::o;3941:79::-;3979:7;4006:6;-1:-1:-1;;;;;4006:6:0;3941:79;:::o;49712:377::-;49765:14;49782:12;:10;:12::i;:::-;-1:-1:-1;;;;;49814:19:0;;;;;;:11;:19;;;;;;49765:29;;-1:-1:-1;49814:19:0;;49813:20;49805:77;;;;-1:-1:-1;;;49805:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49894:15;49917:19;49928:7;49917:10;:19::i;:::-;-1:-1:-1;;;;;;;;;49965:15:0;;;;;;:7;:15;;;;;;49893:43;;-1:-1:-1;49965:28:0;;49893:43;49965:19;:28::i;:::-;-1:-1:-1;;;;;49947:15:0;;;;;;:7;:15;;;;;:46;50014:7;;:20;;50026:7;50014:11;:20::i;:::-;50004:7;:30;50058:10;;:23;;50073:7;50058:14;:23::i;:::-;50045:10;:36;-1:-1:-1;;;49712:377:0:o;30049:33::-;;;;:::o;31786:87::-;31858:7;31851:14;;;;;;;;-1:-1:-1;;31851:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31825:13;;31851:14;;31858:7;;31851:14;;31858:7;31851:14;;;;;;;;;;;;;;;;;;;;;;;;29911:37;;;;:::o;29877:27::-;;;;;;;;;:::o;35859:269::-;35952:4;35969:129;35978:12;:10;:12::i;:::-;35992:7;36001:96;36040:15;36001:96;;;;;;;;;;;;;;;;;:11;:25;36013:12;:10;:12::i;:::-;-1:-1:-1;;;;;36001:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;36001:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;33229:175::-;33315:4;33332:42;33342:12;:10;:12::i;:::-;33356:9;33367:6;33332:9;:42::i;44917:184::-;4163:12;:10;:12::i;:::-;4153:6;;-1:-1:-1;;;;;4153:6:0;;;:22;;;4145:67;;;;;-1:-1:-1;;;4145:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4145:67:0;;;;;;;;;;;;;;;27902:1:::1;28508:7;;:19;;28500:63;;;::::0;;-1:-1:-1;;;28500:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;28500:63:0;;;;;;;;;;;;;::::1;;27902:1;28641:7;:18:::0;45009:20:::2;:31:::0;;;::::2;;;::::0;::::2;-1:-1:-1::0;;45009:31:0;;::::2;::::0;;;::::2;::::0;;;45056:37:::2;::::0;;;;;;::::2;::::0;;;;::::2;::::0;;::::2;-1:-1:-1::0;27858:1:0::1;28820:22:::0;;44917:184::o;50539:257::-;50605:7;50644;;50633;:18;;50625:77;;;;-1:-1:-1;;;50625:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50713:19;50736:10;:8;:10::i;:::-;50713:33;-1:-1:-1;50764:24:0;:7;50713:33;50764:11;:24::i;:::-;50757:31;50539:257;-1:-1:-1;;;50539:257:0:o;29846:24::-;;;;;;:::o;30212:32::-;;;;;;;;;:::o;33467:151::-;-1:-1:-1;;;;;33583:18:0;;;33556:7;33583:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;33467:151::o;30178:27::-;;;;;;:::o;44291:340::-;4163:12;:10;:12::i;:::-;4153:6;;-1:-1:-1;;;;;4153:6:0;;;:22;;;4145:67;;;;;-1:-1:-1;;;4145:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4145:67:0;;;;;;;;;;;;;;;27902:1:::1;28508:7;;:19;;28500:63;;;::::0;;-1:-1:-1;;;28500:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;28500:63:0;;;;;;;;;;;;;::::1;;27902:1;28641:7;:18:::0;44452:2:::2;44434:20;::::0;::::2;;;44426:63;;;::::0;;-1:-1:-1;;;44426:63:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;44500:11;:26:::0;;44537:30:::2;::::0;::::2;44500:26;44537:30:::0;::::2;-1:-1:-1::0;;44500:26:0::2;::::0;::::2;-1:-1:-1::0;;44500:26:0;;::::2;::::0;::::2;44537:30;;::::0;;;44583:40:::2;::::0;;;;;::::2;::::0;::::2;::::0;;;;;;::::2;::::0;;;;;;;;;::::2;-1:-1:-1::0;;27858:1:0::1;28820:22:::0;;44291:340::o;50804:343::-;4163:12;:10;:12::i;:::-;4153:6;;-1:-1:-1;;;;;4153:6:0;;;:22;;;4145:67;;;;;-1:-1:-1;;;4145:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4145:67:0;;;;;;;;;;;;;;;27902:1:::1;28508:7;;:19;;28500:63;;;::::0;;-1:-1:-1;;;28500:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;28500:63:0;;;;;;;;;;;;;::::1;;27902:1;28641:7;:18:::0;-1:-1:-1;;;;;50897:20:0;::::2;;::::0;;;:11:::2;:20;::::0;;;;;::::2;;50896:21;50888:61;;;::::0;;-1:-1:-1;;;50888:61:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;50963:16:0;::::2;50982:1;50963:16:::0;;;:7:::2;:16;::::0;;;;;:20;50960:108:::2;;-1:-1:-1::0;;;;;51039:16:0;::::2;;::::0;;;:7:::2;:16;::::0;;;;;51019:37:::2;::::0;:19:::2;:37::i;:::-;-1:-1:-1::0;;;;;51000:16:0;::::2;;::::0;;;:7:::2;:16;::::0;;;;:56;50960:108:::2;-1:-1:-1::0;;;;;51078:20:0::2;;::::0;;;:11:::2;:20;::::0;;;;:27;;-1:-1:-1;;51078:27:0::2;51101:4;51078:27:::0;;::::2;::::0;;;51116:9:::2;:23:::0;;;;::::2;::::0;;;;;;;::::2;::::0;;-1:-1:-1;;;;;;51116:23:0::2;::::0;;::::2;::::0;;;28820:22;;50804:343::o;4886:244::-;4163:12;:10;:12::i;:::-;4153:6;;-1:-1:-1;;;;;4153:6:0;;;:22;;;4145:67;;;;;-1:-1:-1;;;4145:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4145:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;4975:22:0;::::1;4967:73;;;;-1:-1:-1::0;;;4967:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5077:6;::::0;;5056:38:::1;::::0;-1:-1:-1;;;;;5056:38:0;;::::1;::::0;5077:6;::::1;::::0;5056:38:::1;::::0;::::1;5105:6;:17:::0;;-1:-1:-1;;;;;;5105:17:0::1;-1:-1:-1::0;;;;;5105:17:0;;;::::1;::::0;;;::::1;::::0;;4886:244::o;30089:35::-;;;;:::o;51155:489::-;4163:12;:10;:12::i;:::-;4153:6;;-1:-1:-1;;;;;4153:6:0;;;:22;;;4145:67;;;;;-1:-1:-1;;;4145:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4145:67:0;;;;;;;;;;;;;;;27902:1:::1;28508:7;;:19;;28500:63;;;::::0;;-1:-1:-1;;;28500:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;28500:63:0;;;;;;;;;;;;;::::1;;27902:1;28641:7;:18:::0;-1:-1:-1;;;;;51247:20:0;::::2;;::::0;;;:11:::2;:20;::::0;;;;;::::2;;51239:60;;;::::0;;-1:-1:-1;;;51239:60:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;51315:9;51310:327;51334:9;:16:::0;51330:20;::::2;51310:327;;;51392:7;-1:-1:-1::0;;;;;51376:23:0::2;:9;51386:1;51376:12;;;;;;;;;::::0;;;::::2;::::0;;;::::2;::::0;-1:-1:-1;;;;;51376:12:0::2;:23;51372:254;;;51435:9;51445:16:::0;;-1:-1:-1;;51445:20:0;;;51435:31;::::2;;;;;;::::0;;;::::2;::::0;;;::::2;::::0;51420:9:::2;:12:::0;;-1:-1:-1;;;;;51435:31:0;;::::2;::::0;51430:1;;51420:12;::::2;;;;;;::::0;;;::::2;::::0;;;;;;::::2;:46:::0;;-1:-1:-1;;;;;;51420:46:0::2;-1:-1:-1::0;;;;;51420:46:0;;::::2;;::::0;;51485:16;;::::2;::::0;;:7:::2;:16:::0;;;;;;:20;;;51524:11:::2;:20:::0;;;;:28;;-1:-1:-1;;51524:28:0::2;::::0;;51571:9:::2;:15:::0;;;::::2;;;;;::::0;;;::::2;::::0;;;;-1:-1:-1;;51571:15:0;;;;;-1:-1:-1;;;;;;51571:15:0::2;::::0;;;;;51605:5:::2;;51372:254;51352:3;;51310:327;;;-1:-1:-1::0;;27858:1:0::1;28820:22:::0;;51155:489::o;30131:33::-;;;;:::o;2579:106::-;2667:10;2579:106;:::o;39212:346::-;-1:-1:-1;;;;;39314:19:0;;39306:68;;;;-1:-1:-1;;;39306:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39393:21:0;;39385:68;;;;-1:-1:-1;;;39385:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39466:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39518:32;;;;;;;;;;;;;;;;;39212:346;;;:::o;36132:2520::-;36259:7;:5;:7::i;:::-;-1:-1:-1;;;;;36251:15:0;:4;-1:-1:-1;;;;;36251:15:0;;36247:108;;36292:14;;;;36291:15;36283:60;;;;;-1:-1:-1;;;36283:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36650:28;36681:24;36699:4;36681:9;:24::i;:::-;36787:11;;36650:55;;-1:-1:-1;36716:20:0;;36739:98;;36766:6;;36787:11;;;;;36813:13;;;;36739:12;:98::i;:::-;36716:121;;36848:24;36899:22;;36875:20;:46;;36848:73;;36932:24;36965:13;-1:-1:-1;;;;;36959:19:0;:2;-1:-1:-1;;;;;36959:19:0;;36932:46;;37008:19;:52;;;;-1:-1:-1;37045:15:0;;;;37044:16;37008:52;:88;;;;;37077:19;37008:88;:125;;;;-1:-1:-1;37113:20:0;;;;;;;37008:125;36990:211;;;37160:35;37174:20;37160:13;:35::i;:::-;37211:16;;37207:642;;-1:-1:-1;;;;;37243:17:0;;;;;;:11;:17;;;;;;;;:37;;;;-1:-1:-1;;;;;;37265:15:0;;;;;;:11;:15;;;;;;;;37264:16;37243:37;37239:603;;;37298:56;37320:4;37334;37341:12;37298:21;:56::i;:::-;37239:603;;;-1:-1:-1;;;;;37377:17:0;;;;;;:11;:17;;;;;;;;37376:18;:37;;;;-1:-1:-1;;;;;;37398:15:0;;;;;;:11;:15;;;;;;;;37376:37;37372:470;;;37431:54;37451:4;37465;37472:12;37431:19;:54::i;37372:470::-;-1:-1:-1;;;;;37508:17:0;;;;;;:11;:17;;;;;;;;37507:18;:38;;;;-1:-1:-1;;;;;;37530:15:0;;;;;;:11;:15;;;;;;;;37529:16;37507:38;37503:339;;;37562:52;37580:4;37594;37601:12;37562:17;:52::i;37503:339::-;-1:-1:-1;;;;;37636:17:0;;;;;;:11;:17;;;;;;;;:36;;;;-1:-1:-1;;;;;;37657:15:0;;;;;;:11;:15;;;;;;;;37636:36;37632:210;;;37689:56;37711:4;37725;37732:12;37689:21;:56::i;37632:210::-;37778:52;37796:4;37810;37817:12;37778:17;:52::i;:::-;38007:24;38034;:6;38045:12;38034:10;:24::i;:::-;-1:-1:-1;;;;;38073:17:0;;;;;;:11;:17;;;;;;38007:51;;-1:-1:-1;38073:17:0;;:37;;;;-1:-1:-1;;;;;;38095:15:0;;;;;;:11;:15;;;;;;;;38094:16;38073:37;38069:566;;;38127:49;38149:4;38155:2;38159:16;38127:21;:49::i;:::-;38069:566;;;-1:-1:-1;;;;;38199:17:0;;;;;;:11;:17;;;;;;;;38198:18;:37;;;;-1:-1:-1;;;;;;38220:15:0;;;;;;:11;:15;;;;;;;;38198:37;38194:441;;;38252:47;38272:4;38278:2;38282:16;38252:19;:47::i;38194:441::-;-1:-1:-1;;;;;38322:17:0;;;;;;:11;:17;;;;;;;;38321:18;:38;;;;-1:-1:-1;;;;;;38344:15:0;;;;;;:11;:15;;;;;;;;38343:16;38321:38;38317:318;;;38376:45;38394:4;38400:2;38404:16;38376:17;:45::i;38317:318::-;-1:-1:-1;;;;;38443:17:0;;;;;;:11;:17;;;;;;;;:36;;;;-1:-1:-1;;;;;;38464:15:0;;;;;;:11;:15;;;;;;;;38443:36;38439:196;;;38496:49;38518:4;38524:2;38528:16;38496:21;:49::i;38439:196::-;38578:45;38596:4;38602:2;38606:16;38578:17;:45::i;:::-;36132:2520;;;;;;;;:::o;6882:192::-;6968:7;7004:12;6996:6;;;;6988:29;;;;-1:-1:-1;;;6988:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7040:5:0;;;6882:192::o;5979:181::-;6037:7;6069:5;;;6093:6;;;;6085:46;;;;;-1:-1:-1;;;6085:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;47744:412;47803:7;47812;47821;47830;47839;47860:23;47885:12;47901:21;47914:7;47901:12;:21::i;:::-;47859:63;;;;47933:19;47956:10;:8;:10::i;:::-;47933:33;;47978:15;47995:23;48020:12;48036:39;48048:7;48057:4;48063:11;48036;:39::i;:::-;47977:98;;;;-1:-1:-1;47977:98:0;;-1:-1:-1;48126:15:0;;-1:-1:-1;48143:4:0;;-1:-1:-1;47744:412:0;;-1:-1:-1;;;;;;47744:412:0:o;7333:471::-;7391:7;7636:6;7632:47;;-1:-1:-1;7666:1:0;7659:8;;7632:47;7703:5;;;7707:1;7703;:5;:1;7727:5;;;;;:10;7719:56;;;;-1:-1:-1;;;7719:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8280:132;8338:7;8365:39;8369:1;8372;8365:39;;;;;;;;;;;;;;;;;:3;:39::i;6443:136::-;6501:7;6528:43;6532:1;6535;6528:43;;;;;;;;;;;;;;;;;:3;:43::i;48974:163::-;49015:7;49036:15;49053;49072:19;:17;:19::i;:::-;49035:56;;-1:-1:-1;49035:56:0;-1:-1:-1;49109:20:0;49035:56;;49109:11;:20::i;:::-;49102:27;;;;48974:163;:::o;40954:986::-;30618:15;:22;;-1:-1:-1;;30618:22:0;30636:4;30618:22;;;:15;41110:27:::1;:20:::0;41135:1:::1;41110:24;:27::i;:::-;41095:42:::0;-1:-1:-1;41148:17:0::1;41168:30;:20:::0;41095:42;41168:24:::1;:30::i;:::-;41148:50:::0;-1:-1:-1;41501:21:0::1;41567:22;41584:4:::0;41567:16:::1;:22::i;:::-;41715:18;41736:41;:21;41762:14:::0;41736:25:::1;:41::i;:::-;41715:62;;41827:35;41840:9;41851:10;41827:12;:35::i;:::-;41890:42;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;30663:15:0;:23;;-1:-1:-1;;30663:23:0;;;-1:-1:-1;;;40954:986:0:o;46470:512::-;46573:15;46590:23;46615:12;46629:23;46654:12;46670:19;46681:7;46670:10;:19::i;:::-;-1:-1:-1;;;;;46718:15:0;;;;;;:7;:15;;;;;;46572:117;;-1:-1:-1;46572:117:0;;-1:-1:-1;46572:117:0;;-1:-1:-1;46572:117:0;-1:-1:-1;46572:117:0;-1:-1:-1;46718:28:0;;46738:7;46718:19;:28::i;:::-;-1:-1:-1;;;;;46700:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46775:7;:15;;;;:28;;46795:7;46775:19;:28::i;:::-;-1:-1:-1;;;;;46757:15:0;;;;;;;:7;:15;;;;;;:46;;;;46835:18;;;;;;;:39;;46858:15;46835:22;:39::i;:::-;-1:-1:-1;;;;;46814:18:0;;;;;;:7;:18;;;;;:60;46888:26;46903:4;46909;46888:14;:26::i;:::-;46947:9;-1:-1:-1;;;;;46930:44:0;46939:6;-1:-1:-1;;;;;46930:44:0;;46958:15;46930:44;;;;;;;;;;;;;;;;;;46470:512;;;;;;;;:::o;45941:521::-;46042:15;46059:23;46084:12;46098:23;46123:12;46139:19;46150:7;46139:10;:19::i;:::-;-1:-1:-1;;;;;46187:15:0;;;;;;:7;:15;;;;;;46041:117;;-1:-1:-1;46041:117:0;;-1:-1:-1;46041:117:0;;-1:-1:-1;46041:117:0;-1:-1:-1;46041:117:0;-1:-1:-1;46187:28:0;;46041:117;46187:19;:28::i;:::-;-1:-1:-1;;;;;46169:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;46247:18;;;;;:7;:18;;;;;:39;;46270:15;46247:22;:39::i;:::-;-1:-1:-1;;;;;46226:18:0;;;;;;:7;:18;;;;;;;;:60;;;;46318:7;:18;;;;:39;;46341:15;46318:22;:39::i;45478:455::-;45577:15;45594:23;45619:12;45633:23;45658:12;45674:19;45685:7;45674:10;:19::i;:::-;-1:-1:-1;;;;;45722:15:0;;;;;;:7;:15;;;;;;45576:117;;-1:-1:-1;45576:117:0;;-1:-1:-1;45576:117:0;;-1:-1:-1;45576:117:0;-1:-1:-1;45576:117:0;-1:-1:-1;45722:28:0;;45576:117;45722:19;:28::i;46990:588::-;47093:15;47110:23;47135:12;47149:23;47174:12;47190:19;47201:7;47190:10;:19::i;:::-;-1:-1:-1;;;;;47238:15:0;;;;;;:7;:15;;;;;;47092:117;;-1:-1:-1;47092:117:0;;-1:-1:-1;47092:117:0;;-1:-1:-1;47092:117:0;-1:-1:-1;47092:117:0;-1:-1:-1;47238:28:0;;47258:7;47238:19;:28::i;:::-;-1:-1:-1;;;;;47220:15:0;;;;;;:7;:15;;;;;;;;:46;;;;47295:7;:15;;;;:28;;47315:7;47295:19;:28::i;48393:231::-;48454:7;48463;48483:12;48498:23;48510:10;;48498:7;:11;;:23;;;;:::i;:::-;48483:38;-1:-1:-1;48532:23:0;48558:17;:7;48483:38;48558:11;:17::i;:::-;48532:43;-1:-1:-1;48611:4:0;;-1:-1:-1;;48393:231:0;;;:::o;48632:334::-;48727:7;;;;48783:24;:7;48795:11;48783;:24::i;:::-;48765:42;-1:-1:-1;48818:12:0;48833:21;:4;48842:11;48833:8;:21::i;:::-;48818:36;-1:-1:-1;48865:23:0;48891:17;:7;48818:36;48891:11;:17::i;:::-;48927:7;;;;-1:-1:-1;48953:4:0;;-1:-1:-1;48632:334:0;;-1:-1:-1;;;;;48632:334:0:o;8908:278::-;8994:7;9029:12;9022:5;9014:28;;;;-1:-1:-1;;;9014:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9053:9;9069:1;9065;:5;;;;;;;8908:278;-1:-1:-1;;;;;8908:278:0:o;49145:561::-;49242:7;;49195;;;;29727:19;49195:7;49302:289;49326:9;:16;49322:20;;49302:289;;;49392:7;49368;:21;49376:9;49386:1;49376:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49376:12:0;49368:21;;;;;;;;;;;;;:31;;:66;;;49427:7;49403;:21;49411:9;49421:1;49411:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49411:12:0;49403:21;;;;;;;;;;;;;:31;49368:66;49364:97;;;49444:7;;29727:19;49436:25;;;;;;;;;49364:97;49486:34;49498:7;:21;49506:9;49516:1;49506:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49506:12:0;49498:21;;;;;;;;;;;;;49486:7;;:11;:34::i;:::-;49476:44;;49545:34;49557:7;:21;49565:9;49575:1;49565:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49565:12:0;49557:21;;;;;;;;;;;;;49545:7;;:11;:34::i;:::-;49535:44;-1:-1:-1;49344:3:0;;49302:289;;;-1:-1:-1;49615:7:0;;:20;;29727:19;49615:11;:20::i;:::-;49605:7;:30;49601:61;;;49645:7;;29727:19;49637:25;;;;;;;;49601:61;49681:7;;-1:-1:-1;49690:7:0;-1:-1:-1;49145:561:0;;;:::o;41948:589::-;42098:16;;;42112:1;42098:16;;;42074:21;42098:16;;;;;42074:21;42098:16;;;;;;;;;;-1:-1:-1;42098:16:0;42074:40;;42143:4;42125;42130:1;42125:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;42125:23:0;;;-1:-1:-1;;;;;42125:23:0;;;;;29277:42;-1:-1:-1;;;;;42169:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42169:22:0;42159:7;;:4;;42164:1;;42159:7;;;;;;;;;;;:32;-1:-1:-1;;;;;42159:32:0;;;-1:-1:-1;;;;;42159:32:0;;;;;42204:62;42221:4;29277:42;42254:11;42204:8;:62::i;:::-;29277:42;-1:-1:-1;;;;;42305:66:0;;42386:11;42412:1;42456:4;42483;42503:15;42305:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42305:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41948:589;;:::o;42545:519::-;42693:62;42710:4;29277:42;42743:11;42693:8;:62::i;:::-;42798:258;;;-1:-1:-1;;;42798:258:0;;42870:4;42798:258;;;;;;;;;;;;42916:1;42798:258;;;;;;;;;;;;;;43030:15;42798:258;;;;;;29277:42;;42798:31;;42837:9;;42798:258;;;;;;;;;;;;;;;42837:9;29277:42;42798:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;42545:519:0:o;47586:150::-;47667:7;;:17;;47679:4;47667:11;:17::i;:::-;47657:7;:27;47708:10;;:20;;47723:4;47708:14;:20::i;:::-;47695:10;:33;-1:-1:-1;;47586:150:0:o

Swarm Source

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