ETH Price: $2,350.62 (-2.32%)

Token

Blue-Eyes White Doge (bDOGE)
 

Overview

Max Total Supply

100,000,000,000 bDOGE

Holders

545

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
4,048,080.19312223 bDOGE

Value
$0.00
0xccf73497efa861159273b4fe9159f03ded24afd4
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:
bDOGE

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at EthScan.com on 2021-05-11
*/

// SPDX-License-Identifier: Unlicensed

/**
 *
 * Blue-Eyes White Doge
 * Telegram: https://t.me/bdogenet
 * A token with 6% tax at every transaction:
 * 3% distribution
 * 3% liquidity swap
 * 
 */

pragma solidity ^0.6.12;

interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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



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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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


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

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

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(now > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

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


// pragma solidity >=0.5.0;

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

// pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        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);
}



// pragma solidity >=0.6.2;

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 bDOGE 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;
    
    //  100,000,000,000 total supply (100%)
    //      500,000,000 max transaction (0.5%)
    //       50,000,000 to add to liquidity (0.05%)
    
    string  private _name       = "Blue-Eyes White Doge";
    string  private _symbol     = "bDOGE";
    uint8   private _decimals   = 9;
   
    uint256 private constant MAX    = ~uint256(0);
    uint256 private _tTotal         = 100000 * 10**6 * 10**9; //100 Billion
    uint256 private _rTotal         = (MAX - (MAX % _tTotal));
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    
    uint256 public _taxFee = 3;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _burnFee = 0;
    uint256 private _previousBurnFee = _burnFee;
    
    uint256 public _liquidityFee = 3;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 500 * 10**6 * 10**9; // 0.5 Billion
    uint256 private numTokensSellToAddToLiquidity = 50 * 10**6 * 10**9; // 50 Million
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () public {
        _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 view returns (string memory) {
        return _name;
    }

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

    function decimals() public view 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 isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

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

    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 excludeFromReward(address account) public 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 includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
    
    function setBurnFeePercent(uint256 burnFee) external onlyOwner() {
        _burnFee = burnFee;
    }
   
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2);
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

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

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tBurn, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tBurn = calculateBurnFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tBurn).sub(tLiquidity);
        return (tTransferAmount, tFee, tBurn, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn).sub(rLiquidity);
        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 _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(10**2);
    }

    function calculateBurnFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_burnFee).div(10**2);
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(10**2);
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _burnFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousBurnFee = _burnFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _burnFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _burnFee = _previousBurnFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    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 from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

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

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

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

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

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

    //this method is responsible for taking all fee, if takeFee is true
    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 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
         uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","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":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurn","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"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060400160405280601481526020017f426c75652d4579657320576869746520446f6765000000000000000000000000815250600990805190602001906200005192919062000604565b506040518060400160405280600581526020017f62444f4745000000000000000000000000000000000000000000000000000000815250600a90805190602001906200009f92919062000604565b506009600b60006101000a81548160ff021916908360ff16021790555068056bc75e2d63100000600c55600c5460001981620000d757fe5b0660001903600d556003601055601054601155600060125560125460135560036014556014546015556001601660016101000a81548160ff0219169083151502179055506706f05b59d3b2000060175566b1a2bc2ec500006018553480156200013f57600080fd5b50600062000152620005d360201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600d546003600062000207620005d360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002a557600080fd5b505afa158015620002ba573d6000803e3d6000fd5b505050506040513d6020811015620002d157600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200034557600080fd5b505afa1580156200035a573d6000803e3d6000fd5b505050506040513d60208110156200037157600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620003ec57600080fd5b505af115801562000401573d6000803e3d6000fd5b505050506040513d60208110156200041857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620004ac620005db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000565620005d360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a350620006aa565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200064757805160ff191683800117855562000678565b8280016001018555821562000678579182015b82811115620006775782518255916020019190600101906200065a565b5b5090506200068791906200068b565b5090565b5b80821115620006a65760008160009055506001016200068c565b5090565b60805160601c60a05160601c615173620006f2600039806118f55280613135525080610f985280613e7d5280613f695280613f90528061409b52806140c252506151736000f3fe60806040526004361061023f5760003560e01c8063602bc62b1161012e578063a69df4b5116100ab578063d543dbeb1161006f578063d543dbeb14610c5d578063dd46706414610c98578063dd62ed3e14610cd3578063ea2f0b3714610d58578063f2fde38b14610da957610246565b8063a69df4b514610b32578063a9059cbb14610b49578063c0b0fda214610bba578063c49b9a8014610be5578063cea2695814610c2257610246565b806388f82020116100f257806388f820201461094e5780638da5cb5b146109b55780638ee88c53146109f657806395d89b4114610a31578063a457c2d714610ac157610246565b8063602bc62b146108515780636bc87c3a1461087c57806370a08231146108a7578063715018a61461090c5780637d1db4a51461092357610246565b806339509351116101bc5780634549b039116101805780634549b039146106d057806349bd5a5e1461072b5780634a74bb021461076c57806352390c02146107995780635342acb4146107ea57610246565b8063395093511461057d5780633b124fe7146105ee5780633bd5d173146106195780633c9f861d14610654578063437823ec1461067f57610246565b806318160ddd1161020357806318160ddd146103f357806323b872dd1461041e5780632d838119146104af578063313ce567146104fe5780633685d4191461052c57610246565b8063061c82d01461024b57806306fdde0314610286578063095ea7b31461031657806313114a9d146103875780631694505e146103b257610246565b3661024657005b600080fd5b34801561025757600080fd5b506102846004803603602081101561026e57600080fd5b8101908080359060200190929190505050610dfa565b005b34801561029257600080fd5b5061029b610ecc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102db5780820151818401526020810190506102c0565b50505050905090810190601f1680156103085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032257600080fd5b5061036f6004803603604081101561033957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f6e565b60405180821515815260200191505060405180910390f35b34801561039357600080fd5b5061039c610f8c565b6040518082815260200191505060405180910390f35b3480156103be57600080fd5b506103c7610f96565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ff57600080fd5b50610408610fba565b6040518082815260200191505060405180910390f35b34801561042a57600080fd5b506104976004803603606081101561044157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc4565b60405180821515815260200191505060405180910390f35b3480156104bb57600080fd5b506104e8600480360360208110156104d257600080fd5b810190808035906020019092919050505061109d565b6040518082815260200191505060405180910390f35b34801561050a57600080fd5b50610513611121565b604051808260ff16815260200191505060405180910390f35b34801561053857600080fd5b5061057b6004803603602081101561054f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611138565b005b34801561058957600080fd5b506105d6600480360360408110156105a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114c2565b60405180821515815260200191505060405180910390f35b3480156105fa57600080fd5b50610603611575565b6040518082815260200191505060405180910390f35b34801561062557600080fd5b506106526004803603602081101561063c57600080fd5b810190808035906020019092919050505061157b565b005b34801561066057600080fd5b5061066961170d565b6040518082815260200191505060405180910390f35b34801561068b57600080fd5b506106ce600480360360208110156106a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611717565b005b3480156106dc57600080fd5b50610715600480360360408110156106f357600080fd5b810190808035906020019092919080351515906020019092919050505061183a565b6040518082815260200191505060405180910390f35b34801561073757600080fd5b506107406118f3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077857600080fd5b50610781611917565b60405180821515815260200191505060405180910390f35b3480156107a557600080fd5b506107e8600480360360208110156107bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061192a565b005b3480156107f657600080fd5b506108396004803603602081101561080d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c44565b60405180821515815260200191505060405180910390f35b34801561085d57600080fd5b50610866611c9a565b6040518082815260200191505060405180910390f35b34801561088857600080fd5b50610891611ca4565b6040518082815260200191505060405180910390f35b3480156108b357600080fd5b506108f6600480360360208110156108ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611caa565b6040518082815260200191505060405180910390f35b34801561091857600080fd5b50610921611d95565b005b34801561092f57600080fd5b50610938611f1b565b6040518082815260200191505060405180910390f35b34801561095a57600080fd5b5061099d6004803603602081101561097157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f21565b60405180821515815260200191505060405180910390f35b3480156109c157600080fd5b506109ca611f77565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a0257600080fd5b50610a2f60048036036020811015610a1957600080fd5b8101908080359060200190929190505050611fa0565b005b348015610a3d57600080fd5b50610a46612072565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a86578082015181840152602081019050610a6b565b50505050905090810190601f168015610ab35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610acd57600080fd5b50610b1a60048036036040811015610ae457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612114565b60405180821515815260200191505060405180910390f35b348015610b3e57600080fd5b50610b476121e1565b005b348015610b5557600080fd5b50610ba260048036036040811015610b6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506123fe565b60405180821515815260200191505060405180910390f35b348015610bc657600080fd5b50610bcf61241c565b6040518082815260200191505060405180910390f35b348015610bf157600080fd5b50610c2060048036036020811015610c0857600080fd5b81019080803515159060200190929190505050612422565b005b348015610c2e57600080fd5b50610c5b60048036036020811015610c4557600080fd5b8101908080359060200190929190505050612540565b005b348015610c6957600080fd5b50610c9660048036036020811015610c8057600080fd5b8101908080359060200190929190505050612612565b005b348015610ca457600080fd5b50610cd160048036036020811015610cbb57600080fd5b810190808035906020019092919050505061270b565b005b348015610cdf57600080fd5b50610d4260048036036040811015610cf657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128fc565b6040518082815260200191505060405180910390f35b348015610d6457600080fd5b50610da760048036036020811015610d7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612983565b005b348015610db557600080fd5b50610df860048036036020811015610dcc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612aa6565b005b610e02612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f645780601f10610f3957610100808354040283529160200191610f64565b820191906000526020600020905b815481529060010190602001808311610f4757829003601f168201915b5050505050905090565b6000610f82610f7b612cb1565b8484612cb9565b6001905092915050565b6000600e54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600c54905090565b6000610fd1848484612eb0565b61109284610fdd612cb1565b61108d8560405180606001604052806028815260200161503060289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611043612cb1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132759092919063ffffffff16565b612cb9565b600190509392505050565b6000600d548211156110fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614f75602a913960400191505060405180910390fd5b6000611104613335565b9050611119818461336090919063ffffffff16565b915050919050565b6000600b60009054906101000a900460ff16905090565b611140612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156114be578173ffffffffffffffffffffffffffffffffffffffff16600882815481106112f357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114b15760086001600880549050038154811061134f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061138757fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061147757fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556114be565b80806001019150506112c2565b5050565b600061156b6114cf612cb1565b8461156685600560006114e0612cb1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b612cb9565b6001905092915050565b60105481565b6000611585612cb1565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561162a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806150ca602c913960400191505060405180910390fd5b600061163583613432565b505050505050905061168f81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116e781600d5461349a90919063ffffffff16565b600d8190555061170283600e546133aa90919063ffffffff16565b600e81905550505050565b6000600f54905090565b61171f612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600c548311156118b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816118d55760006118c484613432565b5050505050509050809150506118ed565b60006118e084613432565b5050505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601660019054906101000a900460ff1681565b611932612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ab2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b8657611b42600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109d565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600254905090565b60145481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d4557600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611d90565b611d8d600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109d565b90505b919050565b611d9d612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60175481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fa8612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b6060600a8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561210a5780601f106120df5761010080835404028352916020019161210a565b820191906000526020600020905b8154815290600101906020018083116120ed57829003601f168201915b5050505050905090565b60006121d7612121612cb1565b846121d285604051806060016040528060258152602001615119602591396005600061214b612cb1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132759092919063ffffffff16565b612cb9565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612287576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806150f66023913960400191505060405180910390fd5b60025442116122fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061241261240b612cb1565b8484612eb0565b6001905092915050565b60125481565b61242a612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612548612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b61261a612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61270260646126f483600c546134e490919063ffffffff16565b61336090919063ffffffff16565b60178190555050565b612713612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61298b612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a4b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612aae612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614f9f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806150a66024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614fc56022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150816025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614f526023913960400191505060405180910390fd5b60008111613015576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806150586029913960400191505060405180910390fd5b61301d611f77565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561308b575061305b611f77565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130ec576017548111156130eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614fe76028913960400191505060405180910390fd5b5b60006130f730611caa565b905060175481106131085760175490505b6000601854821015905080801561312c5750601660009054906101000a900460ff16155b801561318457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561319c5750601660019054906101000a900460ff165b156131b05760185491506131af8261356a565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806132575750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561326157600090505b61326d8686868461364c565b505050505050565b6000838311158290613322576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156132e75780820151818401526020810190506132cc565b50505050905090810190601f1680156133145780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080600061334261395d565b91509150613359818361336090919063ffffffff16565b9250505090565b60006133a283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bee565b905092915050565b600080828401905083811015613428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600080600061344c8c613cb4565b9350935093509350600080600061346d8f878787613468613335565b613d33565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b60006134dc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613275565b905092915050565b6000808314156134f75760009050613564565b600082840290508284828161350857fe5b041461355f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061500f6021913960400191505060405180910390fd5b809150505b92915050565b6001601660006101000a81548160ff021916908315150217905550600061359b60028361336090919063ffffffff16565b905060006135b2828461349a90919063ffffffff16565b905060004790506135c283613de7565b60006135d7824761349a90919063ffffffff16565b90506135e38382614095565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601660006101000a81548160ff02191690831515021790555050565b8061365a576136596141e6565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136fd5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137125761370d848484614248565b613949565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156137b55750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137ca576137c58484846144d4565b613948565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561386e5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138835761387e848484614760565b613947565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139255750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561393a57613935848484614957565b613946565b613945848484614760565b5b5b5b5b8061395757613956614c78565b5b50505050565b6000806000600d5490506000600c54905060005b600880549050811015613bb15782600360006008848154811061399057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613a775750816004600060088481548110613a0f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613a8e57600d54600c5494509450505050613bea565b613b176003600060088481548110613aa257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461349a90919063ffffffff16565b9250613ba26004600060088481548110613b2d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361349a90919063ffffffff16565b91508080600101915050613971565b50613bc9600c54600d5461336090919063ffffffff16565b821015613be157600d54600c54935093505050613bea565b81819350935050505b9091565b60008083118290613c9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613c5f578082015181840152602081019050613c44565b50505050905090810190601f168015613c8c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613ca657fe5b049050809150509392505050565b6000806000806000613cc586614c95565b90506000613cd287614cc6565b90506000613cdf88614cf7565b90506000613d1a82613d0c85613cfe888e61349a90919063ffffffff16565b61349a90919063ffffffff16565b61349a90919063ffffffff16565b9050808484849750975097509750505050509193509193565b600080600080613d4c858a6134e490919063ffffffff16565b90506000613d63868a6134e490919063ffffffff16565b90506000613d7a878a6134e490919063ffffffff16565b90506000613d91888a6134e490919063ffffffff16565b90506000613dcc82613dbe85613db0888a61349a90919063ffffffff16565b61349a90919063ffffffff16565b61349a90919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6060600267ffffffffffffffff81118015613e0157600080fd5b50604051908082528060200260200182016040528015613e305781602001602082028036833780820191505090505b5090503081600081518110613e4157fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613ee157600080fd5b505afa158015613ef5573d6000803e3d6000fd5b505050506040513d6020811015613f0b57600080fd5b810190808051906020019092919050505081600181518110613f2957fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f8e307f000000000000000000000000000000000000000000000000000000000000000084612cb9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614050578082015181840152602081019050614035565b505050509050019650505050505050600060405180830381600087803b15801561407957600080fd5b505af115801561408d573d6000803e3d6000fd5b505050505050565b6140c0307f000000000000000000000000000000000000000000000000000000000000000084612cb9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061410a611f77565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561418f57600080fd5b505af11580156141a3573d6000803e3d6000fd5b50505050506040513d60608110156141ba57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b60006010541480156141fa57506000601254145b801561420857506000601454145b1561421257614246565b6010546011819055506012546013819055506014546015819055506000601081905550600060128190555060006014819055505b565b6000614252613335565b9050600080600080600080600061426889613432565b9650965096509650965096509650600061428b89846134e490919063ffffffff16565b90506142df8a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061437488600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061440987600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061445582614d28565b61446186828686614ecd565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b60006144de613335565b905060008060008060008060006144f489613432565b9650965096509650965096509650600061451789846134e490919063ffffffff16565b905061456b88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061460085600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061469587600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146e182614d28565b6146ed86828686614ecd565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061476a613335565b9050600080600080600080600061478089613432565b965096509650965096509650965060006147a389846134e490919063ffffffff16565b90506147f788600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061488c87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148d882614d28565b6148e486828686614ecd565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614961613335565b9050600080600080600080600061497789613432565b9650965096509650965096509650600061499a89846134e490919063ffffffff16565b90506149ee8a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a8388600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b1885600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bad87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bf982614d28565b614c0586828686614ecd565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b601154601081905550601354601281905550601554601481905550565b6000614cbf6064614cb1601054856134e490919063ffffffff16565b61336090919063ffffffff16565b9050919050565b6000614cf06064614ce2601254856134e490919063ffffffff16565b61336090919063ffffffff16565b9050919050565b6000614d216064614d13601454856134e490919063ffffffff16565b61336090919063ffffffff16565b9050919050565b6000614d32613335565b90506000614d4982846134e490919063ffffffff16565b9050614d9d81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614ec857614e8483600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614ef483614ee686600d5461349a90919063ffffffff16565b61349a90919063ffffffff16565b600d81905550614f0f82600e546133aa90919063ffffffff16565b600e81905550614f2a81600f546133aa90919063ffffffff16565b600f81905550614f4581600c5461349a90919063ffffffff16565b600c819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122055347a3d9334f34574b9dd05970671c7c54dd34d0c8583f3fe6824272cdab32564736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c8063602bc62b1161012e578063a69df4b5116100ab578063d543dbeb1161006f578063d543dbeb14610c5d578063dd46706414610c98578063dd62ed3e14610cd3578063ea2f0b3714610d58578063f2fde38b14610da957610246565b8063a69df4b514610b32578063a9059cbb14610b49578063c0b0fda214610bba578063c49b9a8014610be5578063cea2695814610c2257610246565b806388f82020116100f257806388f820201461094e5780638da5cb5b146109b55780638ee88c53146109f657806395d89b4114610a31578063a457c2d714610ac157610246565b8063602bc62b146108515780636bc87c3a1461087c57806370a08231146108a7578063715018a61461090c5780637d1db4a51461092357610246565b806339509351116101bc5780634549b039116101805780634549b039146106d057806349bd5a5e1461072b5780634a74bb021461076c57806352390c02146107995780635342acb4146107ea57610246565b8063395093511461057d5780633b124fe7146105ee5780633bd5d173146106195780633c9f861d14610654578063437823ec1461067f57610246565b806318160ddd1161020357806318160ddd146103f357806323b872dd1461041e5780632d838119146104af578063313ce567146104fe5780633685d4191461052c57610246565b8063061c82d01461024b57806306fdde0314610286578063095ea7b31461031657806313114a9d146103875780631694505e146103b257610246565b3661024657005b600080fd5b34801561025757600080fd5b506102846004803603602081101561026e57600080fd5b8101908080359060200190929190505050610dfa565b005b34801561029257600080fd5b5061029b610ecc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102db5780820151818401526020810190506102c0565b50505050905090810190601f1680156103085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032257600080fd5b5061036f6004803603604081101561033957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f6e565b60405180821515815260200191505060405180910390f35b34801561039357600080fd5b5061039c610f8c565b6040518082815260200191505060405180910390f35b3480156103be57600080fd5b506103c7610f96565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ff57600080fd5b50610408610fba565b6040518082815260200191505060405180910390f35b34801561042a57600080fd5b506104976004803603606081101561044157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc4565b60405180821515815260200191505060405180910390f35b3480156104bb57600080fd5b506104e8600480360360208110156104d257600080fd5b810190808035906020019092919050505061109d565b6040518082815260200191505060405180910390f35b34801561050a57600080fd5b50610513611121565b604051808260ff16815260200191505060405180910390f35b34801561053857600080fd5b5061057b6004803603602081101561054f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611138565b005b34801561058957600080fd5b506105d6600480360360408110156105a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114c2565b60405180821515815260200191505060405180910390f35b3480156105fa57600080fd5b50610603611575565b6040518082815260200191505060405180910390f35b34801561062557600080fd5b506106526004803603602081101561063c57600080fd5b810190808035906020019092919050505061157b565b005b34801561066057600080fd5b5061066961170d565b6040518082815260200191505060405180910390f35b34801561068b57600080fd5b506106ce600480360360208110156106a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611717565b005b3480156106dc57600080fd5b50610715600480360360408110156106f357600080fd5b810190808035906020019092919080351515906020019092919050505061183a565b6040518082815260200191505060405180910390f35b34801561073757600080fd5b506107406118f3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077857600080fd5b50610781611917565b60405180821515815260200191505060405180910390f35b3480156107a557600080fd5b506107e8600480360360208110156107bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061192a565b005b3480156107f657600080fd5b506108396004803603602081101561080d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c44565b60405180821515815260200191505060405180910390f35b34801561085d57600080fd5b50610866611c9a565b6040518082815260200191505060405180910390f35b34801561088857600080fd5b50610891611ca4565b6040518082815260200191505060405180910390f35b3480156108b357600080fd5b506108f6600480360360208110156108ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611caa565b6040518082815260200191505060405180910390f35b34801561091857600080fd5b50610921611d95565b005b34801561092f57600080fd5b50610938611f1b565b6040518082815260200191505060405180910390f35b34801561095a57600080fd5b5061099d6004803603602081101561097157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f21565b60405180821515815260200191505060405180910390f35b3480156109c157600080fd5b506109ca611f77565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a0257600080fd5b50610a2f60048036036020811015610a1957600080fd5b8101908080359060200190929190505050611fa0565b005b348015610a3d57600080fd5b50610a46612072565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a86578082015181840152602081019050610a6b565b50505050905090810190601f168015610ab35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610acd57600080fd5b50610b1a60048036036040811015610ae457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612114565b60405180821515815260200191505060405180910390f35b348015610b3e57600080fd5b50610b476121e1565b005b348015610b5557600080fd5b50610ba260048036036040811015610b6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506123fe565b60405180821515815260200191505060405180910390f35b348015610bc657600080fd5b50610bcf61241c565b6040518082815260200191505060405180910390f35b348015610bf157600080fd5b50610c2060048036036020811015610c0857600080fd5b81019080803515159060200190929190505050612422565b005b348015610c2e57600080fd5b50610c5b60048036036020811015610c4557600080fd5b8101908080359060200190929190505050612540565b005b348015610c6957600080fd5b50610c9660048036036020811015610c8057600080fd5b8101908080359060200190929190505050612612565b005b348015610ca457600080fd5b50610cd160048036036020811015610cbb57600080fd5b810190808035906020019092919050505061270b565b005b348015610cdf57600080fd5b50610d4260048036036040811015610cf657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128fc565b6040518082815260200191505060405180910390f35b348015610d6457600080fd5b50610da760048036036020811015610d7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612983565b005b348015610db557600080fd5b50610df860048036036020811015610dcc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612aa6565b005b610e02612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f645780601f10610f3957610100808354040283529160200191610f64565b820191906000526020600020905b815481529060010190602001808311610f4757829003601f168201915b5050505050905090565b6000610f82610f7b612cb1565b8484612cb9565b6001905092915050565b6000600e54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600c54905090565b6000610fd1848484612eb0565b61109284610fdd612cb1565b61108d8560405180606001604052806028815260200161503060289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611043612cb1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132759092919063ffffffff16565b612cb9565b600190509392505050565b6000600d548211156110fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614f75602a913960400191505060405180910390fd5b6000611104613335565b9050611119818461336090919063ffffffff16565b915050919050565b6000600b60009054906101000a900460ff16905090565b611140612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156114be578173ffffffffffffffffffffffffffffffffffffffff16600882815481106112f357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114b15760086001600880549050038154811061134f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061138757fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061147757fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556114be565b80806001019150506112c2565b5050565b600061156b6114cf612cb1565b8461156685600560006114e0612cb1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b612cb9565b6001905092915050565b60105481565b6000611585612cb1565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561162a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806150ca602c913960400191505060405180910390fd5b600061163583613432565b505050505050905061168f81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116e781600d5461349a90919063ffffffff16565b600d8190555061170283600e546133aa90919063ffffffff16565b600e81905550505050565b6000600f54905090565b61171f612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600c548311156118b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816118d55760006118c484613432565b5050505050509050809150506118ed565b60006118e084613432565b5050505050915050809150505b92915050565b7f0000000000000000000000005a66e2b44509817c0271a75e0f48e1693f867ee281565b601660019054906101000a900460ff1681565b611932612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ab2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b8657611b42600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109d565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600254905090565b60145481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d4557600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611d90565b611d8d600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109d565b90505b919050565b611d9d612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60175481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fa8612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b6060600a8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561210a5780601f106120df5761010080835404028352916020019161210a565b820191906000526020600020905b8154815290600101906020018083116120ed57829003601f168201915b5050505050905090565b60006121d7612121612cb1565b846121d285604051806060016040528060258152602001615119602591396005600061214b612cb1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132759092919063ffffffff16565b612cb9565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612287576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806150f66023913960400191505060405180910390fd5b60025442116122fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061241261240b612cb1565b8484612eb0565b6001905092915050565b60125481565b61242a612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612548612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b61261a612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61270260646126f483600c546134e490919063ffffffff16565b61336090919063ffffffff16565b60178190555050565b612713612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61298b612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a4b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612aae612cb1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614f9f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806150a66024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614fc56022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150816025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614f526023913960400191505060405180910390fd5b60008111613015576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806150586029913960400191505060405180910390fd5b61301d611f77565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561308b575061305b611f77565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130ec576017548111156130eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614fe76028913960400191505060405180910390fd5b5b60006130f730611caa565b905060175481106131085760175490505b6000601854821015905080801561312c5750601660009054906101000a900460ff16155b801561318457507f0000000000000000000000005a66e2b44509817c0271a75e0f48e1693f867ee273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561319c5750601660019054906101000a900460ff165b156131b05760185491506131af8261356a565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806132575750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561326157600090505b61326d8686868461364c565b505050505050565b6000838311158290613322576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156132e75780820151818401526020810190506132cc565b50505050905090810190601f1680156133145780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080600061334261395d565b91509150613359818361336090919063ffffffff16565b9250505090565b60006133a283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bee565b905092915050565b600080828401905083811015613428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600080600061344c8c613cb4565b9350935093509350600080600061346d8f878787613468613335565b613d33565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b60006134dc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613275565b905092915050565b6000808314156134f75760009050613564565b600082840290508284828161350857fe5b041461355f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061500f6021913960400191505060405180910390fd5b809150505b92915050565b6001601660006101000a81548160ff021916908315150217905550600061359b60028361336090919063ffffffff16565b905060006135b2828461349a90919063ffffffff16565b905060004790506135c283613de7565b60006135d7824761349a90919063ffffffff16565b90506135e38382614095565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601660006101000a81548160ff02191690831515021790555050565b8061365a576136596141e6565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136fd5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137125761370d848484614248565b613949565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156137b55750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137ca576137c58484846144d4565b613948565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561386e5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138835761387e848484614760565b613947565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139255750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561393a57613935848484614957565b613946565b613945848484614760565b5b5b5b5b8061395757613956614c78565b5b50505050565b6000806000600d5490506000600c54905060005b600880549050811015613bb15782600360006008848154811061399057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613a775750816004600060088481548110613a0f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613a8e57600d54600c5494509450505050613bea565b613b176003600060088481548110613aa257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461349a90919063ffffffff16565b9250613ba26004600060088481548110613b2d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361349a90919063ffffffff16565b91508080600101915050613971565b50613bc9600c54600d5461336090919063ffffffff16565b821015613be157600d54600c54935093505050613bea565b81819350935050505b9091565b60008083118290613c9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613c5f578082015181840152602081019050613c44565b50505050905090810190601f168015613c8c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613ca657fe5b049050809150509392505050565b6000806000806000613cc586614c95565b90506000613cd287614cc6565b90506000613cdf88614cf7565b90506000613d1a82613d0c85613cfe888e61349a90919063ffffffff16565b61349a90919063ffffffff16565b61349a90919063ffffffff16565b9050808484849750975097509750505050509193509193565b600080600080613d4c858a6134e490919063ffffffff16565b90506000613d63868a6134e490919063ffffffff16565b90506000613d7a878a6134e490919063ffffffff16565b90506000613d91888a6134e490919063ffffffff16565b90506000613dcc82613dbe85613db0888a61349a90919063ffffffff16565b61349a90919063ffffffff16565b61349a90919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6060600267ffffffffffffffff81118015613e0157600080fd5b50604051908082528060200260200182016040528015613e305781602001602082028036833780820191505090505b5090503081600081518110613e4157fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613ee157600080fd5b505afa158015613ef5573d6000803e3d6000fd5b505050506040513d6020811015613f0b57600080fd5b810190808051906020019092919050505081600181518110613f2957fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f8e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612cb9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614050578082015181840152602081019050614035565b505050509050019650505050505050600060405180830381600087803b15801561407957600080fd5b505af115801561408d573d6000803e3d6000fd5b505050505050565b6140c0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612cb9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061410a611f77565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561418f57600080fd5b505af11580156141a3573d6000803e3d6000fd5b50505050506040513d60608110156141ba57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b60006010541480156141fa57506000601254145b801561420857506000601454145b1561421257614246565b6010546011819055506012546013819055506014546015819055506000601081905550600060128190555060006014819055505b565b6000614252613335565b9050600080600080600080600061426889613432565b9650965096509650965096509650600061428b89846134e490919063ffffffff16565b90506142df8a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061437488600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061440987600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061445582614d28565b61446186828686614ecd565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b60006144de613335565b905060008060008060008060006144f489613432565b9650965096509650965096509650600061451789846134e490919063ffffffff16565b905061456b88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061460085600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061469587600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146e182614d28565b6146ed86828686614ecd565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061476a613335565b9050600080600080600080600061478089613432565b965096509650965096509650965060006147a389846134e490919063ffffffff16565b90506147f788600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061488c87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148d882614d28565b6148e486828686614ecd565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614961613335565b9050600080600080600080600061497789613432565b9650965096509650965096509650600061499a89846134e490919063ffffffff16565b90506149ee8a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a8388600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349a90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b1885600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bad87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bf982614d28565b614c0586828686614ecd565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b601154601081905550601354601281905550601554601481905550565b6000614cbf6064614cb1601054856134e490919063ffffffff16565b61336090919063ffffffff16565b9050919050565b6000614cf06064614ce2601254856134e490919063ffffffff16565b61336090919063ffffffff16565b9050919050565b6000614d216064614d13601454856134e490919063ffffffff16565b61336090919063ffffffff16565b9050919050565b6000614d32613335565b90506000614d4982846134e490919063ffffffff16565b9050614d9d81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614ec857614e8483600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614ef483614ee686600d5461349a90919063ffffffff16565b61349a90919063ffffffff16565b600d81905550614f0f82600e546133aa90919063ffffffff16565b600e81905550614f2a81600f546133aa90919063ffffffff16565b600f81905550614f4581600c5461349a90919063ffffffff16565b600c819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122055347a3d9334f34574b9dd05970671c7c54dd34d0c8583f3fe6824272cdab32564736f6c634300060c0033

Deployed Bytecode Sourcemap

25858:19928:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33127:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28615:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29527:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30648:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27160:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28892:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29696:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31675:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28801:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32391:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30017:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26882:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30843:378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30747:88;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32882:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31229:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27218:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27297:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31936:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37641:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17007:90;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27059:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28995:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16452:148;;;;;;;;;;;;;:::i;:::-;;27350:49;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30520:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15809:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33237:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28706:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30243:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17463:293;;;;;;;;;;;;;:::i;:::-;;29201:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26969:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33630:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33371:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33484:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17173:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29376:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33005:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16755:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33127:98;16031:12;:10;:12::i;:::-;16021:22;;:6;;;;;;;;;;:22;;;16013:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33211:6:::1;33201:7;:16;;;;33127:98:::0;:::o;28615:83::-;28652:13;28685:5;28678:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28615:83;:::o;29527:161::-;29602:4;29619:39;29628:12;:10;:12::i;:::-;29642:7;29651:6;29619:8;:39::i;:::-;29676:4;29669:11;;29527:161;;;;:::o;30648:87::-;30690:7;30717:10;;30710:17;;30648:87;:::o;27160:51::-;;;:::o;28892:95::-;28945:7;28972;;28965:14;;28892:95;:::o;29696:313::-;29794:4;29811:36;29821:6;29829:9;29840:6;29811:9;:36::i;:::-;29858:121;29867:6;29875:12;:10;:12::i;:::-;29889:89;29927:6;29889:89;;;;;;;;;;;;;;;;;:11;:19;29901:6;29889:19;;;;;;;;;;;;;;;:33;29909:12;:10;:12::i;:::-;29889:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29858:8;:121::i;:::-;29997:4;29990:11;;29696:313;;;;;:::o;31675:253::-;31741:7;31780;;31769;:18;;31761:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31845:19;31868:10;:8;:10::i;:::-;31845:33;;31896:24;31908:11;31896:7;:11;;:24;;;;:::i;:::-;31889:31;;;31675:253;;;:::o;28801:83::-;28842:5;28867:9;;;;;;;;;;;28860:16;;28801:83;:::o;32391:479::-;16031:12;:10;:12::i;:::-;16021:22;;:6;;;;;;;;;;:22;;;16013:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32473:11:::1;:20;32485:7;32473:20;;;;;;;;;;;;;;;;;;;;;;;;;32465:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32541:9;32536:327;32560:9;:16;;;;32556:1;:20;32536:327;;;32618:7;32602:23;;:9;32612:1;32602:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;32598:254;;;32661:9;32690:1;32671:9;:16;;;;:20;32661:31;;;;;;;;;;;;;;;;;;;;;;;;;32646:9;32656:1;32646:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32730:1;32711:7;:16;32719:7;32711:16;;;;;;;;;;;;;;;:20;;;;32773:5;32750:11;:20;32762:7;32750:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32797:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32831:5;;32598:254;32578:3;;;;;;;32536:327;;;;32391:479:::0;:::o;30017:218::-;30105:4;30122:83;30131:12;:10;:12::i;:::-;30145:7;30154:50;30193:10;30154:11;:25;30166:12;:10;:12::i;:::-;30154:25;;;;;;;;;;;;;;;:34;30180:7;30154:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30122:8;:83::i;:::-;30223:4;30216:11;;30017:218;;;;:::o;26882:26::-;;;;:::o;30843:378::-;30895:14;30912:12;:10;:12::i;:::-;30895:29;;30944:11;:19;30956:6;30944:19;;;;;;;;;;;;;;;;;;;;;;;;;30943:20;30935:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31024:15;31049:19;31060:7;31049:10;:19::i;:::-;31023:45;;;;;;;;31097:28;31117:7;31097;:15;31105:6;31097:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31079:7;:15;31087:6;31079:15;;;;;;;;;;;;;;;:46;;;;31146:20;31158:7;31146;;:11;;:20;;;;:::i;:::-;31136:7;:30;;;;31190:23;31205:7;31190:10;;:14;;:23;;;;:::i;:::-;31177:10;:36;;;;30843:378;;;:::o;30747:88::-;30789:7;30816:11;;30809:18;;30747:88;:::o;32882:111::-;16031:12;:10;:12::i;:::-;16021:22;;:6;;;;;;;;;;:22;;;16013:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32981:4:::1;32951:18;:27;32970:7;32951:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;32882:111:::0;:::o;31229:438::-;31319:7;31358;;31347;:18;;31339:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31417:17;31412:248;;31452:15;31477:19;31488:7;31477:10;:19::i;:::-;31451:45;;;;;;;;31518:7;31511:14;;;;;31412:248;31560:23;31592:19;31603:7;31592:10;:19::i;:::-;31558:53;;;;;;;;31633:15;31626:22;;;31229:438;;;;;:::o;27218:38::-;;;:::o;27297:40::-;;;;;;;;;;;;;:::o;31936:447::-;16031:12;:10;:12::i;:::-;16021:22;;:6;;;;;;;;;;:22;;;16013:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32133:11:::1;:20;32145:7;32133:20;;;;;;;;;;;;;;;;;;;;;;;;;32132:21;32124:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32218:1;32199:7;:16;32207:7;32199:16;;;;;;;;;;;;;;;;:20;32196:108;;;32255:37;32275:7;:16;32283:7;32275:16;;;;;;;;;;;;;;;;32255:19;:37::i;:::-;32236:7;:16;32244:7;32236:16;;;;;;;;;;;;;;;:56;;;;32196:108;32337:4;32314:11;:20;32326:7;32314:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;32352:9;32367:7;32352:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31936:447:::0;:::o;37641:123::-;37705:4;37729:18;:27;37748:7;37729:27;;;;;;;;;;;;;;;;;;;;;;;;;37722:34;;37641:123;;;:::o;17007:90::-;17053:7;17080:9;;17073:16;;17007:90;:::o;27059:32::-;;;;:::o;28995:198::-;29061:7;29085:11;:20;29097:7;29085:20;;;;;;;;;;;;;;;;;;;;;;;;;29081:49;;;29114:7;:16;29122:7;29114:16;;;;;;;;;;;;;;;;29107:23;;;;29081:49;29148:37;29168:7;:16;29176:7;29168:16;;;;;;;;;;;;;;;;29148:19;:37::i;:::-;29141:44;;28995:198;;;;:::o;16452:148::-;16031:12;:10;:12::i;:::-;16021:22;;:6;;;;;;;;;;:22;;;16013:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16559:1:::1;16522:40;;16543:6;::::0;::::1;;;;;;;;16522:40;;;;;;;;;;;;16590:1;16573:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16452:148::o:0;27350:49::-;;;;:::o;30520:120::-;30588:4;30612:11;:20;30624:7;30612:20;;;;;;;;;;;;;;;;;;;;;;;;;30605:27;;30520:120;;;:::o;15809:79::-;15847:7;15874:6;;;;;;;;;;;15867:13;;15809:79;:::o;33237:122::-;16031:12;:10;:12::i;:::-;16021:22;;:6;;;;;;;;;;:22;;;16013:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33339:12:::1;33323:13;:28;;;;33237:122:::0;:::o;28706:87::-;28745:13;28778:7;28771:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28706:87;:::o;30243:269::-;30336:4;30353:129;30362:12;:10;:12::i;:::-;30376:7;30385:96;30424:15;30385:96;;;;;;;;;;;;;;;;;:11;:25;30397:12;:10;:12::i;:::-;30385:25;;;;;;;;;;;;;;;:34;30411:7;30385:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30353:8;:129::i;:::-;30500:4;30493:11;;30243:269;;;;:::o;17463:293::-;17533:10;17515:28;;:14;;;;;;;;;;;:28;;;17507:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17608:9;;17602:3;:15;17594:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17699:14;;;;;;;;;;;17670:44;;17691:6;;;;;;;;;;17670:44;;;;;;;;;;;;17734:14;;;;;;;;;;;17725:6;;:23;;;;;;;;;;;;;;;;;;17463:293::o;29201:167::-;29279:4;29296:42;29306:12;:10;:12::i;:::-;29320:9;29331:6;29296:9;:42::i;:::-;29356:4;29349:11;;29201:167;;;;:::o;26969:27::-;;;;:::o;33630:171::-;16031:12;:10;:12::i;:::-;16021:22;;:6;;;;;;;;;;:22;;;16013:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33731:8:::1;33707:21;;:32;;;;;;;;;;;;;;;;;;33755:38;33784:8;33755:38;;;;;;;;;;;;;;;;;;;;33630:171:::0;:::o;33371:102::-;16031:12;:10;:12::i;:::-;16021:22;;:6;;;;;;;;;;:22;;;16013:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33458:7:::1;33447:8;:18;;;;33371:102:::0;:::o;33484:138::-;16031:12;:10;:12::i;:::-;16021:22;;:6;;;;;;;;;;:22;;;16013:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33578:36:::1;33608:5;33578:25;33590:12;33578:7;;:11;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;33563:12;:51;;;;33484:138:::0;:::o;17173:214::-;16031:12;:10;:12::i;:::-;16021:22;;:6;;;;;;;;;;:22;;;16013:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17254:6:::1;::::0;::::1;;;;;;;;17237:14;;:23;;;;;;;;;;;;;;;;;;17288:1;17271:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17319:4;17313:3;:10;17301:9;:22;;;;17376:1;17339:40;;17360:6;::::0;::::1;;;;;;;;17339:40;;;;;;;;;;;;17173:214:::0;:::o;29376:143::-;29457:7;29484:11;:18;29496:5;29484:18;;;;;;;;;;;;;;;:27;29503:7;29484:27;;;;;;;;;;;;;;;;29477:34;;29376:143;;;;:::o;33005:110::-;16031:12;:10;:12::i;:::-;16021:22;;:6;;;;;;;;;;:22;;;16013:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33102:5:::1;33072:18;:27;33091:7;33072:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;33005:110:::0;:::o;16755:244::-;16031:12;:10;:12::i;:::-;16021:22;;:6;;;;;;;;;;:22;;;16013:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16864:1:::1;16844:22;;:8;:22;;;;16836:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16954:8;16925:38;;16946:6;::::0;::::1;;;;;;;;16925:38;;;;;;;;;;;;16983:8;16974:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16755:244:::0;:::o;8217:106::-;8270:15;8305:10;8298:17;;8217:106;:::o;37772:337::-;37882:1;37865:19;;:5;:19;;;;37857:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37963:1;37944:21;;:7;:21;;;;37936:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38047:6;38017:11;:18;38029:5;38017:18;;;;;;;;;;;;;;;:27;38036:7;38017:27;;;;;;;;;;;;;;;:36;;;;38085:7;38069:32;;38078:5;38069:32;;;38094:6;38069:32;;;;;;;;;;;;;;;;;;37772:337;;;:::o;38117:1813::-;38255:1;38239:18;;:4;:18;;;;38231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38332:1;38318:16;;:2;:16;;;;38310:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38402:1;38393:6;:10;38385:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38471:7;:5;:7::i;:::-;38463:15;;:4;:15;;;;:32;;;;;38488:7;:5;:7::i;:::-;38482:13;;:2;:13;;;;38463:32;38460:125;;;38528:12;;38518:6;:22;;38510:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38460:125;38880:28;38911:24;38929:4;38911:9;:24::i;:::-;38880:55;;38983:12;;38959:20;:36;38956:112;;39044:12;;39021:35;;38956:112;39088:24;39139:29;;39115:20;:53;;39088:80;;39197:19;:53;;;;;39234:16;;;;;;;;;;;39233:17;39197:53;:91;;;;;39275:13;39267:21;;:4;:21;;;;39197:91;:129;;;;;39305:21;;;;;;;;;;;39197:129;39179:318;;;39376:29;;39353:52;;39449:36;39464:20;39449:14;:36::i;:::-;39179:318;39578:12;39593:4;39578:19;;39705:18;:24;39724:4;39705:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;39733:18;:22;39752:2;39733:22;;;;;;;;;;;;;;;;;;;;;;;;;39705:50;39702:96;;;39781:5;39771:15;;39702:96;39884:38;39899:4;39904:2;39907:6;39914:7;39884:14;:38::i;:::-;38117:1813;;;;;;:::o;4627:192::-;4713:7;4746:1;4741;:6;;4749:12;4733:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4773:9;4789:1;4785;:5;4773:17;;4810:1;4803:8;;;4627:192;;;;;:::o;35583:163::-;35624:7;35645:15;35662;35681:19;:17;:19::i;:::-;35644:56;;;;35718:20;35730:7;35718;:11;;:20;;;;:::i;:::-;35711:27;;;;35583:163;:::o;6025:132::-;6083:7;6110:39;6114:1;6117;6110:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6103:46;;6025:132;;;;:::o;3724:181::-;3782:7;3802:9;3818:1;3814;:5;3802:17;;3843:1;3838;:6;;3830:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3896:1;3889:8;;;3724:181;;;;:::o;34189:457::-;34248:7;34257;34266;34275;34284;34293;34302;34323:23;34348:12;34362:13;34377:18;34399:20;34411:7;34399:11;:20::i;:::-;34322:97;;;;;;;;34431:15;34448:23;34473:12;34489:57;34501:7;34510:4;34516:5;34523:10;34535;:8;:10::i;:::-;34489:11;:57::i;:::-;34430:116;;;;;;34565:7;34574:15;34591:4;34597:15;34614:4;34620:5;34627:10;34557:81;;;;;;;;;;;;;;;;;;;;;34189:457;;;;;;;;;:::o;4188:136::-;4246:7;4273:43;4277:1;4280;4273:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4266:50;;4188:136;;;;:::o;5078:471::-;5136:7;5386:1;5381;:6;5377:47;;;5411:1;5404:8;;;;5377:47;5436:9;5452:1;5448;:5;5436:17;;5481:1;5476;5472;:5;;;;;;:10;5464:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5540:1;5533:8;;;5078:471;;;;;:::o;39938:985::-;27827:4;27808:16;;:23;;;;;;;;;;;;;;;;;;40074:12:::1;40089:27;40114:1;40089:20;:24;;:27;;;;:::i;:::-;40074:42;;40127:17;40147:30;40172:4;40147:20;:24;;:30;;;;:::i;:::-;40127:50;;40455:22;40480:21;40455:46;;40546:22;40563:4;40546:16;:22::i;:::-;40699:18;40720:41;40746:14;40720:21;:25;;:41;;;;:::i;:::-;40699:62;;40811:35;40824:9;40835:10;40811:12;:35::i;:::-;40872:43;40887:4;40893:10;40905:9;40872:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27842:1;;;;27873:5:::0;27854:16;;:24;;;;;;;;;;;;;;;;;;39938:985;:::o;42122:834::-;42233:7;42229:40;;42255:14;:12;:14::i;:::-;42229:40;42294:11;:19;42306:6;42294:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;42318:11;:22;42330:9;42318:22;;;;;;;;;;;;;;;;;;;;;;;;;42317:23;42294:46;42290:597;;;42357:48;42379:6;42387:9;42398:6;42357:21;:48::i;:::-;42290:597;;;42428:11;:19;42440:6;42428:19;;;;;;;;;;;;;;;;;;;;;;;;;42427:20;:46;;;;;42451:11;:22;42463:9;42451:22;;;;;;;;;;;;;;;;;;;;;;;;;42427:46;42423:464;;;42490:46;42510:6;42518:9;42529:6;42490:19;:46::i;:::-;42423:464;;;42559:11;:19;42571:6;42559:19;;;;;;;;;;;;;;;;;;;;;;;;;42558:20;:47;;;;;42583:11;:22;42595:9;42583:22;;;;;;;;;;;;;;;;;;;;;;;;;42582:23;42558:47;42554:333;;;42622:44;42640:6;42648:9;42659:6;42622:17;:44::i;:::-;42554:333;;;42688:11;:19;42700:6;42688:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;42711:11;:22;42723:9;42711:22;;;;;;;;;;;;;;;;;;;;;;;;;42688:45;42684:203;;;42750:48;42772:6;42780:9;42791:6;42750:21;:48::i;:::-;42684:203;;;42831:44;42849:6;42857:9;42868:6;42831:17;:44::i;:::-;42684:203;42554:333;42423:464;42290:597;42911:7;42907:41;;42933:15;:13;:15::i;:::-;42907:41;42122:834;;;;:::o;35754:561::-;35804:7;35813;35833:15;35851:7;;35833:25;;35869:15;35887:7;;35869:25;;35916:9;35911:289;35935:9;:16;;;;35931:1;:20;35911:289;;;36001:7;35977;:21;35985:9;35995:1;35985:12;;;;;;;;;;;;;;;;;;;;;;;;;35977:21;;;;;;;;;;;;;;;;:31;:66;;;;36036:7;36012;:21;36020:9;36030:1;36020:12;;;;;;;;;;;;;;;;;;;;;;;;;36012:21;;;;;;;;;;;;;;;;:31;35977:66;35973:97;;;36053:7;;36062;;36045:25;;;;;;;;;35973:97;36095:34;36107:7;:21;36115:9;36125:1;36115:12;;;;;;;;;;;;;;;;;;;;;;;;;36107:21;;;;;;;;;;;;;;;;36095:7;:11;;:34;;;;:::i;:::-;36085:44;;36154:34;36166:7;:21;36174:9;36184:1;36174:12;;;;;;;;;;;;;;;;;;;;;;;;;36166:21;;;;;;;;;;;;;;;;36154:7;:11;;:34;;;;:::i;:::-;36144:44;;35953:3;;;;;;;35911:289;;;;36224:20;36236:7;;36224;;:11;;:20;;;;:::i;:::-;36214:7;:30;36210:61;;;36254:7;;36263;;36246:25;;;;;;;;36210:61;36290:7;36299;36282:25;;;;;;35754:561;;;:::o;6653:278::-;6739:7;6771:1;6767;:5;6774:12;6759:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6798:9;6814:1;6810;:5;;;;;;6798:17;;6922:1;6915:8;;;6653:278;;;;;:::o;34654:409::-;34714:7;34723;34732;34741;34761:12;34776:24;34792:7;34776:15;:24::i;:::-;34761:39;;34811:13;34827:25;34844:7;34827:16;:25::i;:::-;34811:41;;34863:18;34884:30;34906:7;34884:21;:30::i;:::-;34863:51;;34925:23;34951:44;34984:10;34951:28;34973:5;34951:17;34963:4;34951:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;34925:70;;35014:15;35031:4;35037:5;35044:10;35006:49;;;;;;;;;;;;34654:409;;;;;:::o;35071:504::-;35201:7;35210;35219;35239:15;35257:24;35269:11;35257:7;:11;;:24;;;;:::i;:::-;35239:42;;35292:12;35307:21;35316:11;35307:4;:8;;:21;;;;:::i;:::-;35292:36;;35339:13;35355:22;35365:11;35355:5;:9;;:22;;;;:::i;:::-;35339:38;;35388:18;35409:27;35424:11;35409:10;:14;;:27;;;;:::i;:::-;35388:48;;35447:23;35473:44;35506:10;35473:28;35495:5;35473:17;35485:4;35473:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;35447:70;;35536:7;35545:15;35562:4;35528:39;;;;;;;;;;;35071:504;;;;;;;;;:::o;40931:589::-;41057:21;41095:1;41081:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41057:40;;41126:4;41108;41113:1;41108:7;;;;;;;;;;;;;:23;;;;;;;;;;;41152:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41142:4;41147:1;41142:7;;;;;;;;;;;;;:32;;;;;;;;;;;41187:62;41204:4;41219:15;41237:11;41187:8;:62::i;:::-;41288:15;:66;;;41369:11;41395:1;41439:4;41466;41486:15;41288:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40931:589;;:::o;41528:513::-;41676:62;41693:4;41708:15;41726:11;41676:8;:62::i;:::-;41781:15;:31;;;41820:9;41853:4;41873:11;41899:1;41942;41985:7;:5;:7::i;:::-;42007:15;41781:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41528:513;;:::o;37126:328::-;37183:1;37172:7;;:12;:29;;;;;37200:1;37188:8;;:13;37172:29;:51;;;;;37222:1;37205:13;;:18;37172:51;37169:63;;;37225:7;;37169:63;37270:7;;37252:15;:25;;;;37307:8;;37288:16;:27;;;;37350:13;;37326:21;:37;;;;37394:1;37384:7;:11;;;;37417:1;37406:8;:12;;;;37445:1;37429:13;:17;;;;37126:328;:::o;44315:689::-;44417:19;44440:10;:8;:10::i;:::-;44417:33;;44462:15;44479:23;44504:12;44518:23;44543:12;44557:13;44572:18;44594:19;44605:7;44594:10;:19::i;:::-;44461:152;;;;;;;;;;;;;;44624:13;44641:22;44651:11;44641:5;:9;;:22;;;;:::i;:::-;44624:39;;44692:28;44712:7;44692;:15;44700:6;44692:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44674:7;:15;44682:6;44674:15;;;;;;;;;;;;;;;:46;;;;44749:28;44769:7;44749;:15;44757:6;44749:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44731:7;:15;44739:6;44731:15;;;;;;;;;;;;;;;:46;;;;44809:39;44832:15;44809:7;:18;44817:9;44809:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44788:7;:18;44796:9;44788:18;;;;;;;;;;;;;;;:60;;;;44862:26;44877:10;44862:14;:26::i;:::-;44899:37;44911:4;44917:5;44924:4;44930:5;44899:11;:37::i;:::-;44969:9;44952:44;;44961:6;44952:44;;;44980:15;44952:44;;;;;;;;;;;;;;;;;;44315:689;;;;;;;;;;;;:::o;43598:709::-;43698:19;43721:10;:8;:10::i;:::-;43698:33;;43743:15;43760:23;43785:12;43799:23;43824:12;43838:13;43853:18;43875:19;43886:7;43875:10;:19::i;:::-;43742:152;;;;;;;;;;;;;;43905:13;43922:22;43932:11;43922:5;:9;;:22;;;;:::i;:::-;43905:39;;43973:28;43993:7;43973;:15;43981:6;43973:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43955:7;:15;43963:6;43955:15;;;;;;;;;;;;;;;:46;;;;44033:39;44056:15;44033:7;:18;44041:9;44033:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44012:7;:18;44020:9;44012:18;;;;;;;;;;;;;;;:60;;;;44104:39;44127:15;44104:7;:18;44112:9;44104:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44083:7;:18;44091:9;44083:18;;;;;;;;;;;;;;;:60;;;;44165:26;44180:10;44165:14;:26::i;:::-;44202:37;44214:4;44220:5;44227:4;44233:5;44202:11;:37::i;:::-;44272:9;44255:44;;44264:6;44255:44;;;44283:15;44255:44;;;;;;;;;;;;;;;;;;43598:709;;;;;;;;;;;;:::o;42964:626::-;43062:19;43085:10;:8;:10::i;:::-;43062:33;;43107:15;43124:23;43149:12;43163:23;43188:12;43202:13;43217:18;43239:19;43250:7;43239:10;:19::i;:::-;43106:152;;;;;;;;;;;;;;43270:13;43287:22;43297:11;43287:5;:9;;:22;;;;:::i;:::-;43270:39;;43338:28;43358:7;43338;:15;43346:6;43338:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43320:7;:15;43328:6;43320:15;;;;;;;;;;;;;;;:46;;;;43398:39;43421:15;43398:7;:18;43406:9;43398:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43377:7;:18;43385:9;43377:18;;;;;;;;;;;;;;;:60;;;;43448:26;43463:10;43448:14;:26::i;:::-;43485:37;43497:4;43503:5;43510:4;43516:5;43485:11;:37::i;:::-;43555:9;43538:44;;43547:6;43538:44;;;43566:15;43538:44;;;;;;;;;;;;;;;;;;42964:626;;;;;;;;;;;;:::o;45016:765::-;45118:19;45141:10;:8;:10::i;:::-;45118:33;;45163:15;45180:23;45205:12;45219:23;45244:12;45258:13;45273:18;45295:19;45306:7;45295:10;:19::i;:::-;45162:152;;;;;;;;;;;;;;45325:13;45342:22;45352:11;45342:5;:9;;:22;;;;:::i;:::-;45325:39;;45393:28;45413:7;45393;:15;45401:6;45393:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45375:7;:15;45383:6;45375:15;;;;;;;;;;;;;;;:46;;;;45450:28;45470:7;45450;:15;45458:6;45450:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45432:7;:15;45440:6;45432:15;;;;;;;;;;;;;;;:46;;;;45510:39;45533:15;45510:7;:18;45518:9;45510:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45489:7;:18;45497:9;45489:18;;;;;;;;;;;;;;;:60;;;;45581:39;45604:15;45581:7;:18;45589:9;45581:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45560:7;:18;45568:9;45560:18;;;;;;;;;;;;;;;:60;;;;45639:26;45654:10;45639:14;:26::i;:::-;45676:37;45688:4;45694:5;45701:4;45707:5;45676:11;:37::i;:::-;45746:9;45729:44;;45738:6;45729:44;;;45757:15;45729:44;;;;;;;;;;;;;;;;;;45016:765;;;;;;;;;;;;:::o;37466:163::-;37520:15;;37510:7;:25;;;;37557:16;;37546:8;:27;;;;37600:21;;37584:13;:37;;;;37466:163::o;36694:130::-;36758:7;36785:31;36810:5;36785:20;36797:7;;36785;:11;;:20;;;;:::i;:::-;:24;;:31;;;;:::i;:::-;36778:38;;36694:130;;;:::o;36832:132::-;36897:7;36924:32;36950:5;36924:21;36936:8;;36924:7;:11;;:21;;;;:::i;:::-;:25;;:32;;;;:::i;:::-;36917:39;;36832:132;;;:::o;36972:142::-;37042:7;37069:37;37100:5;37069:26;37081:13;;37069:7;:11;;:26;;;;:::i;:::-;:30;;:37;;;;:::i;:::-;37062:44;;36972:142;;;:::o;36327:355::-;36390:19;36413:10;:8;:10::i;:::-;36390:33;;36434:18;36455:27;36470:11;36455:10;:14;;:27;;;;:::i;:::-;36434:48;;36518:38;36545:10;36518:7;:22;36534:4;36518:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;36493:7;:22;36509:4;36493:22;;;;;;;;;;;;;;;:63;;;;36570:11;:26;36590:4;36570:26;;;;;;;;;;;;;;;;;;;;;;;;;36567:107;;;36636:38;36663:10;36636:7;:22;36652:4;36636:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;36611:7;:22;36627:4;36611:22;;;;;;;;;;;;;;;:63;;;;36567:107;36327:355;;;:::o;33907:274::-;34015:28;34037:5;34015:17;34027:4;34015:7;;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;34005:7;:38;;;;34067:20;34082:4;34067:10;;:14;;:20;;;;:::i;:::-;34054:10;:33;;;;34112:22;34128:5;34112:11;;:15;;:22;;;;:::i;:::-;34098:11;:36;;;;34155:18;34167:5;34155:7;;:11;;:18;;;;:::i;:::-;34145:7;:28;;;;33907:274;;;;:::o

Swarm Source

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