Contract
0x2841A8a2ce98A9d21aD8C3B7Fc481527569bd7bb
1
Contract Overview
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
SL3
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2021-11-19 */ /** #SL3 Great features: 3% fee auto add to the liquidity pool to locked forever when selling 2% fee auto distribute to all holders 5000 total supply 1 tokens limitation for trade 25 tokens for dev 3% fee for liquidity will go to an address that the contract creates, and the contract will sell it and add to liquidity automatically, */ 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; } } // pragma solidity >=0.5.0; interface IElkFactory { 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 IElkPair { 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 IElkRouter { function factory() external pure returns (address); function WAVAX() 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 addLiquidityAVAX( address token, uint amountTokenDesired, uint amountTokenMin, uint amountAVAXMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountAVAX, 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 removeLiquidityAVAX( address token, uint liquidity, uint amountTokenMin, uint amountAVAXMin, address to, uint deadline ) external returns (uint amountToken, uint amountAVAX); 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 removeLiquidityAVAXWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountAVAXMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountAVAX); 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 swapExactAVAXForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactAVAX(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForAVAX(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapAVAXForExactTokens(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); function removeLiquidityAVAXSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountAVAXMin, address to, uint deadline ) external returns (uint amountAVAX); function removeLiquidityAVAXWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountAVAXMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountAVAX); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactAVAXForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForAVAXSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract SL3 is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 5000000000000; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "SL3"; string private _symbol = "SL3"; uint8 private _decimals = 9; uint256 public _taxFee = 2; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 3; uint256 private _previousLiquidityFee = _liquidityFee; IElkRouter public immutable ElkRouter; address public immutable ElkPair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 1000000000; uint256 private numTokensSellToAddToLiquidity = 1000000000; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal; IElkRouter _ElkRouter = IElkRouter(0x9E4AAbd2B3E60Ee1322E94307d0776F2c8e6CFbb); // Create an Elk pair for this new token ElkPair = IElkFactory(_ElkRouter.factory()) .createPair(address(this), _ElkRouter.WAVAX()); // set the rest of the contract variables ElkRouter = _ElkRouter; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function 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 included"); 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**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from ElkRouter 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 Elkpair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != ElkPair && 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 swapTokensForAVAX(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 Elk addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForAVAX(uint256 tokenAmount) private { // generate the Elk pair path of token -> WAVAX address[] memory path = new address[](2); path[0] = address(this); path[1] = ElkRouter.WAVAX(); _approve(address(this), address(ElkRouter), tokenAmount); // make the swap ElkRouter.swapExactTokensForAVAXSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 avaxAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(ElkRouter), tokenAmount); // add the liquidity ElkRouter.addLiquidityAVAX{value: avaxAmount}( 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); } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ElkPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ElkRouter","outputs":[{"internalType":"contract IElkRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
65048c273950006009556502a6440eafff19600a55610100604052600360c081905262534c3360e81b60e09081526200003c91600c919062000399565b5060408051808201909152600380825262534c3360e81b60209092019182526200006991600d9162000399565b50600e805460ff191660091790556002600f819055601055600360118190556012556013805461ff001916610100179055633b9aca006014819055601555348015620000b457600080fd5b506000620000c162000386565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a54600360006200011c62000386565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000739e4aabd2b3e60ee1322e94307d0776f2c8e6cfbb9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200019357600080fd5b505afa158015620001a8573d6000803e3d6000fd5b505050506040513d6020811015620001bf57600080fd5b5051604080516339d94ae160e11b815290516001600160a01b039283169263c9c65396923092918616916373b295c291600480820192602092909190829003018186803b1580156200021057600080fd5b505afa15801562000225573d6000803e3d6000fd5b505050506040513d60208110156200023c57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200028f57600080fd5b505af1158015620002a4573d6000803e3d6000fd5b505050506040513d6020811015620002bb57600080fd5b50516001600160601b0319606091821b811660a0529082901b16608052600160066000620002e86200038a565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260069092529020805490911660011790556200033262000386565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a35062000435565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003dc57805160ff19168380011785556200040c565b828001600101855582156200040c579182015b828111156200040c578251825591602001919060010190620003ef565b506200041a9291506200041e565b5090565b5b808211156200041a57600081556001016200041f565b60805160601c60a05160601c612aac6200047d600039806114bc5280611a485250806117aa528061220452806122bc52806122e352806123c952806123f05250612aac6000f3fe60806040526004361061026e5760003560e01c806370a0823111610153578063a9059cbb116100cb578063dd4670641161007f578063ea2f0b3711610064578063ea2f0b371461085d578063f2fde38b14610890578063f30e4804146108c357610275565b8063dd467064146107f8578063dd62ed3e1461082257610275565b8063c49b9a80116100b0578063c49b9a801461078d578063d189e45b146107b9578063d543dbeb146107ce57610275565b8063a9059cbb1461073f578063b6c523241461077857610275565b80638da5cb5b1161012257806395d89b411161010757806395d89b41146106dc578063a457c2d7146106f1578063a69df4b51461072a57610275565b80638da5cb5b146106815780638ee88c53146106b257610275565b806370a08231146105f1578063715018a6146106245780637d1db4a51461063957806388f820201461064e57610275565b806339509351116101e65780634549b039116101b557806352390c021161019a57806352390c02146105765780635342acb4146105a95780636bc87c3a146105dc57610275565b80634549b0391461052f5780634a74bb021461056157610275565b806339509351146104845780633b124fe7146104bd5780633bd5d173146104d2578063437823ec146104fc57610275565b806318160ddd1161023d5780632d838119116102225780632d838119146103fc578063313ce567146104265780633685d4191461045157610275565b806318160ddd146103a457806323b872dd146103b957610275565b8063061c82d01461027a57806306fdde03146102a6578063095ea7b31461033057806313114a9d1461037d57610275565b3661027557005b600080fd5b34801561028657600080fd5b506102a46004803603602081101561029d57600080fd5b50356108d8565b005b3480156102b257600080fd5b506102bb610935565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f55781810151838201526020016102dd565b50505050905090810190601f1680156103225780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033c57600080fd5b506103696004803603604081101561035357600080fd5b506001600160a01b0381351690602001356109cb565b604080519115158252519081900360200190f35b34801561038957600080fd5b506103926109e9565b60408051918252519081900360200190f35b3480156103b057600080fd5b506103926109ef565b3480156103c557600080fd5b50610369600480360360608110156103dc57600080fd5b506001600160a01b038135811691602081013590911690604001356109f5565b34801561040857600080fd5b506103926004803603602081101561041f57600080fd5b5035610a7c565b34801561043257600080fd5b5061043b610ade565b6040805160ff9092168252519081900360200190f35b34801561045d57600080fd5b506102a46004803603602081101561047457600080fd5b50356001600160a01b0316610ae7565b34801561049057600080fd5b50610369600480360360408110156104a757600080fd5b506001600160a01b038135169060200135610ca8565b3480156104c957600080fd5b50610392610cf6565b3480156104de57600080fd5b506102a4600480360360208110156104f557600080fd5b5035610cfc565b34801561050857600080fd5b506102a46004803603602081101561051f57600080fd5b50356001600160a01b0316610dd6565b34801561053b57600080fd5b506103926004803603604081101561055257600080fd5b50803590602001351515610e52565b34801561056d57600080fd5b50610369610ee4565b34801561058257600080fd5b506102a46004803603602081101561059957600080fd5b50356001600160a01b0316610ef2565b3480156105b557600080fd5b50610369600480360360208110156105cc57600080fd5b50356001600160a01b0316611078565b3480156105e857600080fd5b50610392611096565b3480156105fd57600080fd5b506103926004803603602081101561061457600080fd5b50356001600160a01b031661109c565b34801561063057600080fd5b506102a46110fe565b34801561064557600080fd5b506103926111a0565b34801561065a57600080fd5b506103696004803603602081101561067157600080fd5b50356001600160a01b03166111a6565b34801561068d57600080fd5b506106966111c4565b604080516001600160a01b039092168252519081900360200190f35b3480156106be57600080fd5b506102a4600480360360208110156106d557600080fd5b50356111d3565b3480156106e857600080fd5b506102bb611230565b3480156106fd57600080fd5b506103696004803603604081101561071457600080fd5b506001600160a01b038135169060200135611291565b34801561073657600080fd5b506102a46112f9565b34801561074b57600080fd5b506103696004803603604081101561076257600080fd5b506001600160a01b0381351690602001356113f9565b34801561078457600080fd5b5061039261140d565b34801561079957600080fd5b506102a4600480360360208110156107b057600080fd5b50351515611413565b3480156107c557600080fd5b506106966114ba565b3480156107da57600080fd5b506102a4600480360360208110156107f157600080fd5b50356114de565b34801561080457600080fd5b506102a46004803603602081101561081b57600080fd5b503561155c565b34801561082e57600080fd5b506103926004803603604081101561084557600080fd5b506001600160a01b038135811691602001351661160c565b34801561086957600080fd5b506102a46004803603602081101561088057600080fd5b50356001600160a01b0316611637565b34801561089c57600080fd5b506102a4600480360360208110156108b357600080fd5b50356001600160a01b03166116b0565b3480156108cf57600080fd5b506106966117a8565b6108e06117cc565b6000546001600160a01b03908116911614610930576040805162461bcd60e51b81526020600482018190526024820152600080516020612971833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c15780601f10610996576101008083540402835291602001916109c1565b820191906000526020600020905b8154815290600101906020018083116109a457829003601f168201915b5050505050905090565b60006109df6109d86117cc565b84846117d0565b5060015b92915050565b600b5490565b60095490565b6000610a028484846118bc565b610a7284610a0e6117cc565b610a6d85604051806060016040528060288152602001612949602891396001600160a01b038a16600090815260056020526040812090610a4c6117cc565b6001600160a01b031681526020810191909152604001600020549190611b02565b6117d0565b5060019392505050565b6000600a54821115610abf5760405162461bcd60e51b815260040180806020018281038252602a81526020018061288e602a913960400191505060405180910390fd5b6000610ac9611b99565b9050610ad58382611bbc565b9150505b919050565b600e5460ff1690565b610aef6117cc565b6000546001600160a01b03908116911614610b3f576040805162461bcd60e51b81526020600482018190526024820152600080516020612971833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610bac576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610ca457816001600160a01b031660088281548110610bd057fe5b6000918252602090912001546001600160a01b03161415610c9c57600880546000198101908110610bfd57fe5b600091825260209091200154600880546001600160a01b039092169183908110610c2357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c7557fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610ca4565b600101610baf565b5050565b60006109df610cb56117cc565b84610a6d8560056000610cc66117cc565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611c05565b600f5481565b6000610d066117cc565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d615760405162461bcd60e51b815260040180806020018281038252602c815260200180612a03602c913960400191505060405180910390fd5b6000610d6c83611c5f565b505050506001600160a01b038416600090815260036020526040902054919250610d9891905082611cae565b6001600160a01b038316600090815260036020526040902055600a54610dbe9082611cae565b600a55600b54610dce9084611c05565b600b55505050565b610dde6117cc565b6000546001600160a01b03908116911614610e2e576040805162461bcd60e51b81526020600482018190526024820152600080516020612971833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610eab576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610eca576000610ebb84611c5f565b509395506109e3945050505050565b6000610ed584611c5f565b509295506109e3945050505050565b601354610100900460ff1681565b610efa6117cc565b6000546001600160a01b03908116911614610f4a576040805162461bcd60e51b81526020600482018190526024820152600080516020612971833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610fb8576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611012576001600160a01b038116600090815260036020526040902054610ff890610a7c565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff16156110dc57506001600160a01b038116600090815260046020526040902054610ad9565b6001600160a01b0382166000908152600360205260409020546109e390610a7c565b6111066117cc565b6000546001600160a01b03908116911614611156576040805162461bcd60e51b81526020600482018190526024820152600080516020612971833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60145481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6111db6117cc565b6000546001600160a01b0390811691161461122b576040805162461bcd60e51b81526020600482018190526024820152600080516020612971833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c15780601f10610996576101008083540402835291602001916109c1565b60006109df61129e6117cc565b84610a6d85604051806060016040528060258152602001612a5260259139600560006112c86117cc565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b02565b6001546001600160a01b031633146113425760405162461bcd60e51b8152600401808060200182810382526023815260200180612a2f6023913960400191505060405180910390fd5b6002544211611398576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109df6114066117cc565b84846118bc565b60025490565b61141b6117cc565b6000546001600160a01b0390811691161461146b576040805162461bcd60e51b81526020600482018190526024820152600080516020612971833981519152604482015290519081900360640190fd5b60138054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b7f000000000000000000000000000000000000000000000000000000000000000081565b6114e66117cc565b6000546001600160a01b03908116911614611536576040805162461bcd60e51b81526020600482018190526024820152600080516020612971833981519152604482015290519081900360640190fd5b611556606461155083600954611cf090919063ffffffff16565b90611bbc565b60145550565b6115646117cc565b6000546001600160a01b039081169116146115b4576040805162461bcd60e51b81526020600482018190526024820152600080516020612971833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61163f6117cc565b6000546001600160a01b0390811691161461168f576040805162461bcd60e51b81526020600482018190526024820152600080516020612971833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6116b86117cc565b6000546001600160a01b03908116911614611708576040805162461bcd60e51b81526020600482018190526024820152600080516020612971833981519152604482015290519081900360640190fd5b6001600160a01b03811661174d5760405162461bcd60e51b81526004018080602001828103825260268152602001806128b86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000081565b3390565b6001600160a01b0383166118155760405162461bcd60e51b81526004018080602001828103825260248152602001806129df6024913960400191505060405180910390fd5b6001600160a01b03821661185a5760405162461bcd60e51b81526004018080602001828103825260228152602001806128de6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119015760405162461bcd60e51b81526004018080602001828103825260258152602001806129ba6025913960400191505060405180910390fd5b6001600160a01b0382166119465760405162461bcd60e51b815260040180806020018281038252602381526020018061286b6023913960400191505060405180910390fd5b600081116119855760405162461bcd60e51b81526004018080602001828103825260298152602001806129916029913960400191505060405180910390fd5b61198d6111c4565b6001600160a01b0316836001600160a01b0316141580156119c757506119b16111c4565b6001600160a01b0316826001600160a01b031614155b15611a0d57601454811115611a0d5760405162461bcd60e51b81526004018080602001828103825260288152602001806129006028913960400191505060405180910390fd5b6000611a183061109c565b90506014548110611a2857506014545b60155481108015908190611a3f575060135460ff16155b8015611a7d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611a905750601354610100900460ff165b15611aa3576015549150611aa382611d49565b6001600160a01b03851660009081526006602052604090205460019060ff1680611ae557506001600160a01b03851660009081526006602052604090205460ff165b15611aee575060005b611afa86868684611de6565b505050505050565b60008184841115611b915760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b56578181015183820152602001611b3e565b50505050905090810190601f168015611b835780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611ba6611f5a565b9092509050611bb58282611bbc565b9250505090565b6000611bfe83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120bd565b9392505050565b600082820183811015611bfe576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611c768a612122565b9250925092506000806000611c948d8686611c8f611b99565b612164565b919f909e50909c50959a5093985091965092945050505050565b6000611bfe83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b02565b600082611cff575060006109e3565b82820282848281611d0c57fe5b0414611bfe5760405162461bcd60e51b81526004018080602001828103825260218152602001806129286021913960400191505060405180910390fd5b6013805460ff191660011790556000611d63826002611bbc565b90506000611d718383611cae565b905047611d7d836121b4565b6000611d894783611cae565b9050611d9583826123c3565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506013805460ff19169055505050565b80611df357611df36124c1565b6001600160a01b03841660009081526007602052604090205460ff168015611e3457506001600160a01b03831660009081526007602052604090205460ff16155b15611e4957611e448484846124f3565b611f47565b6001600160a01b03841660009081526007602052604090205460ff16158015611e8a57506001600160a01b03831660009081526007602052604090205460ff165b15611e9a57611e44848484612617565b6001600160a01b03841660009081526007602052604090205460ff16158015611edc57506001600160a01b03831660009081526007602052604090205460ff16155b15611eec57611e448484846126c0565b6001600160a01b03841660009081526007602052604090205460ff168015611f2c57506001600160a01b03831660009081526007602052604090205460ff165b15611f3c57611e44848484612704565b611f478484846126c0565b80611f5457611f54612777565b50505050565b600a546009546000918291825b60085481101561208b57826003600060088481548110611f8357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611fe85750816004600060088481548110611fc157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611fff57600a54600954945094505050506120b9565b61203f600360006008848154811061201357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611cae565b9250612081600460006008848154811061205557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611cae565b9150600101611f67565b50600954600a5461209b91611bbc565b8210156120b357600a546009549350935050506120b9565b90925090505b9091565b6000818361210c5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b56578181015183820152602001611b3e565b50600083858161211857fe5b0495945050505050565b60008060008061213185612785565b9050600061213e866127a1565b90506000612156826121508986611cae565b90611cae565b979296509094509092505050565b60008080806121738886611cf0565b905060006121818887611cf0565b9050600061218f8888611cf0565b905060006121a1826121508686611cae565b939b939a50919850919650505050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106121e257fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166373b295c26040518163ffffffff1660e01b815260040160206040518083038186803b15801561225b57600080fd5b505afa15801561226f573d6000803e3d6000fd5b505050506040513d602081101561228557600080fd5b505181518290600190811061229657fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506122e1307f0000000000000000000000000000000000000000000000000000000000000000846117d0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663762b15628360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561238657818101518382015260200161236e565b505050509050019650505050505050600060405180830381600087803b1580156123af57600080fd5b505af1158015611afa573d6000803e3d6000fd5b6123ee307f0000000000000000000000000000000000000000000000000000000000000000846117d0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f91b3f7282308560008061242b6111c4565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561249657600080fd5b505af11580156124aa573d6000803e3d6000fd5b50505050506040513d6060811015611f5457600080fd5b600f541580156124d15750601154155b156124db576124f1565b600f805460105560118054601255600091829055555b565b60008060008060008061250587611c5f565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125379088611cae565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546125669087611cae565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546125959086611c05565b6001600160a01b0389166000908152600360205260409020556125b7816127bd565b6125c18483612846565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061262987611c5f565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061265b9087611cae565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546126919084611c05565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546125959086611c05565b6000806000806000806126d287611c5f565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506125669087611cae565b60008060008060008061271687611c5f565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127489088611cae565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461265b9087611cae565b601054600f55601254601155565b60006109e36064611550600f5485611cf090919063ffffffff16565b60006109e3606461155060115485611cf090919063ffffffff16565b60006127c7611b99565b905060006127d58383611cf0565b306000908152600360205260409020549091506127f29082611c05565b3060009081526003602090815260408083209390935560079052205460ff161561284157306000908152600460205260409020546128309084611c05565b306000908152600460205260409020555b505050565b600a546128539083611cae565b600a55600b546128639082611c05565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e40a05041272bee8968e034dc2f34b6729cdf37485d27f8e2c89c49505f3e32264736f6c634300060c0033
Deployed ByteCode Sourcemap
25944:18262:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33268:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33268:98:0;;:::i;:::-;;28203:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29115:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29115:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30236:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28480:95;;;;;;;;;;;;;:::i;29284:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29284:313:0;;;;;;;;;;;;;;;;;:::i;31160:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31160:253:0;;:::i;28389:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31876:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31876:479:0;-1:-1:-1;;;;;31876:479:0;;:::i;29605:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29605:218:0;;;;;;;;:::i;26689:26::-;;;;;;;;;;;;;:::i;30331:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30331:377:0;;:::i;33023:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33023:111:0;-1:-1:-1;;;;;33023:111:0;;:::i;30716:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30716:436:0;;;;;;;;;:::i;26991:40::-;;;;;;;;;;;;;:::i;31421:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31421:447:0;-1:-1:-1;;;;;31421:447:0;;:::i;37159:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37159:123:0;-1:-1:-1;;;;;37159:123:0;;:::i;26776:32::-;;;;;;;;;;;;;:::i;28583:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28583:198:0;-1:-1:-1;;;;;28583:198:0;;:::i;16616:148::-;;;;;;;;;;;;;:::i;27044:40::-;;;;;;;;;;;;;:::i;30108:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30108:120:0;-1:-1:-1;;;;;30108:120:0;;:::i;15973:79::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;15973:79:0;;;;;;;;;;;;;;33378:122;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33378:122:0;;:::i;28294:87::-;;;;;;;;;;;;;:::i;29831:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29831:269:0;;;;;;;;:::i;17626:293::-;;;;;;;;;;;;;:::i;28789:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28789:167:0;;;;;;;;:::i;17171:89::-;;;;;;;;;;;;;:::i;33681:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33681:171:0;;;;:::i;26921:32::-;;;;;;;;;;;;;:::i;33511:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33511:162:0;;:::i;17336:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17336:214:0;;:::i;28964:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28964:143:0;;;;;;;;;;:::i;33146:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33146:110:0;-1:-1:-1;;;;;33146:110:0;;:::i;16919:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16919:244:0;-1:-1:-1;;;;;16919:244:0;;:::i;26877:37::-;;;;;;;;;;;;;:::i;33268:98::-;16195:12;:10;:12::i;:::-;16185:6;;-1:-1:-1;;;;;16185:6:0;;;:22;;;16177:67;;;;;-1:-1:-1;;;16177:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16177:67:0;;;;;;;;;;;;;;;33342:7:::1;:16:::0;33268:98::o;28203:83::-;28273:5;28266:12;;;;;;;;-1:-1:-1;;28266:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28240:13;;28266:12;;28273:5;;28266:12;;28273:5;28266:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28203:83;:::o;29115:161::-;29190:4;29207:39;29216:12;:10;:12::i;:::-;29230:7;29239:6;29207:8;:39::i;:::-;-1:-1:-1;29264:4:0;29115:161;;;;;:::o;30236:87::-;30305:10;;30236:87;:::o;28480:95::-;28560:7;;28480:95;:::o;29284:313::-;29382:4;29399:36;29409:6;29417:9;29428:6;29399:9;:36::i;:::-;29446:121;29455:6;29463:12;:10;:12::i;:::-;29477:89;29515:6;29477:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29477:19:0;;;;;;:11;:19;;;;;;29497:12;:10;:12::i;:::-;-1:-1:-1;;;;;29477:33:0;;;;;;;;;;;;-1:-1:-1;29477:33:0;;;:89;:37;:89::i;:::-;29446:8;:121::i;:::-;-1:-1:-1;29585:4:0;29284:313;;;;;:::o;31160:253::-;31226:7;31265;;31254;:18;;31246:73;;;;-1:-1:-1;;;31246:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31330:19;31353:10;:8;:10::i;:::-;31330:33;-1:-1:-1;31381:24:0;:7;31330:33;31381:11;:24::i;:::-;31374:31;;;31160:253;;;;:::o;28389:83::-;28455:9;;;;28389:83;:::o;31876:479::-;16195:12;:10;:12::i;:::-;16185:6;;-1:-1:-1;;;;;16185:6:0;;;:22;;;16177:67;;;;;-1:-1:-1;;;16177:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16177:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31958:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31950:60;;;::::0;;-1:-1:-1;;;31950:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32026:9;32021:327;32045:9;:16:::0;32041:20;::::1;32021:327;;;32103:7;-1:-1:-1::0;;;;;32087:23:0::1;:9;32097:1;32087:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32087:12:0::1;:23;32083:254;;;32146:9;32156:16:::0;;-1:-1:-1;;32156:20:0;;;32146:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32131:9:::1;:12:::0;;-1:-1:-1;;;;;32146:31:0;;::::1;::::0;32141:1;;32131:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32131:46:0::1;-1:-1:-1::0;;;;;32131:46:0;;::::1;;::::0;;32196:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32235:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32235:28:0::1;::::0;;32282:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32282:15:0;;;;;-1:-1:-1;;;;;;32282:15:0::1;::::0;;;;;32316:5:::1;;32083:254;32063:3;;32021:327;;;;31876:479:::0;:::o;29605:218::-;29693:4;29710:83;29719:12;:10;:12::i;:::-;29733:7;29742:50;29781:10;29742:11;:25;29754:12;:10;:12::i;:::-;-1:-1:-1;;;;;29742:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29742:25:0;;;:34;;;;;;;;;;;:38;:50::i;26689:26::-;;;;:::o;30331:377::-;30383:14;30400:12;:10;:12::i;:::-;-1:-1:-1;;;;;30432:19:0;;;;;;:11;:19;;;;;;30383:29;;-1:-1:-1;30432:19:0;;30431:20;30423:77;;;;-1:-1:-1;;;30423:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30512:15;30536:19;30547:7;30536:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30584:15:0;;;;;;:7;:15;;;;;;30511:44;;-1:-1:-1;30584:28:0;;:15;-1:-1:-1;30511:44:0;30584:19;:28::i;:::-;-1:-1:-1;;;;;30566:15:0;;;;;;:7;:15;;;;;:46;30633:7;;:20;;30645:7;30633:11;:20::i;:::-;30623:7;:30;30677:10;;:23;;30692:7;30677:14;:23::i;:::-;30664:10;:36;-1:-1:-1;;;30331:377:0:o;33023:111::-;16195:12;:10;:12::i;:::-;16185:6;;-1:-1:-1;;;;;16185:6:0;;;:22;;;16177:67;;;;;-1:-1:-1;;;16177:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16177:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33092:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33092:34:0::1;33122:4;33092:34;::::0;;33023:111::o;30716:436::-;30806:7;30845;;30834;:18;;30826:62;;;;;-1:-1:-1;;;30826:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30904:17;30899:246;;30939:15;30963:19;30974:7;30963:10;:19::i;:::-;-1:-1:-1;30938:44:0;;-1:-1:-1;30997:14:0;;-1:-1:-1;;;;;30997:14:0;30899:246;31046:23;31077:19;31088:7;31077:10;:19::i;:::-;-1:-1:-1;31044:52:0;;-1:-1:-1;31111:22:0;;-1:-1:-1;;;;;31111:22:0;26991:40;;;;;;;;;:::o;31421:447::-;16195:12;:10;:12::i;:::-;16185:6;;-1:-1:-1;;;;;16185:6:0;;;:22;;;16177:67;;;;;-1:-1:-1;;;16177:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16177:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31618:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31617:21;31609:61;;;::::0;;-1:-1:-1;;;31609:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31684:16:0;::::1;31703:1;31684:16:::0;;;:7:::1;:16;::::0;;;;;:20;31681:108:::1;;-1:-1:-1::0;;;;;31760:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;31740:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;31721:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31681:108:::1;-1:-1:-1::0;;;;;31799:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31799:27:0::1;31822:4;31799:27:::0;;::::1;::::0;;;31837:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31837:23:0::1;::::0;;::::1;::::0;;31421:447::o;37159:123::-;-1:-1:-1;;;;;37247:27:0;37223:4;37247:27;;;:18;:27;;;;;;;;;37159:123::o;26776:32::-;;;;:::o;28583:198::-;-1:-1:-1;;;;;28673:20:0;;28649:7;28673:20;;;:11;:20;;;;;;;;28669:49;;;-1:-1:-1;;;;;;28702:16:0;;;;;;:7;:16;;;;;;28695:23;;28669:49;-1:-1:-1;;;;;28756:16:0;;;;;;:7;:16;;;;;;28736:37;;:19;:37::i;16616:148::-;16195:12;:10;:12::i;:::-;16185:6;;-1:-1:-1;;;;;16185:6:0;;;:22;;;16177:67;;;;;-1:-1:-1;;;16177:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16177:67:0;;;;;;;;;;;;;;;16723:1:::1;16707:6:::0;;16686:40:::1;::::0;-1:-1:-1;;;;;16707:6:0;;::::1;::::0;16686:40:::1;::::0;16723:1;;16686:40:::1;16754:1;16737:19:::0;;-1:-1:-1;;;;;;16737:19:0::1;::::0;;16616:148::o;27044:40::-;;;;:::o;30108:120::-;-1:-1:-1;;;;;30200:20:0;30176:4;30200:20;;;:11;:20;;;;;;;;;30108:120::o;15973:79::-;16011:7;16038:6;-1:-1:-1;;;;;16038:6:0;15973:79;:::o;33378:122::-;16195:12;:10;:12::i;:::-;16185:6;;-1:-1:-1;;;;;16185:6:0;;;:22;;;16177:67;;;;;-1:-1:-1;;;16177:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16177:67:0;;;;;;;;;;;;;;;33464:13:::1;:28:::0;33378:122::o;28294:87::-;28366:7;28359:14;;;;;;;;-1:-1:-1;;28359:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28333:13;;28359:14;;28366:7;;28359:14;;28366:7;28359:14;;;;;;;;;;;;;;;;;;;;;;;;29831:269;29924:4;29941:129;29950:12;:10;:12::i;:::-;29964:7;29973:96;30012:15;29973:96;;;;;;;;;;;;;;;;;:11;:25;29985:12;:10;:12::i;:::-;-1:-1:-1;;;;;29973:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29973:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17626:293::-;17678:14;;-1:-1:-1;;;;;17678:14:0;17696:10;17678:28;17670:76;;;;-1:-1:-1;;;17670:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17771:9;;17765:3;:15;17757:60;;;;;-1:-1:-1;;;17757:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17862:14;;;17854:6;;17833:44;;-1:-1:-1;;;;;17862:14:0;;;;17854:6;;;;17833:44;;;17897:14;;;17888:23;;-1:-1:-1;;;;;;17888:23:0;-1:-1:-1;;;;;17897:14:0;;;17888:23;;;;;;17626:293::o;28789:167::-;28867:4;28884:42;28894:12;:10;:12::i;:::-;28908:9;28919:6;28884:9;:42::i;17171:89::-;17243:9;;17171:89;:::o;33681:171::-;16195:12;:10;:12::i;:::-;16185:6;;-1:-1:-1;;;;;16185:6:0;;;:22;;;16177:67;;;;;-1:-1:-1;;;16177:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16177:67:0;;;;;;;;;;;;;;;33758:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;33758:32:0;;::::1;::::0;;;::::1;::::0;;;33806:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;33681:171:::0;:::o;26921:32::-;;;:::o;33511:162::-;16195:12;:10;:12::i;:::-;16185:6;;-1:-1:-1;;;;;16185:6:0;;;:22;;;16177:67;;;;;-1:-1:-1;;;16177:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16177:67:0;;;;;;;;;;;;;;;33605:60:::1;33649:5;33605:25;33617:12;33605:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;33590:12;:75:::0;-1:-1:-1;33511:162:0:o;17336:214::-;16195:12;:10;:12::i;:::-;16185:6;;-1:-1:-1;;;;;16185:6:0;;;:22;;;16177:67;;;;;-1:-1:-1;;;16177:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16177:67:0;;;;;;;;;;;;;;;17417:6:::1;::::0;;;17400:23;;-1:-1:-1;;;;;;17400:23:0;;::::1;-1:-1:-1::0;;;;;17417:6:0;::::1;17400:23;::::0;;;17434:19:::1;::::0;;17476:3:::1;:10:::0;::::1;17464:9;:22:::0;17502:40:::1;::::0;17417:6;;17502:40:::1;::::0;17417:6;;17502:40:::1;17336:214:::0;:::o;28964:143::-;-1:-1:-1;;;;;29072:18:0;;;29045:7;29072:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28964:143::o;33146:110::-;16195:12;:10;:12::i;:::-;16185:6;;-1:-1:-1;;;;;16185:6:0;;;:22;;;16177:67;;;;;-1:-1:-1;;;16177:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16177:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33213:27:0::1;33243:5;33213:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33213:35:0::1;::::0;;33146:110::o;16919:244::-;16195:12;:10;:12::i;:::-;16185:6;;-1:-1:-1;;;;;16185:6:0;;;:22;;;16177:67;;;;;-1:-1:-1;;;16177:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16177:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17008:22:0;::::1;17000:73;;;;-1:-1:-1::0;;;17000:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17110:6;::::0;;17089:38:::1;::::0;-1:-1:-1;;;;;17089:38:0;;::::1;::::0;17110:6;::::1;::::0;17089:38:::1;::::0;::::1;17138:6;:17:::0;;-1:-1:-1;;;;;;17138:17:0::1;-1:-1:-1::0;;;;;17138:17:0;;;::::1;::::0;;;::::1;::::0;;16919:244::o;26877:37::-;;;:::o;8381:106::-;8469:10;8381:106;:::o;37290:337::-;-1:-1:-1;;;;;37383:19:0;;37375:68;;;;-1:-1:-1;;;37375:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37462:21:0;;37454:68;;;;-1:-1:-1;;;37454:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37535:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;37587:32;;;;;;;;;;;;;;;;;37290:337;;;:::o;37635:1847::-;-1:-1:-1;;;;;37757:18:0;;37749:68;;;;-1:-1:-1;;;37749:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37836:16:0;;37828:64;;;;-1:-1:-1;;;37828:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37920:1;37911:6;:10;37903:64;;;;-1:-1:-1;;;37903:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37989:7;:5;:7::i;:::-;-1:-1:-1;;;;;37981:15:0;:4;-1:-1:-1;;;;;37981:15:0;;;:32;;;;;38006:7;:5;:7::i;:::-;-1:-1:-1;;;;;38000:13:0;:2;-1:-1:-1;;;;;38000:13:0;;;37981:32;37978:125;;;38046:12;;38036:6;:22;;38028:75;;;;-1:-1:-1;;;38028:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38393:28;38424:24;38442:4;38424:9;:24::i;:::-;38393:55;;38496:12;;38472:20;:36;38469:112;;-1:-1:-1;38557:12:0;;38469:112;38652:29;;38628:53;;;;;;;38744;;-1:-1:-1;38781:16:0;;;;38780:17;38744:53;:85;;;;;38822:7;-1:-1:-1;;;;;38814:15:0;:4;-1:-1:-1;;;;;38814:15:0;;;38744:85;:134;;;;-1:-1:-1;38857:21:0;;;;;;;38744:134;38726:323;;;38928:29;;38905:52;;39001:36;39016:20;39001:14;:36::i;:::-;-1:-1:-1;;;;;39257:24:0;;39130:12;39257:24;;;:18;:24;;;;;;39145:4;;39257:24;;;:50;;-1:-1:-1;;;;;;39285:22:0;;;;;;:18;:22;;;;;;;;39257:50;39254:96;;;-1:-1:-1;39333:5:0;39254:96;39436:38;39451:4;39456:2;39459:6;39466:7;39436:14;:38::i;:::-;37635:1847;;;;;;:::o;4791:192::-;4877:7;4913:12;4905:6;;;;4897:29;;;;-1:-1:-1;;;4897:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4949:5:0;;;4791:192::o;35309:163::-;35350:7;35371:15;35388;35407:19;:17;:19::i;:::-;35370:56;;-1:-1:-1;35370:56:0;-1:-1:-1;35444:20:0;35370:56;;35444:11;:20::i;:::-;35437:27;;;;35309:163;:::o;6189:132::-;6247:7;6274:39;6278:1;6281;6274:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6267:46;6189:132;-1:-1:-1;;;6189:132:0:o;3888:181::-;3946:7;3978:5;;;4002:6;;;;3994:46;;;;;-1:-1:-1;;;3994:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34107:419;34166:7;34175;34184;34193;34202;34211;34232:23;34257:12;34271:18;34293:20;34305:7;34293:11;:20::i;:::-;34231:82;;;;;;34325:15;34342:23;34367:12;34383:50;34395:7;34404:4;34410:10;34422;:8;:10::i;:::-;34383:11;:50::i;:::-;34324:109;;;;-1:-1:-1;34324:109:0;;-1:-1:-1;34484:15:0;;-1:-1:-1;34501:4:0;;-1:-1:-1;34507:10:0;;-1:-1:-1;34107:419:0;;-1:-1:-1;;;;;34107:419:0:o;4352:136::-;4410:7;4437:43;4441:1;4444;4437:43;;;;;;;;;;;;;;;;;:3;:43::i;5242:471::-;5300:7;5545:6;5541:47;;-1:-1:-1;5575:1:0;5568:8;;5541:47;5612:5;;;5616:1;5612;:5;:1;5636:5;;;;;:10;5628:56;;;;-1:-1:-1;;;5628:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39490:982;27456:16;:23;;-1:-1:-1;;27456:23:0;27475:4;27456:23;;;:16;39641:27:::1;:20:::0;39666:1:::1;39641:24;:27::i;:::-;39626:42:::0;-1:-1:-1;39679:17:0::1;39699:30;:20:::0;39626:42;39699:24:::1;:30::i;:::-;39679:50:::0;-1:-1:-1;40032:21:0::1;40098:23;40116:4:::0;40098:17:::1;:23::i;:::-;40252:18;40273:41;:21;40299:14:::0;40273:25:::1;:41::i;:::-;40252:62;;40360:35;40373:9;40384:10;40360:12;:35::i;:::-;40421:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;27502:16:0;:24;;-1:-1:-1;;27502:24:0;;;-1:-1:-1;;;39490:982:0:o;41679:834::-;41790:7;41786:40;;41812:14;:12;:14::i;:::-;-1:-1:-1;;;;;41851:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;41875:22:0;;;;;;:11;:22;;;;;;;;41874:23;41851:46;41847:597;;;41914:48;41936:6;41944:9;41955:6;41914:21;:48::i;:::-;41847:597;;;-1:-1:-1;;;;;41985:19:0;;;;;;:11;:19;;;;;;;;41984:20;:46;;;;-1:-1:-1;;;;;;42008:22:0;;;;;;:11;:22;;;;;;;;41984:46;41980:464;;;42047:46;42067:6;42075:9;42086:6;42047:19;:46::i;41980:464::-;-1:-1:-1;;;;;42116:19:0;;;;;;:11;:19;;;;;;;;42115:20;:47;;;;-1:-1:-1;;;;;;42140:22:0;;;;;;:11;:22;;;;;;;;42139:23;42115:47;42111:333;;;42179:44;42197:6;42205:9;42216:6;42179:17;:44::i;42111:333::-;-1:-1:-1;;;;;42245:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42268:22:0;;;;;;:11;:22;;;;;;;;42245:45;42241:203;;;42307:48;42329:6;42337:9;42348:6;42307:21;:48::i;42241:203::-;42388:44;42406:6;42414:9;42425:6;42388:17;:44::i;:::-;42468:7;42464:41;;42490:15;:13;:15::i;:::-;41679:834;;;;:::o;35480:561::-;35577:7;;35613;;35530;;;;;35637:289;35661:9;:16;35657:20;;35637:289;;;35727:7;35703;:21;35711:9;35721:1;35711:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35711:12:0;35703:21;;;;;;;;;;;;;:31;;:66;;;35762:7;35738;:21;35746:9;35756:1;35746:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35746:12:0;35738:21;;;;;;;;;;;;;:31;35703:66;35699:97;;;35779:7;;35788;;35771:25;;;;;;;;;35699:97;35821:34;35833:7;:21;35841:9;35851:1;35841:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35841:12:0;35833:21;;;;;;;;;;;;;35821:7;;:11;:34::i;:::-;35811:44;;35880:34;35892:7;:21;35900:9;35910:1;35900:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35900:12:0;35892:21;;;;;;;;;;;;;35880:7;;:11;:34::i;:::-;35870:44;-1:-1:-1;35679:3:0;;35637:289;;;-1:-1:-1;35962:7:0;;35950;;:20;;:11;:20::i;:::-;35940:7;:30;35936:61;;;35980:7;;35989;;35972:25;;;;;;;;35936:61;36016:7;;-1:-1:-1;36025:7:0;-1:-1:-1;35480:561:0;;;:::o;6817:278::-;6903:7;6938:12;6931:5;6923:28;;;;-1:-1:-1;;;6923:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6962:9;6978:1;6974;:5;;;;;;;6817:278;-1:-1:-1;;;;;6817:278:0:o;34534:330::-;34594:7;34603;34612;34632:12;34647:24;34663:7;34647:15;:24::i;:::-;34632:39;;34682:18;34703:30;34725:7;34703:21;:30::i;:::-;34682:51;-1:-1:-1;34744:23:0;34770:33;34682:51;34770:17;:7;34782:4;34770:11;:17::i;:::-;:21;;:33::i;:::-;34744:59;34839:4;;-1:-1:-1;34845:10:0;;-1:-1:-1;34534:330:0;;-1:-1:-1;;;34534:330:0:o;34872:429::-;34987:7;;;;35043:24;:7;35055:11;35043;:24::i;:::-;35025:42;-1:-1:-1;35078:12:0;35093:21;:4;35102:11;35093:8;:21::i;:::-;35078:36;-1:-1:-1;35125:18:0;35146:27;:10;35161:11;35146:14;:27::i;:::-;35125:48;-1:-1:-1;35184:23:0;35210:33;35125:48;35210:17;:7;35222:4;35210:11;:17::i;:33::-;35262:7;;;;-1:-1:-1;35288:4:0;;-1:-1:-1;34872:429:0;;-1:-1:-1;;;;;;;34872:429:0:o;40480:571::-;40628:16;;;40642:1;40628:16;;;40604:21;40628:16;;;;;40604:21;40628:16;;;;;;;;;;-1:-1:-1;40628:16:0;40604:40;;40673:4;40655;40660:1;40655:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;40655:23:0;;;-1:-1:-1;;;;;40655:23:0;;;;;40699:9;-1:-1:-1;;;;;40699:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40699:17:0;40689:7;;:4;;40694:1;;40689:7;;;;;;;;;;;:27;-1:-1:-1;;;;;40689:27:0;;;-1:-1:-1;;;;;40689:27:0;;;;;40729:56;40746:4;40761:9;40773:11;40729:8;:56::i;:::-;40824:9;-1:-1:-1;;;;;40824:61:0;;40900:11;40926:1;40970:4;40997;41017:15;40824:219;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40824:219:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41059:539;41208:56;41225:4;41240:9;41252:11;41208:8;:56::i;:::-;41325:9;-1:-1:-1;;;;;41325:26:0;;41359:10;41393:4;41420:11;41456:1;41499;41542:7;:5;:7::i;:::-;41564:15;41325:265;;;;;;;;;;;;;-1:-1:-1;;;;;41325:265:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41325:265:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36760:250;36806:7;;:12;:34;;;;-1:-1:-1;36822:13:0;;:18;36806:34;36803:46;;;36842:7;;36803:46;36887:7;;;36869:15;:25;36929:13;;;36905:21;:37;-1:-1:-1;36963:11:0;;;;36985:17;36760:250;:::o;43625:566::-;43728:15;43745:23;43770:12;43784:23;43809:12;43823:18;43845:19;43856:7;43845:10;:19::i;:::-;-1:-1:-1;;;;;43893:15:0;;;;;;:7;:15;;;;;;43727:137;;-1:-1:-1;43727:137:0;;-1:-1:-1;43727:137:0;;-1:-1:-1;43727:137:0;-1:-1:-1;43727:137:0;-1:-1:-1;43727:137:0;-1:-1:-1;43893:28:0;;43913:7;43893:19;:28::i;:::-;-1:-1:-1;;;;;43875:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43950:7;:15;;;;:28;;43970:7;43950:19;:28::i;:::-;-1:-1:-1;;;;;43932:15:0;;;;;;;:7;:15;;;;;;:46;;;;44010:18;;;;;;;:39;;44033:15;44010:22;:39::i;:::-;-1:-1:-1;;;;;43989:18:0;;;;;;:7;:18;;;;;:60;44063:26;44078:10;44063:14;:26::i;:::-;44100:23;44112:4;44118;44100:11;:23::i;:::-;44156:9;-1:-1:-1;;;;;44139:44:0;44148:6;-1:-1:-1;;;;;44139:44:0;;44167:15;44139:44;;;;;;;;;;;;;;;;;;43625:566;;;;;;;;;:::o;43031:586::-;43132:15;43149:23;43174:12;43188:23;43213:12;43227:18;43249:19;43260:7;43249:10;:19::i;:::-;-1:-1:-1;;;;;43297:15:0;;;;;;:7;:15;;;;;;43131:137;;-1:-1:-1;43131:137:0;;-1:-1:-1;43131:137:0;;-1:-1:-1;43131:137:0;-1:-1:-1;43131:137:0;-1:-1:-1;43131:137:0;-1:-1:-1;43297:28:0;;43131:137;43297:19;:28::i;:::-;-1:-1:-1;;;;;43279:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;43357:18;;;;;:7;:18;;;;;:39;;43380:15;43357:22;:39::i;:::-;-1:-1:-1;;;;;43336:18:0;;;;;;:7;:18;;;;;;;;:60;;;;43428:7;:18;;;;:39;;43451:15;43428:22;:39::i;42521:502::-;42620:15;42637:23;42662:12;42676:23;42701:12;42715:18;42737:19;42748:7;42737:10;:19::i;:::-;-1:-1:-1;;;;;42785:15:0;;;;;;:7;:15;;;;;;42619:137;;-1:-1:-1;42619:137:0;;-1:-1:-1;42619:137:0;;-1:-1:-1;42619:137:0;-1:-1:-1;42619:137:0;-1:-1:-1;42619:137:0;-1:-1:-1;42785:28:0;;42619:137;42785:19;:28::i;32365:642::-;32468:15;32485:23;32510:12;32524:23;32549:12;32563:18;32585:19;32596:7;32585:10;:19::i;:::-;-1:-1:-1;;;;;32633:15:0;;;;;;:7;:15;;;;;;32467:137;;-1:-1:-1;32467:137:0;;-1:-1:-1;32467:137:0;;-1:-1:-1;32467:137:0;-1:-1:-1;32467:137:0;-1:-1:-1;32467:137:0;-1:-1:-1;32633:28:0;;32653:7;32633:19;:28::i;:::-;-1:-1:-1;;;;;32615:15:0;;;;;;:7;:15;;;;;;;;:46;;;;32690:7;:15;;;;:28;;32710:7;32690:19;:28::i;37022:125::-;37076:15;;37066:7;:25;37118:21;;37102:13;:37;37022:125::o;36420:154::-;36484:7;36511:55;36550:5;36511:20;36523:7;;36511;:11;;:20;;;;:::i;36582:166::-;36652:7;36679:61;36724:5;36679:26;36691:13;;36679:7;:11;;:26;;;;:::i;36053:355::-;36116:19;36139:10;:8;:10::i;:::-;36116:33;-1:-1:-1;36160:18:0;36181:27;:10;36116:33;36181:14;:27::i;:::-;36260:4;36244:22;;;;:7;:22;;;;;;36160:48;;-1:-1:-1;36244:38:0;;36160:48;36244:26;:38::i;:::-;36235:4;36219:22;;;;:7;:22;;;;;;;;:63;;;;36296:11;:26;;;;;;36293:107;;;36378:4;36362:22;;;;:7;:22;;;;;;:38;;36389:10;36362:26;:38::i;:::-;36353:4;36337:22;;;;:7;:22;;;;;:63;36293:107;36053:355;;;:::o;33952:147::-;34030:7;;:17;;34042:4;34030:11;:17::i;:::-;34020:7;:27;34071:10;;:20;;34086:4;34071:14;:20::i;:::-;34058:10;:33;-1:-1:-1;;33952:147:0:o
Swarm Source
ipfs://e40a05041272bee8968e034dc2f34b6729cdf37485d27f8e2c89c49505f3e322
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.