ETH Price: $3,487.63 (+0.76%)
Gas: 4 Gwei

Token

BelleDelphineInu (BelleDelphineInu)
 

Overview

Max Total Supply

1,000,000,000 BelleDelphineInu

Holders

26

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,507,402.857584252808630969 BelleDelphineInu

Value
$0.00
0xf2E5e038Ad8190DE889DB9f7ac046C030f8c4274
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:
BelleDelphineInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.6.12;

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

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

    interface IERC20 {
        /**
        * @dev Returns the amount of tokens in existence.
        */
        function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

    library SafeMath {
        /**
        * @dev Returns the addition of two unsigned integers, reverting on
        * overflow.
        *
        * Counterpart to Solidity's `+` operator.
        *
        * Requirements:
        *
        * - Addition cannot overflow.
        */
        function add(uint256 a, uint256 b) internal pure returns (uint256) {
            uint256 c = a + b;
            require(c >= a, "SafeMath: addition overflow");

            return c;
        }

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

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

            return c;
        }

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

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

            return c;
        }

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

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

            return c;
        }

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

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

    library Address {
        /**
        * @dev Returns true if `account` is a contract.
        *
        * [IMPORTANT]
        * ====
        * It is unsafe to assume that an address for which this function returns
        * false is an externally-owned account (EOA) and not a contract.
        *
        * Among others, `isContract` will return false for the following
        * types of addresses:
        *
        *  - an externally-owned account
        *  - a contract in construction
        *  - an address where a contract will be created
        *  - an address where a contract lived, but was destroyed
        * ====
        */
        function isContract(address account) internal view returns (bool) {
            // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
            // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
            // for accounts without code, i.e. `keccak256('')`
            bytes32 codehash;
            bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
            // solhint-disable-next-line no-inline-assembly
            assembly { codehash := extcodehash(account) }
            return (codehash != accountHash && codehash != 0x0);
        }

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

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

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

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

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

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

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

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

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

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

        event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

        /**
        * @dev Initializes the contract setting the deployer as the initial owner.
        */
        constructor () internal {
            address msgSender = _msgSender();
            _owner = msgSender;
            emit OwnershipTransferred(address(0), msgSender);
        }

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

        /**
        * @dev Throws if called by any account other than the owner.
        */
        modifier onlyOwner() {
            require(_owner == _msgSender(), "Ownable: caller is not the owner");
            _;
        }

        /**
        * @dev Leaves the contract without owner. It will not be possible to call
        * `onlyOwner` functions anymore. Can only be called by the current owner.
        *
        * NOTE: Renouncing ownership will leave the contract without an owner,
        * thereby removing any functionality that is only available to the owner.
        */
        function renounceOwnership() public virtual onlyOwner {
            emit OwnershipTransferred(_owner, address(0));
            _owner = address(0);
        }

        /**
        * @dev Transfers ownership of the contract to a new account (`newOwner`).
        * Can only be called by the current owner.
        */
        function transferOwnership(address newOwner) public virtual onlyOwner {
            require(newOwner != address(0), "Ownable: new owner is the zero address");
            emit OwnershipTransferred(_owner, newOwner);
            _owner = newOwner;
        }

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

    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        function initialize(address, address) external;
    }

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

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

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

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

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

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

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

        mapping (address => bool) private _isExcludedFromFee;

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

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

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

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

        address payable public _devWalletAddress;
        address payable public _marketingWalletAddress;


        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = true;

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

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

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

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

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

            _rOwned[_msgSender()] = _rTotal;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            _previousTaxFee = _taxFee;
            _previousTeamFee = _teamFee;

            _taxFee = 0;
            _teamFee = 0;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        function sendETHToTeam(uint256 amount) private {
            _devWalletAddress.transfer(amount.div(5));
            _marketingWalletAddress.transfer(amount.div(10).mul(8));
        }

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

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

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

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

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

            if(!takeFee)
                restoreAllFee();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_devWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"name":"_setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"name":"_setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526b033b2e3c9fd0803ce8000000600019816200001c57fe5b0660001903600b556001600d55600e8055600d54600f55600e546010556000601260146101000a81548160ff0219169083151502179055506001601260156101000a81548160ff0219169083151502179055506a108b2a2c280290940000006013556a108b2a2c280290940000006014553480156200009a57600080fd5b50604051620060583803806200605883398181016040526040811015620000c057600080fd5b8101908080519060200190929190805190602001909291905050506000620000ed620005fc60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b546003600062000224620005fc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c257600080fd5b505afa158015620002d7573d6000803e3d6000fd5b505050506040513d6020811015620002ee57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036257600080fd5b505afa15801562000377573d6000803e3d6000fd5b505050506040513d60208110156200038e57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200040957600080fd5b505af11580156200041e573d6000803e3d6000fd5b505050506040513d60208110156200043557600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620004c96200060460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000582620005fc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6b033b2e3c9fd0803ce80000006040518082815260200191505060405180910390a35050506200062d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60805160601c60a05160601c6159e86200067060003980611bb15280613a985280613bfb5250806110cb52806140575280614143528061416a52506159e86000f3fe60806040526004361061026b5760003560e01c8063602bc62b11610144578063b030b34a116100b6578063f2cc0c181161007a578063f2cc0c1814610df8578063f2fde38b14610e49578063f429389014610e9a578063f7a9159114610eb1578063f815a84214610edc578063f84354f114610f0757610272565b8063b030b34a14610c3d578063b425bac314610c8e578063cba0e99614610ccf578063dd62ed3e14610d36578063e01af92c14610dbb57610272565b806395d89b411161010857806395d89b4114610a085780639e6c752914610a98578063a457c2d714610ad3578063a5e8c95414610b44578063a9059cbb14610b6f578063af9549e014610be057610272565b8063602bc62b146108f35780636ddd17131461091e57806370a082311461094b578063715018a6146109b05780638da5cb5b146109c757610272565b80632d838119116101dd5780634144d9e4116101a15780634144d9e41461075d5780634549b0391461079e57806349bd5a5e146107f957806351bc3c851461083a5780635342acb4146108515780635880b873146108b857610272565b80632d838119146106095780632fbff03014610658578063313ce5671461068357806339509351146106b15780633bd5d1731461072257610272565b806318160ddd1161022f57806318160ddd146104355780631bbae6e0146104605780631d7ef8791461049b5780631ff53b60146104ec57806323b872dd1461053d57806328667162146105ce57610272565b806306fdde0314610277578063095ea7b3146103075780630a1f8ea81461037857806313114a9d146103c95780631694505e146103f457610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610f58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102cc5780820151818401526020810190506102b1565b50505050905090810190601f1680156102f95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031357600080fd5b506103606004803603604081101561032a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f95565b60405180821515815260200191505060405180910390f35b34801561038457600080fd5b506103c76004803603602081101561039b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fb3565b005b3480156103d557600080fd5b506103de6110bf565b6040518082815260200191505060405180910390f35b34801561040057600080fd5b506104096110c9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561044157600080fd5b5061044a6110ed565b6040518082815260200191505060405180910390f35b34801561046c57600080fd5b506104996004803603602081101561048357600080fd5b8101908080359060200190929190505050611101565b005b3480156104a757600080fd5b506104ea600480360360208110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d3565b005b3480156104f857600080fd5b5061053b6004803603602081101561050f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114b2565b005b34801561054957600080fd5b506105b66004803603606081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115be565b60405180821515815260200191505060405180910390f35b3480156105da57600080fd5b50610607600480360360208110156105f157600080fd5b8101908080359060200190929190505050611697565b005b34801561061557600080fd5b506106426004803603602081101561062c57600080fd5b81019080803590602001909291905050506117ed565b6040518082815260200191505060405180910390f35b34801561066457600080fd5b5061066d611871565b6040518082815260200191505060405180910390f35b34801561068f57600080fd5b5061069861187b565b604051808260ff16815260200191505060405180910390f35b3480156106bd57600080fd5b5061070a600480360360408110156106d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611884565b60405180821515815260200191505060405180910390f35b34801561072e57600080fd5b5061075b6004803603602081101561074557600080fd5b8101908080359060200190929190505050611937565b005b34801561076957600080fd5b50610772611ac8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107aa57600080fd5b506107e3600480360360408110156107c157600080fd5b8101908080359060200190929190803515159060200190929190505050611aee565b6040518082815260200191505060405180910390f35b34801561080557600080fd5b5061080e611baf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084657600080fd5b5061084f611bd3565b005b34801561085d57600080fd5b506108a06004803603602081101561087457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cb4565b60405180821515815260200191505060405180910390f35b3480156108c457600080fd5b506108f1600480360360208110156108db57600080fd5b8101908080359060200190929190505050611d0a565b005b3480156108ff57600080fd5b50610908611e60565b6040518082815260200191505060405180910390f35b34801561092a57600080fd5b50610933611e6a565b60405180821515815260200191505060405180910390f35b34801561095757600080fd5b5061099a6004803603602081101561096e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e7d565b6040518082815260200191505060405180910390f35b3480156109bc57600080fd5b506109c5611f68565b005b3480156109d357600080fd5b506109dc6120ee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1457600080fd5b50610a1d612117565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5d578082015181840152602081019050610a42565b50505050905090810190601f168015610a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa457600080fd5b50610ad160048036036020811015610abb57600080fd5b8101908080359060200190929190505050612154565b005b348015610adf57600080fd5b50610b2c60048036036040811015610af657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612226565b60405180821515815260200191505060405180910390f35b348015610b5057600080fd5b50610b596122f3565b6040518082815260200191505060405180910390f35b348015610b7b57600080fd5b50610bc860048036036040811015610b9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122fd565b60405180821515815260200191505060405180910390f35b348015610bec57600080fd5b50610c3b60048036036040811015610c0357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061231b565b005b348015610c4957600080fd5b50610c8c60048036036020811015610c6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061243e565b005b348015610c9a57600080fd5b50610ca3612783565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cdb57600080fd5b50610d1e60048036036020811015610cf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127a9565b60405180821515815260200191505060405180910390f35b348015610d4257600080fd5b50610da560048036036040811015610d5957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127ff565b6040518082815260200191505060405180910390f35b348015610dc757600080fd5b50610df660048036036020811015610dde57600080fd5b81019080803515159060200190929190505050612886565b005b348015610e0457600080fd5b50610e4760048036036020811015610e1b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061296b565b005b348015610e5557600080fd5b50610e9860048036036020811015610e6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d1e565b005b348015610ea657600080fd5b50610eaf612f29565b005b348015610ebd57600080fd5b50610ec6613002565b6040518082815260200191505060405180910390f35b348015610ee857600080fd5b50610ef161300c565b6040518082815260200191505060405180910390f35b348015610f1357600080fd5b50610f5660048036036020811015610f2a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613014565b005b60606040518060400160405280601081526020017f42656c6c6544656c7068696e65496e7500000000000000000000000000000000815250905090565b6000610fa9610fa261339e565b84846133a6565b6001905092915050565b610fbb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006b033b2e3c9fd0803ce8000000905090565b61110961339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b6111db61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158846022913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114ba61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006115cb84848461359d565b61168c846115d761339e565b611687856040518060600160405280602881526020016158a660289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061163d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b600190509392505050565b61169f61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611771575060198111155b6117e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f7465616d4665652073686f756c6420626520696e2031202d203235000000000081525060200191505060405180910390fd5b80600e8190555050565b6000600b5482111561184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806157a7602a913960400191505060405180910390fd5b6000611854613df7565b90506118698184613e2290919063ffffffff16565b915050919050565b6000600d54905090565b60006012905090565b600061192d61189161339e565b8461192885600560006118a261339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b6133a6565b6001905092915050565b600061194161339e565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615962602c913960400191505060405180910390fd5b60006119f183613ef4565b50505050509050611a4a81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611aa281600b54613f5c90919063ffffffff16565b600b81905550611abd83600c54613e6c90919063ffffffff16565b600c81905550505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006b033b2e3c9fd0803ce8000000831115611b72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611b92576000611b8284613ef4565b5050505050905080915050611ba9565b6000611b9d84613ef4565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611bdb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611ca630611e7d565b9050611cb181613fa6565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d1261339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611de4575060198111155b611e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20323500000000000081525060200191505060405180910390fd5b80600d8190555050565b6000600254905090565b601260159054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f1857600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611f63565b611f60600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b90505b919050565b611f7061339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280601081526020017f42656c6c6544656c7068696e65496e7500000000000000000000000000000000815250905090565b61215c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b60006122e961223361339e565b846122e48560405180606001604052806025815260200161598e602591396005600061225d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b6001905092915050565b6000600e54905090565b600061231161230a61339e565b848461359d565b6001905092915050565b61232361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61244661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a8054905081101561277f578173ffffffffffffffffffffffffffffffffffffffff16600a82815481106125f957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561277257600a6001600a80549050038154811061265557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061268d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061273857fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561277f565b80806001019150506125c8565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61288e61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461294e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260156101000a81548160ff02191690831515021790555050565b61297361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159406022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612c6057612c1c600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612d2661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612de6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157d16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612f3161339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ff1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612fff8161428a565b50565b6000601354905090565b600047905090565b61301c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661319b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e74206973206e6f74206578636c7564656400000000000000000081525060200191505060405180910390fd5b60005b60088054905081101561339a578173ffffffffffffffffffffffffffffffffffffffff16600882815481106131cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561338d5760086001600880549050038154811061322b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061326357fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061335357fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561339a565b808060010191505061319e565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561342c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061591c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157f76022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613623576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158f76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806157846023913960400191505060405180910390fd5b60008111613702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158ce6029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b61394a6120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156139b857506139886120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613a1957601354811115613a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061583b6028913960400191505060405180910390fd5b5b613a216120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613a8f5750613a5f6120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613ae757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613b21575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613b92576000613b3183611e7d565b90506014548282011115613b90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158196022913960400191505060405180910390fd5b505b6000613b9d30611e7d565b90506013548110613bae5760135490505b600069017b7883c069166000008210159050601260149054906101000a900460ff16158015613be95750601260159054906101000a900460ff165b8015613bf25750805b8015613c4a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613c7257613c5882613fa6565b60004790506000811115613c7057613c6f4761428a565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613d195750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d2357600090505b613d2f86868684614398565b505050505050565b6000838311158290613de4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613da9578082015181840152602081019050613d8e565b50505050905090810190601f168015613dd65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613e046146a9565b91509150613e1b8183613e2290919063ffffffff16565b9250505090565b6000613e6483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614962565b905092915050565b600080828401905083811015613eea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613f118a600d54600e54614a28565b9250925092506000613f21613df7565b90506000806000613f348e878787614abe565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613f9e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d37565b905092915050565b6001601260146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613fdb57600080fd5b5060405190808252806020026020018201604052801561400a5781602001602082028036833780820191505090505b509050308160008151811061401b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156140bb57600080fd5b505afa1580156140cf573d6000803e3d6000fd5b505050506040513d60208110156140e557600080fd5b81019080805190602001909291905050508160018151811061410357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614168307f0000000000000000000000000000000000000000000000000000000000000000846133a6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561422a57808201518184015260208101905061420f565b505050509050019650505050505050600060405180830381600087803b15801561425357600080fd5b505af1158015614267573d6000803e3d6000fd5b50505050506000601260146101000a81548160ff02191690831515021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6142da600584613e2290919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614305573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc614369600861435b600a86613e2290919063ffffffff16565b614b4790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614394573d6000803e3d6000fd5b5050565b806143a6576143a5614bcd565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156144495750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561445e57614459848484614c10565b614695565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145015750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561451657614511848484614e70565b614694565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145ba5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156145cf576145ca8484846150d0565b614693565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156146715750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156146865761468184848461529b565b614692565b6146918484846150d0565b5b5b5b5b806146a3576146a2615590565b5b50505050565b6000806000600b54905060006b033b2e3c9fd0803ce8000000905060005b600880549050811015614911578260036000600884815481106146e657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806147cd575081600460006008848154811061476557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156147ee57600b546b033b2e3c9fd0803ce80000009450945050505061495e565b614877600360006008848154811061480257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613f5c90919063ffffffff16565b9250614902600460006008848154811061488d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613f5c90919063ffffffff16565b915080806001019150506146c7565b506149336b033b2e3c9fd0803ce8000000600b54613e2290919063ffffffff16565b82101561495557600b546b033b2e3c9fd0803ce800000093509350505061495e565b81819350935050505b9091565b60008083118290614a0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156149d35780820151818401526020810190506149b8565b50505050905090810190601f168015614a005780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614a1a57fe5b049050809150509392505050565b600080600080614a546064614a46888a614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614a7e6064614a70888b614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614aa782614a99858c613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080614ad78589614b4790919063ffffffff16565b90506000614aee8689614b4790919063ffffffff16565b90506000614b058789614b4790919063ffffffff16565b90506000614b2e82614b208587613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b9050838184965096509650505050509450945094915050565b600080831415614b5a5760009050614bc7565b6000828402905082848281614b6b57fe5b0414614bc2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806158636021913960400191505060405180910390fd5b809150505b92915050565b6000600d54148015614be157506000600e54145b15614beb57614c0e565b600d54600f81905550600e546010819055506000600d819055506000600e819055505b565b600080600080600080614c2287613ef4565b955095509550955095509550614c8087600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d1586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614daa85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614df6816155a4565b614e008483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e8287613ef4565b955095509550955095509550614ee086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f7583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500a85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615056816155a4565b6150608483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806150e287613ef4565b95509550955095509550955061514086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151d585600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615221816155a4565b61522b8483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806152ad87613ef4565b95509550955095509550955061530b87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153a086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061543583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ca85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615516816155a4565b6155208483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600f54600d81905550601054600e81905550565b60006155ae613df7565b905060006155c58284614b4790919063ffffffff16565b905061561981600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156157445761570083600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61575e82600b54613f5c90919063ffffffff16565b600b8190555061577981600c54613e6c90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e5592790b183c97fdbec6c813655541b7339f0fabc7dae362970fc1f2f9952bb64736f6c634300060c00330000000000000000000000009ed3f44d0607eb880c6c85590ee28ee3085d5ee50000000000000000000000009ed3f44d0607eb880c6c85590ee28ee3085d5ee5

Deployed Bytecode

0x60806040526004361061026b5760003560e01c8063602bc62b11610144578063b030b34a116100b6578063f2cc0c181161007a578063f2cc0c1814610df8578063f2fde38b14610e49578063f429389014610e9a578063f7a9159114610eb1578063f815a84214610edc578063f84354f114610f0757610272565b8063b030b34a14610c3d578063b425bac314610c8e578063cba0e99614610ccf578063dd62ed3e14610d36578063e01af92c14610dbb57610272565b806395d89b411161010857806395d89b4114610a085780639e6c752914610a98578063a457c2d714610ad3578063a5e8c95414610b44578063a9059cbb14610b6f578063af9549e014610be057610272565b8063602bc62b146108f35780636ddd17131461091e57806370a082311461094b578063715018a6146109b05780638da5cb5b146109c757610272565b80632d838119116101dd5780634144d9e4116101a15780634144d9e41461075d5780634549b0391461079e57806349bd5a5e146107f957806351bc3c851461083a5780635342acb4146108515780635880b873146108b857610272565b80632d838119146106095780632fbff03014610658578063313ce5671461068357806339509351146106b15780633bd5d1731461072257610272565b806318160ddd1161022f57806318160ddd146104355780631bbae6e0146104605780631d7ef8791461049b5780631ff53b60146104ec57806323b872dd1461053d57806328667162146105ce57610272565b806306fdde0314610277578063095ea7b3146103075780630a1f8ea81461037857806313114a9d146103c95780631694505e146103f457610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610f58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102cc5780820151818401526020810190506102b1565b50505050905090810190601f1680156102f95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031357600080fd5b506103606004803603604081101561032a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f95565b60405180821515815260200191505060405180910390f35b34801561038457600080fd5b506103c76004803603602081101561039b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fb3565b005b3480156103d557600080fd5b506103de6110bf565b6040518082815260200191505060405180910390f35b34801561040057600080fd5b506104096110c9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561044157600080fd5b5061044a6110ed565b6040518082815260200191505060405180910390f35b34801561046c57600080fd5b506104996004803603602081101561048357600080fd5b8101908080359060200190929190505050611101565b005b3480156104a757600080fd5b506104ea600480360360208110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d3565b005b3480156104f857600080fd5b5061053b6004803603602081101561050f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114b2565b005b34801561054957600080fd5b506105b66004803603606081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115be565b60405180821515815260200191505060405180910390f35b3480156105da57600080fd5b50610607600480360360208110156105f157600080fd5b8101908080359060200190929190505050611697565b005b34801561061557600080fd5b506106426004803603602081101561062c57600080fd5b81019080803590602001909291905050506117ed565b6040518082815260200191505060405180910390f35b34801561066457600080fd5b5061066d611871565b6040518082815260200191505060405180910390f35b34801561068f57600080fd5b5061069861187b565b604051808260ff16815260200191505060405180910390f35b3480156106bd57600080fd5b5061070a600480360360408110156106d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611884565b60405180821515815260200191505060405180910390f35b34801561072e57600080fd5b5061075b6004803603602081101561074557600080fd5b8101908080359060200190929190505050611937565b005b34801561076957600080fd5b50610772611ac8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107aa57600080fd5b506107e3600480360360408110156107c157600080fd5b8101908080359060200190929190803515159060200190929190505050611aee565b6040518082815260200191505060405180910390f35b34801561080557600080fd5b5061080e611baf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084657600080fd5b5061084f611bd3565b005b34801561085d57600080fd5b506108a06004803603602081101561087457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cb4565b60405180821515815260200191505060405180910390f35b3480156108c457600080fd5b506108f1600480360360208110156108db57600080fd5b8101908080359060200190929190505050611d0a565b005b3480156108ff57600080fd5b50610908611e60565b6040518082815260200191505060405180910390f35b34801561092a57600080fd5b50610933611e6a565b60405180821515815260200191505060405180910390f35b34801561095757600080fd5b5061099a6004803603602081101561096e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e7d565b6040518082815260200191505060405180910390f35b3480156109bc57600080fd5b506109c5611f68565b005b3480156109d357600080fd5b506109dc6120ee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1457600080fd5b50610a1d612117565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5d578082015181840152602081019050610a42565b50505050905090810190601f168015610a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa457600080fd5b50610ad160048036036020811015610abb57600080fd5b8101908080359060200190929190505050612154565b005b348015610adf57600080fd5b50610b2c60048036036040811015610af657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612226565b60405180821515815260200191505060405180910390f35b348015610b5057600080fd5b50610b596122f3565b6040518082815260200191505060405180910390f35b348015610b7b57600080fd5b50610bc860048036036040811015610b9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122fd565b60405180821515815260200191505060405180910390f35b348015610bec57600080fd5b50610c3b60048036036040811015610c0357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061231b565b005b348015610c4957600080fd5b50610c8c60048036036020811015610c6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061243e565b005b348015610c9a57600080fd5b50610ca3612783565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cdb57600080fd5b50610d1e60048036036020811015610cf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127a9565b60405180821515815260200191505060405180910390f35b348015610d4257600080fd5b50610da560048036036040811015610d5957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127ff565b6040518082815260200191505060405180910390f35b348015610dc757600080fd5b50610df660048036036020811015610dde57600080fd5b81019080803515159060200190929190505050612886565b005b348015610e0457600080fd5b50610e4760048036036020811015610e1b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061296b565b005b348015610e5557600080fd5b50610e9860048036036020811015610e6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d1e565b005b348015610ea657600080fd5b50610eaf612f29565b005b348015610ebd57600080fd5b50610ec6613002565b6040518082815260200191505060405180910390f35b348015610ee857600080fd5b50610ef161300c565b6040518082815260200191505060405180910390f35b348015610f1357600080fd5b50610f5660048036036020811015610f2a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613014565b005b60606040518060400160405280601081526020017f42656c6c6544656c7068696e65496e7500000000000000000000000000000000815250905090565b6000610fa9610fa261339e565b84846133a6565b6001905092915050565b610fbb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60006b033b2e3c9fd0803ce8000000905090565b61110961339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b6111db61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158846022913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114ba61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006115cb84848461359d565b61168c846115d761339e565b611687856040518060600160405280602881526020016158a660289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061163d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b600190509392505050565b61169f61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611771575060198111155b6117e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f7465616d4665652073686f756c6420626520696e2031202d203235000000000081525060200191505060405180910390fd5b80600e8190555050565b6000600b5482111561184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806157a7602a913960400191505060405180910390fd5b6000611854613df7565b90506118698184613e2290919063ffffffff16565b915050919050565b6000600d54905090565b60006012905090565b600061192d61189161339e565b8461192885600560006118a261339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b6133a6565b6001905092915050565b600061194161339e565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615962602c913960400191505060405180910390fd5b60006119f183613ef4565b50505050509050611a4a81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611aa281600b54613f5c90919063ffffffff16565b600b81905550611abd83600c54613e6c90919063ffffffff16565b600c81905550505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006b033b2e3c9fd0803ce8000000831115611b72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611b92576000611b8284613ef4565b5050505050905080915050611ba9565b6000611b9d84613ef4565b50505050915050809150505b92915050565b7f000000000000000000000000aa28913543f3890d1ce921a384cdb0926e026a8581565b611bdb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611ca630611e7d565b9050611cb181613fa6565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d1261339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611de4575060198111155b611e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20323500000000000081525060200191505060405180910390fd5b80600d8190555050565b6000600254905090565b601260159054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f1857600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611f63565b611f60600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b90505b919050565b611f7061339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280601081526020017f42656c6c6544656c7068696e65496e7500000000000000000000000000000000815250905090565b61215c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b60006122e961223361339e565b846122e48560405180606001604052806025815260200161598e602591396005600061225d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b6001905092915050565b6000600e54905090565b600061231161230a61339e565b848461359d565b6001905092915050565b61232361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61244661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a8054905081101561277f578173ffffffffffffffffffffffffffffffffffffffff16600a82815481106125f957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561277257600a6001600a80549050038154811061265557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061268d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061273857fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561277f565b80806001019150506125c8565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61288e61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461294e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260156101000a81548160ff02191690831515021790555050565b61297361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159406022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612c6057612c1c600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612d2661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612de6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157d16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612f3161339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ff1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612fff8161428a565b50565b6000601354905090565b600047905090565b61301c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661319b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e74206973206e6f74206578636c7564656400000000000000000081525060200191505060405180910390fd5b60005b60088054905081101561339a578173ffffffffffffffffffffffffffffffffffffffff16600882815481106131cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561338d5760086001600880549050038154811061322b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061326357fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061335357fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561339a565b808060010191505061319e565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561342c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061591c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157f76022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613623576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158f76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806157846023913960400191505060405180910390fd5b60008111613702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158ce6029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b61394a6120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156139b857506139886120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613a1957601354811115613a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061583b6028913960400191505060405180910390fd5b5b613a216120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613a8f5750613a5f6120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613ae757507f000000000000000000000000aa28913543f3890d1ce921a384cdb0926e026a8573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613b21575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613b92576000613b3183611e7d565b90506014548282011115613b90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158196022913960400191505060405180910390fd5b505b6000613b9d30611e7d565b90506013548110613bae5760135490505b600069017b7883c069166000008210159050601260149054906101000a900460ff16158015613be95750601260159054906101000a900460ff165b8015613bf25750805b8015613c4a57507f000000000000000000000000aa28913543f3890d1ce921a384cdb0926e026a8573ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613c7257613c5882613fa6565b60004790506000811115613c7057613c6f4761428a565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613d195750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d2357600090505b613d2f86868684614398565b505050505050565b6000838311158290613de4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613da9578082015181840152602081019050613d8e565b50505050905090810190601f168015613dd65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613e046146a9565b91509150613e1b8183613e2290919063ffffffff16565b9250505090565b6000613e6483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614962565b905092915050565b600080828401905083811015613eea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613f118a600d54600e54614a28565b9250925092506000613f21613df7565b90506000806000613f348e878787614abe565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613f9e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d37565b905092915050565b6001601260146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613fdb57600080fd5b5060405190808252806020026020018201604052801561400a5781602001602082028036833780820191505090505b509050308160008151811061401b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156140bb57600080fd5b505afa1580156140cf573d6000803e3d6000fd5b505050506040513d60208110156140e557600080fd5b81019080805190602001909291905050508160018151811061410357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614168307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846133a6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561422a57808201518184015260208101905061420f565b505050509050019650505050505050600060405180830381600087803b15801561425357600080fd5b505af1158015614267573d6000803e3d6000fd5b50505050506000601260146101000a81548160ff02191690831515021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6142da600584613e2290919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614305573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc614369600861435b600a86613e2290919063ffffffff16565b614b4790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614394573d6000803e3d6000fd5b5050565b806143a6576143a5614bcd565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156144495750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561445e57614459848484614c10565b614695565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145015750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561451657614511848484614e70565b614694565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145ba5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156145cf576145ca8484846150d0565b614693565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156146715750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156146865761468184848461529b565b614692565b6146918484846150d0565b5b5b5b5b806146a3576146a2615590565b5b50505050565b6000806000600b54905060006b033b2e3c9fd0803ce8000000905060005b600880549050811015614911578260036000600884815481106146e657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806147cd575081600460006008848154811061476557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156147ee57600b546b033b2e3c9fd0803ce80000009450945050505061495e565b614877600360006008848154811061480257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613f5c90919063ffffffff16565b9250614902600460006008848154811061488d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613f5c90919063ffffffff16565b915080806001019150506146c7565b506149336b033b2e3c9fd0803ce8000000600b54613e2290919063ffffffff16565b82101561495557600b546b033b2e3c9fd0803ce800000093509350505061495e565b81819350935050505b9091565b60008083118290614a0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156149d35780820151818401526020810190506149b8565b50505050905090810190601f168015614a005780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614a1a57fe5b049050809150509392505050565b600080600080614a546064614a46888a614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614a7e6064614a70888b614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614aa782614a99858c613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080614ad78589614b4790919063ffffffff16565b90506000614aee8689614b4790919063ffffffff16565b90506000614b058789614b4790919063ffffffff16565b90506000614b2e82614b208587613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b9050838184965096509650505050509450945094915050565b600080831415614b5a5760009050614bc7565b6000828402905082848281614b6b57fe5b0414614bc2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806158636021913960400191505060405180910390fd5b809150505b92915050565b6000600d54148015614be157506000600e54145b15614beb57614c0e565b600d54600f81905550600e546010819055506000600d819055506000600e819055505b565b600080600080600080614c2287613ef4565b955095509550955095509550614c8087600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d1586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614daa85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614df6816155a4565b614e008483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e8287613ef4565b955095509550955095509550614ee086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f7583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500a85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615056816155a4565b6150608483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806150e287613ef4565b95509550955095509550955061514086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151d585600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615221816155a4565b61522b8483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806152ad87613ef4565b95509550955095509550955061530b87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153a086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061543583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ca85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615516816155a4565b6155208483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600f54600d81905550601054600e81905550565b60006155ae613df7565b905060006155c58284614b4790919063ffffffff16565b905061561981600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156157445761570083600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61575e82600b54613f5c90919063ffffffff16565b600b8190555061577981600c54613e6c90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e5592790b183c97fdbec6c813655541b7339f0fabc7dae362970fc1f2f9952bb64736f6c634300060c0033

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

0000000000000000000000009ed3f44d0607eb880c6c85590ee28ee3085d5ee50000000000000000000000009ed3f44d0607eb880c6c85590ee28ee3085d5ee5

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

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009ed3f44d0607eb880c6c85590ee28ee3085d5ee5
Arg [1] : 0000000000000000000000009ed3f44d0607eb880c6c85590ee28ee3085d5ee5


Deployed Bytecode Sourcemap

25770:20786:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28740:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29744:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45960:141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31092:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27059:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29053:103;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46290:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32381:368;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46113:165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29929:329;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45760:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32100:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45114:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28950:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30270:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31199:405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26998:46;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31616:472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27121:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38616:168;;;;;;;;;;;;;:::i;:::-;;34720:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45567:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16960:98;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27202:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29168:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16356:160;;;;;;;;;;;;;:::i;:::-;;15654:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28843:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46422:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30512:281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45218:93;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29390:179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30935:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32761:541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26947:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30805:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29581:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38976:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33314:475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16688:260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38796:168;;;;;;;;;;;;;:::i;:::-;;45323:102;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45437:118;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33801:518;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28740:91;28777:13;28814:5;;;;;;;;;;;;;;;;;28807:12;;28740:91;:::o;29744:173::-;29819:4;29840:39;29849:12;:10;:12::i;:::-;29863:7;29872:6;29840:8;:39::i;:::-;29901:4;29894:11;;29744:173;;;;:::o;45960:141::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46073:16:::1;46053:17;;:36;;;;;;;;;;;;;;;;;;45960:141:::0;:::o;31092:95::-;31134:7;31165:10;;31158:17;;31092:95;:::o;27059:51::-;;;:::o;29053:103::-;29106:7;26458:19;29130:14;;29053:103;:::o;46290:120::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46387:11:::1;46372:12;:26;;;;46290:120:::0;:::o;32381:368::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32480:42:::1;32469:53;;:7;:53;;;;32461:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32585:17;:26;32603:7;32585:26;;;;;;;;;;;;;;;;;;;;;;;;;32584:27;32575:71;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32689:4;32660:17;:26;32678:7;32660:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;32707:16;32729:7;32707:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32381:368:::0;:::o;46113:165::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46244:22:::1;46218:23;;:48;;;;;;;;;;;;;;;;;;46113:165:::0;:::o;29929:329::-;30027:4;30048:36;30058:6;30066:9;30077:6;30048:9;:36::i;:::-;30099:121;30108:6;30116:12;:10;:12::i;:::-;30130:89;30168:6;30130:89;;;;;;;;;;;;;;;;;:11;:19;30142:6;30130:19;;;;;;;;;;;;;;;:33;30150:12;:10;:12::i;:::-;30130:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30099:8;:121::i;:::-;30242:4;30235:11;;29929:329;;;;;:::o;45760:188::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45853:1:::1;45842:7;:12;;:29;;;;;45869:2;45858:7;:13;;45842:29;45834:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45929:7;45918:8;:18;;;;45760:188:::0;:::o;32100:269::-;32166:7;32209;;32198;:18;;32190:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32278:19;32301:10;:8;:10::i;:::-;32278:33;;32333:24;32345:11;32333:7;:11;;:24;;;;:::i;:::-;32326:31;;;32100:269;;;:::o;45114:92::-;45156:7;45187;;45180:14;;45114:92;:::o;28950:91::-;28991:5;26746:2;29013:16;;28950:91;:::o;30270:230::-;30358:4;30379:83;30388:12;:10;:12::i;:::-;30402:7;30411:50;30450:10;30411:11;:25;30423:12;:10;:12::i;:::-;30411:25;;;;;;;;;;;;;;;:34;30437:7;30411:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30379:8;:83::i;:::-;30484:4;30477:11;;30270:230;;;;:::o;31199:405::-;31255:14;31272:12;:10;:12::i;:::-;31255:29;;31308:11;:19;31320:6;31308:19;;;;;;;;;;;;;;;;;;;;;;;;;31307:20;31299:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31392:15;31416:19;31427:7;31416:10;:19::i;:::-;31391:44;;;;;;;31468:28;31488:7;31468;:15;31476:6;31468:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31450:7;:15;31458:6;31450:15;;;;;;;;;;;;;;;:46;;;;31521:20;31533:7;31521;;:11;;:20;;;;:::i;:::-;31511:7;:30;;;;31569:23;31584:7;31569:10;;:14;;:23;;;;:::i;:::-;31556:10;:36;;;;31199:405;;;:::o;26998:46::-;;;;;;;;;;;;;:::o;31616:472::-;31706:7;26458:19;31738:7;:18;;31730:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31812:17;31807:270;;31851:15;31875:19;31886:7;31875:10;:19::i;:::-;31850:44;;;;;;;31920:7;31913:14;;;;;31807:270;31970:23;32001:19;32012:7;32001:10;:19::i;:::-;31968:52;;;;;;;32046:15;32039:22;;;31616:472;;;;;:::o;27121:38::-;;;:::o;38616:168::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38674:23:::1;38700:24;38718:4;38700:9;:24::i;:::-;38674:50;;38739:33;38756:15;38739:16;:33::i;:::-;15966:1;38616:168::o:0;34720:131::-;34784:4;34812:18;:27;34831:7;34812:27;;;;;;;;;;;;;;;;;;;;;;;;;34805:34;;34720:131;;;:::o;45567:181::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45657:1:::1;45647:6;:11;;:27;;;;;45672:2;45662:6;:12;;45647:27;45639:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45730:6;45720:7;:16;;;;45567:181:::0;:::o;16960:98::-;17006:7;17037:9;;17030:16;;16960:98;:::o;27202:30::-;;;;;;;;;;;;;:::o;29168:210::-;29234:7;29262:11;:20;29274:7;29262:20;;;;;;;;;;;;;;;;;;;;;;;;;29258:49;;;29291:7;:16;29299:7;29291:16;;;;;;;;;;;;;;;;29284:23;;;;29258:49;29329:37;29349:7;:16;29357:7;29349:16;;;;;;;;;;;;;;;;29329:19;:37::i;:::-;29322:44;;29168:210;;;;:::o;16356:160::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16467:1:::1;16430:40;;16451:6;::::0;::::1;;;;;;;;16430:40;;;;;;;;;;;;16502:1;16485:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16356:160::o:0;15654:87::-;15692:7;15723:6;;;;;;;;;;;15716:13;;15654:87;:::o;28843:95::-;28882:13;28919:7;;;;;;;;;;;;;;;;;28912:14;;28843:95;:::o;46422:127::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46524:13:::1;46507:14;:30;;;;46422:127:::0;:::o;30512:281::-;30605:4;30626:129;30635:12;:10;:12::i;:::-;30649:7;30658:96;30697:15;30658:96;;;;;;;;;;;;;;;;;:11;:25;30670:12;:10;:12::i;:::-;30658:25;;;;;;;;;;;;;;;:34;30684:7;30658:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30626:8;:129::i;:::-;30777:4;30770:11;;30512:281;;;;:::o;45218:93::-;45262:7;45291:8;;45284:15;;45218:93;:::o;29390:179::-;29468:4;29489:42;29499:12;:10;:12::i;:::-;29513:9;29524:6;29489:9;:42::i;:::-;29553:4;29546:11;;29390:179;;;;:::o;30935:145::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31060:8:::1;31030:18;:27;31049:7;31030:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;30935:145:::0;;:::o;32761:541::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32853:17:::1;:26;32871:7;32853:26;;;;;;;;;;;;;;;;;;;;;;;;;32844:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32928:9;32923:369;32947:16;:23;;;;32943:1;:27;32923:369;;;33024:7;33001:30;;:16;33018:1;33001:19;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;32997:281;;;33079:16;33122:1;33096:16;:23;;;;:27;33079:45;;;;;;;;;;;;;;;;;;;;;;;;;33057:16;33074:1;33057:19;;;;;;;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;33177:5;33148:17;:26;33166:7;33148:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;33206:16;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33252:5;;32997:281;32972:3;;;;;;;32923:369;;;;32761:541:::0;:::o;26947:40::-;;;;;;;;;;;;;:::o;30805:118::-;30863:4;30891:11;:20;30903:7;30891:20;;;;;;;;;;;;;;;;;;;;;;;;;30884:27;;30805:118;;;:::o;29581:151::-;29662:7;29693:11;:18;29705:5;29693:18;;;;;;;;;;;;;;;:27;29712:7;29693:27;;;;;;;;;;;;;;;;29686:34;;29581:151;;;;:::o;38976:106::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39063:7:::1;39049:11;;:21;;;;;;;;;;;;;;;;;;38976:106:::0;:::o;33314:475::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33410:42:::1;33399:53;;:7;:53;;;;33391:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33515:11;:20;33527:7;33515:20;;;;;;;;;;;;;;;;;;;;;;;;;33514:21;33506:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33604:1;33585:7;:16;33593:7;33585:16;;;;;;;;;;;;;;;;:20;33582:116;;;33645:37;33665:7;:16;33673:7;33665:16;;;;;;;;;;;;;;;;33645:19;:37::i;:::-;33626:7;:16;33634:7;33626:16;;;;;;;;;;;;;;;:56;;;;33582:116;33735:4;33712:11;:20;33724:7;33712:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33754:9;33769:7;33754:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33314:475:::0;:::o;16688:260::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16801:1:::1;16781:22;;:8;:22;;;;16773:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16895:8;16866:38;;16887:6;::::0;::::1;;;;;;;;16866:38;;;;;;;;;;;;16928:8;16919:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16688:260:::0;:::o;38796:168::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38854:26:::1;38883:21;38854:50;;38919:33;38933:18;38919:13;:33::i;:::-;15966:1;38796:168::o:0;45323:102::-;45370:7;45401:12;;45394:19;;45323:102;:::o;45437:118::-;45483:15;45522:21;45515:28;;45437:118;:::o;33801:518::-;15902:12;:10;:12::i;:::-;15892:22;;:6;;;;;;;;;;:22;;;15884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33886:11:::1;:20;33898:7;33886:20;;;;;;;;;;;;;;;;;;;;;;;;;33878:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33954:9;33949:359;33973:9;:16;;;;33969:1;:20;33949:359;;;34035:7;34019:23;;:9;34029:1;34019:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;34015:278;;;34082:9;34111:1;34092:9;:16;;;;:20;34082:31;;;;;;;;;;;;;;;;;;;;;;;;;34067:9;34077:1;34067:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34155:1;34136:7;:16;34144:7;34136:16;;;;;;;;;;;;;;;:20;;;;34202:5;34179:11;:20;34191:7;34179:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;34230:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34268:5;;34015:278;33991:3;;;;;;;33949:359;;;;33801:518:::0;:::o;111:114::-;164:15;203:10;196:17;;111:114;:::o;34863:357::-;34977:1;34960:19;;:5;:19;;;;34952:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35062:1;35043:21;;:7;:21;;;;35035:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35150:6;35120:11;:18;35132:5;35120:18;;;;;;;;;;;;;;;:27;35139:7;35120:27;;;;;;;;;;;;;;;:36;;;;35192:7;35176:32;;35185:5;35176:32;;;35201:6;35176:32;;;;;;;;;;;;;;;;;;34863:357;;;:::o;35232:2507::-;35351:1;35333:20;;:6;:20;;;;35325:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35439:1;35418:23;;:9;:23;;;;35410:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35513:1;35504:6;:10;35496:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35584:17;:25;35602:6;35584:25;;;;;;;;;;;;;;;;;;;;;;;;;35583:26;35575:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35657:17;:29;35675:10;35657:29;;;;;;;;;;;;;;;;;;;;;;;;;35656:30;35648:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35734:17;:28;35752:9;35734:28;;;;;;;;;;;;;;;;;;;;;;;;;35733:29;35725:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35814:7;:5;:7::i;:::-;35804:17;;:6;:17;;;;:41;;;;;35838:7;:5;:7::i;:::-;35825:20;;:9;:20;;;;35804:41;35801:156;;;35884:12;;35874:6;:22;;35866:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35801:156;35984:7;:5;:7::i;:::-;35974:17;;:6;:17;;;;:41;;;;;36008:7;:5;:7::i;:::-;35995:20;;:9;:20;;;;35974:41;:71;;;;;36032:13;36019:26;;:9;:26;;;;35974:71;:103;;;;;36070:6;36049:28;;:9;:28;;;;35974:103;35971:309;;;36098:29;36130:20;36140:9;36130;:20::i;:::-;36098:52;;36211:14;;36201:6;36177:21;:30;:48;;36169:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35971:309;;36560:28;36591:24;36609:4;36591:9;:24::i;:::-;36560:55;;36659:12;;36635:20;:36;36632:124;;36728:12;;36705:35;;36632:124;36772:24;27361:13;36799:20;:53;;36772:80;;36872:6;;;;;;;;;;;36871:7;:22;;;;;36882:11;;;;;;;;;;;36871:22;:45;;;;;36897:19;36871:45;:72;;;;;36930:13;36920:23;;:6;:23;;;;36871:72;36867:417;;;37035:38;37052:20;37035:16;:38::i;:::-;37094:26;37123:21;37094:50;;37187:1;37166:18;:22;37163:106;;;37213:36;37227:21;37213:13;:36::i;:::-;37163:106;36867:417;;37365:12;37380:4;37365:19;;37492:18;:26;37511:6;37492:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;37522:18;:29;37541:9;37522:29;;;;;;;;;;;;;;;;;;;;;;;;;37492:59;37489:113;;;37581:5;37571:15;;37489:113;37680:47;37695:6;37702:9;37712:6;37719:7;37680:14;:47::i;:::-;35232:2507;;;;;;:::o;4638:208::-;4724:7;4761:1;4756;:6;;4764:12;4748:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4792:9;4808:1;4804;:5;4792:17;;4833:1;4826:8;;;4638:208;;;;;:::o;44320:175::-;44361:7;44386:15;44403;44422:19;:17;:19::i;:::-;44385:56;;;;44463:20;44475:7;44463;:11;;:20;;;;:::i;:::-;44456:27;;;;44320:175;:::o;6168:140::-;6226:7;6257:39;6261:1;6264;6257:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6250:46;;6168:140;;;;:::o;3641:197::-;3699:7;3723:9;3739:1;3735;:5;3723:17;;3768:1;3763;:6;;3755:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3825:1;3818:8;;;3641:197;;;;:::o;43013:467::-;43072:7;43081;43090;43099;43108;43117;43138:23;43163:12;43177:13;43194:39;43206:7;43215;;43224:8;;43194:11;:39::i;:::-;43137:96;;;;;;43244:19;43266:10;:8;:10::i;:::-;43244:32;;43288:15;43305:23;43330:12;43346:46;43358:7;43367:4;43373:5;43380:11;43346;:46::i;:::-;43287:105;;;;;;43411:7;43420:15;43437:4;43443:15;43460:4;43466:5;43403:69;;;;;;;;;;;;;;;;;;;43013:467;;;;;;;:::o;4156:144::-;4214:7;4245:43;4249:1;4252;4245:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4238:50;;4156:144;;;;:::o;37751:656::-;27734:4;27725:6;;:13;;;;;;;;;;;;;;;;;;37896:21:::1;37934:1;37920:16;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37896:40;;37969:4;37951;37956:1;37951:7;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;37999:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;37989:4;37994:1;37989:7;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;38038:62;38055:4;38070:15;38088:11;38038:8;:62::i;:::-;38147:15;:66;;;38232:11;38262:1;38310:4;38341;38365:15;38147:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;27753:1;27778:5:::0;27769:6;;:14;;;;;;;;;;;;;;;;;;37751:656;:::o;38419:185::-;38481:17;;;;;;;;;;;:26;;:41;38508:13;38519:1;38508:6;:10;;:13;;;;:::i;:::-;38481:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38537:23;;;;;;;;;;;:32;;:55;38570:21;38589:1;38570:14;38581:2;38570:6;:10;;:14;;;;:::i;:::-;:18;;:21;;;;:::i;:::-;38537:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38419:185;:::o;39094:883::-;39210:7;39206:44;;39236:14;:12;:14::i;:::-;39206:44;39271:11;:19;39283:6;39271:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;39295:11;:22;39307:9;39295:22;;;;;;;;;;;;;;;;;;;;;;;;;39294:23;39271:46;39267:637;;;39338:48;39360:6;39368:9;39379:6;39338:21;:48::i;:::-;39267:637;;;39413:11;:19;39425:6;39413:19;;;;;;;;;;;;;;;;;;;;;;;;;39412:20;:46;;;;;39436:11;:22;39448:9;39436:22;;;;;;;;;;;;;;;;;;;;;;;;;39412:46;39408:496;;;39479:46;39499:6;39507:9;39518:6;39479:19;:46::i;:::-;39408:496;;;39552:11;:19;39564:6;39552:19;;;;;;;;;;;;;;;;;;;;;;;;;39551:20;:47;;;;;39576:11;:22;39588:9;39576:22;;;;;;;;;;;;;;;;;;;;;;;;;39575:23;39551:47;39547:357;;;39619:44;39637:6;39645:9;39656:6;39619:17;:44::i;:::-;39547:357;;;39689:11;:19;39701:6;39689:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;39712:11;:22;39724:9;39712:22;;;;;;;;;;;;;;;;;;;;;;;;;39689:45;39685:219;;;39755:48;39777:6;39785:9;39796:6;39755:21;:48::i;:::-;39685:219;;;39844:44;39862:6;39870:9;39881:6;39844:17;:44::i;:::-;39685:219;39547:357;39408:496;39267:637;39924:7;39920:45;;39950:15;:13;:15::i;:::-;39920:45;39094:883;;;;:::o;44507:595::-;44557:7;44566;44590:15;44608:7;;44590:25;;44630:15;26458:19;44630:25;;44675:9;44670:305;44694:9;:16;;;;44690:1;:20;44670:305;;;44764:7;44740;:21;44748:9;44758:1;44748:12;;;;;;;;;;;;;;;;;;;;;;;;;44740:21;;;;;;;;;;;;;;;;:31;:66;;;;44799:7;44775;:21;44783:9;44793:1;44783:12;;;;;;;;;;;;;;;;;;;;;;;;;44775:21;;;;;;;;;;;;;;;;:31;44740:66;44736:97;;;44816:7;;26458:19;44808:25;;;;;;;;;44736:97;44862:34;44874:7;:21;44882:9;44892:1;44882:12;;;;;;;;;;;;;;;;;;;;;;;;;44874:21;;;;;;;;;;;;;;;;44862:7;:11;;:34;;;;:::i;:::-;44852:44;;44925:34;44937:7;:21;44945:9;44955:1;44945:12;;;;;;;;;;;;;;;;;;;;;;;;;44937:21;;;;;;;;;;;;;;;;44925:7;:11;;:34;;;;:::i;:::-;44915:44;;44712:3;;;;;;;44670:305;;;;45003:20;26458:19;45003:7;;:11;;:20;;;;:::i;:::-;44993:7;:30;44989:61;;;45033:7;;26458:19;45025:25;;;;;;;;44989:61;45073:7;45082;45065:25;;;;;;44507:595;;;:::o;6845:298::-;6931:7;6967:1;6963;:5;6970:12;6955:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6998:9;7014:1;7010;:5;;;;;;6998:17;;7130:1;7123:8;;;6845:298;;;;;:::o;43492:371::-;43585:7;43594;43603;43627:12;43642:28;43666:3;43642:19;43654:6;43642:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;43627:43;;43685:13;43701:29;43726:3;43701:20;43713:7;43701;:11;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;43685:45;;43745:23;43771:28;43793:5;43771:17;43783:4;43771:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;43745:54;;43822:15;43839:4;43845:5;43814:37;;;;;;;;;43492:371;;;;;;;:::o;43875:433::-;43985:7;43994;44003;44027:15;44045:24;44057:11;44045:7;:11;;:24;;;;:::i;:::-;44027:42;;44084:12;44099:21;44108:11;44099:4;:8;;:21;;;;:::i;:::-;44084:36;;44135:13;44151:22;44161:11;44151:5;:9;;:22;;;;:::i;:::-;44135:38;;44188:23;44214:28;44236:5;44214:17;44226:4;44214:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;44188:54;;44265:7;44274:15;44291:4;44257:39;;;;;;;;;;43875:433;;;;;;;;:::o;5140:511::-;5198:7;5464:1;5459;:6;5455:55;;;5493:1;5486:8;;;;5455:55;5526:9;5542:1;5538;:5;5526:17;;5575:1;5570;5566;:5;;;;;;:10;5558:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5638:1;5631:8;;;5140:511;;;;;:::o;34331:238::-;34392:1;34381:7;;:12;:29;;;;;34409:1;34397:8;;:13;34381:29;34378:41;;;34412:7;;34378:41;34453:7;;34435:15;:25;;;;34494:8;;34475:16;:27;;;;34529:1;34519:7;:11;;;;34556:1;34545:8;:12;;;;34331:238;:::o;41120:580::-;41227:15;41244:23;41269:12;41283:23;41308:12;41322:13;41339:19;41350:7;41339:10;:19::i;:::-;41226:132;;;;;;;;;;;;41391:28;41411:7;41391;:15;41399:6;41391:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41373:7;:15;41381:6;41373:15;;;;;;;;;;;;;;;:46;;;;41452:28;41472:7;41452;:15;41460:6;41452:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41434:7;:15;41442:6;41434:15;;;;;;;;;;;;;;;:46;;;;41516:39;41539:15;41516:7;:18;41524:9;41516:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41495:7;:18;41503:9;41495:18;;;;;;;;;;;;;;;:60;;;;41570:16;41580:5;41570:9;:16::i;:::-;41601:23;41613:4;41619;41601:11;:23::i;:::-;41661:9;41644:44;;41653:6;41644:44;;;41672:15;41644:44;;;;;;;;;;;;;;;;;;41120:580;;;;;;;;;:::o;40516:592::-;40621:15;40638:23;40663:12;40677:23;40702:12;40716:13;40733:19;40744:7;40733:10;:19::i;:::-;40620:132;;;;;;;;;;;;40785:28;40805:7;40785;:15;40793:6;40785:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40767:7;:15;40775:6;40767:15;;;;;;;;;;;;;;;:46;;;;40849:39;40872:15;40849:7;:18;40857:9;40849:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40828:7;:18;40836:9;40828:18;;;;;;;;;;;;;;;:60;;;;40924:39;40947:15;40924:7;:18;40932:9;40924:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40903:7;:18;40911:9;40903:18;;;;;;;;;;;;;;;:60;;;;40978:16;40988:5;40978:9;:16::i;:::-;41009:23;41021:4;41027;41009:11;:23::i;:::-;41069:9;41052:44;;41061:6;41052:44;;;41080:15;41052:44;;;;;;;;;;;;;;;;;;40516:592;;;;;;;;;:::o;39989:515::-;40092:15;40109:23;40134:12;40148:23;40173:12;40187:13;40204:19;40215:7;40204:10;:19::i;:::-;40091:132;;;;;;;;;;;;40256:28;40276:7;40256;:15;40264:6;40256:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40238:7;:15;40246:6;40238:15;;;;;;;;;;;;;;;:46;;;;40320:39;40343:15;40320:7;:18;40328:9;40320:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40299:7;:18;40307:9;40299:18;;;;;;;;;;;;;;;:60;;;;40374:16;40384:5;40374:9;:16::i;:::-;40405:23;40417:4;40423;40405:11;:23::i;:::-;40465:9;40448:44;;40457:6;40448:44;;;40476:15;40448:44;;;;;;;;;;;;;;;;;;39989:515;;;;;;;;;:::o;41712:655::-;41819:15;41836:23;41861:12;41875:23;41900:12;41914:13;41931:19;41942:7;41931:10;:19::i;:::-;41818:132;;;;;;;;;;;;41983:28;42003:7;41983;:15;41991:6;41983:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41965:7;:15;41973:6;41965:15;;;;;;;;;;;;;;;:46;;;;42044:28;42064:7;42044;:15;42052:6;42044:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42026:7;:15;42034:6;42026:15;;;;;;;;;;;;;;;:46;;;;42108:39;42131:15;42108:7;:18;42116:9;42108:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42087:7;:18;42095:9;42087:18;;;;;;;;;;;;;;;:60;;;;42183:39;42206:15;42183:7;:18;42191:9;42183:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42162:7;:18;42170:9;42162:18;;;;;;;;;;;;;;;:60;;;;42237:16;42247:5;42237:9;:16::i;:::-;42268:23;42280:4;42286;42268:11;:23::i;:::-;42328:9;42311:44;;42320:6;42311:44;;;42339:15;42311:44;;;;;;;;;;;;;;;;;;41712:655;;;;;;;;;:::o;34581:127::-;34639:15;;34629:7;:25;;;;34680:16;;34669:8;:27;;;;34581:127::o;42379:349::-;42436:19;42459:10;:8;:10::i;:::-;42436:33;;42484:13;42500:22;42510:11;42500:5;:9;;:22;;;;:::i;:::-;42484:38;;42562:33;42589:5;42562:7;:22;42578:4;42562:22;;;;;;;;;;;;;;;;:26;;:33;;;;:::i;:::-;42537:7;:22;42553:4;42537:22;;;;;;;;;;;;;;;:58;;;;42613:11;:26;42633:4;42613:26;;;;;;;;;;;;;;;;;;;;;;;;;42610:106;;;42683:33;42710:5;42683:7;:22;42699:4;42683:22;;;;;;;;;;;;;;;;:26;;:33;;;;:::i;:::-;42658:7;:22;42674:4;42658:22;;;;;;;;;;;;;;;:58;;;;42610:106;42379:349;;;:::o;42740:159::-;42822:17;42834:4;42822:7;;:11;;:17;;;;:::i;:::-;42812:7;:27;;;;42867:20;42882:4;42867:10;;:14;;:20;;;;:::i;:::-;42854:10;:33;;;;42740:159;;:::o

Swarm Source

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