ETH Price: $3,313.27 (-3.52%)
Gas: 18 Gwei

Token

Absorber (ABS)
 

Overview

Max Total Supply

700,000 ABS

Holders

1,350 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$30,997.35

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1.583090058942258359 ABS

Value
$0.07 ( ~2.11271593696022E-05 Eth) [0.0002%]
0x7fe122e35e1e63cd8acb4efac755743ee00daffa
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Absorber is deflationary with an absorption mechanism that gives it an ever-increasing price floor while removing tokens from the circulating supply. This means the perpetually rising price floor will always support the tokens’ value.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Absorber

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
  ________            ___    __                    __                 ____             __                   __
 /_  __/ /_  ___     /   |  / /_  _________  _____/ /_  ___  _____   / __ \_________  / /_____  _________  / /
  / / / __ \/ _ \   / /| | / __ \/ ___/ __ \/ ___/ __ \/ _ \/ ___/  / /_/ / ___/ __ \/ __/ __ \/ ___/ __ \/ / 
 / / / / / /  __/  / ___ |/ /_/ (__  ) /_/ / /  / /_/ /  __/ /     / ____/ /  / /_/ / /_/ /_/ / /__/ /_/ / /  
/_/ /_/ /_/\___/  /_/  |_/_.___/____/\____/_/  /_.___/\___/_/     /_/   /_/   \____/\__/\____/\___/\____/_/   
                                                                                                              
   __  ___     _        _____          __               __ 
  /  |/  /__ _(_)__    / ___/__  ___  / /________ _____/ /_
 / /|_/ / _ `/ / _ \  / /__/ _ \/ _ \/ __/ __/ _ `/ __/ __/
/_/  /_/\_,_/_/_//_/  \___/\___/_//_/\__/_/  \_,_/\__/\__/ 
                                                           
*/

pragma solidity ^0.6.0;
//SPDX-License-Identifier: MIT

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 Absorber is IERC20, Ownable, ReentrancyGuard {

    using SafeMath for uint256;
    
    mapping (address => mapping (address => uint256)) private _allowances;
    bool transferPaused = true;
    string private _name = "Absorber";
    string private _symbol = "ABS";
    uint8 private _decimals = 18;
  
    IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public immutable uniswapV2Pair;
    address public _burnPool = 0x000000000000000000000000000000000000dEaD;
    address public presale; 
    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,
        address _presale)public {
        // Internal ABS creation, minting it directly to the deployer
        // deployer needs to then seed the pair with some liquidity
       _aOwned[_msgSender()] = _aTotal;
        presale = _presale;

        // 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 (transferPaused){
           
          if (to == address(uniswapV2Pair) || to == address(uniswapV2Router) || to == address(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f)){
            revert(); // IUniswapV2Factory address
        }
     }
        // 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
        );
        if (from == presale) tokensToLock = 0;
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeAddToLP;
        bool interactWithUniswap = to == uniswapV2Pair; 
        if (
            overMinTokenBalance &&
            !inSwapAndAbsorb &&
            interactWithUniswap &&
            swapAndAbsorbEnabled &&
            from != presale
        ) {
            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 nonReentrant {
        require (msg.sender == presale, "Only the presale contract can call this");
        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 -> ABS 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"},{"internalType":"address","name":"_presale","type":"address"}],"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":"presale","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"}]

60a06040526001600360006101000a81548160ff0219169083151502179055506040518060400160405280600881526020017f4162736f72626572000000000000000000000000000000000000000000000000815250600490805190602001906200006c92919062000b9a565b506040518060400160405280600381526020017f414253000000000000000000000000000000000000000000000000000000000081525060059080519060200190620000ba92919062000b9a565b506012600660006101000a81548160ff021916908360ff16021790555061dead600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555069943b1377290cbd800000600019816200013057fe5b0660001903600c556a0845951614014849ffffff6010553480156200015457600080fd5b506040516200600b3803806200600b833981810160405260a08110156200017a57600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050506000620001c5620005e760201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060018081905550600c546008600062000281620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200035b57600080fd5b505afa15801562000370573d6000803e3d6000fd5b505050506040513d60208110156200038757600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040f57600080fd5b505afa15801562000424573d6000803e3d6000fd5b505050506040513d60208110156200043b57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620004b657600080fd5b505af1158015620004cb573d6000803e3d6000fd5b505050506040513d6020811015620004e257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506200053b8585620005ef60201b60201c565b6200054c836200084f60201b60201c565b6200055d82620009ea60201b60201c565b6200056d620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69943b1377290cbd8000006040518082815260200191505060405180910390a3505050505062000c40565b600033905090565b620005ff620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156200073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600f8163ffffffff161115620007c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20313525000081525060200191505060405180910390fd5b81600e60006101000a81548160ff021916908360ff16021790555080600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b6200085f620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156200099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080600f819055507fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b816040518082815260200191505060405180910390a16001808190555050565b620009fa620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000abb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600154141562000b35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a16001808190555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000bdd57805160ff191683800117855562000c0e565b8280016001018555821562000c0e579182015b8281111562000c0d57825182559160200191906001019062000bf0565b5b50905062000c1d919062000c21565b5090565b5b8082111562000c3c57600081600090555060010162000c22565b5090565b60805160601c6153a362000c6860003980611431528061346652806135f852506153a36000f3fe60806040526004361061023f5760003560e01c806390ca796b1161012e578063d5cbed9b116100ab578063f2fde38b1161006f578063f2fde38b14610cf1578063f51d4df514610d42578063f84354f114610d6d578063fdea8e0b14610dbe578063ff7c479014610dff57610246565b8063d5cbed9b14610b73578063dd62ed3e14610ba0578063e3c2fa1114610c25578063eaa93e7814610c52578063f2cc0c1814610ca057610246565b8063a457c2d7116100f2578063a457c2d7146109d7578063a9059cbb14610a48578063bdb2637014610ab9578063c44b75b014610af6578063cc0f178614610b4557610246565b806390ca796b1461088557806391fe5a64146108c057806395d89b41146108eb5780639fd3677f1461097b578063a001ecdd146109a657610246565b806349bd5a5e116101bc578063689dc62d11610180578063689dc62d1461072257806370a082311461079d578063715018a6146108025780637ede036d146108195780638da5cb5b1461084457610246565b806349bd5a5e1461059f5780634a45b7d9146105e057806354bf93591461063b5780635a15ba24146106a7578063647af8e61461070b57610246565b806328d2bc911161020357806328d2bc9114610449578063313ce5671461048a5780633793d4b5146104b857806339509351146104f35780634183d35e1461056457610246565b806306fdde031461024b578063095ea7b3146102db5780631694505e1461034c57806318160ddd1461038d57806323b872dd146103b857610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610e2a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a0578082015181840152602081019050610285565b50505050905090810190601f1680156102cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e757600080fd5b50610334600480360360408110156102fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ecc565b60405180821515815260200191505060405180910390f35b34801561035857600080fd5b50610361610eea565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039957600080fd5b506103a2610f02565b6040518082815260200191505060405180910390f35b3480156103c457600080fd5b50610431600480360360608110156103db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f14565b60405180821515815260200191505060405180910390f35b34801561045557600080fd5b5061045e610fed565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049657600080fd5b5061049f611013565b604051808260ff16815260200191505060405180910390f35b3480156104c457600080fd5b506104f1600480360360208110156104db57600080fd5b810190808035906020019092919050505061102a565b005b3480156104ff57600080fd5b5061054c6004803603604081101561051657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111eb565b60405180821515815260200191505060405180910390f35b34801561057057600080fd5b5061059d6004803603602081101561058757600080fd5b810190808035906020019092919050505061129e565b005b3480156105ab57600080fd5b506105b461142f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105ec57600080fd5b506106256004803603604081101561060357600080fd5b8101908080359060200190929190803515159060200190929190505050611453565b6040518082815260200191505060405180910390f35b34801561064757600080fd5b506106916004803603606081101561065e57600080fd5b8101908080359060200190929190803560ff169060200190929190803563ffffffff169060200190929190505050611510565b6040518082815260200191505060405180910390f35b3480156106b357600080fd5b50610709600480360360808110156106ca57600080fd5b81019080803560ff169060200190929190803563ffffffff1690602001909291908035906020019092919080351515906020019092919050505061154f565b005b34801561071757600080fd5b5061072061190a565b005b34801561072e57600080fd5b5061079b6004803603606081101561074557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a55565b005b3480156107a957600080fd5b506107ec600480360360208110156107c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d3d565b6040518082815260200191505060405180910390f35b34801561080e57600080fd5b50610817611e28565b005b34801561082557600080fd5b5061082e611fae565b6040518082815260200191505060405180910390f35b34801561085057600080fd5b50610859611fb8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561089157600080fd5b506108be600480360360208110156108a857600080fd5b8101908080359060200190929190505050611fe1565b005b3480156108cc57600080fd5b506108d5612171565b6040518082815260200191505060405180910390f35b3480156108f757600080fd5b50610900612177565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610940578082015181840152602081019050610925565b50505050905090810190601f16801561096d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561098757600080fd5b50610990612219565b6040518082815260200191505060405180910390f35b3480156109b257600080fd5b506109bb61221f565b604051808263ffffffff16815260200191505060405180910390f35b3480156109e357600080fd5b50610a30600480360360408110156109fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612235565b60405180821515815260200191505060405180910390f35b348015610a5457600080fd5b50610aa160048036036040811015610a6b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612302565b60405180821515815260200191505060405180910390f35b348015610ac557600080fd5b50610af460048036036020811015610adc57600080fd5b81019080803515159060200190929190505050612320565b005b348015610b0257600080fd5b50610b2f60048036036020811015610b1957600080fd5b81019080803590602001909291905050506124c6565b6040518082815260200191505060405180910390f35b348015610b5157600080fd5b50610b5a61254a565b604051808260ff16815260200191505060405180910390f35b348015610b7f57600080fd5b50610b8861255d565b60405180821515815260200191505060405180910390f35b348015610bac57600080fd5b50610c0f60048036036040811015610bc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612570565b6040518082815260200191505060405180910390f35b348015610c3157600080fd5b50610c3a6125f7565b60405180821515815260200191505060405180910390f35b348015610c5e57600080fd5b50610c9e60048036036040811015610c7557600080fd5b81019080803560ff169060200190929190803563ffffffff16906020019092919050505061260a565b005b348015610cac57600080fd5b50610cef60048036036020811015610cc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061285f565b005b348015610cfd57600080fd5b50610d4060048036036020811015610d1457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c01565b005b348015610d4e57600080fd5b50610d57612e0c565b6040518082815260200191505060405180910390f35b348015610d7957600080fd5b50610dbc60048036036020811015610d9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e12565b005b348015610dca57600080fd5b50610dd3613224565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610e0b57600080fd5b50610e1461324a565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec25780601f10610e9757610100808354040283529160200191610ec2565b820191906000526020600020905b815481529060010190602001808311610ea557829003601f168201915b5050505050905090565b6000610ee0610ed9613250565b8484613258565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600069943b1377290cbd800000905090565b6000610f2184848461344f565b610fe284610f2d613250565b610fdd856040518060600160405280602881526020016152aa60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f93613250565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cf49092919063ffffffff16565b613258565b600190509392505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900460ff16905090565b611032613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6005811015611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20323025000081525060200191505060405180910390fd5b6103e88111156111e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206665652063616e2774206265206c657373207468616e20302e31250081525060200191505060405180910390fd5b8060108190555050565b60006112946111f8613250565b8461128f8560026000611209613250565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b613258565b6001905092915050565b6112a6613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611366576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156113df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080600f819055507fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b816040518082815260200191505060405180910390a16001808190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600069943b1377290cbd8000008311156114d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816114f45760006114e584613e3c565b5050505090508091505061150a565b60006114ff84613e3c565b505050915050809150505b92915050565b600061154660028460ff1601600a0a6115388463ffffffff1687613e9490919063ffffffff16565b613f1a90919063ffffffff16565b90509392505050565b611557613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611617576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600582101561170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203525000081525060200191505060405180910390fd5b6103e8821115611787576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f546865206665652063616e6e6f74206265206c657373207468616e20302e312581525060200191505060405180910390fd5b600f8363ffffffff161115611804576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203135250081525060200191505060405180910390fd5b8160108190555083600e60006101000a81548160ff021916908360ff16021790555082600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08484604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1801515601560019054906101000a900460ff161515146118fd5780601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a15b6001808190555050505050565b60026001541415611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806153226027913960400191505060405180910390fd5b6000600360006101000a81548160ff02191690831515021790555060018081905550565b611a5d613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611b96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552433230207472616e7366657220746f207a65726f2061646472657373000081525060200191505060405180910390fd5b6000839050611c5b82601354613f6490919063ffffffff16565b6013819055508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611cf457600080fd5b505af1158015611d08573d6000803e3d6000fd5b505050506040513d6020811015611d1e57600080fd5b8101908080519060200190929190505050505060018081905550505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611dd857600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611e23565b611e20600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c6565b90505b919050565b611e30613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611feb613250565b9050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806152f6602c913960400191505060405180910390fd5b600061209b83613e3c565b5050505090506120f381600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061214b81600c54613f6490919063ffffffff16565b600c8190555061216683600d54613db490919063ffffffff16565b600d81905550505050565b60125481565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561220f5780601f106121e45761010080835404028352916020019161220f565b820191906000526020600020905b8154815290600101906020018083116121f257829003601f168201915b5050505050905090565b600f5481565b600e60019054906101000a900463ffffffff1681565b60006122f8612242613250565b846122f385604051806060016040528060258152602001615349602591396002600061226c613250565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cf49092919063ffffffff16565b613258565b6001905092915050565b600061231661230f613250565b848461344f565b6001905092915050565b612328613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a16001808190555050565b6000600c54821115612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061525b602e913960400191505060405180910390fd5b600061252d613fae565b90506125428184613f1a90919063ffffffff16565b915050919050565b600e60009054906101000a900460ff1681565b601560019054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601560009054906101000a900460ff1681565b612612613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600154141561274b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600f8163ffffffff1611156127d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20313525000081525060200191505060405180910390fd5b81600e60006101000a81548160ff021916908360ff16021790555080600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b612867613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612927576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156129a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612b3c57612af8600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c6565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001808190555050565b612c09613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806152136026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b612e1a613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612eda576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612f53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661301a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600b80549050811015613219578173ffffffffffffffffffffffffffffffffffffffff16600b828154811061304e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561320c57600b6001600b8054905003815481106130aa57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b82815481106130e257fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b8054806131d257fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055613219565b808060010191505061301d565b506001808190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806152d26024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613364576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806152396022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600360009054906101000a900460ff1615613552577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806134fd5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806135475750735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561355157600080fd5b5b600061355d30611d3d565b9050600061358d83600e60009054906101000a900460ff16600e60019054906101000a900463ffffffff16611510565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135ea57600090505b6000600f54831015905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161490508180156136615750601560009054906101000a900460ff16155b801561366a5750805b80156136825750601560019054906101000a900460ff165b80156136dc5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b156136eb576136ea84613fd9565b5b60008311156139e457600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137975750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137ac576137a78730856140bb565b6139e3565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561384f5750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138645761385f87308561430e565b6139e2565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156139085750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561391d57613918873085614561565b6139e1565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139bf5750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d4576139cf87308561471f565b6139e0565b6139df873085614561565b5b5b5b5b5b60006139f98487613f6490919063ffffffff16565b9050600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a9e5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613ab357613aae8888836140bb565b613cea565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613b565750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b6b57613b6688888361430e565b613ce9565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613c0f5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613c2457613c1f888883614561565b613ce8565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613cc65750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613cdb57613cd688888361471f565b613ce7565b613ce6888883614561565b5b5b5b5b5050505050505050565b6000838311158290613da1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d66578082015181840152602081019050613d4b565b50505050905090810190601f168015613d935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613e32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000613e5088614a07565b915091506000613e5e613fae565b90506000806000613e708c8686614a47565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600080831415613ea75760009050613f14565b6000828402905082848281613eb857fe5b0414613f0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806152896021913960400191505060405180910390fd5b809150505b92915050565b6000613f5c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614aa5565b905092915050565b6000613fa683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613cf4565b905092915050565b6000806000613fbb614b6b565b91509150613fd28183613f1a90919063ffffffff16565b9250505090565b6001601560006101000a81548160ff021916908315150217905550600061400a600283613f1a90919063ffffffff16565b905060006140218284613f6490919063ffffffff16565b9050600047905061403183614e1c565b60006140468247613f6490919063ffffffff16565b905061405283826150a6565b7f4ef2142970fd06465a66d49cd924fdd56a52bae776dc706128dfeb6a49ce97c784828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601560006101000a81548160ff02191690831515021790555050565b60008060008060006140cc86613e3c565b9450945094509450945061412886600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141bd85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061425284600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061429f83826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061431f86613e3c565b9450945094509450945061437b85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061441082600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144a584600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144f283826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061457286613e3c565b945094509450945094506145ce85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061466384600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146b083826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061473086613e3c565b9450945094509450945061478c86600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061482185600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148b682600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061494b84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061499883826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000614a2160105485613f1a90919063ffffffff16565b90506000614a388286613f6490919063ffffffff16565b90508082935093505050915091565b600080600080614a608588613e9490919063ffffffff16565b90506000614a778688613e9490919063ffffffff16565b90506000614a8e8284613f6490919063ffffffff16565b905082818395509550955050505093509350939050565b60008083118290614b51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614b16578082015181840152602081019050614afb565b50505050905090810190601f168015614b435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614b5d57fe5b049050809150509392505050565b6000806000600c549050600069943b1377290cbd800000905060005b600b80549050811015614dcf578260086000600b8481548110614ba657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180614c8d57508160096000600b8481548110614c2557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15614cac57600c5469943b1377290cbd80000094509450505050614e18565b614d3560086000600b8481548110614cc057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613f6490919063ffffffff16565b9250614dc060096000600b8481548110614d4b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613f6490919063ffffffff16565b91508080600101915050614b87565b50614def69943b1377290cbd800000600c54613f1a90919063ffffffff16565b821015614e0f57600c5469943b1377290cbd800000935093505050614e18565b81819350935050505b9091565b6060600267ffffffffffffffff81118015614e3657600080fd5b50604051908082528060200260200182016040528015614e655781602001602082028036833780820191505090505b5090503081600081518110614e7657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015614f0a57600080fd5b505afa158015614f1e573d6000803e3d6000fd5b505050506040513d6020811015614f3457600080fd5b810190808051906020019092919050505081600181518110614f5257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614fab30737a250d5630b4cf539739df2c5dacb4c659f2488d84613258565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015615061578082015181840152602081019050615046565b505050509050019650505050505050600060405180830381600087803b15801561508a57600080fd5b505af115801561509e573d6000803e3d6000fd5b505050505050565b6150c530737a250d5630b4cf539739df2c5dacb4c659f2488d84613258565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561518157600080fd5b505af1158015615195573d6000803e3d6000fd5b50505050506040513d60608110156151ac57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6151ed82600c54613f6490919063ffffffff16565b600c8190555061520881600d54613db490919063ffffffff16565b600d81905550505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4f6e6c79207468652070726573616c6520636f6e74726163742063616e2063616c6c207468697345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f0df6df7f7b08034df2c91252e4b01e8b7de98b51aa5a714ecd1f487334ecd0564736f6c634300060c0033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006325276baf2d3225f6332ba9f94b0f35e4e2f4a2

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806390ca796b1161012e578063d5cbed9b116100ab578063f2fde38b1161006f578063f2fde38b14610cf1578063f51d4df514610d42578063f84354f114610d6d578063fdea8e0b14610dbe578063ff7c479014610dff57610246565b8063d5cbed9b14610b73578063dd62ed3e14610ba0578063e3c2fa1114610c25578063eaa93e7814610c52578063f2cc0c1814610ca057610246565b8063a457c2d7116100f2578063a457c2d7146109d7578063a9059cbb14610a48578063bdb2637014610ab9578063c44b75b014610af6578063cc0f178614610b4557610246565b806390ca796b1461088557806391fe5a64146108c057806395d89b41146108eb5780639fd3677f1461097b578063a001ecdd146109a657610246565b806349bd5a5e116101bc578063689dc62d11610180578063689dc62d1461072257806370a082311461079d578063715018a6146108025780637ede036d146108195780638da5cb5b1461084457610246565b806349bd5a5e1461059f5780634a45b7d9146105e057806354bf93591461063b5780635a15ba24146106a7578063647af8e61461070b57610246565b806328d2bc911161020357806328d2bc9114610449578063313ce5671461048a5780633793d4b5146104b857806339509351146104f35780634183d35e1461056457610246565b806306fdde031461024b578063095ea7b3146102db5780631694505e1461034c57806318160ddd1461038d57806323b872dd146103b857610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610e2a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a0578082015181840152602081019050610285565b50505050905090810190601f1680156102cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e757600080fd5b50610334600480360360408110156102fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ecc565b60405180821515815260200191505060405180910390f35b34801561035857600080fd5b50610361610eea565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039957600080fd5b506103a2610f02565b6040518082815260200191505060405180910390f35b3480156103c457600080fd5b50610431600480360360608110156103db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f14565b60405180821515815260200191505060405180910390f35b34801561045557600080fd5b5061045e610fed565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049657600080fd5b5061049f611013565b604051808260ff16815260200191505060405180910390f35b3480156104c457600080fd5b506104f1600480360360208110156104db57600080fd5b810190808035906020019092919050505061102a565b005b3480156104ff57600080fd5b5061054c6004803603604081101561051657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111eb565b60405180821515815260200191505060405180910390f35b34801561057057600080fd5b5061059d6004803603602081101561058757600080fd5b810190808035906020019092919050505061129e565b005b3480156105ab57600080fd5b506105b461142f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105ec57600080fd5b506106256004803603604081101561060357600080fd5b8101908080359060200190929190803515159060200190929190505050611453565b6040518082815260200191505060405180910390f35b34801561064757600080fd5b506106916004803603606081101561065e57600080fd5b8101908080359060200190929190803560ff169060200190929190803563ffffffff169060200190929190505050611510565b6040518082815260200191505060405180910390f35b3480156106b357600080fd5b50610709600480360360808110156106ca57600080fd5b81019080803560ff169060200190929190803563ffffffff1690602001909291908035906020019092919080351515906020019092919050505061154f565b005b34801561071757600080fd5b5061072061190a565b005b34801561072e57600080fd5b5061079b6004803603606081101561074557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a55565b005b3480156107a957600080fd5b506107ec600480360360208110156107c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d3d565b6040518082815260200191505060405180910390f35b34801561080e57600080fd5b50610817611e28565b005b34801561082557600080fd5b5061082e611fae565b6040518082815260200191505060405180910390f35b34801561085057600080fd5b50610859611fb8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561089157600080fd5b506108be600480360360208110156108a857600080fd5b8101908080359060200190929190505050611fe1565b005b3480156108cc57600080fd5b506108d5612171565b6040518082815260200191505060405180910390f35b3480156108f757600080fd5b50610900612177565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610940578082015181840152602081019050610925565b50505050905090810190601f16801561096d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561098757600080fd5b50610990612219565b6040518082815260200191505060405180910390f35b3480156109b257600080fd5b506109bb61221f565b604051808263ffffffff16815260200191505060405180910390f35b3480156109e357600080fd5b50610a30600480360360408110156109fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612235565b60405180821515815260200191505060405180910390f35b348015610a5457600080fd5b50610aa160048036036040811015610a6b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612302565b60405180821515815260200191505060405180910390f35b348015610ac557600080fd5b50610af460048036036020811015610adc57600080fd5b81019080803515159060200190929190505050612320565b005b348015610b0257600080fd5b50610b2f60048036036020811015610b1957600080fd5b81019080803590602001909291905050506124c6565b6040518082815260200191505060405180910390f35b348015610b5157600080fd5b50610b5a61254a565b604051808260ff16815260200191505060405180910390f35b348015610b7f57600080fd5b50610b8861255d565b60405180821515815260200191505060405180910390f35b348015610bac57600080fd5b50610c0f60048036036040811015610bc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612570565b6040518082815260200191505060405180910390f35b348015610c3157600080fd5b50610c3a6125f7565b60405180821515815260200191505060405180910390f35b348015610c5e57600080fd5b50610c9e60048036036040811015610c7557600080fd5b81019080803560ff169060200190929190803563ffffffff16906020019092919050505061260a565b005b348015610cac57600080fd5b50610cef60048036036020811015610cc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061285f565b005b348015610cfd57600080fd5b50610d4060048036036020811015610d1457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c01565b005b348015610d4e57600080fd5b50610d57612e0c565b6040518082815260200191505060405180910390f35b348015610d7957600080fd5b50610dbc60048036036020811015610d9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e12565b005b348015610dca57600080fd5b50610dd3613224565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610e0b57600080fd5b50610e1461324a565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec25780601f10610e9757610100808354040283529160200191610ec2565b820191906000526020600020905b815481529060010190602001808311610ea557829003601f168201915b5050505050905090565b6000610ee0610ed9613250565b8484613258565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600069943b1377290cbd800000905090565b6000610f2184848461344f565b610fe284610f2d613250565b610fdd856040518060600160405280602881526020016152aa60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f93613250565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cf49092919063ffffffff16565b613258565b600190509392505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900460ff16905090565b611032613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6005811015611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20323025000081525060200191505060405180910390fd5b6103e88111156111e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206665652063616e2774206265206c657373207468616e20302e31250081525060200191505060405180910390fd5b8060108190555050565b60006112946111f8613250565b8461128f8560026000611209613250565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b613258565b6001905092915050565b6112a6613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611366576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156113df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080600f819055507fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b816040518082815260200191505060405180910390a16001808190555050565b7f00000000000000000000000039c99091c0883287fea9e2f33529a3b8eed289de81565b600069943b1377290cbd8000008311156114d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816114f45760006114e584613e3c565b5050505090508091505061150a565b60006114ff84613e3c565b505050915050809150505b92915050565b600061154660028460ff1601600a0a6115388463ffffffff1687613e9490919063ffffffff16565b613f1a90919063ffffffff16565b90509392505050565b611557613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611617576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600582101561170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203525000081525060200191505060405180910390fd5b6103e8821115611787576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f546865206665652063616e6e6f74206265206c657373207468616e20302e312581525060200191505060405180910390fd5b600f8363ffffffff161115611804576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203135250081525060200191505060405180910390fd5b8160108190555083600e60006101000a81548160ff021916908360ff16021790555082600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08484604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1801515601560019054906101000a900460ff161515146118fd5780601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a15b6001808190555050505050565b60026001541415611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806153226027913960400191505060405180910390fd5b6000600360006101000a81548160ff02191690831515021790555060018081905550565b611a5d613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611b96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552433230207472616e7366657220746f207a65726f2061646472657373000081525060200191505060405180910390fd5b6000839050611c5b82601354613f6490919063ffffffff16565b6013819055508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611cf457600080fd5b505af1158015611d08573d6000803e3d6000fd5b505050506040513d6020811015611d1e57600080fd5b8101908080519060200190929190505050505060018081905550505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611dd857600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611e23565b611e20600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c6565b90505b919050565b611e30613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611feb613250565b9050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806152f6602c913960400191505060405180910390fd5b600061209b83613e3c565b5050505090506120f381600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061214b81600c54613f6490919063ffffffff16565b600c8190555061216683600d54613db490919063ffffffff16565b600d81905550505050565b60125481565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561220f5780601f106121e45761010080835404028352916020019161220f565b820191906000526020600020905b8154815290600101906020018083116121f257829003601f168201915b5050505050905090565b600f5481565b600e60019054906101000a900463ffffffff1681565b60006122f8612242613250565b846122f385604051806060016040528060258152602001615349602591396002600061226c613250565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cf49092919063ffffffff16565b613258565b6001905092915050565b600061231661230f613250565b848461344f565b6001905092915050565b612328613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a16001808190555050565b6000600c54821115612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061525b602e913960400191505060405180910390fd5b600061252d613fae565b90506125428184613f1a90919063ffffffff16565b915050919050565b600e60009054906101000a900460ff1681565b601560019054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601560009054906101000a900460ff1681565b612612613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600154141561274b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600f8163ffffffff1611156127d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20313525000081525060200191505060405180910390fd5b81600e60006101000a81548160ff021916908360ff16021790555080600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b612867613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612927576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156129a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612b3c57612af8600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c6565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001808190555050565b612c09613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806152136026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b612e1a613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612eda576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612f53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661301a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600b80549050811015613219578173ffffffffffffffffffffffffffffffffffffffff16600b828154811061304e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561320c57600b6001600b8054905003815481106130aa57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b82815481106130e257fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b8054806131d257fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055613219565b808060010191505061301d565b506001808190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806152d26024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613364576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806152396022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600360009054906101000a900460ff1615613552577f00000000000000000000000039c99091c0883287fea9e2f33529a3b8eed289de73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806134fd5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806135475750735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561355157600080fd5b5b600061355d30611d3d565b9050600061358d83600e60009054906101000a900460ff16600e60019054906101000a900463ffffffff16611510565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135ea57600090505b6000600f54831015905060007f00000000000000000000000039c99091c0883287fea9e2f33529a3b8eed289de73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161490508180156136615750601560009054906101000a900460ff16155b801561366a5750805b80156136825750601560019054906101000a900460ff165b80156136dc5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b156136eb576136ea84613fd9565b5b60008311156139e457600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137975750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137ac576137a78730856140bb565b6139e3565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561384f5750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138645761385f87308561430e565b6139e2565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156139085750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561391d57613918873085614561565b6139e1565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139bf5750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d4576139cf87308561471f565b6139e0565b6139df873085614561565b5b5b5b5b5b60006139f98487613f6490919063ffffffff16565b9050600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a9e5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613ab357613aae8888836140bb565b613cea565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613b565750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b6b57613b6688888361430e565b613ce9565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613c0f5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613c2457613c1f888883614561565b613ce8565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613cc65750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613cdb57613cd688888361471f565b613ce7565b613ce6888883614561565b5b5b5b5b5050505050505050565b6000838311158290613da1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d66578082015181840152602081019050613d4b565b50505050905090810190601f168015613d935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613e32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000613e5088614a07565b915091506000613e5e613fae565b90506000806000613e708c8686614a47565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600080831415613ea75760009050613f14565b6000828402905082848281613eb857fe5b0414613f0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806152896021913960400191505060405180910390fd5b809150505b92915050565b6000613f5c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614aa5565b905092915050565b6000613fa683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613cf4565b905092915050565b6000806000613fbb614b6b565b91509150613fd28183613f1a90919063ffffffff16565b9250505090565b6001601560006101000a81548160ff021916908315150217905550600061400a600283613f1a90919063ffffffff16565b905060006140218284613f6490919063ffffffff16565b9050600047905061403183614e1c565b60006140468247613f6490919063ffffffff16565b905061405283826150a6565b7f4ef2142970fd06465a66d49cd924fdd56a52bae776dc706128dfeb6a49ce97c784828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601560006101000a81548160ff02191690831515021790555050565b60008060008060006140cc86613e3c565b9450945094509450945061412886600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141bd85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061425284600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061429f83826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061431f86613e3c565b9450945094509450945061437b85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061441082600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144a584600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144f283826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061457286613e3c565b945094509450945094506145ce85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061466384600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146b083826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061473086613e3c565b9450945094509450945061478c86600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061482185600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148b682600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061494b84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061499883826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000614a2160105485613f1a90919063ffffffff16565b90506000614a388286613f6490919063ffffffff16565b90508082935093505050915091565b600080600080614a608588613e9490919063ffffffff16565b90506000614a778688613e9490919063ffffffff16565b90506000614a8e8284613f6490919063ffffffff16565b905082818395509550955050505093509350939050565b60008083118290614b51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614b16578082015181840152602081019050614afb565b50505050905090810190601f168015614b435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614b5d57fe5b049050809150509392505050565b6000806000600c549050600069943b1377290cbd800000905060005b600b80549050811015614dcf578260086000600b8481548110614ba657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180614c8d57508160096000600b8481548110614c2557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15614cac57600c5469943b1377290cbd80000094509450505050614e18565b614d3560086000600b8481548110614cc057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613f6490919063ffffffff16565b9250614dc060096000600b8481548110614d4b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613f6490919063ffffffff16565b91508080600101915050614b87565b50614def69943b1377290cbd800000600c54613f1a90919063ffffffff16565b821015614e0f57600c5469943b1377290cbd800000935093505050614e18565b81819350935050505b9091565b6060600267ffffffffffffffff81118015614e3657600080fd5b50604051908082528060200260200182016040528015614e655781602001602082028036833780820191505090505b5090503081600081518110614e7657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015614f0a57600080fd5b505afa158015614f1e573d6000803e3d6000fd5b505050506040513d6020811015614f3457600080fd5b810190808051906020019092919050505081600181518110614f5257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614fab30737a250d5630b4cf539739df2c5dacb4c659f2488d84613258565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015615061578082015181840152602081019050615046565b505050509050019650505050505050600060405180830381600087803b15801561508a57600080fd5b505af115801561509e573d6000803e3d6000fd5b505050505050565b6150c530737a250d5630b4cf539739df2c5dacb4c659f2488d84613258565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561518157600080fd5b505af1158015615195573d6000803e3d6000fd5b50505050506040513d60608110156151ac57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6151ed82600c54613f6490919063ffffffff16565b600c8190555061520881600d54613db490919063ffffffff16565b600d81905550505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4f6e6c79207468652070726573616c6520636f6e74726163742063616e2063616c6c207468697345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f0df6df7f7b08034df2c91252e4b01e8b7de98b51aa5a714ecd1f487334ecd0564736f6c634300060c0033

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

000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006325276baf2d3225f6332ba9f94b0f35e4e2f4a2

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

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


Deployed Bytecode Sourcemap

27359:23165:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30169:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32350:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27686:115;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31244:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32993:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27853:69;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31096:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47043:213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33723:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43514:270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27808:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48972:434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42801:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41947:768;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37466:182;;;;;;;;;;;;;:::i;:::-;;43984:361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31402:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3083:148;;;;;;;;;;;;;:::i;:::-;;39564:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2441:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48587:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28560:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30371:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28422:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28388:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34444:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31814:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43792:184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49414:257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28357:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28723:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32052:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28689:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43166:340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49679:343;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3386:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28600:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50030:489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27929:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28642:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30169:83;30206:13;30239:5;30232:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30169:83;:::o;32350:169::-;32433:4;32450:39;32459:12;:10;:12::i;:::-;32473:7;32482:6;32450:8;:39::i;:::-;32507:4;32500:11;;32350:169;;;;:::o;27686:115::-;27758:42;27686:115;:::o;31244:95::-;31297:7;28238:19;31317:14;;31244:95;:::o;32993:321::-;33099:4;33116:36;33126:6;33134:9;33145:6;33116:9;:36::i;:::-;33163:121;33172:6;33180:12;:10;:12::i;:::-;33194:89;33232:6;33194:89;;;;;;;;;;;;;;;;;:11;:19;33206:6;33194:19;;;;;;;;;;;;;;;:33;33214:12;:10;:12::i;:::-;33194:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;33163:8;:121::i;:::-;33302:4;33295:11;;32993:321;;;;;:::o;27853:69::-;;;;;;;;;;;;;:::o;31096:83::-;31137:5;31162:9;;;;;;;;;;;31155:16;;31096:83;:::o;47043:213::-;2663:12;:10;:12::i;:::-;2653:22;;:6;;;;;;;;;;:22;;;2645:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47123:1:::1;47118;:6;;47110:49;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;47183:4;47178:1;:9;;47170:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;47247:1;47234:10;:14;;;;47043:213:::0;:::o;33723:218::-;33811:4;33828:83;33837:12;:10;:12::i;:::-;33851:7;33860:50;33899:10;33860:11;:25;33872:12;:10;:12::i;:::-;33860:25;;;;;;;;;;;;;;;:34;33886:7;33860:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;33828:8;:83::i;:::-;33929:4;33922:11;;33723:218;;;;:::o;43514:270::-;2663:12;:10;:12::i;:::-;2653:22;;:6;;;;;;;;;;:22;;;2645:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26402:1:::1;27008:7;;:19;;27000:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;26402:1;27141:7;:18;;;;43683:23:::2;43658:22;:48;;;;43722:54;43752:23;43722:54;;;;;;;;;;;;;;;;;;26358:1:::1;27320:7:::0;:22:::1;;;;43514:270:::0;:::o;27808:38::-;;;:::o;48972:434::-;49062:7;28238:19;49090:7;:18;;49082:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49160:17;49155:244;;49195:15;49218:19;49229:7;49218:10;:19::i;:::-;49194:43;;;;;;49259:7;49252:14;;;;;49155:244;49301:23;49331:19;49342:7;49331:10;:19::i;:::-;49299:51;;;;;;49372:15;49365:22;;;48972:434;;;;;:::o;42801:269::-;42938:14;42974:88;43049:1;43033:12;43025:21;;:25;43020:2;:31;42974:27;42986:14;42974:27;;:7;:11;;:27;;;;:::i;:::-;:31;;:88;;;;:::i;:::-;42965:97;;42801:269;;;;;:::o;41947:768::-;2663:12;:10;:12::i;:::-;2653:22;;:6;;;;;;;;;;:22;;;2645:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26402:1:::1;27008:7;;:19;;27000:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;26402:1;27141:7;:18;;;;42165:1:::2;42148:13;:18;;42140:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;42237:4;42220:13;:21;;42212:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;42317:2;42297:16;:22;;;;42289:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;42379:13;42366:10;:26;;;;42417:14;42403:11;;:28;;;;;;;;;;;;;;;;;;42458:16;42442:13;;:32;;;;;;;;;;;;;;;;;;42490:44;42501:14;42517:16;42490:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;42583:8;42559:32;;:20;;;;;;;;;;;:32;;;42555:144;;42626:8;42603:20;;:31;;;;;;;;;;;;;;;;;;42650:37;42678:8;42650:37;;;;;;;;;;;;;;;;;;;;42555:144;26358:1:::1;27320:7:::0;:22:::1;;;;41947:768:::0;;;;:::o;37466:182::-;26402:1;27008:7;;:19;;27000:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26402:1;27141:7;:18;;;;37556:7:::1;;;;;;;;;;;37542:21;;:10;:21;;;37533:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37635:5;37618:14;;:22;;;;;;;;;;;;;;;;;;26358:1:::0;27320:7;:22;;;;37466:182::o;43984:361::-;2663:12;:10;:12::i;:::-;2653:22;;:6;;;;;;;;;;:22;;;2645:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26402:1:::1;27008:7;;:19;;27000:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;26402:1;27141:7;:18;;;;44111:1:::2;44096:17;;:3;:17;;;;44088:59;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;44168:21;44208:6;44168:47;;44249:33;44274:7;44249:20;;:24;;:33;;;;:::i;:::-;44226:20;:56;;;;44303:5;:14;;;44318:9;;;;;;;;;;;44329:7;44303:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;27172:1;26358::::1;27320:7:::0;:22:::1;;;;43984:361:::0;;;:::o;31402:199::-;31468:7;31493:11;:20;31505:7;31493:20;;;;;;;;;;;;;;;;;;;;;;;;;31489:49;;;31522:7;:16;31530:7;31522:16;;;;;;;;;;;;;;;;31515:23;;;;31489:49;31556:37;31576:7;:16;31584:7;31576:16;;;;;;;;;;;;;;;;31556:19;:37::i;:::-;31549:44;;31402:199;;;;:::o;3083:148::-;2663:12;:10;:12::i;:::-;2653:22;;:6;;;;;;;;;;:22;;;2645:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3190:1:::1;3153:40;;3174:6;::::0;::::1;;;;;;;;3153:40;;;;;;;;;;;;3221:1;3204:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;3083:148::o:0;39564:97::-;39612:7;39639:14;;39632:21;;39564:97;:::o;2441:79::-;2479:7;2506:6;;;;;;;;;;;2499:13;;2441:79;:::o;48587:377::-;48640:14;48657:12;:10;:12::i;:::-;48640:29;;48689:11;:19;48701:6;48689:19;;;;;;;;;;;;;;;;;;;;;;;;;48688:20;48680:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48769:15;48792:19;48803:7;48792:10;:19::i;:::-;48768:43;;;;;;48840:28;48860:7;48840;:15;48848:6;48840:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;48822:7;:15;48830:6;48822:15;;;;;;;;;;;;;;;:46;;;;48889:20;48901:7;48889;;:11;;:20;;;;:::i;:::-;48879:7;:30;;;;48933:23;48948:7;48933:10;;:14;;:23;;;;:::i;:::-;48920:10;:36;;;;48587:377;;;:::o;28560:33::-;;;;:::o;30371:87::-;30410:13;30443:7;30436:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30371:87;:::o;28422:37::-;;;;:::o;28388:27::-;;;;;;;;;;;;;:::o;34444:269::-;34537:4;34554:129;34563:12;:10;:12::i;:::-;34577:7;34586:96;34625:15;34586:96;;;;;;;;;;;;;;;;;:11;:25;34598:12;:10;:12::i;:::-;34586:25;;;;;;;;;;;;;;;:34;34612:7;34586:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;34554:8;:129::i;:::-;34701:4;34694:11;;34444:269;;;;:::o;31814:175::-;31900:4;31917:42;31927:12;:10;:12::i;:::-;31941:9;31952:6;31917:9;:42::i;:::-;31977:4;31970:11;;31814:175;;;;:::o;43792:184::-;2663:12;:10;:12::i;:::-;2653:22;;:6;;;;;;;;;;:22;;;2645:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26402:1:::1;27008:7;;:19;;27000:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;26402:1;27141:7;:18;;;;43907:8:::2;43884:20;;:31;;;;;;;;;;;;;;;;;;43931:37;43959:8;43931:37;;;;;;;;;;;;;;;;;;;;26358:1:::1;27320:7:::0;:22:::1;;;;43792:184:::0;:::o;49414:257::-;49480:7;49519;;49508;:18;;49500:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49588:19;49611:10;:8;:10::i;:::-;49588:33;;49639:24;49651:11;49639:7;:11;;:24;;;;:::i;:::-;49632:31;;;49414:257;;;:::o;28357:24::-;;;;;;;;;;;;;:::o;28723:32::-;;;;;;;;;;;;;:::o;32052:151::-;32141:7;32168:11;:18;32180:5;32168:18;;;;;;;;;;;;;;;:27;32187:7;32168:27;;;;;;;;;;;;;;;;32161:34;;32052:151;;;;:::o;28689:27::-;;;;;;;;;;;;;:::o;43166:340::-;2663:12;:10;:12::i;:::-;2653:22;;:6;;;;;;;;;;:22;;;2645:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26402:1:::1;27008:7;;:19;;27000:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;26402:1;27141:7;:18;;;;43327:2:::2;43309:14;:20;;;;43301:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;43389:12;43375:11;;:26;;;;;;;;;;;;;;;;;;43428:14;43412:13;;:30;;;;;;;;;;;;;;;;;;43458:40;43469:12;43483:14;43458:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;26358:1:::1;27320:7:::0;:22:::1;;;;43166:340:::0;;:::o;49679:343::-;2663:12;:10;:12::i;:::-;2653:22;;:6;;;;;;;;;;:22;;;2645:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26402:1:::1;27008:7;;:19;;27000:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;26402:1;27141:7;:18;;;;49772:11:::2;:20;49784:7;49772:20;;;;;;;;;;;;;;;;;;;;;;;;;49771:21;49763:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;49857:1;49838:7;:16;49846:7;49838:16;;;;;;;;;;;;;;;;:20;49835:108;;;49894:37;49914:7;:16;49922:7;49914:16;;;;;;;;;;;;;;;;49894:19;:37::i;:::-;49875:7;:16;49883:7;49875:16;;;;;;;;;;;;;;;:56;;;;49835:108;49976:4;49953:11;:20;49965:7;49953:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;49991:9;50006:7;49991:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26358:1:::1;27320:7:::0;:22:::1;;;;49679:343:::0;:::o;3386:244::-;2663:12;:10;:12::i;:::-;2653:22;;:6;;;;;;;;;;:22;;;2645:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3495:1:::1;3475:22;;:8;:22;;;;3467:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3585:8;3556:38;;3577:6;::::0;::::1;;;;;;;;3556:38;;;;;;;;;;;;3614:8;3605:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;3386:244:::0;:::o;28600:35::-;;;;:::o;50030:489::-;2663:12;:10;:12::i;:::-;2653:22;;:6;;;;;;;;;;:22;;;2645:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26402:1:::1;27008:7;;:19;;27000:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;26402:1;27141:7;:18;;;;50122:11:::2;:20;50134:7;50122:20;;;;;;;;;;;;;;;;;;;;;;;;;50114:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;50190:9;50185:327;50209:9;:16;;;;50205:1;:20;50185:327;;;50267:7;50251:23;;:9;50261:1;50251:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;50247:254;;;50310:9;50339:1;50320:9;:16;;;;:20;50310:31;;;;;;;;;;;;;;;;;;;;;;;;;50295:9;50305:1;50295:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;50379:1;50360:7;:16;50368:7;50360:16;;;;;;;;;;;;;;;:20;;;;50422:5;50399:11;:20;50411:7;50399:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;50446:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50480:5;;50247:254;50227:3;;;;;;;50185:327;;;;26358:1:::1;27320:7:::0;:22:::1;;;;50030:489:::0;:::o;27929:22::-;;;;;;;;;;;;;:::o;28642:33::-;;;;:::o;1079:106::-;1132:15;1167:10;1160:17;;1079:106;:::o;38089:346::-;38208:1;38191:19;;:5;:19;;;;38183:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38289:1;38270:21;;:7;:21;;;;38262:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38373:6;38343:11;:18;38355:5;38343:18;;;;;;;;;;;;;;;:27;38362:7;38343:27;;;;;;;;;;;;;;;:36;;;;38411:7;38395:32;;38404:5;38395:32;;;38420:6;38395:32;;;;;;;;;;;;;;;;;;38089:346;;;:::o;34717:2737::-;34836:14;;;;;;;;;;;34832:245;;;34895:13;34881:28;;:2;:28;;;:62;;;;27758:42;34913:30;;:2;:30;;;34881:62;:123;;;;34961:42;34947:57;;:2;:57;;;34881:123;34877:192;;;35020:8;;;34877:192;34832:245;35372:28;35403:24;35421:4;35403:9;:24::i;:::-;35372:55;;35438:20;35461:98;35488:6;35509:11;;;;;;;;;;;35535:13;;;;;;;;;;;35461:12;:98::i;:::-;35438:121;;35582:7;;;;;;;;;;;35574:15;;:4;:15;;;35570:37;;;35606:1;35591:16;;35570:37;35618:24;35669:22;;35645:20;:46;;35618:73;;35702:24;35735:13;35729:19;;:2;:19;;;35702:46;;35778:19;:52;;;;;35815:15;;;;;;;;;;;35814:16;35778:52;:88;;;;;35847:19;35778:88;:125;;;;;35883:20;;;;;;;;;;;35778:125;:157;;;;;35928:7;;;;;;;;;;;35920:15;;:4;:15;;;;35778:157;35760:243;;;35962:35;35976:20;35962:13;:35::i;:::-;35760:243;36028:1;36013:12;:16;36009:642;;;36045:11;:17;36057:4;36045:17;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;;;36067:11;:15;36079:2;36067:15;;;;;;;;;;;;;;;;;;;;;;;;;36066:16;36045:37;36041:603;;;36100:56;36122:4;36136;36143:12;36100:21;:56::i;:::-;36041:603;;;36179:11;:17;36191:4;36179:17;;;;;;;;;;;;;;;;;;;;;;;;;36178:18;:37;;;;;36200:11;:15;36212:2;36200:15;;;;;;;;;;;;;;;;;;;;;;;;;36178:37;36174:470;;;36233:54;36253:4;36267;36274:12;36233:19;:54::i;:::-;36174:470;;;36310:11;:17;36322:4;36310:17;;;;;;;;;;;;;;;;;;;;;;;;;36309:18;:38;;;;;36332:11;:15;36344:2;36332:15;;;;;;;;;;;;;;;;;;;;;;;;;36331:16;36309:38;36305:339;;;36364:52;36382:4;36396;36403:12;36364:17;:52::i;:::-;36305:339;;;36438:11;:17;36450:4;36438:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;36459:11;:15;36471:2;36459:15;;;;;;;;;;;;;;;;;;;;;;;;;36438:36;36434:210;;;36491:56;36513:4;36527;36534:12;36491:21;:56::i;:::-;36434:210;;;36580:52;36598:4;36612;36619:12;36580:17;:52::i;:::-;36434:210;36305:339;36174:470;36041:603;36009:642;36809:24;36836;36847:12;36836:6;:10;;:24;;;;:::i;:::-;36809:51;;36875:11;:17;36887:4;36875:17;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;;;36897:11;:15;36909:2;36897:15;;;;;;;;;;;;;;;;;;;;;;;;;36896:16;36875:37;36871:566;;;36929:49;36951:4;36957:2;36961:16;36929:21;:49::i;:::-;36871:566;;;37001:11;:17;37013:4;37001:17;;;;;;;;;;;;;;;;;;;;;;;;;37000:18;:37;;;;;37022:11;:15;37034:2;37022:15;;;;;;;;;;;;;;;;;;;;;;;;;37000:37;36996:441;;;37054:47;37074:4;37080:2;37084:16;37054:19;:47::i;:::-;36996:441;;;37124:11;:17;37136:4;37124:17;;;;;;;;;;;;;;;;;;;;;;;;;37123:18;:38;;;;;37146:11;:15;37158:2;37146:15;;;;;;;;;;;;;;;;;;;;;;;;;37145:16;37123:38;37119:318;;;37178:45;37196:4;37202:2;37206:16;37178:17;:45::i;:::-;37119:318;;;37245:11;:17;37257:4;37245:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;37266:11;:15;37278:2;37266:15;;;;;;;;;;;;;;;;;;;;;;;;;37245:36;37241:196;;;37298:49;37320:4;37326:2;37330:16;37298:21;:49::i;:::-;37241:196;;;37380:45;37398:4;37404:2;37408:16;37380:17;:45::i;:::-;37241:196;37119:318;36996:441;36871:566;34717:2737;;;;;;;;:::o;5382:192::-;5468:7;5501:1;5496;:6;;5504:12;5488:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5528:9;5544:1;5540;:5;5528:17;;5565:1;5558:8;;;5382:192;;;;;:::o;4479:181::-;4537:7;4557:9;4573:1;4569;:5;4557:17;;4598:1;4593;:6;;4585:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4651:1;4644:8;;;4479:181;;;;:::o;46619:412::-;46678:7;46687;46696;46705;46714;46735:23;46760:12;46776:21;46789:7;46776:12;:21::i;:::-;46734:63;;;;46808:19;46831:10;:8;:10::i;:::-;46808:33;;46853:15;46870:23;46895:12;46911:39;46923:7;46932:4;46938:11;46911;:39::i;:::-;46852:98;;;;;;46969:7;46978:15;46995:4;47001:15;47018:4;46961:62;;;;;;;;;;;;;;;;46619:412;;;;;;;:::o;5833:471::-;5891:7;6141:1;6136;:6;6132:47;;;6166:1;6159:8;;;;6132:47;6191:9;6207:1;6203;:5;6191:17;;6236:1;6231;6227;:5;;;;;;:10;6219:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6295:1;6288:8;;;5833:471;;;;;:::o;6780:132::-;6838:7;6865:39;6869:1;6872;6865:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6858:46;;6780:132;;;;:::o;4943:136::-;5001:7;5028:43;5032:1;5035;5028:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5021:50;;4943:136;;;;:::o;47849:163::-;47890:7;47911:15;47928;47947:19;:17;:19::i;:::-;47910:56;;;;47984:20;47996:7;47984;:11;;:20;;;;:::i;:::-;47977:27;;;;47849:163;:::o;39831:984::-;29147:4;29129:15;;:22;;;;;;;;;;;;;;;;;;39972:12:::1;39987:27;40012:1;39987:20;:24;;:27;;;;:::i;:::-;39972:42;;40025:17;40045:30;40070:4;40045:20;:24;;:30;;;;:::i;:::-;40025:50;;40353:22;40378:21;40353:46;;40444:22;40461:4;40444:16;:22::i;:::-;40590:18;40611:41;40637:14;40611:21;:25;;:41;;;;:::i;:::-;40590:62;;40702:35;40715:9;40726:10;40702:12;:35::i;:::-;40765:42;40779:4;40785:10;40797:9;40765:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29162:1;;;;29192:5:::0;29174:15;;:23;;;;;;;;;;;;;;;;;;39831:984;:::o;45345:512::-;45448:15;45465:23;45490:12;45504:23;45529:12;45545:19;45556:7;45545:10;:19::i;:::-;45447:117;;;;;;;;;;45593:28;45613:7;45593;:15;45601:6;45593:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45575:7;:15;45583:6;45575:15;;;;;;;;;;;;;;;:46;;;;45650:28;45670:7;45650;:15;45658:6;45650:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45632:7;:15;45640:6;45632:15;;;;;;;;;;;;;;;:46;;;;45710:39;45733:15;45710:7;:18;45718:9;45710:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45689:7;:18;45697:9;45689:18;;;;;;;;;;;;;;;:60;;;;45763:26;45778:4;45784;45763:14;:26::i;:::-;45822:9;45805:44;;45814:6;45805:44;;;45833:15;45805:44;;;;;;;;;;;;;;;;;;45345:512;;;;;;;;:::o;44816:521::-;44917:15;44934:23;44959:12;44973:23;44998:12;45014:19;45025:7;45014:10;:19::i;:::-;44916:117;;;;;;;;;;45062:28;45082:7;45062;:15;45070:6;45062:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45044:7;:15;45052:6;45044:15;;;;;;;;;;;;;;;:46;;;;45122:39;45145:15;45122:7;:18;45130:9;45122:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45101:7;:18;45109:9;45101:18;;;;;;;;;;;;;;;:60;;;;45193:39;45216:15;45193:7;:18;45201:9;45193:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45172:7;:18;45180:9;45172:18;;;;;;;;;;;;;;;:60;;;;45243:26;45258:4;45264;45243:14;:26::i;:::-;45302:9;45285:44;;45294:6;45285:44;;;45313:15;45285:44;;;;;;;;;;;;;;;;;;44816:521;;;;;;;;:::o;44353:455::-;44452:15;44469:23;44494:12;44508:23;44533:12;44549:19;44560:7;44549:10;:19::i;:::-;44451:117;;;;;;;;;;44597:28;44617:7;44597;:15;44605:6;44597:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44579:7;:15;44587:6;44579:15;;;;;;;;;;;;;;;:46;;;;44657:39;44680:15;44657:7;:18;44665:9;44657:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44636:7;:18;44644:9;44636:18;;;;;;;;;;;;;;;:60;;;;44714:26;44729:4;44735;44714:14;:26::i;:::-;44773:9;44756:44;;44765:6;44756:44;;;44784:15;44756:44;;;;;;;;;;;;;;;;;;44353:455;;;;;;;;:::o;45865:588::-;45968:15;45985:23;46010:12;46024:23;46049:12;46065:19;46076:7;46065:10;:19::i;:::-;45967:117;;;;;;;;;;46113:28;46133:7;46113;:15;46121:6;46113:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46095:7;:15;46103:6;46095:15;;;;;;;;;;;;;;;:46;;;;46170:28;46190:7;46170;:15;46178:6;46170:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46152:7;:15;46160:6;46152:15;;;;;;;;;;;;;;;:46;;;;46230:39;46253:15;46230:7;:18;46238:9;46230:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46209:7;:18;46217:9;46209:18;;;;;;;;;;;;;;;:60;;;;46301:39;46324:15;46301:7;:18;46309:9;46301:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46280:7;:18;46288:9;46280:18;;;;;;;;;;;;;;;:60;;;;46359:26;46374:4;46380;46359:14;:26::i;:::-;46418:9;46401:44;;46410:6;46401:44;;;46429:15;46401:44;;;;;;;;;;;;;;;;;;45865:588;;;;;;;;:::o;47268:231::-;47329:7;47338;47358:12;47373:23;47385:10;;47373:7;:11;;:23;;;;:::i;:::-;47358:38;;47407:23;47433:17;47445:4;47433:7;:11;;:17;;;;:::i;:::-;47407:43;;47469:15;47486:4;47461:30;;;;;;47268:231;;;:::o;47507:334::-;47602:7;47611;47620;47640:15;47658:24;47670:11;47658:7;:11;;:24;;;;:::i;:::-;47640:42;;47693:12;47708:21;47717:11;47708:4;:8;;:21;;;;:::i;:::-;47693:36;;47740:23;47766:17;47778:4;47766:7;:11;;:17;;;;:::i;:::-;47740:43;;47802:7;47811:15;47828:4;47794:39;;;;;;;;;47507:334;;;;;;;:::o;7408:278::-;7494:7;7526:1;7522;:5;7529:12;7514:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7553:9;7569:1;7565;:5;;;;;;7553:17;;7677:1;7670:8;;;7408:278;;;;;:::o;48020:561::-;48070:7;48079;48099:15;48117:7;;48099:25;;48135:15;28238:19;48135:25;;48182:9;48177:289;48201:9;:16;;;;48197:1;:20;48177:289;;;48267:7;48243;:21;48251:9;48261:1;48251:12;;;;;;;;;;;;;;;;;;;;;;;;;48243:21;;;;;;;;;;;;;;;;:31;:66;;;;48302:7;48278;:21;48286:9;48296:1;48286:12;;;;;;;;;;;;;;;;;;;;;;;;;48278:21;;;;;;;;;;;;;;;;:31;48243:66;48239:97;;;48319:7;;28238:19;48311:25;;;;;;;;;48239:97;48361:34;48373:7;:21;48381:9;48391:1;48381:12;;;;;;;;;;;;;;;;;;;;;;;;;48373:21;;;;;;;;;;;;;;;;48361:7;:11;;:34;;;;:::i;:::-;48351:44;;48420:34;48432:7;:21;48440:9;48450:1;48440:12;;;;;;;;;;;;;;;;;;;;;;;;;48432:21;;;;;;;;;;;;;;;;48420:7;:11;;:34;;;;:::i;:::-;48410:44;;48219:3;;;;;;;48177:289;;;;48490:20;28238:19;48490:7;;:11;;:20;;;;:::i;:::-;48480:7;:30;48476:61;;;48520:7;;28238:19;48512:25;;;;;;;;48476:61;48556:7;48565;48548:25;;;;;;48020:561;;;:::o;40823:589::-;40949:21;40987:1;40973:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40949:40;;41018:4;41000;41005:1;41000:7;;;;;;;;;;;;;:23;;;;;;;;;;;27758:42;41044:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41034:4;41039:1;41034:7;;;;;;;;;;;;;:32;;;;;;;;;;;41079:62;41096:4;27758:42;41129:11;41079:8;:62::i;:::-;27758:42;41180:66;;;41261:11;41287:1;41331:4;41358;41378:15;41180:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40823:589;;:::o;41420:519::-;41568:62;41585:4;27758:42;41618:11;41568:8;:62::i;:::-;27758:42;41673:31;;;41712:9;41745:4;41765:11;41791:1;41834;41885:4;41905:15;41673:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41420:519;;:::o;46461:150::-;46542:17;46554:4;46542:7;;:11;;:17;;;;:::i;:::-;46532:7;:27;;;;46583:20;46598:4;46583:10;;:14;;:20;;;;:::i;:::-;46570:10;:33;;;;46461:150;;:::o

Swarm Source

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