ETH Price: $2,516.88 (-0.53%)

Token

NSFW (NSFW)
 

Overview

Max Total Supply

1,000,000,000 NSFW

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
muppetleague.eth
Balance
17,883,840.930554312289237593 NSFW

Value
$0.00
0x713b7Ed8402a0A672e93C49A0E4C2B0B00cd7d84
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NSFW

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.6.12;

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

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

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

    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) {
            // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
            // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
            // for accounts without code, i.e. `keccak256('')`
            bytes32 codehash;
            bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
            // solhint-disable-next-line no-inline-assembly
            assembly { codehash := extcodehash(account) }
            return (codehash != accountHash && codehash != 0x0);
        }

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

    contract Ownable is Context {
        address private _owner;
        address private _previousOwner;
        uint256 private _lockTime;

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

        function getUnlockTime() public view returns (uint256) {
            return _lockTime;
        }

    }

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

    interface IUniswapV2Pair {
        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;

        event Mint(address indexed sender, uint amount0, uint amount1);
        event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
        event Swap(
            address indexed sender,
            uint amount0In,
            uint amount1In,
            uint amount0Out,
            uint amount1Out,
            address indexed to
        );
        event Sync(uint112 reserve0, uint112 reserve1);

        function MINIMUM_LIQUIDITY() external pure returns (uint);
        function factory() external view returns (address);
        function token0() external view returns (address);
        function token1() external view returns (address);
        function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
        function price0CumulativeLast() external view returns (uint);
        function price1CumulativeLast() external view returns (uint);
        function kLast() external view returns (uint);

        function mint(address to) external returns (uint liquidity);
        function burn(address to) external returns (uint amount0, uint amount1);
        function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
        function skim(address to) external;
        function sync() external;

        function initialize(address, address) 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;
    }

    contract NSFW is Context, IERC20, Ownable {
        using SafeMath for uint256;
        using Address for address;

        mapping (address => uint256) private _rOwned;
        mapping (address => uint256) private _tOwned;
        mapping (address => mapping (address => uint256)) private _allowances;

        mapping (address => bool) private _isExcludedFromFee;

        mapping (address => bool) private _isExcluded;
        address[] private _excluded;
        mapping (address => bool) private _isBlackListedBot;
        address[] private _blackListedBots;

        uint256 private constant MAX = ~uint256(0);
        uint256 private constant _tTotal = 1000000000 * 10**18;
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;

        string private constant _name = 'NSFW';
        string private constant _symbol = 'NSFW';
        uint8 private constant _decimals = 18;

        uint256 private _taxFee = 1;
        uint256 private _teamFee = 10;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousTeamFee = _teamFee;

        address payable public _devWalletAddress;
        address payable public _marketingWalletAddress;


        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = true;

        uint256 private _maxTxAmount = 20000000 * 10**18;
        uint256 private constant _numOfTokensToExchangeForTeam = 7000 * 10**18;
        uint256 private _maxWalletSize = 20000000 * 10**18;

        event botAddedToBlacklist(address account);
        event botRemovedFromBlacklist(address account);

        // event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
        // event SwapEnabledUpdated(bool enabled);

        modifier lockTheSwap {
            inSwap = true;
            _;
            inSwap = false;
        }

        constructor (address payable devWalletAddress, address payable marketingWalletAddress) public {
            _devWalletAddress = devWalletAddress;
            _marketingWalletAddress = marketingWalletAddress;

            _rOwned[_msgSender()] = _rTotal;

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

            // set the rest of the contract variables
            uniswapV2Router = _uniswapV2Router;

            // Exclude owner and this contract from fee
            _isExcludedFromFee[owner()] = true;
            _isExcludedFromFee[address(this)] = true;

            emit Transfer(address(0), _msgSender(), _tTotal);
        }

        function name() public pure returns (string memory) {
            return _name;
        }

        function symbol() public pure returns (string memory) {
            return _symbol;
        }

        function decimals() public pure returns (uint8) {
            return _decimals;
        }

        function totalSupply() public view override returns (uint256) {
            return _tTotal;
        }

        function balanceOf(address account) public view override returns (uint256) {
            if (_isExcluded[account]) return _tOwned[account];
            return tokenFromReflection(_rOwned[account]);
        }

        function transfer(address recipient, uint256 amount) public override returns (bool) {
            _transfer(_msgSender(), recipient, amount);
            return true;
        }

        function allowance(address owner, address spender) public view override returns (uint256) {
            return _allowances[owner][spender];
        }

        function approve(address spender, uint256 amount) public override returns (bool) {
            _approve(_msgSender(), spender, amount);
            return true;
        }

        function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
            _transfer(sender, recipient, amount);
            _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
            return true;
        }

        function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
            _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
            return true;
        }

        function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
            _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
            return true;
        }

        function isExcluded(address account) public view returns (bool) {
            return _isExcluded[account];
        }

        function setExcludeFromFee(address account, bool excluded) external onlyOwner() {
            _isExcludedFromFee[account] = excluded;
        }

        function totalFees() public view returns (uint256) {
            return _tFeeTotal;
        }

        function deliver(uint256 tAmount) public {
            address sender = _msgSender();
            require(!_isExcluded[sender], "Excluded addresses cannot call this function");
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rTotal = _rTotal.sub(rAmount);
            _tFeeTotal = _tFeeTotal.add(tAmount);
        }

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

        function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
            require(rAmount <= _rTotal, "Amount must be less than total reflections");
            uint256 currentRate =  _getRate();
            return rAmount.div(currentRate);
        }

        function addBotToBlacklist (address account) external onlyOwner() {
           require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We cannot blacklist UniSwap router');
           require (!_isBlackListedBot[account], 'Account is already blacklisted');
           _isBlackListedBot[account] = true;
           _blackListedBots.push(account);
        }

        function removeBotFromBlacklist(address account) external onlyOwner() {
          require (_isBlackListedBot[account], 'Account is not blacklisted');
          for (uint256 i = 0; i < _blackListedBots.length; i++) {
                 if (_blackListedBots[i] == account) {
                     _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                     _isBlackListedBot[account] = false;
                     _blackListedBots.pop();
                     break;
                 }
           }
       }

        function excludeAccount(address account) external onlyOwner() {
            require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
            require(!_isExcluded[account], "Account is already excluded");
            if(_rOwned[account] > 0) {
                _tOwned[account] = tokenFromReflection(_rOwned[account]);
            }
            _isExcluded[account] = true;
            _excluded.push(account);
        }

        function includeAccount(address account) external onlyOwner() {
            require(_isExcluded[account], "Account is not 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;
                }
            }
        }

        function removeAllFee() private {
            if(_taxFee == 0 && _teamFee == 0) return;

            _previousTaxFee = _taxFee;
            _previousTeamFee = _teamFee;

            _taxFee = 0;
            _teamFee = 0;
        }

        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
            _teamFee = _previousTeamFee;
        }

        function isExcludedFromFee(address account) public view returns(bool) {
            return _isExcludedFromFee[account];
        }

        function _approve(address owner, address spender, uint256 amount) private {
            require(owner != address(0), "ERC20: approve from the zero address");
            require(spender != address(0), "ERC20: approve to the zero address");

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

        function _transfer(address sender, address recipient, uint256 amount) private {
            require(sender != address(0), "ERC20: transfer from the zero address");
            require(recipient != address(0), "ERC20: transfer to the zero address");
            require(amount > 0, "Transfer amount must be greater than zero");
            require(!_isBlackListedBot[sender], "You are blacklisted");
            require(!_isBlackListedBot[msg.sender], "You are blacklisted");
            require(!_isBlackListedBot[tx.origin], "You are blacklisted");
            if(sender != owner() && recipient != owner()) {
                require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            }
            if(sender != owner() && recipient != owner() && recipient != uniswapV2Pair && recipient != address(0xdead)) {
                uint256 tokenBalanceRecipient = balanceOf(recipient);
                require(tokenBalanceRecipient + amount <= _maxWalletSize, "Recipient exceeds max wallet size.");
            }
            // is the token balance of this contract address over the min number of
            // tokens that we need to initiate a swap?
            // also, don't get caught in a circular team event.
            // also, don't swap if sender is uniswap pair.
            uint256 contractTokenBalance = balanceOf(address(this));

            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }

            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForTeam;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // Swap tokens for ETH and send to resepctive wallets
                swapTokensForEth(contractTokenBalance);

                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToTeam(address(this).balance);
                }
            }

            //indicates if fee should be deducted from transfer
            bool takeFee = true;

            //if any account belongs to _isExcludedFromFee account then remove the fee
            if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){
                takeFee = false;
            }

            //transfer amount, it will take tax and team fee
            _tokenTransfer(sender,recipient,amount,takeFee);
        }

        function swapTokensForEth(uint256 tokenAmount) private lockTheSwap{
            // 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 sendETHToTeam(uint256 amount) private {
            _devWalletAddress.transfer(amount.div(5));
            _marketingWalletAddress.transfer(amount.div(10).mul(8));
        }

        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }

        function manualSend() external onlyOwner() {
            uint256 contractETHBalance = address(this).balance;
            sendETHToTeam(contractETHBalance);
        }

        function setSwapEnabled(bool enabled) external onlyOwner(){
            swapEnabled = enabled;
        }

        function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
            if(!takeFee)
                removeAllFee();

            if (_isExcluded[sender] && !_isExcluded[recipient]) {
                _transferFromExcluded(sender, recipient, amount);
            } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
                _transferToExcluded(sender, recipient, amount);
            } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
                _transferStandard(sender, recipient, amount);
            } else if (_isExcluded[sender] && _isExcluded[recipient]) {
                _transferBothExcluded(sender, recipient, amount);
            } else {
                _transferStandard(sender, recipient, amount);
            }

            if(!takeFee)
                restoreAllFee();
        }

        function _transferStandard(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _takeTeam(uint256 tTeam) private {
            uint256 currentRate =  _getRate();
            uint256 rTeam = tTeam.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tTeam);
        }

        function _reflectFee(uint256 rFee, uint256 tFee) private {
            _rTotal = _rTotal.sub(rFee);
            _tFeeTotal = _tFeeTotal.add(tFee);
        }

         //to recieve ETH from uniswapV2Router when swaping
        receive() external payable {}

        function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _taxFee, _teamFee);
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
    }

        function _getTValues(uint256 tAmount, uint256 taxFee, uint256 teamFee) private pure returns (uint256, uint256, uint256) {
            uint256 tFee = tAmount.mul(taxFee).div(100);
            uint256 tTeam = tAmount.mul(teamFee).div(100);
            uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam);
            return (tTransferAmount, tFee, tTeam);
        }

        function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
            uint256 rAmount = tAmount.mul(currentRate);
            uint256 rFee = tFee.mul(currentRate);
            uint256 rTeam = tTeam.mul(currentRate);
            uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam);
            return (rAmount, rTransferAmount, rFee);
        }

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

        function _getCurrentSupply() private view returns(uint256, uint256) {
            uint256 rSupply = _rTotal;
            uint256 tSupply = _tTotal;
            for (uint256 i = 0; i < _excluded.length; i++) {
                if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
                rSupply = rSupply.sub(_rOwned[_excluded[i]]);
                tSupply = tSupply.sub(_tOwned[_excluded[i]]);
            }
            if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
            return (rSupply, tSupply);
        }

        function _getTaxFee() public view returns(uint256) {
            return _taxFee;
        }

        function _getTeamFee() public view returns (uint256) {
          return _teamFee;
        }

        function _getMaxTxAmount() public view returns(uint256) {
            return _maxTxAmount;
        }

        function _getETHBalance() public view returns(uint256 balance) {
            return address(this).balance;
        }

        function _setTaxFee(uint256 taxFee) external onlyOwner() {
            require(taxFee >= 1 && taxFee <= 25, 'taxFee should be in 1 - 25');
            _taxFee = taxFee;
        }

        function _setTeamFee(uint256 teamFee) external onlyOwner() {
            require(teamFee >= 1 && teamFee <= 25, 'teamFee should be in 1 - 25');
            _teamFee = teamFee;
        }

        function _setDevWallet(address payable devWalletAddress) external onlyOwner() {
            _devWalletAddress = devWalletAddress;
        }

        function _setMarketingWallet(address payable marketingWalletAddress) external onlyOwner() {
            _marketingWalletAddress = marketingWalletAddress;
        }

        function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
            _maxTxAmount = maxTxAmount;
        }

        function _setMaxWalletSize (uint256 maxWalletSize) external onlyOwner() {
          _maxWalletSize = maxWalletSize;
        }
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_devWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"name":"_setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"name":"_setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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":"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526b033b2e3c9fd0803ce8000000600019816200001c57fe5b0660001903600b556001600d55600a600e55600d54600f55600e546010556000601260146101000a81548160ff0219169083151502179055506001601260156101000a81548160ff0219169083151502179055506a108b2a2c280290940000006013556a108b2a2c280290940000006014553480156200009b57600080fd5b50604051620060593803806200605983398181016040526040811015620000c157600080fd5b8101908080519060200190929190805190602001909291905050506000620000ee620005fd60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b546003600062000225620005fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c357600080fd5b505afa158015620002d8573d6000803e3d6000fd5b505050506040513d6020811015620002ef57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036357600080fd5b505afa15801562000378573d6000803e3d6000fd5b505050506040513d60208110156200038f57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200040a57600080fd5b505af11580156200041f573d6000803e3d6000fd5b505050506040513d60208110156200043657600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620004ca6200060560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000583620005fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6b033b2e3c9fd0803ce80000006040518082815260200191505060405180910390a35050506200062e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60805160601c60a05160601c6159e86200067160003980611bb15280613a985280613bfb5250806110cb52806140575280614143528061416a52506159e86000f3fe60806040526004361061026b5760003560e01c8063602bc62b11610144578063b030b34a116100b6578063f2cc0c181161007a578063f2cc0c1814610df8578063f2fde38b14610e49578063f429389014610e9a578063f7a9159114610eb1578063f815a84214610edc578063f84354f114610f0757610272565b8063b030b34a14610c3d578063b425bac314610c8e578063cba0e99614610ccf578063dd62ed3e14610d36578063e01af92c14610dbb57610272565b806395d89b411161010857806395d89b4114610a085780639e6c752914610a98578063a457c2d714610ad3578063a5e8c95414610b44578063a9059cbb14610b6f578063af9549e014610be057610272565b8063602bc62b146108f35780636ddd17131461091e57806370a082311461094b578063715018a6146109b05780638da5cb5b146109c757610272565b80632d838119116101dd5780634144d9e4116101a15780634144d9e41461075d5780634549b0391461079e57806349bd5a5e146107f957806351bc3c851461083a5780635342acb4146108515780635880b873146108b857610272565b80632d838119146106095780632fbff03014610658578063313ce5671461068357806339509351146106b15780633bd5d1731461072257610272565b806318160ddd1161022f57806318160ddd146104355780631bbae6e0146104605780631d7ef8791461049b5780631ff53b60146104ec57806323b872dd1461053d57806328667162146105ce57610272565b806306fdde0314610277578063095ea7b3146103075780630a1f8ea81461037857806313114a9d146103c95780631694505e146103f457610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610f58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102cc5780820151818401526020810190506102b1565b50505050905090810190601f1680156102f95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031357600080fd5b506103606004803603604081101561032a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f95565b60405180821515815260200191505060405180910390f35b34801561038457600080fd5b506103c76004803603602081101561039b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fb3565b005b3480156103d557600080fd5b506103de6110bf565b6040518082815260200191505060405180910390f35b34801561040057600080fd5b506104096110c9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561044157600080fd5b5061044a6110ed565b6040518082815260200191505060405180910390f35b34801561046c57600080fd5b506104996004803603602081101561048357600080fd5b8101908080359060200190929190505050611101565b005b3480156104a757600080fd5b506104ea600480360360208110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d3565b005b3480156104f857600080fd5b5061053b6004803603602081101561050f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114b2565b005b34801561054957600080fd5b506105b66004803603606081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115be565b60405180821515815260200191505060405180910390f35b3480156105da57600080fd5b50610607600480360360208110156105f157600080fd5b8101908080359060200190929190505050611697565b005b34801561061557600080fd5b506106426004803603602081101561062c57600080fd5b81019080803590602001909291905050506117ed565b6040518082815260200191505060405180910390f35b34801561066457600080fd5b5061066d611871565b6040518082815260200191505060405180910390f35b34801561068f57600080fd5b5061069861187b565b604051808260ff16815260200191505060405180910390f35b3480156106bd57600080fd5b5061070a600480360360408110156106d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611884565b60405180821515815260200191505060405180910390f35b34801561072e57600080fd5b5061075b6004803603602081101561074557600080fd5b8101908080359060200190929190505050611937565b005b34801561076957600080fd5b50610772611ac8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107aa57600080fd5b506107e3600480360360408110156107c157600080fd5b8101908080359060200190929190803515159060200190929190505050611aee565b6040518082815260200191505060405180910390f35b34801561080557600080fd5b5061080e611baf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084657600080fd5b5061084f611bd3565b005b34801561085d57600080fd5b506108a06004803603602081101561087457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cb4565b60405180821515815260200191505060405180910390f35b3480156108c457600080fd5b506108f1600480360360208110156108db57600080fd5b8101908080359060200190929190505050611d0a565b005b3480156108ff57600080fd5b50610908611e60565b6040518082815260200191505060405180910390f35b34801561092a57600080fd5b50610933611e6a565b60405180821515815260200191505060405180910390f35b34801561095757600080fd5b5061099a6004803603602081101561096e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e7d565b6040518082815260200191505060405180910390f35b3480156109bc57600080fd5b506109c5611f68565b005b3480156109d357600080fd5b506109dc6120ee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1457600080fd5b50610a1d612117565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5d578082015181840152602081019050610a42565b50505050905090810190601f168015610a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa457600080fd5b50610ad160048036036020811015610abb57600080fd5b8101908080359060200190929190505050612154565b005b348015610adf57600080fd5b50610b2c60048036036040811015610af657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612226565b60405180821515815260200191505060405180910390f35b348015610b5057600080fd5b50610b596122f3565b6040518082815260200191505060405180910390f35b348015610b7b57600080fd5b50610bc860048036036040811015610b9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122fd565b60405180821515815260200191505060405180910390f35b348015610bec57600080fd5b50610c3b60048036036040811015610c0357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061231b565b005b348015610c4957600080fd5b50610c8c60048036036020811015610c6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061243e565b005b348015610c9a57600080fd5b50610ca3612783565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cdb57600080fd5b50610d1e60048036036020811015610cf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127a9565b60405180821515815260200191505060405180910390f35b348015610d4257600080fd5b50610da560048036036040811015610d5957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127ff565b6040518082815260200191505060405180910390f35b348015610dc757600080fd5b50610df660048036036020811015610dde57600080fd5b81019080803515159060200190929190505050612886565b005b348015610e0457600080fd5b50610e4760048036036020811015610e1b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061296b565b005b348015610e5557600080fd5b50610e9860048036036020811015610e6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d1e565b005b348015610ea657600080fd5b50610eaf612f29565b005b348015610ebd57600080fd5b50610ec6613002565b6040518082815260200191505060405180910390f35b348015610ee857600080fd5b50610ef161300c565b6040518082815260200191505060405180910390f35b348015610f1357600080fd5b50610f5660048036036020811015610f2a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613014565b005b60606040518060400160405280600481526020017f4e53465700000000000000000000000000000000000000000000000000000000815250905090565b6000610fa9610fa261339e565b84846133a6565b6001905092915050565b610fbb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006b033b2e3c9fd0803ce8000000905090565b61110961339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b6111db61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158846022913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114ba61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006115cb84848461359d565b61168c846115d761339e565b611687856040518060600160405280602881526020016158a660289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061163d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b600190509392505050565b61169f61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611771575060198111155b6117e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f7465616d4665652073686f756c6420626520696e2031202d203235000000000081525060200191505060405180910390fd5b80600e8190555050565b6000600b5482111561184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806157a7602a913960400191505060405180910390fd5b6000611854613df7565b90506118698184613e2290919063ffffffff16565b915050919050565b6000600d54905090565b60006012905090565b600061192d61189161339e565b8461192885600560006118a261339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b6133a6565b6001905092915050565b600061194161339e565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615962602c913960400191505060405180910390fd5b60006119f183613ef4565b50505050509050611a4a81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611aa281600b54613f5c90919063ffffffff16565b600b81905550611abd83600c54613e6c90919063ffffffff16565b600c81905550505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006b033b2e3c9fd0803ce8000000831115611b72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611b92576000611b8284613ef4565b5050505050905080915050611ba9565b6000611b9d84613ef4565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611bdb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611ca630611e7d565b9050611cb181613fa6565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d1261339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611de4575060198111155b611e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20323500000000000081525060200191505060405180910390fd5b80600d8190555050565b6000600254905090565b601260159054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f1857600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611f63565b611f60600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b90505b919050565b611f7061339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f4e53465700000000000000000000000000000000000000000000000000000000815250905090565b61215c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b60006122e961223361339e565b846122e48560405180606001604052806025815260200161598e602591396005600061225d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b6001905092915050565b6000600e54905090565b600061231161230a61339e565b848461359d565b6001905092915050565b61232361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61244661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a8054905081101561277f578173ffffffffffffffffffffffffffffffffffffffff16600a82815481106125f957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561277257600a6001600a80549050038154811061265557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061268d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061273857fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561277f565b80806001019150506125c8565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61288e61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461294e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260156101000a81548160ff02191690831515021790555050565b61297361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159406022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612c6057612c1c600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612d2661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612de6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157d16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612f3161339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ff1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612fff8161428a565b50565b6000601354905090565b600047905090565b61301c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661319b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e74206973206e6f74206578636c7564656400000000000000000081525060200191505060405180910390fd5b60005b60088054905081101561339a578173ffffffffffffffffffffffffffffffffffffffff16600882815481106131cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561338d5760086001600880549050038154811061322b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061326357fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061335357fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561339a565b808060010191505061319e565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561342c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061591c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157f76022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613623576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158f76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806157846023913960400191505060405180910390fd5b60008111613702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158ce6029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b61394a6120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156139b857506139886120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613a1957601354811115613a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061583b6028913960400191505060405180910390fd5b5b613a216120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613a8f5750613a5f6120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613ae757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613b21575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613b92576000613b3183611e7d565b90506014548282011115613b90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158196022913960400191505060405180910390fd5b505b6000613b9d30611e7d565b90506013548110613bae5760135490505b600069017b7883c069166000008210159050601260149054906101000a900460ff16158015613be95750601260159054906101000a900460ff165b8015613bf25750805b8015613c4a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613c7257613c5882613fa6565b60004790506000811115613c7057613c6f4761428a565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613d195750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d2357600090505b613d2f86868684614398565b505050505050565b6000838311158290613de4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613da9578082015181840152602081019050613d8e565b50505050905090810190601f168015613dd65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613e046146a9565b91509150613e1b8183613e2290919063ffffffff16565b9250505090565b6000613e6483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614962565b905092915050565b600080828401905083811015613eea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613f118a600d54600e54614a28565b9250925092506000613f21613df7565b90506000806000613f348e878787614abe565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613f9e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d37565b905092915050565b6001601260146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613fdb57600080fd5b5060405190808252806020026020018201604052801561400a5781602001602082028036833780820191505090505b509050308160008151811061401b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156140bb57600080fd5b505afa1580156140cf573d6000803e3d6000fd5b505050506040513d60208110156140e557600080fd5b81019080805190602001909291905050508160018151811061410357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614168307f0000000000000000000000000000000000000000000000000000000000000000846133a6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561422a57808201518184015260208101905061420f565b505050509050019650505050505050600060405180830381600087803b15801561425357600080fd5b505af1158015614267573d6000803e3d6000fd5b50505050506000601260146101000a81548160ff02191690831515021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6142da600584613e2290919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614305573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc614369600861435b600a86613e2290919063ffffffff16565b614b4790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614394573d6000803e3d6000fd5b5050565b806143a6576143a5614bcd565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156144495750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561445e57614459848484614c10565b614695565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145015750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561451657614511848484614e70565b614694565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145ba5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156145cf576145ca8484846150d0565b614693565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156146715750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156146865761468184848461529b565b614692565b6146918484846150d0565b5b5b5b5b806146a3576146a2615590565b5b50505050565b6000806000600b54905060006b033b2e3c9fd0803ce8000000905060005b600880549050811015614911578260036000600884815481106146e657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806147cd575081600460006008848154811061476557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156147ee57600b546b033b2e3c9fd0803ce80000009450945050505061495e565b614877600360006008848154811061480257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613f5c90919063ffffffff16565b9250614902600460006008848154811061488d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613f5c90919063ffffffff16565b915080806001019150506146c7565b506149336b033b2e3c9fd0803ce8000000600b54613e2290919063ffffffff16565b82101561495557600b546b033b2e3c9fd0803ce800000093509350505061495e565b81819350935050505b9091565b60008083118290614a0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156149d35780820151818401526020810190506149b8565b50505050905090810190601f168015614a005780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614a1a57fe5b049050809150509392505050565b600080600080614a546064614a46888a614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614a7e6064614a70888b614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614aa782614a99858c613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080614ad78589614b4790919063ffffffff16565b90506000614aee8689614b4790919063ffffffff16565b90506000614b058789614b4790919063ffffffff16565b90506000614b2e82614b208587613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b9050838184965096509650505050509450945094915050565b600080831415614b5a5760009050614bc7565b6000828402905082848281614b6b57fe5b0414614bc2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806158636021913960400191505060405180910390fd5b809150505b92915050565b6000600d54148015614be157506000600e54145b15614beb57614c0e565b600d54600f81905550600e546010819055506000600d819055506000600e819055505b565b600080600080600080614c2287613ef4565b955095509550955095509550614c8087600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d1586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614daa85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614df6816155a4565b614e008483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e8287613ef4565b955095509550955095509550614ee086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f7583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500a85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615056816155a4565b6150608483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806150e287613ef4565b95509550955095509550955061514086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151d585600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615221816155a4565b61522b8483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806152ad87613ef4565b95509550955095509550955061530b87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153a086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061543583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ca85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615516816155a4565b6155208483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600f54600d81905550601054600e81905550565b60006155ae613df7565b905060006155c58284614b4790919063ffffffff16565b905061561981600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156157445761570083600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61575e82600b54613f5c90919063ffffffff16565b600b8190555061577981600c54613e6c90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220054db62eb8243d70bf047f19fa4657ef9b4cd9538faba7d58ed7c37e1a6bb68364736f6c634300060c00330000000000000000000000006c62d6c4bdfcd96a894a7caf23f4449d08c1db4b00000000000000000000000011a2fef423238044f5b8a4dc88d2bd739cb6827c

Deployed Bytecode

0x60806040526004361061026b5760003560e01c8063602bc62b11610144578063b030b34a116100b6578063f2cc0c181161007a578063f2cc0c1814610df8578063f2fde38b14610e49578063f429389014610e9a578063f7a9159114610eb1578063f815a84214610edc578063f84354f114610f0757610272565b8063b030b34a14610c3d578063b425bac314610c8e578063cba0e99614610ccf578063dd62ed3e14610d36578063e01af92c14610dbb57610272565b806395d89b411161010857806395d89b4114610a085780639e6c752914610a98578063a457c2d714610ad3578063a5e8c95414610b44578063a9059cbb14610b6f578063af9549e014610be057610272565b8063602bc62b146108f35780636ddd17131461091e57806370a082311461094b578063715018a6146109b05780638da5cb5b146109c757610272565b80632d838119116101dd5780634144d9e4116101a15780634144d9e41461075d5780634549b0391461079e57806349bd5a5e146107f957806351bc3c851461083a5780635342acb4146108515780635880b873146108b857610272565b80632d838119146106095780632fbff03014610658578063313ce5671461068357806339509351146106b15780633bd5d1731461072257610272565b806318160ddd1161022f57806318160ddd146104355780631bbae6e0146104605780631d7ef8791461049b5780631ff53b60146104ec57806323b872dd1461053d57806328667162146105ce57610272565b806306fdde0314610277578063095ea7b3146103075780630a1f8ea81461037857806313114a9d146103c95780631694505e146103f457610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610f58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102cc5780820151818401526020810190506102b1565b50505050905090810190601f1680156102f95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031357600080fd5b506103606004803603604081101561032a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f95565b60405180821515815260200191505060405180910390f35b34801561038457600080fd5b506103c76004803603602081101561039b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fb3565b005b3480156103d557600080fd5b506103de6110bf565b6040518082815260200191505060405180910390f35b34801561040057600080fd5b506104096110c9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561044157600080fd5b5061044a6110ed565b6040518082815260200191505060405180910390f35b34801561046c57600080fd5b506104996004803603602081101561048357600080fd5b8101908080359060200190929190505050611101565b005b3480156104a757600080fd5b506104ea600480360360208110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d3565b005b3480156104f857600080fd5b5061053b6004803603602081101561050f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114b2565b005b34801561054957600080fd5b506105b66004803603606081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115be565b60405180821515815260200191505060405180910390f35b3480156105da57600080fd5b50610607600480360360208110156105f157600080fd5b8101908080359060200190929190505050611697565b005b34801561061557600080fd5b506106426004803603602081101561062c57600080fd5b81019080803590602001909291905050506117ed565b6040518082815260200191505060405180910390f35b34801561066457600080fd5b5061066d611871565b6040518082815260200191505060405180910390f35b34801561068f57600080fd5b5061069861187b565b604051808260ff16815260200191505060405180910390f35b3480156106bd57600080fd5b5061070a600480360360408110156106d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611884565b60405180821515815260200191505060405180910390f35b34801561072e57600080fd5b5061075b6004803603602081101561074557600080fd5b8101908080359060200190929190505050611937565b005b34801561076957600080fd5b50610772611ac8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107aa57600080fd5b506107e3600480360360408110156107c157600080fd5b8101908080359060200190929190803515159060200190929190505050611aee565b6040518082815260200191505060405180910390f35b34801561080557600080fd5b5061080e611baf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084657600080fd5b5061084f611bd3565b005b34801561085d57600080fd5b506108a06004803603602081101561087457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cb4565b60405180821515815260200191505060405180910390f35b3480156108c457600080fd5b506108f1600480360360208110156108db57600080fd5b8101908080359060200190929190505050611d0a565b005b3480156108ff57600080fd5b50610908611e60565b6040518082815260200191505060405180910390f35b34801561092a57600080fd5b50610933611e6a565b60405180821515815260200191505060405180910390f35b34801561095757600080fd5b5061099a6004803603602081101561096e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e7d565b6040518082815260200191505060405180910390f35b3480156109bc57600080fd5b506109c5611f68565b005b3480156109d357600080fd5b506109dc6120ee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1457600080fd5b50610a1d612117565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5d578082015181840152602081019050610a42565b50505050905090810190601f168015610a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa457600080fd5b50610ad160048036036020811015610abb57600080fd5b8101908080359060200190929190505050612154565b005b348015610adf57600080fd5b50610b2c60048036036040811015610af657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612226565b60405180821515815260200191505060405180910390f35b348015610b5057600080fd5b50610b596122f3565b6040518082815260200191505060405180910390f35b348015610b7b57600080fd5b50610bc860048036036040811015610b9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122fd565b60405180821515815260200191505060405180910390f35b348015610bec57600080fd5b50610c3b60048036036040811015610c0357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061231b565b005b348015610c4957600080fd5b50610c8c60048036036020811015610c6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061243e565b005b348015610c9a57600080fd5b50610ca3612783565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cdb57600080fd5b50610d1e60048036036020811015610cf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127a9565b60405180821515815260200191505060405180910390f35b348015610d4257600080fd5b50610da560048036036040811015610d5957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127ff565b6040518082815260200191505060405180910390f35b348015610dc757600080fd5b50610df660048036036020811015610dde57600080fd5b81019080803515159060200190929190505050612886565b005b348015610e0457600080fd5b50610e4760048036036020811015610e1b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061296b565b005b348015610e5557600080fd5b50610e9860048036036020811015610e6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d1e565b005b348015610ea657600080fd5b50610eaf612f29565b005b348015610ebd57600080fd5b50610ec6613002565b6040518082815260200191505060405180910390f35b348015610ee857600080fd5b50610ef161300c565b6040518082815260200191505060405180910390f35b348015610f1357600080fd5b50610f5660048036036020811015610f2a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613014565b005b60606040518060400160405280600481526020017f4e53465700000000000000000000000000000000000000000000000000000000815250905090565b6000610fa9610fa261339e565b84846133a6565b6001905092915050565b610fbb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60006b033b2e3c9fd0803ce8000000905090565b61110961339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b6111db61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158846022913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114ba61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006115cb84848461359d565b61168c846115d761339e565b611687856040518060600160405280602881526020016158a660289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061163d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b600190509392505050565b61169f61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611771575060198111155b6117e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f7465616d4665652073686f756c6420626520696e2031202d203235000000000081525060200191505060405180910390fd5b80600e8190555050565b6000600b5482111561184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806157a7602a913960400191505060405180910390fd5b6000611854613df7565b90506118698184613e2290919063ffffffff16565b915050919050565b6000600d54905090565b60006012905090565b600061192d61189161339e565b8461192885600560006118a261339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b6133a6565b6001905092915050565b600061194161339e565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615962602c913960400191505060405180910390fd5b60006119f183613ef4565b50505050509050611a4a81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611aa281600b54613f5c90919063ffffffff16565b600b81905550611abd83600c54613e6c90919063ffffffff16565b600c81905550505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006b033b2e3c9fd0803ce8000000831115611b72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611b92576000611b8284613ef4565b5050505050905080915050611ba9565b6000611b9d84613ef4565b50505050915050809150505b92915050565b7f000000000000000000000000ef79f8c755f6baf6c437c9c3bdc10a645665d47681565b611bdb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611ca630611e7d565b9050611cb181613fa6565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d1261339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611de4575060198111155b611e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20323500000000000081525060200191505060405180910390fd5b80600d8190555050565b6000600254905090565b601260159054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f1857600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611f63565b611f60600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b90505b919050565b611f7061339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f4e53465700000000000000000000000000000000000000000000000000000000815250905090565b61215c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b60006122e961223361339e565b846122e48560405180606001604052806025815260200161598e602591396005600061225d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b6001905092915050565b6000600e54905090565b600061231161230a61339e565b848461359d565b6001905092915050565b61232361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61244661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a8054905081101561277f578173ffffffffffffffffffffffffffffffffffffffff16600a82815481106125f957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561277257600a6001600a80549050038154811061265557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061268d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061273857fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561277f565b80806001019150506125c8565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61288e61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461294e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260156101000a81548160ff02191690831515021790555050565b61297361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159406022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612c6057612c1c600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612d2661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612de6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157d16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612f3161339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ff1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612fff8161428a565b50565b6000601354905090565b600047905090565b61301c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661319b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e74206973206e6f74206578636c7564656400000000000000000081525060200191505060405180910390fd5b60005b60088054905081101561339a578173ffffffffffffffffffffffffffffffffffffffff16600882815481106131cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561338d5760086001600880549050038154811061322b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061326357fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061335357fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561339a565b808060010191505061319e565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561342c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061591c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157f76022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613623576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158f76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806157846023913960400191505060405180910390fd5b60008111613702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158ce6029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b61394a6120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156139b857506139886120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613a1957601354811115613a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061583b6028913960400191505060405180910390fd5b5b613a216120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613a8f5750613a5f6120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613ae757507f000000000000000000000000ef79f8c755f6baf6c437c9c3bdc10a645665d47673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613b21575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613b92576000613b3183611e7d565b90506014548282011115613b90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158196022913960400191505060405180910390fd5b505b6000613b9d30611e7d565b90506013548110613bae5760135490505b600069017b7883c069166000008210159050601260149054906101000a900460ff16158015613be95750601260159054906101000a900460ff165b8015613bf25750805b8015613c4a57507f000000000000000000000000ef79f8c755f6baf6c437c9c3bdc10a645665d47673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613c7257613c5882613fa6565b60004790506000811115613c7057613c6f4761428a565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613d195750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d2357600090505b613d2f86868684614398565b505050505050565b6000838311158290613de4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613da9578082015181840152602081019050613d8e565b50505050905090810190601f168015613dd65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613e046146a9565b91509150613e1b8183613e2290919063ffffffff16565b9250505090565b6000613e6483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614962565b905092915050565b600080828401905083811015613eea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613f118a600d54600e54614a28565b9250925092506000613f21613df7565b90506000806000613f348e878787614abe565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613f9e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d37565b905092915050565b6001601260146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613fdb57600080fd5b5060405190808252806020026020018201604052801561400a5781602001602082028036833780820191505090505b509050308160008151811061401b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156140bb57600080fd5b505afa1580156140cf573d6000803e3d6000fd5b505050506040513d60208110156140e557600080fd5b81019080805190602001909291905050508160018151811061410357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614168307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846133a6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561422a57808201518184015260208101905061420f565b505050509050019650505050505050600060405180830381600087803b15801561425357600080fd5b505af1158015614267573d6000803e3d6000fd5b50505050506000601260146101000a81548160ff02191690831515021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6142da600584613e2290919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614305573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc614369600861435b600a86613e2290919063ffffffff16565b614b4790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614394573d6000803e3d6000fd5b5050565b806143a6576143a5614bcd565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156144495750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561445e57614459848484614c10565b614695565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145015750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561451657614511848484614e70565b614694565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145ba5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156145cf576145ca8484846150d0565b614693565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156146715750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156146865761468184848461529b565b614692565b6146918484846150d0565b5b5b5b5b806146a3576146a2615590565b5b50505050565b6000806000600b54905060006b033b2e3c9fd0803ce8000000905060005b600880549050811015614911578260036000600884815481106146e657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806147cd575081600460006008848154811061476557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156147ee57600b546b033b2e3c9fd0803ce80000009450945050505061495e565b614877600360006008848154811061480257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613f5c90919063ffffffff16565b9250614902600460006008848154811061488d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613f5c90919063ffffffff16565b915080806001019150506146c7565b506149336b033b2e3c9fd0803ce8000000600b54613e2290919063ffffffff16565b82101561495557600b546b033b2e3c9fd0803ce800000093509350505061495e565b81819350935050505b9091565b60008083118290614a0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156149d35780820151818401526020810190506149b8565b50505050905090810190601f168015614a005780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614a1a57fe5b049050809150509392505050565b600080600080614a546064614a46888a614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614a7e6064614a70888b614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614aa782614a99858c613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080614ad78589614b4790919063ffffffff16565b90506000614aee8689614b4790919063ffffffff16565b90506000614b058789614b4790919063ffffffff16565b90506000614b2e82614b208587613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b9050838184965096509650505050509450945094915050565b600080831415614b5a5760009050614bc7565b6000828402905082848281614b6b57fe5b0414614bc2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806158636021913960400191505060405180910390fd5b809150505b92915050565b6000600d54148015614be157506000600e54145b15614beb57614c0e565b600d54600f81905550600e546010819055506000600d819055506000600e819055505b565b600080600080600080614c2287613ef4565b955095509550955095509550614c8087600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d1586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614daa85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614df6816155a4565b614e008483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e8287613ef4565b955095509550955095509550614ee086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f7583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500a85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615056816155a4565b6150608483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806150e287613ef4565b95509550955095509550955061514086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151d585600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615221816155a4565b61522b8483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806152ad87613ef4565b95509550955095509550955061530b87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153a086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061543583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ca85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615516816155a4565b6155208483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600f54600d81905550601054600e81905550565b60006155ae613df7565b905060006155c58284614b4790919063ffffffff16565b905061561981600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156157445761570083600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61575e82600b54613f5c90919063ffffffff16565b600b8190555061577981600c54613e6c90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220054db62eb8243d70bf047f19fa4657ef9b4cd9538faba7d58ed7c37e1a6bb68364736f6c634300060c0033

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

0000000000000000000000006c62d6c4bdfcd96a894a7caf23f4449d08c1db4b00000000000000000000000011a2fef423238044f5b8a4dc88d2bd739cb6827c

-----Decoded View---------------
Arg [0] : devWalletAddress (address): 0x6C62D6c4bdfcd96a894A7CAF23F4449D08C1Db4b
Arg [1] : marketingWalletAddress (address): 0x11A2fef423238044f5b8a4Dc88d2Bd739cb6827C

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000006c62d6c4bdfcd96a894a7caf23f4449d08c1db4b
Arg [1] : 00000000000000000000000011a2fef423238044f5b8a4dc88d2bd739cb6827c


Deployed Bytecode Sourcemap

25770:20750:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28704:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29708:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45924:141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31056:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27023:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29017:103;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46254:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32345:368;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46077:165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29893:329;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45724:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32064:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45078:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28914:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30234:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31163:405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26962:46;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31580:472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27085:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38580:168;;;;;;;;;;;;;:::i;:::-;;34684:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45531:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16960:98;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27166:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29132:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16356:160;;;;;;;;;;;;;:::i;:::-;;15654:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28807:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46386:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30476:281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45182:93;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29354:179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30899:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32725:541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26911:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30769:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29545:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38940:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33278:475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16688:260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38760:168;;;;;;;;;;;;;:::i;:::-;;45287:102;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45401:118;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33765:518;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28704:91;28741:13;28778:5;;;;;;;;;;;;;;;;;28771:12;;28704:91;:::o;29708:173::-;29783:4;29804:39;29813:12;:10;:12::i;:::-;29827:7;29836:6;29804:8;:39::i;:::-;29865:4;29858:11;;29708:173;;;;:::o;45924:141::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46037:16:::1;46017:17;;:36;;;;;;;;;;;;;;;;;;45924:141:::0;:::o;31056:95::-;31098:7;31129:10;;31122:17;;31056:95;:::o;27023:51::-;;;:::o;29017:103::-;29070:7;26446:19;29094:14;;29017:103;:::o;46254:120::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46351:11:::1;46336:12;:26;;;;46254:120:::0;:::o;32345:368::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32444:42:::1;32433:53;;:7;:53;;;;32425:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32549:17;:26;32567:7;32549:26;;;;;;;;;;;;;;;;;;;;;;;;;32548:27;32539:71;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32653:4;32624:17;:26;32642:7;32624:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;32671:16;32693:7;32671:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32345:368:::0;:::o;46077:165::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46208:22:::1;46182:23;;:48;;;;;;;;;;;;;;;;;;46077:165:::0;:::o;29893:329::-;29991:4;30012:36;30022:6;30030:9;30041:6;30012:9;:36::i;:::-;30063:121;30072:6;30080:12;:10;:12::i;:::-;30094:89;30132:6;30094:89;;;;;;;;;;;;;;;;;:11;:19;30106:6;30094:19;;;;;;;;;;;;;;;:33;30114:12;:10;:12::i;:::-;30094:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30063:8;:121::i;:::-;30206:4;30199:11;;29893:329;;;;;:::o;45724:188::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45817:1:::1;45806:7;:12;;:29;;;;;45833:2;45822:7;:13;;45806:29;45798:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45893:7;45882:8;:18;;;;45724:188:::0;:::o;32064:269::-;32130:7;32173;;32162;:18;;32154:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32242:19;32265:10;:8;:10::i;:::-;32242:33;;32297:24;32309:11;32297:7;:11;;:24;;;;:::i;:::-;32290:31;;;32064:269;;;:::o;45078:92::-;45120:7;45151;;45144:14;;45078:92;:::o;28914:91::-;28955:5;26710:2;28977:16;;28914:91;:::o;30234:230::-;30322:4;30343:83;30352:12;:10;:12::i;:::-;30366:7;30375:50;30414:10;30375:11;:25;30387:12;:10;:12::i;:::-;30375:25;;;;;;;;;;;;;;;:34;30401:7;30375:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30343:8;:83::i;:::-;30448:4;30441:11;;30234:230;;;;:::o;31163:405::-;31219:14;31236:12;:10;:12::i;:::-;31219:29;;31272:11;:19;31284:6;31272:19;;;;;;;;;;;;;;;;;;;;;;;;;31271:20;31263:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31356:15;31380:19;31391:7;31380:10;:19::i;:::-;31355:44;;;;;;;31432:28;31452:7;31432;:15;31440:6;31432:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31414:7;:15;31422:6;31414:15;;;;;;;;;;;;;;;:46;;;;31485:20;31497:7;31485;;:11;;:20;;;;:::i;:::-;31475:7;:30;;;;31533:23;31548:7;31533:10;;:14;;:23;;;;:::i;:::-;31520:10;:36;;;;31163:405;;;:::o;26962:46::-;;;;;;;;;;;;;:::o;31580:472::-;31670:7;26446:19;31702:7;:18;;31694:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31776:17;31771:270;;31815:15;31839:19;31850:7;31839:10;:19::i;:::-;31814:44;;;;;;;31884:7;31877:14;;;;;31771:270;31934:23;31965:19;31976:7;31965:10;:19::i;:::-;31932:52;;;;;;;32010:15;32003:22;;;31580:472;;;;;:::o;27085:38::-;;;:::o;38580:168::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38638:23:::1;38664:24;38682:4;38664:9;:24::i;:::-;38638:50;;38703:33;38720:15;38703:16;:33::i;:::-;15966:1;38580:168::o:0;34684:131::-;34748:4;34776:18;:27;34795:7;34776:27;;;;;;;;;;;;;;;;;;;;;;;;;34769:34;;34684:131;;;:::o;45531:181::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45621:1:::1;45611:6;:11;;:27;;;;;45636:2;45626:6;:12;;45611:27;45603:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45694:6;45684:7;:16;;;;45531:181:::0;:::o;16960:98::-;17006:7;17037:9;;17030:16;;16960:98;:::o;27166:30::-;;;;;;;;;;;;;:::o;29132:210::-;29198:7;29226:11;:20;29238:7;29226:20;;;;;;;;;;;;;;;;;;;;;;;;;29222:49;;;29255:7;:16;29263:7;29255:16;;;;;;;;;;;;;;;;29248:23;;;;29222:49;29293:37;29313:7;:16;29321:7;29313:16;;;;;;;;;;;;;;;;29293:19;:37::i;:::-;29286:44;;29132:210;;;;:::o;16356:160::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16467:1:::1;16430:40;;16451:6;::::0;::::1;;;;;;;;16430:40;;;;;;;;;;;;16502:1;16485:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16356:160::o:0;15654:87::-;15692:7;15723:6;;;;;;;;;;;15716:13;;15654:87;:::o;28807:95::-;28846:13;28883:7;;;;;;;;;;;;;;;;;28876:14;;28807:95;:::o;46386:127::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46488:13:::1;46471:14;:30;;;;46386:127:::0;:::o;30476:281::-;30569:4;30590:129;30599:12;:10;:12::i;:::-;30613:7;30622:96;30661:15;30622:96;;;;;;;;;;;;;;;;;:11;:25;30634:12;:10;:12::i;:::-;30622:25;;;;;;;;;;;;;;;:34;30648:7;30622:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30590:8;:129::i;:::-;30741:4;30734:11;;30476:281;;;;:::o;45182:93::-;45226:7;45255:8;;45248:15;;45182:93;:::o;29354:179::-;29432:4;29453:42;29463:12;:10;:12::i;:::-;29477:9;29488:6;29453:9;:42::i;:::-;29517:4;29510:11;;29354:179;;;;:::o;30899:145::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31024:8:::1;30994:18;:27;31013:7;30994:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;30899:145:::0;;:::o;32725:541::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32817:17:::1;:26;32835:7;32817:26;;;;;;;;;;;;;;;;;;;;;;;;;32808:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32892:9;32887:369;32911:16;:23;;;;32907:1;:27;32887:369;;;32988:7;32965:30;;:16;32982:1;32965:19;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;32961:281;;;33043:16;33086:1;33060:16;:23;;;;:27;33043:45;;;;;;;;;;;;;;;;;;;;;;;;;33021:16;33038:1;33021:19;;;;;;;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;33141:5;33112:17;:26;33130:7;33112:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;33170:16;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33216:5;;32961:281;32936:3;;;;;;;32887:369;;;;32725:541:::0;:::o;26911:40::-;;;;;;;;;;;;;:::o;30769:118::-;30827:4;30855:11;:20;30867:7;30855:20;;;;;;;;;;;;;;;;;;;;;;;;;30848:27;;30769:118;;;:::o;29545:151::-;29626:7;29657:11;:18;29669:5;29657:18;;;;;;;;;;;;;;;:27;29676:7;29657:27;;;;;;;;;;;;;;;;29650:34;;29545:151;;;;:::o;38940:106::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39027:7:::1;39013:11;;:21;;;;;;;;;;;;;;;;;;38940:106:::0;:::o;33278:475::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33374:42:::1;33363:53;;:7;:53;;;;33355:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33479:11;:20;33491:7;33479:20;;;;;;;;;;;;;;;;;;;;;;;;;33478:21;33470:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33568:1;33549:7;:16;33557:7;33549:16;;;;;;;;;;;;;;;;:20;33546:116;;;33609:37;33629:7;:16;33637:7;33629:16;;;;;;;;;;;;;;;;33609:19;:37::i;:::-;33590:7;:16;33598:7;33590:16;;;;;;;;;;;;;;;:56;;;;33546:116;33699:4;33676:11;:20;33688:7;33676:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33718:9;33733:7;33718:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33278:475:::0;:::o;16688:260::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16801:1:::1;16781:22;;:8;:22;;;;16773:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16895:8;16866:38;;16887:6;::::0;::::1;;;;;;;;16866:38;;;;;;;;;;;;16928:8;16919:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16688:260:::0;:::o;38760:168::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38818:26:::1;38847:21;38818:50;;38883:33;38897:18;38883:13;:33::i;:::-;15966:1;38760:168::o:0;45287:102::-;45334:7;45365:12;;45358:19;;45287:102;:::o;45401:118::-;45447:15;45486:21;45479:28;;45401:118;:::o;33765:518::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33850:11:::1;:20;33862:7;33850:20;;;;;;;;;;;;;;;;;;;;;;;;;33842:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33918:9;33913:359;33937:9;:16;;;;33933:1;:20;33913:359;;;33999:7;33983:23;;:9;33993:1;33983:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;33979:278;;;34046:9;34075:1;34056:9;:16;;;;:20;34046:31;;;;;;;;;;;;;;;;;;;;;;;;;34031:9;34041:1;34031:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34119:1;34100:7;:16;34108:7;34100:16;;;;;;;;;;;;;;;:20;;;;34166:5;34143:11;:20;34155:7;34143:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;34194:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34232:5;;33979:278;33955:3;;;;;;;33913:359;;;;33765:518:::0;:::o;111:114::-;164:15;203:10;196:17;;111:114;:::o;34827:357::-;34941:1;34924:19;;:5;:19;;;;34916:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35026:1;35007:21;;:7;:21;;;;34999:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35114:6;35084:11;:18;35096:5;35084:18;;;;;;;;;;;;;;;:27;35103:7;35084:27;;;;;;;;;;;;;;;:36;;;;35156:7;35140:32;;35149:5;35140:32;;;35165:6;35140:32;;;;;;;;;;;;;;;;;;34827:357;;;:::o;35196:2507::-;35315:1;35297:20;;:6;:20;;;;35289:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35403:1;35382:23;;:9;:23;;;;35374:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35477:1;35468:6;:10;35460:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35548:17;:25;35566:6;35548:25;;;;;;;;;;;;;;;;;;;;;;;;;35547:26;35539:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35621:17;:29;35639:10;35621:29;;;;;;;;;;;;;;;;;;;;;;;;;35620:30;35612:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35698:17;:28;35716:9;35698:28;;;;;;;;;;;;;;;;;;;;;;;;;35697:29;35689:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35778:7;:5;:7::i;:::-;35768:17;;:6;:17;;;;:41;;;;;35802:7;:5;:7::i;:::-;35789:20;;:9;:20;;;;35768:41;35765:156;;;35848:12;;35838:6;:22;;35830:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35765:156;35948:7;:5;:7::i;:::-;35938:17;;:6;:17;;;;:41;;;;;35972:7;:5;:7::i;:::-;35959:20;;:9;:20;;;;35938:41;:71;;;;;35996:13;35983:26;;:9;:26;;;;35938:71;:103;;;;;36034:6;36013:28;;:9;:28;;;;35938:103;35935:309;;;36062:29;36094:20;36104:9;36094;:20::i;:::-;36062:52;;36175:14;;36165:6;36141:21;:30;:48;;36133:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35935:309;;36524:28;36555:24;36573:4;36555:9;:24::i;:::-;36524:55;;36623:12;;36599:20;:36;36596:124;;36692:12;;36669:35;;36596:124;36736:24;27325:13;36763:20;:53;;36736:80;;36836:6;;;;;;;;;;;36835:7;:22;;;;;36846:11;;;;;;;;;;;36835:22;:45;;;;;36861:19;36835:45;:72;;;;;36894:13;36884:23;;:6;:23;;;;36835:72;36831:417;;;36999:38;37016:20;36999:16;:38::i;:::-;37058:26;37087:21;37058:50;;37151:1;37130:18;:22;37127:106;;;37177:36;37191:21;37177:13;:36::i;:::-;37127:106;36831:417;;37329:12;37344:4;37329:19;;37456:18;:26;37475:6;37456:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;37486:18;:29;37505:9;37486:29;;;;;;;;;;;;;;;;;;;;;;;;;37456:59;37453:113;;;37545:5;37535:15;;37453:113;37644:47;37659:6;37666:9;37676:6;37683:7;37644:14;:47::i;:::-;35196:2507;;;;;;:::o;4638:208::-;4724:7;4761:1;4756;:6;;4764:12;4748:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4792:9;4808:1;4804;:5;4792:17;;4833:1;4826:8;;;4638:208;;;;;:::o;44284:175::-;44325:7;44350:15;44367;44386:19;:17;:19::i;:::-;44349:56;;;;44427:20;44439:7;44427;:11;;:20;;;;:::i;:::-;44420:27;;;;44284:175;:::o;6168:140::-;6226:7;6257:39;6261:1;6264;6257:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6250:46;;6168:140;;;;:::o;3641:197::-;3699:7;3723:9;3739:1;3735;:5;3723:17;;3768:1;3763;:6;;3755:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3825:1;3818:8;;;3641:197;;;;:::o;42977:467::-;43036:7;43045;43054;43063;43072;43081;43102:23;43127:12;43141:13;43158:39;43170:7;43179;;43188:8;;43158:11;:39::i;:::-;43101:96;;;;;;43208:19;43230:10;:8;:10::i;:::-;43208:32;;43252:15;43269:23;43294:12;43310:46;43322:7;43331:4;43337:5;43344:11;43310;:46::i;:::-;43251:105;;;;;;43375:7;43384:15;43401:4;43407:15;43424:4;43430:5;43367:69;;;;;;;;;;;;;;;;;;;42977:467;;;;;;;:::o;4156:144::-;4214:7;4245:43;4249:1;4252;4245:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4238:50;;4156:144;;;;:::o;37715:656::-;27698:4;27689:6;;:13;;;;;;;;;;;;;;;;;;37860:21:::1;37898:1;37884:16;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37860:40;;37933:4;37915;37920:1;37915:7;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;37963:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;37953:4;37958:1;37953:7;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;38002:62;38019:4;38034:15;38052:11;38002:8;:62::i;:::-;38111:15;:66;;;38196:11;38226:1;38274:4;38305;38329:15;38111:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;27717:1;27742:5:::0;27733:6;;:14;;;;;;;;;;;;;;;;;;37715:656;:::o;38383:185::-;38445:17;;;;;;;;;;;:26;;:41;38472:13;38483:1;38472:6;:10;;:13;;;;:::i;:::-;38445:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38501:23;;;;;;;;;;;:32;;:55;38534:21;38553:1;38534:14;38545:2;38534:6;:10;;:14;;;;:::i;:::-;:18;;:21;;;;:::i;:::-;38501:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38383:185;:::o;39058:883::-;39174:7;39170:44;;39200:14;:12;:14::i;:::-;39170:44;39235:11;:19;39247:6;39235:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;39259:11;:22;39271:9;39259:22;;;;;;;;;;;;;;;;;;;;;;;;;39258:23;39235:46;39231:637;;;39302:48;39324:6;39332:9;39343:6;39302:21;:48::i;:::-;39231:637;;;39377:11;:19;39389:6;39377:19;;;;;;;;;;;;;;;;;;;;;;;;;39376:20;:46;;;;;39400:11;:22;39412:9;39400:22;;;;;;;;;;;;;;;;;;;;;;;;;39376:46;39372:496;;;39443:46;39463:6;39471:9;39482:6;39443:19;:46::i;:::-;39372:496;;;39516:11;:19;39528:6;39516:19;;;;;;;;;;;;;;;;;;;;;;;;;39515:20;:47;;;;;39540:11;:22;39552:9;39540:22;;;;;;;;;;;;;;;;;;;;;;;;;39539:23;39515:47;39511:357;;;39583:44;39601:6;39609:9;39620:6;39583:17;:44::i;:::-;39511:357;;;39653:11;:19;39665:6;39653:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;39676:11;:22;39688:9;39676:22;;;;;;;;;;;;;;;;;;;;;;;;;39653:45;39649:219;;;39719:48;39741:6;39749:9;39760:6;39719:21;:48::i;:::-;39649:219;;;39808:44;39826:6;39834:9;39845:6;39808:17;:44::i;:::-;39649:219;39511:357;39372:496;39231:637;39888:7;39884:45;;39914:15;:13;:15::i;:::-;39884:45;39058:883;;;;:::o;44471:595::-;44521:7;44530;44554:15;44572:7;;44554:25;;44594:15;26446:19;44594:25;;44639:9;44634:305;44658:9;:16;;;;44654:1;:20;44634:305;;;44728:7;44704;:21;44712:9;44722:1;44712:12;;;;;;;;;;;;;;;;;;;;;;;;;44704:21;;;;;;;;;;;;;;;;:31;:66;;;;44763:7;44739;:21;44747:9;44757:1;44747:12;;;;;;;;;;;;;;;;;;;;;;;;;44739:21;;;;;;;;;;;;;;;;:31;44704:66;44700:97;;;44780:7;;26446:19;44772:25;;;;;;;;;44700:97;44826:34;44838:7;:21;44846:9;44856:1;44846:12;;;;;;;;;;;;;;;;;;;;;;;;;44838:21;;;;;;;;;;;;;;;;44826:7;:11;;:34;;;;:::i;:::-;44816:44;;44889:34;44901:7;:21;44909:9;44919:1;44909:12;;;;;;;;;;;;;;;;;;;;;;;;;44901:21;;;;;;;;;;;;;;;;44889:7;:11;;:34;;;;:::i;:::-;44879:44;;44676:3;;;;;;;44634:305;;;;44967:20;26446:19;44967:7;;:11;;:20;;;;:::i;:::-;44957:7;:30;44953:61;;;44997:7;;26446:19;44989:25;;;;;;;;44953:61;45037:7;45046;45029:25;;;;;;44471:595;;;:::o;6845:298::-;6931:7;6967:1;6963;:5;6970:12;6955:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6998:9;7014:1;7010;:5;;;;;;6998:17;;7130:1;7123:8;;;6845:298;;;;;:::o;43456:371::-;43549:7;43558;43567;43591:12;43606:28;43630:3;43606:19;43618:6;43606:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;43591:43;;43649:13;43665:29;43690:3;43665:20;43677:7;43665;:11;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;43649:45;;43709:23;43735:28;43757:5;43735:17;43747:4;43735:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;43709:54;;43786:15;43803:4;43809:5;43778:37;;;;;;;;;43456:371;;;;;;;:::o;43839:433::-;43949:7;43958;43967;43991:15;44009:24;44021:11;44009:7;:11;;:24;;;;:::i;:::-;43991:42;;44048:12;44063:21;44072:11;44063:4;:8;;:21;;;;:::i;:::-;44048:36;;44099:13;44115:22;44125:11;44115:5;:9;;:22;;;;:::i;:::-;44099:38;;44152:23;44178:28;44200:5;44178:17;44190:4;44178:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;44152:54;;44229:7;44238:15;44255:4;44221:39;;;;;;;;;;43839:433;;;;;;;;:::o;5140:511::-;5198:7;5464:1;5459;:6;5455:55;;;5493:1;5486:8;;;;5455:55;5526:9;5542:1;5538;:5;5526:17;;5575:1;5570;5566;:5;;;;;;:10;5558:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5638:1;5631:8;;;5140:511;;;;;:::o;34295:238::-;34356:1;34345:7;;:12;:29;;;;;34373:1;34361:8;;:13;34345:29;34342:41;;;34376:7;;34342:41;34417:7;;34399:15;:25;;;;34458:8;;34439:16;:27;;;;34493:1;34483:7;:11;;;;34520:1;34509:8;:12;;;;34295:238;:::o;41084:580::-;41191:15;41208:23;41233:12;41247:23;41272:12;41286:13;41303:19;41314:7;41303:10;:19::i;:::-;41190:132;;;;;;;;;;;;41355:28;41375:7;41355;:15;41363:6;41355:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41337:7;:15;41345:6;41337:15;;;;;;;;;;;;;;;:46;;;;41416:28;41436:7;41416;:15;41424:6;41416:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41398:7;:15;41406:6;41398:15;;;;;;;;;;;;;;;:46;;;;41480:39;41503:15;41480:7;:18;41488:9;41480:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41459:7;:18;41467:9;41459:18;;;;;;;;;;;;;;;:60;;;;41534:16;41544:5;41534:9;:16::i;:::-;41565:23;41577:4;41583;41565:11;:23::i;:::-;41625:9;41608:44;;41617:6;41608:44;;;41636:15;41608:44;;;;;;;;;;;;;;;;;;41084:580;;;;;;;;;:::o;40480:592::-;40585:15;40602:23;40627:12;40641:23;40666:12;40680:13;40697:19;40708:7;40697:10;:19::i;:::-;40584:132;;;;;;;;;;;;40749:28;40769:7;40749;:15;40757:6;40749:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40731:7;:15;40739:6;40731:15;;;;;;;;;;;;;;;:46;;;;40813:39;40836:15;40813:7;:18;40821:9;40813:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40792:7;:18;40800:9;40792:18;;;;;;;;;;;;;;;:60;;;;40888:39;40911:15;40888:7;:18;40896:9;40888:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40867:7;:18;40875:9;40867:18;;;;;;;;;;;;;;;:60;;;;40942:16;40952:5;40942:9;:16::i;:::-;40973:23;40985:4;40991;40973:11;:23::i;:::-;41033:9;41016:44;;41025:6;41016:44;;;41044:15;41016:44;;;;;;;;;;;;;;;;;;40480:592;;;;;;;;;:::o;39953:515::-;40056:15;40073:23;40098:12;40112:23;40137:12;40151:13;40168:19;40179:7;40168:10;:19::i;:::-;40055:132;;;;;;;;;;;;40220:28;40240:7;40220;:15;40228:6;40220:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40202:7;:15;40210:6;40202:15;;;;;;;;;;;;;;;:46;;;;40284:39;40307:15;40284:7;:18;40292:9;40284:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40263:7;:18;40271:9;40263:18;;;;;;;;;;;;;;;:60;;;;40338:16;40348:5;40338:9;:16::i;:::-;40369:23;40381:4;40387;40369:11;:23::i;:::-;40429:9;40412:44;;40421:6;40412:44;;;40440:15;40412:44;;;;;;;;;;;;;;;;;;39953:515;;;;;;;;;:::o;41676:655::-;41783:15;41800:23;41825:12;41839:23;41864:12;41878:13;41895:19;41906:7;41895:10;:19::i;:::-;41782:132;;;;;;;;;;;;41947:28;41967:7;41947;:15;41955:6;41947:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41929:7;:15;41937:6;41929:15;;;;;;;;;;;;;;;:46;;;;42008:28;42028:7;42008;:15;42016:6;42008:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41990:7;:15;41998:6;41990:15;;;;;;;;;;;;;;;:46;;;;42072:39;42095:15;42072:7;:18;42080:9;42072:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42051:7;:18;42059:9;42051:18;;;;;;;;;;;;;;;:60;;;;42147:39;42170:15;42147:7;:18;42155:9;42147:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42126:7;:18;42134:9;42126:18;;;;;;;;;;;;;;;:60;;;;42201:16;42211:5;42201:9;:16::i;:::-;42232:23;42244:4;42250;42232:11;:23::i;:::-;42292:9;42275:44;;42284:6;42275:44;;;42303:15;42275:44;;;;;;;;;;;;;;;;;;41676:655;;;;;;;;;:::o;34545:127::-;34603:15;;34593:7;:25;;;;34644:16;;34633:8;:27;;;;34545:127::o;42343:349::-;42400:19;42423:10;:8;:10::i;:::-;42400:33;;42448:13;42464:22;42474:11;42464:5;:9;;:22;;;;:::i;:::-;42448:38;;42526:33;42553:5;42526:7;:22;42542:4;42526:22;;;;;;;;;;;;;;;;:26;;:33;;;;:::i;:::-;42501:7;:22;42517:4;42501:22;;;;;;;;;;;;;;;:58;;;;42577:11;:26;42597:4;42577:26;;;;;;;;;;;;;;;;;;;;;;;;;42574:106;;;42647:33;42674:5;42647:7;:22;42663:4;42647:22;;;;;;;;;;;;;;;;:26;;:33;;;;:::i;:::-;42622:7;:22;42638:4;42622:22;;;;;;;;;;;;;;;:58;;;;42574:106;42343:349;;;:::o;42704:159::-;42786:17;42798:4;42786:7;;:11;;:17;;;;:::i;:::-;42776:7;:27;;;;42831:20;42846:4;42831:10;;:14;;:20;;;;:::i;:::-;42818:10;:33;;;;42704:159;;:::o

Swarm Source

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