ETH Price: $3,402.93 (+2.02%)

Token

bark! (BARK)
 

Overview

Max Total Supply

1,000,000,000,000 BARK

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
43,584,401,087.755432306 BARK

Value
$0.00
0x913f8ecf4d9a0240514c1188d44b149a63119a69
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:
BARK

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-19
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


contract BARK 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;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 100000000000 * 10**1 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "bark!";
    string private _symbol = "BARK";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 1;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public  uniswapV2Router;
    address public  uniswapV2Pair;
    address payable public _dogpoundWalletAddress;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 private numTokensSellToAddToLiquidity = 300000000 * 10**1 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor (address payable dogpoundWalletAddress) public {
        _dogpoundWalletAddress = dogpoundWalletAddress;
        _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(0x3c118d8FFD841075B4fF7E0a17B9246ed307F943), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _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);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
        function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
     function setRouterAddress(address newRouter) public onlyOwner() {
        IUniswapV2Router02 _newUniswapRouter = IUniswapV2Router02(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory()).createPair(address(this), _newUniswapRouter.WETH());
        uniswapV2Router = _newUniswapRouter;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
   

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

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

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

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

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

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

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function sendETHToDogPound(uint256 amount) private { 
        swapTokensForEth(amount); 
        _dogpoundWalletAddress.transfer(address(this).balance); 
    }
    
    function _setDogPoundWallet(address payable dogpoundWalletAddress) external onlyOwner() {
        _dogpoundWalletAddress = dogpoundWalletAddress;
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
            

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

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into thirds
        uint256 halfOfLiquify = contractTokenBalance.div(4);
        uint256 otherHalfOfLiquify = contractTokenBalance.div(4);
        uint256 portionForFees = contractTokenBalance.sub(halfOfLiquify).sub(otherHalfOfLiquify);

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

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

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

        // add liquidity to uniswap
        addLiquidity(otherHalfOfLiquify, newBalance);
        sendETHToDogPound(portionForFees);
        
        emit SwapAndLiquify(halfOfLiquify, newBalance, otherHalfOfLiquify);
    }

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

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

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

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

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _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 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _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 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"dogpoundWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_dogpoundWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"dogpoundWalletAddress","type":"address"}],"name":"_setDogPoundWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052683635c9adc5dea00000600955600954600019816200001f57fe5b0660001903600a556040518060400160405280600581526020017f6261726b21000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000749291906200068c565b506040518060400160405280600481526020017f4241524b00000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000c29291906200068c565b506009600e60006101000a81548160ff021916908360ff1602179055506001600f55600f54601055600160115560115460125560016015806101000a81548160ff0219169083151502179055506729a2241af62c00006016553480156200012857600080fd5b50604051620058e4380380620058e4833981810160405260208110156200014e57600080fd5b81019080805190602001909291905050506000620001716200065b60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a5460036000620002676200065b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030557600080fd5b505afa1580156200031a573d6000803e3d6000fd5b505050506040513d60208110156200033157600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a557600080fd5b505afa158015620003ba573d6000803e3d6000fd5b505050506040513d6020811015620003d157600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200044c57600080fd5b505af115801562000461573d6000803e3d6000fd5b505050506040513d60208110156200047857600080fd5b8101908080519060200190929190505050601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160066000620005206200066360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005d96200065b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16733c118d8ffd841075b4ff7e0a17b9246ed307f94373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3505062000732565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006cf57805160ff191683800117855562000700565b8280016001018555821562000700579182015b82811115620006ff578251825591602001919060010190620006e2565b5b5090506200070f919062000713565b5090565b5b808211156200072e57600081600090555060010162000714565b5090565b6151a280620007426000396000f3fe6080604052600436106102295760003560e01c80635342acb4116101235780639d432a48116100ab578063c49b9a801161006f578063c49b9a8014610c31578063dd46706414610c6e578063dd62ed3e14610ca9578063ea2f0b3714610d2e578063f2fde38b14610d7f57610230565b80639d432a4814610abc578063a457c2d714610b0d578063a69df4b514610b7e578063a9059cbb14610b95578063b6c5232414610c0657610230565b806388f82020116100f257806388f82020146109085780638bd69b4a1461096f5780638da5cb5b146109b05780638ee88c53146109f157806395d89b4114610a2c57610230565b80635342acb4146107fa5780636bc87c3a1461086157806370a082311461088c578063715018a6146108f157610230565b80633685d419116101b1578063437823ec11610175578063437823ec1461068f5780634549b039146106e057806349bd5a5e1461073b5780634a74bb021461077c57806352390c02146107a957610230565b80633685d4191461051657806339509351146105675780633b124fe7146105d85780633bd5d1731461060357806341cb87fc1461063e57610230565b80631694505e116101f85780631694505e1461039c57806318160ddd146103dd57806323b872dd146104085780632d83811914610499578063313ce567146104e857610230565b8063061c82d01461023557806306fdde0314610270578063095ea7b31461030057806313114a9d1461037157610230565b3661023057005b600080fd5b34801561024157600080fd5b5061026e6004803603602081101561025857600080fd5b8101908080359060200190929190505050610dd0565b005b34801561027c57600080fd5b50610285610ea2565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102c55780820151818401526020810190506102aa565b50505050905090810190601f1680156102f25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030c57600080fd5b506103596004803603604081101561032357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f44565b60405180821515815260200191505060405180910390f35b34801561037d57600080fd5b50610386610f62565b6040518082815260200191505060405180910390f35b3480156103a857600080fd5b506103b1610f6c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103e957600080fd5b506103f2610f92565b6040518082815260200191505060405180910390f35b34801561041457600080fd5b506104816004803603606081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f9c565b60405180821515815260200191505060405180910390f35b3480156104a557600080fd5b506104d2600480360360208110156104bc57600080fd5b8101908080359060200190929190505050611075565b6040518082815260200191505060405180910390f35b3480156104f457600080fd5b506104fd6110f9565b604051808260ff16815260200191505060405180910390f35b34801561052257600080fd5b506105656004803603602081101561053957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611110565b005b34801561057357600080fd5b506105c06004803603604081101561058a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061149a565b60405180821515815260200191505060405180910390f35b3480156105e457600080fd5b506105ed61154d565b6040518082815260200191505060405180910390f35b34801561060f57600080fd5b5061063c6004803603602081101561062657600080fd5b8101908080359060200190929190505050611553565b005b34801561064a57600080fd5b5061068d6004803603602081101561066157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116e4565b005b34801561069b57600080fd5b506106de600480360360208110156106b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119f8565b005b3480156106ec57600080fd5b506107256004803603604081101561070357600080fd5b8101908080359060200190929190803515159060200190929190505050611b1b565b6040518082815260200191505060405180910390f35b34801561074757600080fd5b50610750611bd2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561078857600080fd5b50610791611bf8565b60405180821515815260200191505060405180910390f35b3480156107b557600080fd5b506107f8600480360360208110156107cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c09565b005b34801561080657600080fd5b506108496004803603602081101561081d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f23565b60405180821515815260200191505060405180910390f35b34801561086d57600080fd5b50610876611f79565b6040518082815260200191505060405180910390f35b34801561089857600080fd5b506108db600480360360208110156108af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f7f565b6040518082815260200191505060405180910390f35b3480156108fd57600080fd5b5061090661206a565b005b34801561091457600080fd5b506109576004803603602081101561092b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121f0565b60405180821515815260200191505060405180910390f35b34801561097b57600080fd5b50610984612246565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109bc57600080fd5b506109c561226c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109fd57600080fd5b50610a2a60048036036020811015610a1457600080fd5b8101908080359060200190929190505050612295565b005b348015610a3857600080fd5b50610a41612367565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a81578082015181840152602081019050610a66565b50505050905090810190601f168015610aae5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ac857600080fd5b50610b0b60048036036020811015610adf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612409565b005b348015610b1957600080fd5b50610b6660048036036040811015610b3057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612515565b60405180821515815260200191505060405180910390f35b348015610b8a57600080fd5b50610b936125e2565b005b348015610ba157600080fd5b50610bee60048036036040811015610bb857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506127ff565b60405180821515815260200191505060405180910390f35b348015610c1257600080fd5b50610c1b61281d565b6040518082815260200191505060405180910390f35b348015610c3d57600080fd5b50610c6c60048036036020811015610c5457600080fd5b81019080803515159060200190929190505050612827565b005b348015610c7a57600080fd5b50610ca760048036036020811015610c9157600080fd5b8101908080359060200190929190505050612944565b005b348015610cb557600080fd5b50610d1860048036036040811015610ccc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b35565b6040518082815260200191505060405180910390f35b348015610d3a57600080fd5b50610d7d60048036036020811015610d5157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bbc565b005b348015610d8b57600080fd5b50610dce60048036036020811015610da257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612cdf565b005b610dd8612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f3a5780601f10610f0f57610100808354040283529160200191610f3a565b820191906000526020600020905b815481529060010190602001808311610f1d57829003601f168201915b5050505050905090565b6000610f58610f51612eea565b8484612ef2565b6001905092915050565b6000600b54905090565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600954905090565b6000610fa98484846130e9565b61106a84610fb5612eea565b6110658560405180606001604052806028815260200161505f60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061101b612eea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133c89092919063ffffffff16565b612ef2565b600190509392505050565b6000600a548211156110d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614fcc602a913960400191505060405180910390fd5b60006110dc613488565b90506110f181846134b390919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b611118612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600880549050811015611496578173ffffffffffffffffffffffffffffffffffffffff16600882815481106112cb57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114895760086001600880549050038154811061132757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061135f57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061144f57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611496565b808060010191505061129a565b5050565b60006115436114a7612eea565b8461153e85600560006114b8612eea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b612ef2565b6001905092915050565b600f5481565b600061155d612eea565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611602576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806150f9602c913960400191505060405180910390fd5b600061160d83613585565b5050505050905061166681600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116be81600a546135e190919063ffffffff16565b600a819055506116d983600b546134fd90919063ffffffff16565b600b81905550505050565b6116ec612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156117f757600080fd5b505afa15801561180b573d6000803e3d6000fd5b505050506040513d602081101561182157600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561189457600080fd5b505afa1580156118a8573d6000803e3d6000fd5b505050506040513d60208110156118be57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b15801561193857600080fd5b505af115801561194c573d6000803e3d6000fd5b505050506040513d602081101561196257600080fd5b8101908080519060200190929190505050601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b611a00612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ac0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611b95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611bb5576000611ba584613585565b5050505050905080915050611bcc565b6000611bc084613585565b50505050915050809150505b92915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60158054906101000a900460ff1681565b611c11612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611e6557611e21600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611075565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561201a57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612065565b612062600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611075565b90505b919050565b612072612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612132576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61229d612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461235d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123ff5780601f106123d4576101008083540402835291602001916123ff565b820191906000526020600020905b8154815290600101906020018083116123e257829003601f168201915b5050505050905090565b612411612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006125d8612522612eea565b846125d385604051806060016040528060258152602001615148602591396005600061254c612eea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133c89092919063ffffffff16565b612ef2565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151256023913960400191505060405180910390fd5b60025442116126ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061281361280c612eea565b84846130e9565b6001905092915050565b6000600254905090565b61282f612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806015806101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b61294c612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a0c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612bc4612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612ce7612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612da7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614ff66026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806150d56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ffe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061501c6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561316f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150b06025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614fa96023913960400191505060405180910390fd5b6000811161324e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806150876029913960400191505060405180910390fd5b600061325930611f7f565b90506000601654821015905080801561327f5750601560149054906101000a900460ff16155b80156132d95750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156132ef575060158054906101000a900460ff165b156133035760165491506133028261362b565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133aa5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156133b457600090505b6133c086868684613741565b505050505050565b6000838311158290613475576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561343a57808201518184015260208101905061341f565b50505050905090810190601f1680156134675780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613495613a52565b915091506134ac81836134b390919063ffffffff16565b9250505090565b60006134f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613ce3565b905092915050565b60008082840190508381101561357b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600061359c8a613da9565b92509250925060008060006135ba8d86866135b5613488565b613e03565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600061362383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506133c8565b905092915050565b6001601560146101000a81548160ff021916908315150217905550600061365c6004836134b390919063ffffffff16565b905060006136746004846134b390919063ffffffff16565b9050600061369d8261368f85876135e190919063ffffffff16565b6135e190919063ffffffff16565b905060004790506136ad84613e8c565b60006136c282476135e190919063ffffffff16565b90506136ce8482614140565b6136d783614295565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185828660405180848152602001838152602001828152602001935050505060405180910390a150505050506000601560146101000a81548160ff02191690831515021790555050565b8061374f5761374e61430a565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137f25750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138075761380284848461434d565b613a3e565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138aa5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138bf576138ba8484846145ad565b613a3d565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156139635750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139785761397384848461480d565b613a3c565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a1a5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a2f57613a2a8484846149d8565b613a3b565b613a3a84848461480d565b5b5b5b5b80613a4c57613a4b614ccd565b5b50505050565b6000806000600a5490506000600954905060005b600880549050811015613ca657826003600060088481548110613a8557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613b6c5750816004600060088481548110613b0457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613b8357600a5460095494509450505050613cdf565b613c0c6003600060088481548110613b9757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846135e190919063ffffffff16565b9250613c976004600060088481548110613c2257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836135e190919063ffffffff16565b91508080600101915050613a66565b50613cbe600954600a546134b390919063ffffffff16565b821015613cd657600a54600954935093505050613cdf565b81819350935050505b9091565b60008083118290613d8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d54578082015181840152602081019050613d39565b50505050905090810190601f168015613d815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613d9b57fe5b049050809150509392505050565b600080600080613db885614ce1565b90506000613dc586614d12565b90506000613dee82613de0858a6135e190919063ffffffff16565b6135e190919063ffffffff16565b90508083839550955095505050509193909250565b600080600080613e1c8589614d4390919063ffffffff16565b90506000613e338689614d4390919063ffffffff16565b90506000613e4a8789614d4390919063ffffffff16565b90506000613e7382613e6585876135e190919063ffffffff16565b6135e190919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff81118015613ea657600080fd5b50604051908082528060200260200182016040528015613ed55781602001602082028036833780820191505090505b5090503081600081518110613ee657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613f8857600080fd5b505afa158015613f9c573d6000803e3d6000fd5b505050506040513d6020811015613fb257600080fd5b810190808051906020019092919050505081600181518110613fd057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061403730601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612ef2565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156140fb5780820151818401526020810190506140e0565b505050509050019650505050505050600060405180830381600087803b15801561412457600080fd5b505af1158015614138573d6000803e3d6000fd5b505050505050565b61416d30601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612ef2565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806141b961226c565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561423e57600080fd5b505af1158015614252573d6000803e3d6000fd5b50505050506040513d606081101561426957600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b61429e81613e8c565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015614306573d6000803e3d6000fd5b5050565b6000600f5414801561431e57506000601154145b156143285761434b565b600f546010819055506011546012819055506000600f8190555060006011819055505b565b60008060008060008061435f87613585565b9550955095509550955095506143bd87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061445286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144e785600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061453381614dc9565b61453d8483614f6e565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806145bf87613585565b95509550955095509550955061461d86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146b283600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061474785600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061479381614dc9565b61479d8483614f6e565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061481f87613585565b95509550955095509550955061487d86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061491285600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061495e81614dc9565b6149688483614f6e565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806149ea87613585565b955095509550955095509550614a4887600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614add86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b7283600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c0785600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c5381614dc9565b614c5d8483614f6e565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601054600f81905550601254601181905550565b6000614d0b6064614cfd600f5485614d4390919063ffffffff16565b6134b390919063ffffffff16565b9050919050565b6000614d3c6064614d2e60115485614d4390919063ffffffff16565b6134b390919063ffffffff16565b9050919050565b600080831415614d565760009050614dc3565b6000828402905082848281614d6757fe5b0414614dbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061503e6021913960400191505060405180910390fd5b809150505b92915050565b6000614dd3613488565b90506000614dea8284614d4390919063ffffffff16565b9050614e3e81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614f6957614f2583600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614f8382600a546135e190919063ffffffff16565b600a81905550614f9e81600b546134fd90919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220631451a73fc4b63fc6b5be116b07480b4867503e09860764adb6d27ca903c0cd64736f6c634300060c0033000000000000000000000000706d4a63d81854b893ef94bd658642df23228f0b

Deployed Bytecode

0x6080604052600436106102295760003560e01c80635342acb4116101235780639d432a48116100ab578063c49b9a801161006f578063c49b9a8014610c31578063dd46706414610c6e578063dd62ed3e14610ca9578063ea2f0b3714610d2e578063f2fde38b14610d7f57610230565b80639d432a4814610abc578063a457c2d714610b0d578063a69df4b514610b7e578063a9059cbb14610b95578063b6c5232414610c0657610230565b806388f82020116100f257806388f82020146109085780638bd69b4a1461096f5780638da5cb5b146109b05780638ee88c53146109f157806395d89b4114610a2c57610230565b80635342acb4146107fa5780636bc87c3a1461086157806370a082311461088c578063715018a6146108f157610230565b80633685d419116101b1578063437823ec11610175578063437823ec1461068f5780634549b039146106e057806349bd5a5e1461073b5780634a74bb021461077c57806352390c02146107a957610230565b80633685d4191461051657806339509351146105675780633b124fe7146105d85780633bd5d1731461060357806341cb87fc1461063e57610230565b80631694505e116101f85780631694505e1461039c57806318160ddd146103dd57806323b872dd146104085780632d83811914610499578063313ce567146104e857610230565b8063061c82d01461023557806306fdde0314610270578063095ea7b31461030057806313114a9d1461037157610230565b3661023057005b600080fd5b34801561024157600080fd5b5061026e6004803603602081101561025857600080fd5b8101908080359060200190929190505050610dd0565b005b34801561027c57600080fd5b50610285610ea2565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102c55780820151818401526020810190506102aa565b50505050905090810190601f1680156102f25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030c57600080fd5b506103596004803603604081101561032357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f44565b60405180821515815260200191505060405180910390f35b34801561037d57600080fd5b50610386610f62565b6040518082815260200191505060405180910390f35b3480156103a857600080fd5b506103b1610f6c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103e957600080fd5b506103f2610f92565b6040518082815260200191505060405180910390f35b34801561041457600080fd5b506104816004803603606081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f9c565b60405180821515815260200191505060405180910390f35b3480156104a557600080fd5b506104d2600480360360208110156104bc57600080fd5b8101908080359060200190929190505050611075565b6040518082815260200191505060405180910390f35b3480156104f457600080fd5b506104fd6110f9565b604051808260ff16815260200191505060405180910390f35b34801561052257600080fd5b506105656004803603602081101561053957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611110565b005b34801561057357600080fd5b506105c06004803603604081101561058a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061149a565b60405180821515815260200191505060405180910390f35b3480156105e457600080fd5b506105ed61154d565b6040518082815260200191505060405180910390f35b34801561060f57600080fd5b5061063c6004803603602081101561062657600080fd5b8101908080359060200190929190505050611553565b005b34801561064a57600080fd5b5061068d6004803603602081101561066157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116e4565b005b34801561069b57600080fd5b506106de600480360360208110156106b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119f8565b005b3480156106ec57600080fd5b506107256004803603604081101561070357600080fd5b8101908080359060200190929190803515159060200190929190505050611b1b565b6040518082815260200191505060405180910390f35b34801561074757600080fd5b50610750611bd2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561078857600080fd5b50610791611bf8565b60405180821515815260200191505060405180910390f35b3480156107b557600080fd5b506107f8600480360360208110156107cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c09565b005b34801561080657600080fd5b506108496004803603602081101561081d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f23565b60405180821515815260200191505060405180910390f35b34801561086d57600080fd5b50610876611f79565b6040518082815260200191505060405180910390f35b34801561089857600080fd5b506108db600480360360208110156108af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f7f565b6040518082815260200191505060405180910390f35b3480156108fd57600080fd5b5061090661206a565b005b34801561091457600080fd5b506109576004803603602081101561092b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121f0565b60405180821515815260200191505060405180910390f35b34801561097b57600080fd5b50610984612246565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109bc57600080fd5b506109c561226c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109fd57600080fd5b50610a2a60048036036020811015610a1457600080fd5b8101908080359060200190929190505050612295565b005b348015610a3857600080fd5b50610a41612367565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a81578082015181840152602081019050610a66565b50505050905090810190601f168015610aae5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ac857600080fd5b50610b0b60048036036020811015610adf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612409565b005b348015610b1957600080fd5b50610b6660048036036040811015610b3057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612515565b60405180821515815260200191505060405180910390f35b348015610b8a57600080fd5b50610b936125e2565b005b348015610ba157600080fd5b50610bee60048036036040811015610bb857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506127ff565b60405180821515815260200191505060405180910390f35b348015610c1257600080fd5b50610c1b61281d565b6040518082815260200191505060405180910390f35b348015610c3d57600080fd5b50610c6c60048036036020811015610c5457600080fd5b81019080803515159060200190929190505050612827565b005b348015610c7a57600080fd5b50610ca760048036036020811015610c9157600080fd5b8101908080359060200190929190505050612944565b005b348015610cb557600080fd5b50610d1860048036036040811015610ccc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b35565b6040518082815260200191505060405180910390f35b348015610d3a57600080fd5b50610d7d60048036036020811015610d5157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bbc565b005b348015610d8b57600080fd5b50610dce60048036036020811015610da257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612cdf565b005b610dd8612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f3a5780601f10610f0f57610100808354040283529160200191610f3a565b820191906000526020600020905b815481529060010190602001808311610f1d57829003601f168201915b5050505050905090565b6000610f58610f51612eea565b8484612ef2565b6001905092915050565b6000600b54905090565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600954905090565b6000610fa98484846130e9565b61106a84610fb5612eea565b6110658560405180606001604052806028815260200161505f60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061101b612eea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133c89092919063ffffffff16565b612ef2565b600190509392505050565b6000600a548211156110d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614fcc602a913960400191505060405180910390fd5b60006110dc613488565b90506110f181846134b390919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b611118612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600880549050811015611496578173ffffffffffffffffffffffffffffffffffffffff16600882815481106112cb57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114895760086001600880549050038154811061132757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061135f57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061144f57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611496565b808060010191505061129a565b5050565b60006115436114a7612eea565b8461153e85600560006114b8612eea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b612ef2565b6001905092915050565b600f5481565b600061155d612eea565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611602576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806150f9602c913960400191505060405180910390fd5b600061160d83613585565b5050505050905061166681600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116be81600a546135e190919063ffffffff16565b600a819055506116d983600b546134fd90919063ffffffff16565b600b81905550505050565b6116ec612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156117f757600080fd5b505afa15801561180b573d6000803e3d6000fd5b505050506040513d602081101561182157600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561189457600080fd5b505afa1580156118a8573d6000803e3d6000fd5b505050506040513d60208110156118be57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b15801561193857600080fd5b505af115801561194c573d6000803e3d6000fd5b505050506040513d602081101561196257600080fd5b8101908080519060200190929190505050601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b611a00612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ac0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611b95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611bb5576000611ba584613585565b5050505050905080915050611bcc565b6000611bc084613585565b50505050915050809150505b92915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60158054906101000a900460ff1681565b611c11612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611e6557611e21600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611075565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561201a57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612065565b612062600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611075565b90505b919050565b612072612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612132576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61229d612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461235d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123ff5780601f106123d4576101008083540402835291602001916123ff565b820191906000526020600020905b8154815290600101906020018083116123e257829003601f168201915b5050505050905090565b612411612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006125d8612522612eea565b846125d385604051806060016040528060258152602001615148602591396005600061254c612eea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133c89092919063ffffffff16565b612ef2565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151256023913960400191505060405180910390fd5b60025442116126ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061281361280c612eea565b84846130e9565b6001905092915050565b6000600254905090565b61282f612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806015806101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b61294c612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a0c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612bc4612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612ce7612eea565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612da7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614ff66026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806150d56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ffe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061501c6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561316f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150b06025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614fa96023913960400191505060405180910390fd5b6000811161324e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806150876029913960400191505060405180910390fd5b600061325930611f7f565b90506000601654821015905080801561327f5750601560149054906101000a900460ff16155b80156132d95750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156132ef575060158054906101000a900460ff165b156133035760165491506133028261362b565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133aa5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156133b457600090505b6133c086868684613741565b505050505050565b6000838311158290613475576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561343a57808201518184015260208101905061341f565b50505050905090810190601f1680156134675780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613495613a52565b915091506134ac81836134b390919063ffffffff16565b9250505090565b60006134f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613ce3565b905092915050565b60008082840190508381101561357b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600061359c8a613da9565b92509250925060008060006135ba8d86866135b5613488565b613e03565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600061362383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506133c8565b905092915050565b6001601560146101000a81548160ff021916908315150217905550600061365c6004836134b390919063ffffffff16565b905060006136746004846134b390919063ffffffff16565b9050600061369d8261368f85876135e190919063ffffffff16565b6135e190919063ffffffff16565b905060004790506136ad84613e8c565b60006136c282476135e190919063ffffffff16565b90506136ce8482614140565b6136d783614295565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185828660405180848152602001838152602001828152602001935050505060405180910390a150505050506000601560146101000a81548160ff02191690831515021790555050565b8061374f5761374e61430a565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137f25750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138075761380284848461434d565b613a3e565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138aa5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138bf576138ba8484846145ad565b613a3d565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156139635750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139785761397384848461480d565b613a3c565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a1a5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a2f57613a2a8484846149d8565b613a3b565b613a3a84848461480d565b5b5b5b5b80613a4c57613a4b614ccd565b5b50505050565b6000806000600a5490506000600954905060005b600880549050811015613ca657826003600060088481548110613a8557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613b6c5750816004600060088481548110613b0457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613b8357600a5460095494509450505050613cdf565b613c0c6003600060088481548110613b9757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846135e190919063ffffffff16565b9250613c976004600060088481548110613c2257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836135e190919063ffffffff16565b91508080600101915050613a66565b50613cbe600954600a546134b390919063ffffffff16565b821015613cd657600a54600954935093505050613cdf565b81819350935050505b9091565b60008083118290613d8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d54578082015181840152602081019050613d39565b50505050905090810190601f168015613d815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613d9b57fe5b049050809150509392505050565b600080600080613db885614ce1565b90506000613dc586614d12565b90506000613dee82613de0858a6135e190919063ffffffff16565b6135e190919063ffffffff16565b90508083839550955095505050509193909250565b600080600080613e1c8589614d4390919063ffffffff16565b90506000613e338689614d4390919063ffffffff16565b90506000613e4a8789614d4390919063ffffffff16565b90506000613e7382613e6585876135e190919063ffffffff16565b6135e190919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff81118015613ea657600080fd5b50604051908082528060200260200182016040528015613ed55781602001602082028036833780820191505090505b5090503081600081518110613ee657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613f8857600080fd5b505afa158015613f9c573d6000803e3d6000fd5b505050506040513d6020811015613fb257600080fd5b810190808051906020019092919050505081600181518110613fd057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061403730601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612ef2565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156140fb5780820151818401526020810190506140e0565b505050509050019650505050505050600060405180830381600087803b15801561412457600080fd5b505af1158015614138573d6000803e3d6000fd5b505050505050565b61416d30601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612ef2565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806141b961226c565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561423e57600080fd5b505af1158015614252573d6000803e3d6000fd5b50505050506040513d606081101561426957600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b61429e81613e8c565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015614306573d6000803e3d6000fd5b5050565b6000600f5414801561431e57506000601154145b156143285761434b565b600f546010819055506011546012819055506000600f8190555060006011819055505b565b60008060008060008061435f87613585565b9550955095509550955095506143bd87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061445286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144e785600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061453381614dc9565b61453d8483614f6e565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806145bf87613585565b95509550955095509550955061461d86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146b283600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061474785600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061479381614dc9565b61479d8483614f6e565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061481f87613585565b95509550955095509550955061487d86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061491285600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061495e81614dc9565b6149688483614f6e565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806149ea87613585565b955095509550955095509550614a4887600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614add86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e190919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b7283600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c0785600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c5381614dc9565b614c5d8483614f6e565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601054600f81905550601254601181905550565b6000614d0b6064614cfd600f5485614d4390919063ffffffff16565b6134b390919063ffffffff16565b9050919050565b6000614d3c6064614d2e60115485614d4390919063ffffffff16565b6134b390919063ffffffff16565b9050919050565b600080831415614d565760009050614dc3565b6000828402905082848281614d6757fe5b0414614dbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061503e6021913960400191505060405180910390fd5b809150505b92915050565b6000614dd3613488565b90506000614dea8284614d4390919063ffffffff16565b9050614e3e81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614f6957614f2583600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fd90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614f8382600a546135e190919063ffffffff16565b600a81905550614f9e81600b546134fd90919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220631451a73fc4b63fc6b5be116b07480b4867503e09860764adb6d27ca903c0cd64736f6c634300060c0033

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

000000000000000000000000706d4a63d81854b893ef94bd658642df23228f0b

-----Decoded View---------------
Arg [0] : dogpoundWalletAddress (address): 0x706d4a63d81854b893eF94bd658642Df23228F0b

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000706d4a63d81854b893ef94bd658642df23228f0b


Deployed Bytecode Sourcemap

25606:18902:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33504:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28104:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29016:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30137:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26558:42;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28381:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29185:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31061:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28290:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31777:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29506:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26370:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30232:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33170:322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32924:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30617:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26607:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26729:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31322:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37233:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26457:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28484:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16201:148;;;;;;;;;;;;;:::i;:::-;;30009:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26643:45;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15558:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33614:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28195:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37542:153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29732:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17211:293;;;;;;;;;;;;;:::i;:::-;;28690:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16756:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33749:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16921:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28865:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33047:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16504:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33504:98;15780:12;:10;:12::i;:::-;15770:22;;:6;;;;;;;;;;:22;;;15762:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33588:6:::1;33578:7;:16;;;;33504:98:::0;:::o;28104:83::-;28141:13;28174:5;28167:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28104:83;:::o;29016:161::-;29091:4;29108:39;29117:12;:10;:12::i;:::-;29131:7;29140:6;29108:8;:39::i;:::-;29165:4;29158:11;;29016:161;;;;:::o;30137:87::-;30179:7;30206:10;;30199:17;;30137:87;:::o;26558:42::-;;;;;;;;;;;;;:::o;28381:95::-;28434:7;28461;;28454:14;;28381:95;:::o;29185:313::-;29283:4;29300:36;29310:6;29318:9;29329:6;29300:9;:36::i;:::-;29347:121;29356:6;29364:12;:10;:12::i;:::-;29378:89;29416:6;29378:89;;;;;;;;;;;;;;;;;:11;:19;29390:6;29378:19;;;;;;;;;;;;;;;:33;29398:12;:10;:12::i;:::-;29378:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29347:8;:121::i;:::-;29486:4;29479:11;;29185:313;;;;;:::o;31061:253::-;31127:7;31166;;31155;:18;;31147:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31231:19;31254:10;:8;:10::i;:::-;31231:33;;31282:24;31294:11;31282:7;:11;;:24;;;;:::i;:::-;31275:31;;;31061:253;;;:::o;28290:83::-;28331:5;28356:9;;;;;;;;;;;28349:16;;28290:83;:::o;31777:479::-;15780:12;:10;:12::i;:::-;15770:22;;:6;;;;;;;;;;:22;;;15762:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31859:11:::1;:20;31871:7;31859:20;;;;;;;;;;;;;;;;;;;;;;;;;31851:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31927:9;31922:327;31946:9;:16;;;;31942:1;:20;31922:327;;;32004:7;31988:23;;:9;31998:1;31988:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;31984:254;;;32047:9;32076:1;32057:9;:16;;;;:20;32047:31;;;;;;;;;;;;;;;;;;;;;;;;;32032:9;32042:1;32032:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32116:1;32097:7;:16;32105:7;32097:16;;;;;;;;;;;;;;;:20;;;;32159:5;32136:11;:20;32148:7;32136:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32183:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32217:5;;31984:254;31964:3;;;;;;;31922:327;;;;31777:479:::0;:::o;29506:218::-;29594:4;29611:83;29620:12;:10;:12::i;:::-;29634:7;29643:50;29682:10;29643:11;:25;29655:12;:10;:12::i;:::-;29643:25;;;;;;;;;;;;;;;:34;29669:7;29643:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29611:8;:83::i;:::-;29712:4;29705:11;;29506:218;;;;:::o;26370:26::-;;;;:::o;30232:377::-;30284:14;30301:12;:10;:12::i;:::-;30284:29;;30333:11;:19;30345:6;30333:19;;;;;;;;;;;;;;;;;;;;;;;;;30332:20;30324:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30413:15;30437:19;30448:7;30437:10;:19::i;:::-;30412:44;;;;;;;30485:28;30505:7;30485;:15;30493:6;30485:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30467:7;:15;30475:6;30467:15;;;;;;;;;;;;;;;:46;;;;30534:20;30546:7;30534;;:11;;:20;;;;:::i;:::-;30524:7;:30;;;;30578:23;30593:7;30578:10;;:14;;:23;;;;:::i;:::-;30565:10;:36;;;;30232:377;;;:::o;33170:322::-;15780:12;:10;:12::i;:::-;15770:22;;:6;;;;;;;;;;:22;;;15762:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33245:36:::1;33303:9;33245:68;;33358:17;:25;;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;33340:57;;;33406:4;33413:17;:22;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;33340:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;33324:13;;:114;;;;;;;;;;;;;;;;;;33467:17;33449:15;;:35;;;;;;;;;;;;;;;;;;15840:1;33170:322:::0;:::o;32924:111::-;15780:12;:10;:12::i;:::-;15770:22;;:6;;;;;;;;;;:22;;;15762:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33023:4:::1;32993:18;:27;33012:7;32993:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;32924:111:::0;:::o;30617:436::-;30707:7;30746;;30735;:18;;30727:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30805:17;30800:246;;30840:15;30864:19;30875:7;30864:10;:19::i;:::-;30839:44;;;;;;;30905:7;30898:14;;;;;30800:246;30947:23;30978:19;30989:7;30978:10;:19::i;:::-;30945:52;;;;;;;31019:15;31012:22;;;30617:436;;;;;:::o;26607:29::-;;;;;;;;;;;;;:::o;26729:40::-;;;;;;;;;;;;:::o;31322:447::-;15780:12;:10;:12::i;:::-;15770:22;;:6;;;;;;;;;;:22;;;15762:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31519:11:::1;:20;31531:7;31519:20;;;;;;;;;;;;;;;;;;;;;;;;;31518:21;31510:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31604:1;31585:7;:16;31593:7;31585:16;;;;;;;;;;;;;;;;:20;31582:108;;;31641:37;31661:7;:16;31669:7;31661:16;;;;;;;;;;;;;;;;31641:19;:37::i;:::-;31622:7;:16;31630:7;31622:16;;;;;;;;;;;;;;;:56;;;;31582:108;31723:4;31700:11;:20;31712:7;31700:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31738:9;31753:7;31738:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31322:447:::0;:::o;37233:123::-;37297:4;37321:18;:27;37340:7;37321:27;;;;;;;;;;;;;;;;;;;;;;;;;37314:34;;37233:123;;;:::o;26457:32::-;;;;:::o;28484:198::-;28550:7;28574:11;:20;28586:7;28574:20;;;;;;;;;;;;;;;;;;;;;;;;;28570:49;;;28603:7;:16;28611:7;28603:16;;;;;;;;;;;;;;;;28596:23;;;;28570:49;28637:37;28657:7;:16;28665:7;28657:16;;;;;;;;;;;;;;;;28637:19;:37::i;:::-;28630:44;;28484:198;;;;:::o;16201:148::-;15780:12;:10;:12::i;:::-;15770:22;;:6;;;;;;;;;;:22;;;15762:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16308:1:::1;16271:40;;16292:6;::::0;::::1;;;;;;;;16271:40;;;;;;;;;;;;16339:1;16322:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16201:148::o:0;30009:120::-;30077:4;30101:11;:20;30113:7;30101:20;;;;;;;;;;;;;;;;;;;;;;;;;30094:27;;30009:120;;;:::o;26643:45::-;;;;;;;;;;;;;:::o;15558:79::-;15596:7;15623:6;;;;;;;;;;;15616:13;;15558:79;:::o;33614:122::-;15780:12;:10;:12::i;:::-;15770:22;;:6;;;;;;;;;;:22;;;15762:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33716:12:::1;33700:13;:28;;;;33614:122:::0;:::o;28195:87::-;28234:13;28267:7;28260:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28195:87;:::o;37542:153::-;15780:12;:10;:12::i;:::-;15770:22;;:6;;;;;;;;;;:22;;;15762:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37666:21:::1;37641:22;;:46;;;;;;;;;;;;;;;;;;37542:153:::0;:::o;29732:269::-;29825:4;29842:129;29851:12;:10;:12::i;:::-;29865:7;29874:96;29913:15;29874:96;;;;;;;;;;;;;;;;;:11;:25;29886:12;:10;:12::i;:::-;29874:25;;;;;;;;;;;;;;;:34;29900:7;29874:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29842:8;:129::i;:::-;29989:4;29982:11;;29732:269;;;;:::o;17211:293::-;17281:10;17263:28;;:14;;;;;;;;;;;:28;;;17255:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17356:9;;17350:3;:15;17342:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17447:14;;;;;;;;;;;17418:44;;17439:6;;;;;;;;;;17418:44;;;;;;;;;;;;17482:14;;;;;;;;;;;17473:6;;:23;;;;;;;;;;;;;;;;;;17211:293::o;28690:167::-;28768:4;28785:42;28795:12;:10;:12::i;:::-;28809:9;28820:6;28785:9;:42::i;:::-;28845:4;28838:11;;28690:167;;;;:::o;16756:89::-;16801:7;16828:9;;16821:16;;16756:89;:::o;33749:171::-;15780:12;:10;:12::i;:::-;15770:22;;:6;;;;;;;;;;:22;;;15762:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33850:8:::1;33826:21;::::0;:32:::1;;;;;;;;;;;;;;;;;;33874:38;33903:8;33874:38;;;;;;;;;;;;;;;;;;;;33749:171:::0;:::o;16921:214::-;15780:12;:10;:12::i;:::-;15770:22;;:6;;;;;;;;;;:22;;;15762:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17002:6:::1;::::0;::::1;;;;;;;;16985:14;;:23;;;;;;;;;;;;;;;;;;17036:1;17019:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17067:4;17061:3;:10;17049:9;:22;;;;17124:1;17087:40;;17108:6;::::0;::::1;;;;;;;;17087:40;;;;;;;;;;;;16921:214:::0;:::o;28865:143::-;28946:7;28973:11;:18;28985:5;28973:18;;;;;;;;;;;;;;;:27;28992:7;28973:27;;;;;;;;;;;;;;;;28966:34;;28865:143;;;;:::o;33047:110::-;15780:12;:10;:12::i;:::-;15770:22;;:6;;;;;;;;;;:22;;;15762:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33144:5:::1;33114:18;:27;33133:7;33114:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;33047:110:::0;:::o;16504:244::-;15780:12;:10;:12::i;:::-;15770:22;;:6;;;;;;;;;;:22;;;15762:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16613:1:::1;16593:22;;:8;:22;;;;16585:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16703:8;16674:38;;16695:6;::::0;::::1;;;;;;;;16674:38;;;;;;;;;;;;16732:8;16723:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16504:244:::0;:::o;7966:106::-;8019:15;8054:10;8047:17;;7966:106;:::o;37703:337::-;37813:1;37796:19;;:5;:19;;;;37788:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37894:1;37875:21;;:7;:21;;;;37867:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37978:6;37948:11;:18;37960:5;37948:18;;;;;;;;;;;;;;;:27;37967:7;37948:27;;;;;;;;;;;;;;;:36;;;;38016:7;38000:32;;38009:5;38000:32;;;38025:6;38000:32;;;;;;;;;;;;;;;;;;37703:337;;;:::o;38048:1559::-;38186:1;38170:18;;:4;:18;;;;38162:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38263:1;38249:16;;:2;:16;;;;38241:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38333:1;38324:6;:10;38316:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38689:28;38720:24;38738:4;38720:9;:24::i;:::-;38689:55;;38765:24;38816:29;;38792:20;:53;;38765:80;;38874:19;:53;;;;;38911:16;;;;;;;;;;;38910:17;38874:53;:91;;;;;38952:13;;;;;;;;;;;38944:21;;:4;:21;;;;38874:91;:129;;;;;38982:21;;;;;;;;;;38874:129;38856:318;;;39053:29;;39030:52;;39126:36;39141:20;39126:14;:36::i;:::-;38856:318;39255:12;39270:4;39255:19;;39382:18;:24;39401:4;39382:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;39410:18;:22;39429:2;39410:22;;;;;;;;;;;;;;;;;;;;;;;;;39382:50;39379:96;;;39458:5;39448:15;;39379:96;39561:38;39576:4;39581:2;39584:6;39591:7;39561:14;:38::i;:::-;38048:1559;;;;;;:::o;4376:192::-;4462:7;4495:1;4490;:6;;4498:12;4482:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4522:9;4538:1;4534;:5;4522:17;;4559:1;4552:8;;;4376:192;;;;;:::o;35383:163::-;35424:7;35445:15;35462;35481:19;:17;:19::i;:::-;35444:56;;;;35518:20;35530:7;35518;:11;;:20;;;;:::i;:::-;35511:27;;;;35383:163;:::o;5774:132::-;5832:7;5859:39;5863:1;5866;5859:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5852:46;;5774:132;;;;:::o;3473:181::-;3531:7;3551:9;3567:1;3563;:5;3551:17;;3592:1;3587;:6;;3579:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3645:1;3638:8;;;3473:181;;;;:::o;34181:419::-;34240:7;34249;34258;34267;34276;34285;34306:23;34331:12;34345:18;34367:20;34379:7;34367:11;:20::i;:::-;34305:82;;;;;;34399:15;34416:23;34441:12;34457:50;34469:7;34478:4;34484:10;34496;:8;:10::i;:::-;34457:11;:50::i;:::-;34398:109;;;;;;34526:7;34535:15;34552:4;34558:15;34575:4;34581:10;34518:74;;;;;;;;;;;;;;;;;;34181:419;;;;;;;:::o;3937:136::-;3995:7;4022:43;4026:1;4029;4022:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4015:50;;3937:136;;;;:::o;39615:1179::-;27181:4;27162:16;;:23;;;;;;;;;;;;;;;;;;39751:21:::1;39775:27;39800:1;39775:20;:24;;:27;;;;:::i;:::-;39751:51;;39813:26;39842:27;39867:1;39842:20;:24;;:27;;;;:::i;:::-;39813:56;;39880:22;39905:63;39949:18;39905:39;39930:13;39905:20;:24;;:39;;;;:::i;:::-;:43;;:63;;;;:::i;:::-;39880:88;;40246:22;40271:21;40246:46;;40337:31;40354:13;40337:16;:31::i;:::-;40499:18;40520:41;40546:14;40520:21;:25;;:41;;;;:::i;:::-;40499:62;;40611:44;40624:18;40644:10;40611:12;:44::i;:::-;40666:33;40684:14;40666:17;:33::i;:::-;40725:61;40740:13;40755:10;40767:18;40725:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27196:1;;;;;27227:5:::0;27208:16;;:24;;;;;;;;;;;;;;;;;;39615:1179;:::o;41993:834::-;42104:7;42100:40;;42126:14;:12;:14::i;:::-;42100:40;42165:11;:19;42177:6;42165:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;42189:11;:22;42201:9;42189:22;;;;;;;;;;;;;;;;;;;;;;;;;42188:23;42165:46;42161:597;;;42228:48;42250:6;42258:9;42269:6;42228:21;:48::i;:::-;42161:597;;;42299:11;:19;42311:6;42299:19;;;;;;;;;;;;;;;;;;;;;;;;;42298:20;:46;;;;;42322:11;:22;42334:9;42322:22;;;;;;;;;;;;;;;;;;;;;;;;;42298:46;42294:464;;;42361:46;42381:6;42389:9;42400:6;42361:19;:46::i;:::-;42294:464;;;42430:11;:19;42442:6;42430:19;;;;;;;;;;;;;;;;;;;;;;;;;42429:20;:47;;;;;42454:11;:22;42466:9;42454:22;;;;;;;;;;;;;;;;;;;;;;;;;42453:23;42429:47;42425:333;;;42493:44;42511:6;42519:9;42530:6;42493:17;:44::i;:::-;42425:333;;;42559:11;:19;42571:6;42559:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;42582:11;:22;42594:9;42582:22;;;;;;;;;;;;;;;;;;;;;;;;;42559:45;42555:203;;;42621:48;42643:6;42651:9;42662:6;42621:21;:48::i;:::-;42555:203;;;42702:44;42720:6;42728:9;42739:6;42702:17;:44::i;:::-;42555:203;42425:333;42294:464;42161:597;42782:7;42778:41;;42804:15;:13;:15::i;:::-;42778:41;41993:834;;;;:::o;35554:561::-;35604:7;35613;35633:15;35651:7;;35633:25;;35669:15;35687:7;;35669:25;;35716:9;35711:289;35735:9;:16;;;;35731:1;:20;35711:289;;;35801:7;35777;:21;35785:9;35795:1;35785:12;;;;;;;;;;;;;;;;;;;;;;;;;35777:21;;;;;;;;;;;;;;;;:31;:66;;;;35836:7;35812;:21;35820:9;35830:1;35820:12;;;;;;;;;;;;;;;;;;;;;;;;;35812:21;;;;;;;;;;;;;;;;:31;35777:66;35773:97;;;35853:7;;35862;;35845:25;;;;;;;;;35773:97;35895:34;35907:7;:21;35915:9;35925:1;35915:12;;;;;;;;;;;;;;;;;;;;;;;;;35907:21;;;;;;;;;;;;;;;;35895:7;:11;;:34;;;;:::i;:::-;35885:44;;35954:34;35966:7;:21;35974:9;35984:1;35974:12;;;;;;;;;;;;;;;;;;;;;;;;;35966:21;;;;;;;;;;;;;;;;35954:7;:11;;:34;;;;:::i;:::-;35944:44;;35753:3;;;;;;;35711:289;;;;36024:20;36036:7;;36024;;:11;;:20;;;;:::i;:::-;36014:7;:30;36010:61;;;36054:7;;36063;;36046:25;;;;;;;;36010:61;36090:7;36099;36082:25;;;;;;35554:561;;;:::o;6402:278::-;6488:7;6520:1;6516;:5;6523:12;6508:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6547:9;6563:1;6559;:5;;;;;;6547:17;;6671:1;6664:8;;;6402:278;;;;;:::o;34608:330::-;34668:7;34677;34686;34706:12;34721:24;34737:7;34721:15;:24::i;:::-;34706:39;;34756:18;34777:30;34799:7;34777:21;:30::i;:::-;34756:51;;34818:23;34844:33;34866:10;34844:17;34856:4;34844:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;34818:59;;34896:15;34913:4;34919:10;34888:42;;;;;;;;;34608:330;;;;;:::o;34946:429::-;35061:7;35070;35079;35099:15;35117:24;35129:11;35117:7;:11;;:24;;;;:::i;:::-;35099:42;;35152:12;35167:21;35176:11;35167:4;:8;;:21;;;;:::i;:::-;35152:36;;35199:18;35220:27;35235:11;35220:10;:14;;:27;;;;:::i;:::-;35199:48;;35258:23;35284:33;35306:10;35284:17;35296:4;35284:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;35258:59;;35336:7;35345:15;35362:4;35328:39;;;;;;;;;;34946:429;;;;;;;;:::o;40802:589::-;40928:21;40966:1;40952:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40928:40;;40997:4;40979;40984:1;40979:7;;;;;;;;;;;;;:23;;;;;;;;;;;41023:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41013:4;41018:1;41013:7;;;;;;;;;;;;;:32;;;;;;;;;;;41058:62;41075:4;41090:15;;;;;;;;;;;41108:11;41058:8;:62::i;:::-;41159:15;;;;;;;;;;;:66;;;41240:11;41266:1;41310:4;41337;41357:15;41159:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40802:589;;:::o;41399:513::-;41547:62;41564:4;41579:15;;;;;;;;;;;41597:11;41547:8;:62::i;:::-;41652:15;;;;;;;;;;;:31;;;41691:9;41724:4;41744:11;41770:1;41813;41856:7;:5;:7::i;:::-;41878:15;41652:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41399:513;;:::o;37368:162::-;37431:24;37448:6;37431:16;:24::i;:::-;37467:22;;;;;;;;;;;:31;;:54;37499:21;37467:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37368:162;:::o;36834:250::-;36891:1;36880:7;;:12;:34;;;;;36913:1;36896:13;;:18;36880:34;36877:46;;;36916:7;;36877:46;36961:7;;36943:15;:25;;;;37003:13;;36979:21;:37;;;;37047:1;37037:7;:11;;;;37075:1;37059:13;:17;;;;36834:250;:::o;43939:566::-;44042:15;44059:23;44084:12;44098:23;44123:12;44137:18;44159:19;44170:7;44159:10;:19::i;:::-;44041:137;;;;;;;;;;;;44207:28;44227:7;44207;:15;44215:6;44207:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44189:7;:15;44197:6;44189:15;;;;;;;;;;;;;;;:46;;;;44264:28;44284:7;44264;:15;44272:6;44264:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44246:7;:15;44254:6;44246:15;;;;;;;;;;;;;;;:46;;;;44324:39;44347:15;44324:7;:18;44332:9;44324:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44303:7;:18;44311:9;44303:18;;;;;;;;;;;;;;;:60;;;;44377:26;44392:10;44377:14;:26::i;:::-;44414:23;44426:4;44432;44414:11;:23::i;:::-;44470:9;44453:44;;44462:6;44453:44;;;44481:15;44453:44;;;;;;;;;;;;;;;;;;43939:566;;;;;;;;;:::o;43345:586::-;43446:15;43463:23;43488:12;43502:23;43527:12;43541:18;43563:19;43574:7;43563:10;:19::i;:::-;43445:137;;;;;;;;;;;;43611:28;43631:7;43611;:15;43619:6;43611:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43593:7;:15;43601:6;43593:15;;;;;;;;;;;;;;;:46;;;;43671:39;43694:15;43671:7;:18;43679:9;43671:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43650:7;:18;43658:9;43650:18;;;;;;;;;;;;;;;:60;;;;43742:39;43765:15;43742:7;:18;43750:9;43742:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43721:7;:18;43729:9;43721:18;;;;;;;;;;;;;;;:60;;;;43803:26;43818:10;43803:14;:26::i;:::-;43840:23;43852:4;43858;43840:11;:23::i;:::-;43896:9;43879:44;;43888:6;43879:44;;;43907:15;43879:44;;;;;;;;;;;;;;;;;;43345:586;;;;;;;;;:::o;42835:502::-;42934:15;42951:23;42976:12;42990:23;43015:12;43029:18;43051:19;43062:7;43051:10;:19::i;:::-;42933:137;;;;;;;;;;;;43099:28;43119:7;43099;:15;43107:6;43099:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43081:7;:15;43089:6;43081:15;;;;;;;;;;;;;;;:46;;;;43159:39;43182:15;43159:7;:18;43167:9;43159:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43138:7;:18;43146:9;43138:18;;;;;;;;;;;;;;;:60;;;;43209:26;43224:10;43209:14;:26::i;:::-;43246:23;43258:4;43264;43246:11;:23::i;:::-;43302:9;43285:44;;43294:6;43285:44;;;43313:15;43285:44;;;;;;;;;;;;;;;;;;42835:502;;;;;;;;;:::o;32266:642::-;32369:15;32386:23;32411:12;32425:23;32450:12;32464:18;32486:19;32497:7;32486:10;:19::i;:::-;32368:137;;;;;;;;;;;;32534:28;32554:7;32534;:15;32542:6;32534:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32516:7;:15;32524:6;32516:15;;;;;;;;;;;;;;;:46;;;;32591:28;32611:7;32591;:15;32599:6;32591:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32573:7;:15;32581:6;32573:15;;;;;;;;;;;;;;;:46;;;;32651:39;32674:15;32651:7;:18;32659:9;32651:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32630:7;:18;32638:9;32630:18;;;;;;;;;;;;;;;:60;;;;32722:39;32745:15;32722:7;:18;32730:9;32722:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32701:7;:18;32709:9;32701:18;;;;;;;;;;;;;;;:60;;;;32780:26;32795:10;32780:14;:26::i;:::-;32817:23;32829:4;32835;32817:11;:23::i;:::-;32873:9;32856:44;;32865:6;32856:44;;;32884:15;32856:44;;;;;;;;;;;;;;;;;;32266:642;;;;;;;;;:::o;37096:125::-;37150:15;;37140:7;:25;;;;37192:21;;37176:13;:37;;;;37096:125::o;36494:154::-;36558:7;36585:55;36624:5;36585:20;36597:7;;36585;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;36578:62;;36494:154;;;:::o;36656:166::-;36726:7;36753:61;36798:5;36753:26;36765:13;;36753:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;36746:68;;36656:166;;;:::o;4827:471::-;4885:7;5135:1;5130;:6;5126:47;;;5160:1;5153:8;;;;5126:47;5185:9;5201:1;5197;:5;5185:17;;5230:1;5225;5221;:5;;;;;;:10;5213:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5289:1;5282:8;;;4827:471;;;;;:::o;36127:355::-;36190:19;36213:10;:8;:10::i;:::-;36190:33;;36234:18;36255:27;36270:11;36255:10;:14;;:27;;;;:::i;:::-;36234:48;;36318:38;36345:10;36318:7;:22;36334:4;36318:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;36293:7;:22;36309:4;36293:22;;;;;;;;;;;;;;;:63;;;;36370:11;:26;36390:4;36370:26;;;;;;;;;;;;;;;;;;;;;;;;;36367:107;;;36436:38;36463:10;36436:7;:22;36452:4;36436:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;36411:7;:22;36427:4;36411:22;;;;;;;;;;;;;;;:63;;;;36367:107;36127:355;;;:::o;34026:147::-;34104:17;34116:4;34104:7;;:11;;:17;;;;:::i;:::-;34094:7;:27;;;;34145:20;34160:4;34145:10;;:14;;:20;;;;:::i;:::-;34132:10;:33;;;;34026:147;;:::o

Swarm Source

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