Token ScaryChainCapital
Overview ERC-20
Price
$0.00 @ 0.000000 FTM
Fully Diluted Market Cap
Total Supply:
1,000,000,000,000 SCC
Holders:
547 addresses
Transfers:
-
Contract:
Decimals:
9
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ScaryChainCapital
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-23 */ /** Scary-Chain Capital: $SCC -You buy on Fantom, we farm on multiple chains and return the profits to $SCC holders. Tokenomics: 10% of each buy goes to existing holders. 10% of each sell goes into multi-chain farming to add to the treasury and buy back SCC tokens. Website: https://scarychaincapital.com Telegram: https://t.me/ScaryChainCapital Twitter: https://twitter.com/SChainCapital Medium: https://scarychaincapital.medium.com */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.6.12; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function 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; } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // Contract implementation contract ScaryChainCapital 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 = 1000000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'ScaryChainCapital'; string private _symbol = 'SCC'; uint8 private _decimals = 9; uint256 private _taxFee = 10; uint256 private _teamFee = 10; uint256 private _previousTaxFee = _taxFee; uint256 private _previousTeamFee = _teamFee; address payable public _SCCWalletAddress; address payable public _marketingWalletAddress; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwap = false; bool public swapEnabled = true; uint256 private _maxTxAmount = 100000000000000e9; // We will set a minimum amount of tokens to be swaped => 5M uint256 private _numOfTokensToExchangeForTeam = 5 * 10**3 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapEnabledUpdated(bool enabled); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor (address payable SCCWalletAddress, address payable marketingWalletAddress) public { _SCCWalletAddress = SCCWalletAddress; _marketingWalletAddress = marketingWalletAddress; _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0xF491e7B69E4244ad4002BC14e878a34207E38c29); // Spooky Router for Fantom Network // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; // Exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function setExcludeFromFee(address account, bool excluded) external onlyOwner() { _isExcludedFromFee[account] = excluded; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(account != 0xF491e7B69E4244ad4002BC14e878a34207E38c29, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is 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 removeAllFee() private { if(_taxFee == 0 && _teamFee == 0) return; _previousTaxFee = _taxFee; _previousTeamFee = _teamFee; _taxFee = 0; _teamFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _teamFee = _previousTeamFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(sender != owner() && recipient != 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? // also, don't get caught in a circular team event. // also, don't swap if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForTeam; if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) { // We need to swap the current tokens to ETH and send to the team wallet swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToTeam(address(this).balance); } } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){ takeFee = false; } //transfer amount, it will take tax and team fee _tokenTransfer(sender,recipient,amount,takeFee); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap{ // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function sendETHToTeam(uint256 amount) private { _SCCWalletAddress.transfer(amount.div(2)); _marketingWalletAddress.transfer(amount.div(2)); } // We are exposing these functions to be able to manual swap and send // in case the token is highly valued and 5M becomes too much function manualSwap() external onlyOwner() { uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualSend() external onlyOwner() { uint256 contractETHBalance = address(this).balance; sendETHToTeam(contractETHBalance); } function setSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _taxFee, _teamFee); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 teamFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tTeam = tAmount.mul(teamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _getTaxFee() private view returns(uint256) { return _taxFee; } function _getMaxTxAmount() private view returns(uint256) { return _maxTxAmount; } function _getETHBalance() public view returns(uint256 balance) { return address(this).balance; } function _setTaxFee(uint256 taxFee) external onlyOwner() { require(taxFee >= 1 && taxFee <= 25, 'taxFee should be in 1 - 25'); _taxFee = taxFee; } function _setTeamFee(uint256 teamFee) external onlyOwner() { require(teamFee >= 1 && teamFee <= 25, 'teamFee should be in 1 - 25'); _teamFee = teamFee; } function _setSCCWallet(address payable SCCWalletAddress) external onlyOwner() { _SCCWalletAddress = SCCWalletAddress; } function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() { require(maxTxAmount >= 100000000000000e9 , 'maxTxAmount should be greater than 100000000000000e9'); _maxTxAmount = maxTxAmount; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"SCCWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","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":"_SCCWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"SCCWalletAddress","type":"address"}],"name":"_setSCCWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"excludeAccount","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":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"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":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
683635c9adc5dea000006009556818ce40f6d0219fffff19600a55610100604052601160c08190527014d8d85c9e50da185a5b90d85c1a5d185b607a1b60e09081526200005091600c91906200041d565b506040805180820190915260038082526253434360e81b60209092019182526200007d91600d916200041d565b50600e805460ff19166009179055600a600f819055601081905560118190556012556014805461ffff60a01b1916600160a81b17905569152d02c7e14af680000060155565048c27395000601655348015620000d857600080fd5b50604051620030cc380380620030cc83398181016040526040811015620000fe57600080fd5b5080516020909101516000620001136200040a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601380546001600160a01b038085166001600160a01b0319928316179092556014805492841692909116919091179055600a54600360006200019e6200040a565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600073f491e7b69e4244ad4002bc14e878a34207e38c299050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021557600080fd5b505afa1580156200022a573d6000803e3d6000fd5b505050506040513d60208110156200024157600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200029257600080fd5b505afa158015620002a7573d6000803e3d6000fd5b505050506040513d6020811015620002be57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200031157600080fd5b505af115801562000326573d6000803e3d6000fd5b505050506040513d60208110156200033d57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200036a6200040e565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003b46200040a565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3505050620004b9565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046057805160ff191683800117855562000490565b8280016001018555821562000490579182015b828111156200049057825182559160200191906001019062000473565b506200049e929150620004a2565b5090565b5b808211156200049e5760008155600101620004a3565b60805160601c60a05160601c612bd5620004f760003980610e605280611c1b52508061098c5280611f2d5280611fe5528061200c5250612bd56000f3fe6080604052600436106102345760003560e01c80635880b8731161012e578063b6c52324116100ab578063f2cc0c181161006f578063f2cc0c181461080d578063f2fde38b14610840578063f429389014610873578063f815a84214610888578063f84354f11461089d5761023b565b8063b6c5232414610734578063cba0e99614610749578063dd4670641461077c578063dd62ed3e146107a6578063e01af92c146107e15761023b565b806395d89b41116100f257806395d89b411461065d578063a457c2d714610672578063a69df4b5146106ab578063a9059cbb146106c0578063af9549e0146106f95761023b565b80635880b873146105c15780636ddd1713146105eb57806370a0823114610600578063715018a6146106335780638da5cb5b146106485761023b565b8063313ce567116101bc5780634144d9e4116101805780634144d9e41461051d5780634549b0391461053257806349bd5a5e1461056457806351bc3c85146105795780635342acb41461058e5761023b565b8063313ce5671461044757806338a86e091461047257806339509351146104875780633aa2e181146104c05780633bd5d173146104f35761023b565b806318160ddd1161020357806318160ddd1461036f5780631bbae6e01461038457806323b872dd146103b057806328667162146103f35780632d8381191461041d5761023b565b806306fdde0314610240578063095ea7b3146102ca57806313114a9d146103175780631694505e1461033e5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108d0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d657600080fd5b50610303600480360360408110156102ed57600080fd5b506001600160a01b038135169060200135610966565b604080519115158252519081900360200190f35b34801561032357600080fd5b5061032c610984565b60408051918252519081900360200190f35b34801561034a57600080fd5b5061035361098a565b604080516001600160a01b039092168252519081900360200190f35b34801561037b57600080fd5b5061032c6109ae565b34801561039057600080fd5b506103ae600480360360208110156103a757600080fd5b50356109b4565b005b3480156103bc57600080fd5b50610303600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a5a565b3480156103ff57600080fd5b506103ae6004803603602081101561041657600080fd5b5035610ae1565b34801561042957600080fd5b5061032c6004803603602081101561044057600080fd5b5035610ba1565b34801561045357600080fd5b5061045c610c03565b6040805160ff9092168252519081900360200190f35b34801561047e57600080fd5b50610353610c0c565b34801561049357600080fd5b50610303600480360360408110156104aa57600080fd5b506001600160a01b038135169060200135610c1b565b3480156104cc57600080fd5b506103ae600480360360208110156104e357600080fd5b50356001600160a01b0316610c69565b3480156104ff57600080fd5b506103ae6004803603602081101561051657600080fd5b5035610ce3565b34801561052957600080fd5b50610353610dbd565b34801561053e57600080fd5b5061032c6004803603604081101561055557600080fd5b50803590602001351515610dcc565b34801561057057600080fd5b50610353610e5e565b34801561058557600080fd5b506103ae610e82565b34801561059a57600080fd5b50610303600480360360208110156105b157600080fd5b50356001600160a01b0316610ef3565b3480156105cd57600080fd5b506103ae600480360360208110156105e457600080fd5b5035610f11565b3480156105f757600080fd5b50610303610fd1565b34801561060c57600080fd5b5061032c6004803603602081101561062357600080fd5b50356001600160a01b0316610fe1565b34801561063f57600080fd5b506103ae611043565b34801561065457600080fd5b506103536110d3565b34801561066957600080fd5b506102556110e2565b34801561067e57600080fd5b506103036004803603604081101561069557600080fd5b506001600160a01b038135169060200135611143565b3480156106b757600080fd5b506103ae6111ab565b3480156106cc57600080fd5b50610303600480360360408110156106e357600080fd5b506001600160a01b038135169060200135611299565b34801561070557600080fd5b506103ae6004803603604081101561071c57600080fd5b506001600160a01b03813516906020013515156112ad565b34801561074057600080fd5b5061032c611330565b34801561075557600080fd5b506103036004803603602081101561076c57600080fd5b50356001600160a01b0316611336565b34801561078857600080fd5b506103ae6004803603602081101561079f57600080fd5b5035611354565b3480156107b257600080fd5b5061032c600480360360408110156107c957600080fd5b506001600160a01b03813581169160200135166113f2565b3480156107ed57600080fd5b506103ae6004803603602081101561080457600080fd5b5035151561141d565b34801561081957600080fd5b506103ae6004803603602081101561083057600080fd5b50356001600160a01b0316611493565b34801561084c57600080fd5b506103ae6004803603602081101561086357600080fd5b50356001600160a01b0316611675565b34801561087f57600080fd5b506103ae61175b565b34801561089457600080fd5b5061032c6117bd565b3480156108a957600080fd5b506103ae600480360360208110156108c057600080fd5b50356001600160a01b03166117c1565b600c8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095c5780601f106109315761010080835404028352916020019161095c565b820191906000526020600020905b81548152906001019060200180831161093f57829003601f168201915b5050505050905090565b600061097a610973611982565b8484611986565b5060015b92915050565b600b5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095490565b6109bc611982565b6000546001600160a01b03908116911614610a0c576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b69152d02c7e14af6800000811015610a555760405162461bcd60e51b81526004018080602001828103825260348152602001806129b36034913960400191505060405180910390fd5b601555565b6000610a67848484611a72565b610ad784610a73611982565b610ad285604051806060016040528060288152602001612a30602891396001600160a01b038a16600090815260056020526040812090610ab1611982565b6001600160a01b031681526020810191909152604001600020549190611ccf565b611986565b5060019392505050565b610ae9611982565b6000546001600160a01b03908116911614610b39576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b60018110158015610b4b575060198111155b610b9c576040805162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d2032350000000000604482015290519081900360640190fd5b601055565b6000600a54821115610be45760405162461bcd60e51b815260040180806020018281038252602a815260200180612941602a913960400191505060405180910390fd5b6000610bee611d66565b9050610bfa8382611d89565b9150505b919050565b600e5460ff1690565b6013546001600160a01b031681565b600061097a610c28611982565b84610ad28560056000610c39611982565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611dd2565b610c71611982565b6000546001600160a01b03908116911614610cc1576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610ced611982565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d485760405162461bcd60e51b815260040180806020018281038252602c815260200180612b2c602c913960400191505060405180910390fd5b6000610d5383611e2c565b505050506001600160a01b038416600090815260036020526040902054919250610d7f91905082611e88565b6001600160a01b038316600090815260036020526040902055600a54610da59082611e88565b600a55600b54610db59084611dd2565b600b55505050565b6014546001600160a01b031681565b6000600954831115610e25576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610e44576000610e3584611e2c565b5093955061097e945050505050565b6000610e4f84611e2c565b5092955061097e945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e8a611982565b6000546001600160a01b03908116911614610eda576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b6000610ee530610fe1565b9050610ef081611eca565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610f19611982565b6000546001600160a01b03908116911614610f69576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b60018110158015610f7b575060198111155b610fcc576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203235000000000000604482015290519081900360640190fd5b600f55565b601454600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561102157506001600160a01b038116600090815260046020526040902054610bfe565b6001600160a01b03821660009081526003602052604090205461097e90610ba1565b61104b611982565b6000546001600160a01b0390811691161461109b576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612a78833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600d8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095c5780601f106109315761010080835404028352916020019161095c565b600061097a611150611982565b84610ad285604051806060016040528060258152602001612b7b602591396005600061117a611982565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611ccf565b6001546001600160a01b031633146111f45760405162461bcd60e51b8152600401808060200182810382526023815260200180612b586023913960400191505060405180910390fd5b600254421161124a576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612a7883398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061097a6112a6611982565b8484611a72565b6112b5611982565b6000546001600160a01b03908116911614611305576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526007602052604090205460ff1690565b61135c611982565b6000546001600160a01b039081169116146113ac576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612a78833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611425611982565b6000546001600160a01b03908116911614611475576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b60148054911515600160a81b0260ff60a81b19909216919091179055565b61149b611982565b6000546001600160a01b039081169116146114eb576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b73f491e7b69e4244ad4002bc14e878a34207e38c296001600160a01b03821614156115475760405162461bcd60e51b8152600401808060200182810382526022815260200180612b0a6022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156115b5576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561160f576001600160a01b0381166000908152600360205260409020546115f590610ba1565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b61167d611982565b6000546001600160a01b039081169116146116cd576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b6001600160a01b0381166117125760405162461bcd60e51b815260040180806020018281038252602681526020018061296b6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612a7883398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611763611982565b6000546001600160a01b039081169116146117b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b47610ef081612101565b4790565b6117c9611982565b6000546001600160a01b03908116911614611819576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611886576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561197e57816001600160a01b0316600882815481106118aa57fe5b6000918252602090912001546001600160a01b03161415611976576008805460001981019081106118d757fe5b600091825260209091200154600880546001600160a01b0390921691839081106118fd57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061194f57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561197e565b600101611889565b5050565b3390565b6001600160a01b0383166119cb5760405162461bcd60e51b8152600401808060200182810382526024815260200180612ae66024913960400191505060405180910390fd5b6001600160a01b038216611a105760405162461bcd60e51b81526004018080602001828103825260228152602001806129916022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ab75760405162461bcd60e51b8152600401808060200182810382526025815260200180612ac16025913960400191505060405180910390fd5b6001600160a01b038216611afc5760405162461bcd60e51b815260040180806020018281038252602381526020018061291e6023913960400191505060405180910390fd5b60008111611b3b5760405162461bcd60e51b8152600401808060200182810382526029815260200180612a986029913960400191505060405180910390fd5b611b436110d3565b6001600160a01b0316836001600160a01b031614158015611b7d5750611b676110d3565b6001600160a01b0316826001600160a01b031614155b15611bc357601554811115611bc35760405162461bcd60e51b81526004018080602001828103825260288152602001806129e76028913960400191505060405180910390fd5b6000611bce30610fe1565b90506015548110611bde57506015545b6016546014549082101590600160a01b900460ff16158015611c095750601454600160a81b900460ff165b8015611c125750805b8015611c5057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15611c7057611c5e82611eca565b478015611c6e57611c6e47612101565b505b6001600160a01b03851660009081526006602052604090205460019060ff1680611cb257506001600160a01b03851660009081526006602052604090205460ff165b15611cbb575060005b611cc786868684612186565b505050505050565b60008184841115611d5e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d23578181015183820152602001611d0b565b50505050905090810190601f168015611d505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611d736122fa565b9092509050611d828282611d89565b9250505090565b6000611dcb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061245d565b9392505050565b600082820183811015611dcb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611e498a600f546010546124c2565b9250925092506000611e59611d66565b90506000806000611e6b8e8786612517565b919e509c509a509598509396509194505050505091939550919395565b6000611dcb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ccf565b6014805460ff60a01b1916600160a01b17905560408051600280825260608083018452926020830190803683370190505090503081600081518110611f0b57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611f8457600080fd5b505afa158015611f98573d6000803e3d6000fd5b505050506040513d6020811015611fae57600080fd5b5051815182906001908110611fbf57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061200a307f000000000000000000000000000000000000000000000000000000000000000084611986565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156120af578181015183820152602001612097565b505050509050019650505050505050600060405180830381600087803b1580156120d857600080fd5b505af11580156120ec573d6000803e3d6000fd5b50506014805460ff60a01b1916905550505050565b6013546001600160a01b03166108fc61211b836002611d89565b6040518115909202916000818181858888f19350505050158015612143573d6000803e3d6000fd5b506014546001600160a01b03166108fc61215e836002611d89565b6040518115909202916000818181858888f1935050505015801561197e573d6000803e3d6000fd5b8061219357612193612553565b6001600160a01b03841660009081526007602052604090205460ff1680156121d457506001600160a01b03831660009081526007602052604090205460ff16155b156121e9576121e4848484612585565b6122e7565b6001600160a01b03841660009081526007602052604090205460ff1615801561222a57506001600160a01b03831660009081526007602052604090205460ff165b1561223a576121e48484846126a9565b6001600160a01b03841660009081526007602052604090205460ff1615801561227c57506001600160a01b03831660009081526007602052604090205460ff16155b1561228c576121e4848484612752565b6001600160a01b03841660009081526007602052604090205460ff1680156122cc57506001600160a01b03831660009081526007602052604090205460ff165b156122dc576121e4848484612796565b6122e7848484612752565b806122f4576122f4612809565b50505050565b600a546009546000918291825b60085481101561242b5782600360006008848154811061232357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612388575081600460006008848154811061236157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561239f57600a5460095494509450505050612459565b6123df60036000600884815481106123b357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e88565b925061242160046000600884815481106123f557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e88565b9150600101612307565b50600954600a5461243b91611d89565b82101561245357600a54600954935093505050612459565b90925090505b9091565b600081836124ac5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611d23578181015183820152602001611d0b565b5060008385816124b857fe5b0495945050505050565b60008080806124dc60646124d68989612817565b90611d89565b905060006124ef60646124d68a89612817565b90506000612507826125018b86611e88565b90611e88565b9992985090965090945050505050565b60008080806125268786612817565b905060006125348787612817565b905060006125428383611e88565b929992985090965090945050505050565b600f541580156125635750601054155b1561256d57612583565b600f805460115560108054601255600091829055555b565b60008060008060008061259787611e2c565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125c99088611e88565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546125f89087611e88565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546126279086611dd2565b6001600160a01b03891660009081526003602052604090205561264981612870565b61265384836128f9565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806126bb87611e2c565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126ed9087611e88565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127239084611dd2565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546126279086611dd2565b60008060008060008061276487611e2c565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506125f89087611e88565b6000806000806000806127a887611e2c565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127da9088611e88565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126ed9087611e88565b601154600f55601254601055565b6000826128265750600061097e565b8282028284828161283357fe5b0414611dcb5760405162461bcd60e51b8152600401808060200182810382526021815260200180612a0f6021913960400191505060405180910390fd5b600061287a611d66565b905060006128888383612817565b306000908152600360205260409020549091506128a59082611dd2565b3060009081526003602090815260408083209390935560079052205460ff16156128f457306000908152600460205260409020546128e39084611dd2565b306000908152600460205260409020555b505050565b600a546129069083611e88565b600a55600b546129169082611dd2565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573736d61785478416d6f756e742073686f756c642062652067726561746572207468616e2031303030303030303030303030303065395472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f5bc57cb9421fcbe57c457d7ccd118dcf6580aa30c75b18f1d6850b93170ff9564736f6c634300060c0033000000000000000000000000287f0e1826d88d0d212ff4a0ede781186da575a2000000000000000000000000b891202b6cba6269f995a0bd337f03f9208efd35
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000287f0e1826d88d0d212ff4a0ede781186da575a2000000000000000000000000b891202b6cba6269f995a0bd337f03f9208efd35
-----Decoded View---------------
Arg [0] : SCCWalletAddress (address): 0x287f0e1826d88d0d212ff4a0ede781186da575a2
Arg [1] : marketingWalletAddress (address): 0xb891202b6cba6269f995a0bd337f03f9208efd35
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000287f0e1826d88d0d212ff4a0ede781186da575a2
Arg [1] : 000000000000000000000000b891202b6cba6269f995a0bd337f03f9208efd35
Deployed ByteCode Sourcemap
21510:14829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23734:71;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24504:141;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24504:141:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25612:75;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;22453:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;22453:51:0;;;;;;;;;;;;;;23957:83;;;;;;;;;;;;;:::i;36135:201::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36135:201:0;;:::i;:::-;;24647:285;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24647:285:0;;;;;;;;;;;;;;;;;:::i;35854:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35854:156:0;;:::i;26370:224::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26370:224:0;;:::i;23884:71::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22361:40;;;;;;;;;;;;;:::i;24934:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24934:198:0;;;;;;;;:::i;36012:121::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36012:121:0;-1:-1:-1;;;;;36012:121:0;;:::i;25689:325::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25689:325:0;;:::i;22404:46::-;;;;;;;;;;;;;:::i;26016:352::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26016:352:0;;;;;;;;;:::i;22507:38::-;;;;;;;;;;;;;:::i;30285:136::-;;;;;;;;;;;;;:::i;27590:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27590:111:0;-1:-1:-1;;;;;27590:111:0;;:::i;35703:149::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35703:149:0;;:::i;22570:30::-;;;;;;;;;;;;;:::i;24042:178::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24042:178:0;-1:-1:-1;;;;;24042:178:0;;:::i;13516:128::-;;;;;;;;;;;;;:::i;12966:67::-;;;;;;;;;;;;;:::i;23807:75::-;;;;;;;;;;;;;:::i;25134:249::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25134:249:0;;;;;;;;:::i;14375:257::-;;;;;;;;;;;;;:::i;24222:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24222:147:0;;;;;;;;:::i;25485:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25485:125:0;;;;;;;;;;:::i;13992:77::-;;;;;;;;;;;;;:::i;25385:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25385:98:0;-1:-1:-1;;;;;25385:98:0;;:::i;14135:178::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14135:178:0;;:::i;24371:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24371:131:0;;;;;;;;;;:::i;30561:86::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30561:86:0;;;;:::i;26596:379::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26596:379:0;-1:-1:-1;;;;;26596:379:0;;:::i;13774:216::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13774:216:0;-1:-1:-1;;;;;13774:216:0;;:::i;30423:136::-;;;;;;;;;;;;;:::i;35603:98::-;;;;;;;;;;;;;:::i;26977:346::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26977:346:0;-1:-1:-1;;;;;26977:346:0;;:::i;23734:71::-;23796:5;23789:12;;;;;;;;-1:-1:-1;;23789:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23771:13;;23789:12;;23796:5;;23789:12;;23796:5;23789:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23734:71;:::o;24504:141::-;24579:4;24588:39;24597:12;:10;:12::i;:::-;24611:7;24620:6;24588:8;:39::i;:::-;-1:-1:-1;24637:4:0;24504:141;;;;;:::o;25612:75::-;25673:10;;25612:75;:::o;22453:51::-;;;:::o;23957:83::-;24029:7;;23957:83;:::o;36135:201::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;36228:17:::1;36213:11;:32;;36205:98;;;;-1:-1:-1::0;;;36205:98:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36306:12;:26:::0;36135:201::o;24647:285::-;24745:4;24754:36;24764:6;24772:9;24783:6;24754:9;:36::i;:::-;24793:121;24802:6;24810:12;:10;:12::i;:::-;24824:89;24862:6;24824:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24824:19:0;;;;;;:11;:19;;;;;;24844:12;:10;:12::i;:::-;-1:-1:-1;;;;;24824:33:0;;;;;;;;;;;;-1:-1:-1;24824:33:0;;;:89;:37;:89::i;:::-;24793:8;:121::i;:::-;-1:-1:-1;24924:4:0;24647:285;;;;;:::o;35854:156::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;35935:1:::1;35924:7;:12;;:29;;;;;35951:2;35940:7;:13;;35924:29;35916:69;;;::::0;;-1:-1:-1;;;35916:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;35988:8;:18:::0;35854:156::o;26370:224::-;26436:7;26467;;26456;:18;;26448:73;;;;-1:-1:-1;;;26448:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26524:19;26546:10;:8;:10::i;:::-;26524:32;-1:-1:-1;26566:24:0;:7;26524:32;26566:11;:24::i;:::-;26559:31;;;26370:224;;;;:::o;23884:71::-;23942:9;;;;23884:71;:::o;22361:40::-;;;-1:-1:-1;;;;;22361:40:0;;:::o;24934:198::-;25022:4;25031:83;25040:12;:10;:12::i;:::-;25054:7;25063:50;25102:10;25063:11;:25;25075:12;:10;:12::i;:::-;-1:-1:-1;;;;;25063:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25063:25:0;;;:34;;;;;;;;;;;:38;:50::i;36012:121::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;36093:17:::1;:36:::0;;-1:-1:-1;;;;;;36093:36:0::1;-1:-1:-1::0;;;;;36093:36:0;;;::::1;::::0;;;::::1;::::0;;36012:121::o;25689:325::-;25733:14;25750:12;:10;:12::i;:::-;-1:-1:-1;;;;;25774:19:0;;;;;;:11;:19;;;;;;25733:29;;-1:-1:-1;25774:19:0;;25773:20;25765:77;;;;-1:-1:-1;;;25765:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25846:15;25870:19;25881:7;25870:10;:19::i;:::-;-1:-1:-1;;;;;;;;;25910:15:0;;;;;;:7;:15;;;;;;25845:44;;-1:-1:-1;25910:28:0;;:15;-1:-1:-1;25845:44:0;25910:19;:28::i;:::-;-1:-1:-1;;;;;25892:15:0;;;;;;:7;:15;;;;;:46;25951:7;;:20;;25963:7;25951:11;:20::i;:::-;25941:7;:30;25987:10;;:23;;26002:7;25987:14;:23::i;:::-;25974:10;:36;-1:-1:-1;;;25689:325:0:o;22404:46::-;;;-1:-1:-1;;;;;22404:46:0;;:::o;26016:352::-;26106:7;26137;;26126;:18;;26118:62;;;;;-1:-1:-1;;;26118:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26188:17;26183:182;;26211:15;26235:19;26246:7;26235:10;:19::i;:::-;-1:-1:-1;26210:44:0;;-1:-1:-1;26257:14:0;;-1:-1:-1;;;;;26257:14:0;26183:182;26286:23;26317:19;26328:7;26317:10;:19::i;:::-;-1:-1:-1;26284:52:0;;-1:-1:-1;26339:22:0;;-1:-1:-1;;;;;26339:22:0;22507:38;;;:::o;30285:136::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;30331:23:::1;30357:24;30375:4;30357:9;:24::i;:::-;30331:50;;30384:33;30401:15;30384:16;:33::i;:::-;13200:1;30285:136::o:0;27590:111::-;-1:-1:-1;;;;;27670:27:0;27654:4;27670:27;;;:18;:27;;;;;;;;;27590:111::o;35703:149::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;35781:1:::1;35771:6;:11;;:27;;;;;35796:2;35786:6;:12;;35771:27;35763:66;;;::::0;;-1:-1:-1;;;35763:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;35832:7;:16:::0;35703:149::o;22570:30::-;;;-1:-1:-1;;;22570:30:0;;;;;:::o;24042:178::-;-1:-1:-1;;;;;24124:20:0;;24108:7;24124:20;;;:11;:20;;;;;;;;24120:49;;;-1:-1:-1;;;;;;24153:16:0;;;;;;:7;:16;;;;;;24146:23;;24120:49;-1:-1:-1;;;;;24199:16:0;;;;;;:7;:16;;;;;;24179:37;;:19;:37::i;13516:128::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;13615:1:::1;13599:6:::0;;13578:40:::1;::::0;-1:-1:-1;;;;;13599:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;13578:40:0;13615:1;;13578:40:::1;13638:1;13621:19:::0;;-1:-1:-1;;;;;;13621:19:0::1;::::0;;13516:128::o;12966:67::-;13004:7;13023:6;-1:-1:-1;;;;;13023:6:0;12966:67;:::o;23807:75::-;23871:7;23864:14;;;;;;;;-1:-1:-1;;23864:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23846:13;;23864:14;;23871:7;;23864:14;;23871:7;23864:14;;;;;;;;;;;;;;;;;;;;;;;;25134:249;25227:4;25236:129;25245:12;:10;:12::i;:::-;25259:7;25268:96;25307:15;25268:96;;;;;;;;;;;;;;;;;:11;:25;25280:12;:10;:12::i;:::-;-1:-1:-1;;;;;25268:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25268:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;14375:257::-;14419:14;;-1:-1:-1;;;;;14419:14:0;14437:10;14419:28;14411:76;;;;-1:-1:-1;;;14411:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14504:9;;14498:3;:15;14490:60;;;;;-1:-1:-1;;;14490:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14587:14;;;14579:6;;14558:44;;-1:-1:-1;;;;;14587:14:0;;;;14579:6;;;;-1:-1:-1;;;;;;;;;;;14558:44:0;;14614:14;;;14605:23;;-1:-1:-1;;;;;;14605:23:0;-1:-1:-1;;;;;14614:14:0;;;14605:23;;;;;;14375:257::o;24222:147::-;24300:4;24309:42;24319:12;:10;:12::i;:::-;24333:9;24344:6;24309:9;:42::i;25485:125::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25568:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;25568:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;25485:125::o;13992:77::-;14056:9;;13992:77;:::o;25385:98::-;-1:-1:-1;;;;;25459:20:0;25443:4;25459:20;;;:11;:20;;;;;;;;;25385:98::o;14135:178::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;14208:6:::1;::::0;;;14191:23;;-1:-1:-1;;;;;;14191:23:0;;::::1;-1:-1:-1::0;;;;;14208:6:0;::::1;14191:23;::::0;;;14217:19:::1;::::0;;14251:3:::1;:10:::0;::::1;14239:9;:22:::0;14269:40:::1;::::0;14208:6;;-1:-1:-1;;;;;;;;;;;14269:40:0;14208:6;;14269:40:::1;14135:178:::0;:::o;24371:131::-;-1:-1:-1;;;;;24471:18:0;;;24452:7;24471:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24371:131::o;30561:86::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;30622:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;30622:21:0::1;-1:-1:-1::0;;;;30622:21:0;;::::1;::::0;;;::::1;::::0;;30561:86::o;26596:379::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;26680:42:::1;-1:-1:-1::0;;;;;26669:53:0;::::1;;;26661:100;;;;-1:-1:-1::0;;;26661:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;26773:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;26772:21;26764:61;;;::::0;;-1:-1:-1;;;26764:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;26831:16:0;::::1;26850:1;26831:16:::0;;;:7:::1;:16;::::0;;;;;:20;26828:88:::1;;-1:-1:-1::0;;;;;26895:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;26875:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;26856:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;26828:88:::1;-1:-1:-1::0;;;;;26918:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;26918:27:0::1;26941:4;26918:27:::0;;::::1;::::0;;;26948:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;26948:23:0::1;::::0;;::::1;::::0;;26596:379::o;13774:216::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13855:22:0;::::1;13847:73;;;;-1:-1:-1::0;;;13847:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13949:6;::::0;;13928:38:::1;::::0;-1:-1:-1;;;;;13928:38:0;;::::1;::::0;13949:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;13928:38:0;::::1;13969:6;:17:::0;;-1:-1:-1;;;;;;13969:17:0::1;-1:-1:-1::0;;;;;13969:17:0;;;::::1;::::0;;;::::1;::::0;;13774:216::o;30423:136::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;30498:21:::1;30522:33;30498:21:::0;30522:13:::1;:33::i;35603:98::-:0;35676:21;35603:98;:::o;26977:346::-;13148:12;:10;:12::i;:::-;13138:6;;-1:-1:-1;;;;;13138:6:0;;;:22;;;13130:67;;;;;-1:-1:-1;;;13130:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13130:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27050:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;27042:60;;;::::0;;-1:-1:-1;;;27042:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;27110:9;27105:215;27129:9;:16:::0;27125:20;::::1;27105:215;;;27175:7;-1:-1:-1::0;;;;;27159:23:0::1;:9;27169:1;27159:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;27159:12:0::1;:23;27155:162;;;27202:9;27212:16:::0;;-1:-1:-1;;27212:20:0;;;27202:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;27187:9:::1;:12:::0;;-1:-1:-1;;;;;27202:31:0;;::::1;::::0;27197:1;;27187:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;27187:46:0::1;-1:-1:-1::0;;;;;27187:46:0;;::::1;;::::0;;27236:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;27259:11:::1;:20:::0;;;;:28;;-1:-1:-1;;27259:28:0::1;::::0;;27290:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;27290:15:0;;;;;-1:-1:-1;;;;;;27290:15:0::1;::::0;;;;;27308:5:::1;;27155:162;27147:3;;27105:215;;;;26977:346:::0;:::o;547:94::-;627:10;547:94;:::o;27703:299::-;-1:-1:-1;;;;;27788:19:0;;27780:68;;;;-1:-1:-1;;;27780:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27859:21:0;;27851:68;;;;-1:-1:-1;;;27851:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27922:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27966:32;;;;;;;;;;;;;;;;;27703:299;;;:::o;28004:1528::-;-1:-1:-1;;;;;28093:20:0;;28085:70;;;;-1:-1:-1;;;28085:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28166:23:0;;28158:71;;;;-1:-1:-1;;;28158:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28249:1;28240:6;:10;28232:64;;;;-1:-1:-1;;;28232:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28312:7;:5;:7::i;:::-;-1:-1:-1;;;;;28302:17:0;:6;-1:-1:-1;;;;;28302:17:0;;;:41;;;;;28336:7;:5;:7::i;:::-;-1:-1:-1;;;;;28323:20:0;:9;-1:-1:-1;;;;;28323:20:0;;;28302:41;28299:122;;;28364:12;;28354:6;:22;;28346:75;;;;-1:-1:-1;;;28346:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28642:28;28673:24;28691:4;28673:9;:24::i;:::-;28642:55;;28727:12;;28703:20;:36;28700:84;;-1:-1:-1;28768:12:0;;28700:84;28837:29;;28874:6;;28813:53;;;;;-1:-1:-1;;;28874:6:0;;;;28873:7;:22;;;;-1:-1:-1;28884:11:0;;-1:-1:-1;;;28884:11:0;;;;28873:22;:45;;;;;28899:19;28873:45;:72;;;;;28932:13;-1:-1:-1;;;;;28922:23:0;:6;-1:-1:-1;;;;;28922:23:0;;;28873:72;28869:322;;;29024:38;29041:20;29024:16;:38::i;:::-;29094:21;29121:22;;29118:70;;29148:36;29162:21;29148:13;:36::i;:::-;28869:322;;-1:-1:-1;;;;;29347:26:0;;29246:12;29347:26;;;:18;:26;;;;;;29261:4;;29347:26;;;:59;;-1:-1:-1;;;;;;29377:29:0;;;;;;:18;:29;;;;;;;;29347:59;29344:85;;;-1:-1:-1;29420:5:0;29344:85;29481:47;29496:6;29503:9;29513:6;29520:7;29481:14;:47::i;:::-;28004:1528;;;;;;:::o;4156:162::-;4242:7;4270:12;4262:6;;;;4254:29;;;;-1:-1:-1;;;4254:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4298:5:0;;;4156:162::o;34829:143::-;34870:7;34883:15;34900;34919:19;:17;:19::i;:::-;34882:56;;-1:-1:-1;34882:56:0;-1:-1:-1;34948:20:0;34882:56;;34948:11;:20::i;:::-;34941:27;;;;34829:143;:::o;5320:120::-;5378:7;5397:39;5401:1;5404;5397:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5390:46;5320:120;-1:-1:-1;;;5320:120:0:o;3405:151::-;3463:7;3487:5;;;3503:6;;;;3495:46;;;;;-1:-1:-1;;;3495:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;33786:424;33845:7;33854;33863;33872;33881;33890;33903:23;33928:12;33942:13;33959:39;33971:7;33980;;33989:8;;33959:11;:39::i;:::-;33902:96;;;;;;34001:19;34023:10;:8;:10::i;:::-;34001:32;;34037:15;34054:23;34079:12;34095:39;34107:7;34116:4;34122:11;34095;:39::i;:::-;34036:98;;-1:-1:-1;34036:98:0;-1:-1:-1;34036:98:0;-1:-1:-1;34177:15:0;;-1:-1:-1;34194:4:0;;-1:-1:-1;34200:5:0;;-1:-1:-1;;;;;33786:424:0;;;;;;;:::o;3784:124::-;3842:7;3861:43;3865:1;3868;3861:43;;;;;;;;;;;;;;;;;:3;:43::i;29534:468::-;22913:6;:13;;-1:-1:-1;;;;22913:13:0;-1:-1:-1;;;22913:13:0;;;29679:16:::1;::::0;;29693:1:::1;29679:16:::0;;;29655:21:::1;29679:16:::0;;::::1;::::0;;29655:21;29679:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;29679:16:0::1;29655:40;;29716:4;29698;29703:1;29698:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;29698:23:0::1;;;-1:-1:-1::0;;;;;29698:23:0::1;;;::::0;::::1;29734:15;-1:-1:-1::0;;;;;29734:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;29734:22:0;29724:7;;:4;;29729:1:::1;::::0;29724:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;29724:32:0::1;;;-1:-1:-1::0;;;;;29724:32:0::1;;;::::0;::::1;29759:62;29776:4;29791:15;29809:11;29759:8;:62::i;:::-;29842:15;-1:-1:-1::0;;;;;29842:66:0::1;;29911:11;29925:1;29957:4;29972;29980:15;29842:156;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;29842:156:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;22933:6:0;:14;;-1:-1:-1;;;;22933:14:0;;;-1:-1:-1;;;;29534:468:0:o;30004:145::-;30054:17;;-1:-1:-1;;;;;30054:17:0;:41;30081:13;:6;30092:1;30081:10;:13::i;:::-;30054:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30098:23:0;;-1:-1:-1;;;;;30098:23:0;:47;30131:13;:6;30142:1;30131:10;:13::i;:::-;30098:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30649:663;30753:7;30749:28;;30763:14;:12;:14::i;:::-;-1:-1:-1;;;;;30784:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;30808:22:0;;;;;;:11;:22;;;;;;;;30807:23;30784:46;30780:497;;;30835:48;30857:6;30865:9;30876:6;30835:21;:48::i;:::-;30780:497;;;-1:-1:-1;;;;;30898:19:0;;;;;;:11;:19;;;;;;;;30897:20;:46;;;;-1:-1:-1;;;;;;30921:22:0;;;;;;:11;:22;;;;;;;;30897:46;30893:384;;;30948:46;30968:6;30976:9;30987:6;30948:19;:46::i;30893:384::-;-1:-1:-1;;;;;31009:19:0;;;;;;:11;:19;;;;;;;;31008:20;:47;;;;-1:-1:-1;;;;;;31033:22:0;;;;;;:11;:22;;;;;;;;31032:23;31008:47;31004:273;;;31060:44;31078:6;31086:9;31097:6;31060:17;:44::i;31004:273::-;-1:-1:-1;;;;;31118:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;31141:22:0;;;;;;:11;:22;;;;;;;;31118:45;31114:163;;;31168:48;31190:6;31198:9;31209:6;31168:21;:48::i;31114:163::-;31229:44;31247:6;31255:9;31266:6;31229:17;:44::i;:::-;31283:7;31279:29;;31293:15;:13;:15::i;:::-;30649:663;;;;:::o;34974:467::-;35063:7;;35091;;35024;;;;;35101:245;35125:9;:16;35121:20;;35101:245;;;35179:7;35155;:21;35163:9;35173:1;35163:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35163:12:0;35155:21;;;;;;;;;;;;;:31;;:66;;;35214:7;35190;:21;35198:9;35208:1;35198:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35198:12:0;35190:21;;;;;;;;;;;;;:31;35155:66;35151:97;;;35231:7;;35240;;35223:25;;;;;;;;;35151:97;35261:34;35273:7;:21;35281:9;35291:1;35281:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35281:12:0;35273:21;;;;;;;;;;;;;35261:7;;:11;:34::i;:::-;35251:44;;35308:34;35320:7;:21;35328:9;35338:1;35328:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35328:12:0;35320:21;;;;;;;;;;;;;35308:7;;:11;:34::i;:::-;35298:44;-1:-1:-1;35143:3:0;;35101:245;;;-1:-1:-1;35374:7:0;;35362;;:20;;:11;:20::i;:::-;35352:7;:30;35348:61;;;35392:7;;35401;;35384:25;;;;;;;;35348:61;35420:7;;-1:-1:-1;35429:7:0;-1:-1:-1;34974:467:0;;;:::o;5871:240::-;5957:7;5984:12;5977:5;5969:28;;;;-1:-1:-1;;;5969:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000:9;6016:1;6012;:5;;;;;;;5871:240;-1:-1:-1;;;;;5871:240:0:o;34212:315::-;34305:7;;;;34350:28;34374:3;34350:19;:7;34362:6;34350:11;:19::i;:::-;:23;;:28::i;:::-;34335:43;-1:-1:-1;34381:13:0;34397:29;34422:3;34397:20;:7;34409;34397:11;:20::i;:29::-;34381:45;-1:-1:-1;34429:23:0;34455:28;34381:45;34455:17;:7;34467:4;34455:11;:17::i;:::-;:21;;:28::i;:::-;34429:54;34511:4;;-1:-1:-1;34517:5:0;;-1:-1:-1;34212:315:0;;-1:-1:-1;;;;;34212:315:0:o;34529:298::-;34624:7;;;;34672:24;:7;34684:11;34672;:24::i;:::-;34654:42;-1:-1:-1;34699:12:0;34714:21;:4;34723:11;34714:8;:21::i;:::-;34699:36;-1:-1:-1;34738:23:0;34764:17;:7;34699:36;34764:11;:17::i;:::-;34792:7;;;;-1:-1:-1;34818:4:0;;-1:-1:-1;34529:298:0;;-1:-1:-1;;;;;34529:298:0:o;27325:166::-;27363:7;;:12;:29;;;;-1:-1:-1;27379:8:0;;:13;27363:29;27360:41;;;27394:7;;27360:41;27421:7;;;27403:15;:25;27450:8;;;27431:16;:27;-1:-1:-1;27461:11:0;;;;27475:12;27325:166;:::o;32253:488::-;32348:15;32365:23;32390:12;32404:23;32429:12;32443:13;32460:19;32471:7;32460:10;:19::i;:::-;-1:-1:-1;;;;;32500:15:0;;;;;;:7;:15;;;;;;32347:132;;-1:-1:-1;32347:132:0;;-1:-1:-1;32347:132:0;;-1:-1:-1;32347:132:0;-1:-1:-1;32347:132:0;-1:-1:-1;32347:132:0;-1:-1:-1;32500:28:0;;32520:7;32500:19;:28::i;:::-;-1:-1:-1;;;;;32482:15:0;;;;;;:7;:15;;;;;;;;:46;;;;32549:7;:15;;;;:28;;32569:7;32549:19;:28::i;:::-;-1:-1:-1;;;;;32531:15:0;;;;;;;:7;:15;;;;;;:46;;;;32601:18;;;;;;;:39;;32624:15;32601:22;:39::i;:::-;-1:-1:-1;;;;;32580:18:0;;;;;;:7;:18;;;;;:60;32643:16;32653:5;32643:9;:16::i;:::-;32662:23;32674:4;32680;32662:11;:23::i;:::-;32710:9;-1:-1:-1;;;;;32693:44:0;32702:6;-1:-1:-1;;;;;32693:44:0;;32721:15;32693:44;;;;;;;;;;;;;;;;;;32253:488;;;;;;;;;:::o;31751:500::-;31844:15;31861:23;31886:12;31900:23;31925:12;31939:13;31956:19;31967:7;31956:10;:19::i;:::-;-1:-1:-1;;;;;31996:15:0;;;;;;:7;:15;;;;;;31843:132;;-1:-1:-1;31843:132:0;;-1:-1:-1;31843:132:0;;-1:-1:-1;31843:132:0;-1:-1:-1;31843:132:0;-1:-1:-1;31843:132:0;-1:-1:-1;31996:28:0;;31843:132;31996:19;:28::i;:::-;-1:-1:-1;;;;;31978:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;32048:18;;;;;:7;:18;;;;;:39;;32071:15;32048:22;:39::i;:::-;-1:-1:-1;;;;;32027:18:0;;;;;;:7;:18;;;;;;;;:60;;;;32111:7;:18;;;;:39;;32134:15;32111:22;:39::i;31314:435::-;31405:15;31422:23;31447:12;31461:23;31486:12;31500:13;31517:19;31528:7;31517:10;:19::i;:::-;-1:-1:-1;;;;;31557:15:0;;;;;;:7;:15;;;;;;31404:132;;-1:-1:-1;31404:132:0;;-1:-1:-1;31404:132:0;;-1:-1:-1;31404:132:0;-1:-1:-1;31404:132:0;-1:-1:-1;31404:132:0;-1:-1:-1;31557:28:0;;31404:132;31557:19;:28::i;32743:551::-;32838:15;32855:23;32880:12;32894:23;32919:12;32933:13;32950:19;32961:7;32950:10;:19::i;:::-;-1:-1:-1;;;;;32990:15:0;;;;;;:7;:15;;;;;;32837:132;;-1:-1:-1;32837:132:0;;-1:-1:-1;32837:132:0;;-1:-1:-1;32837:132:0;-1:-1:-1;32837:132:0;-1:-1:-1;32837:132:0;-1:-1:-1;32990:28:0;;33010:7;32990:19;:28::i;:::-;-1:-1:-1;;;;;32972:15:0;;;;;;:7;:15;;;;;;;;:46;;;;33039:7;:15;;;;:28;;33059:7;33039:19;:28::i;27493:95::-;27539:15;;27529:7;:25;27568:16;;27557:8;:27;27493:95::o;4522:387::-;4580:7;4793:6;4789:27;;-1:-1:-1;4811:1:0;4804:8;;4789:27;4830:5;;;4834:1;4830;:5;:1;4846:5;;;;;:10;4838:56;;;;-1:-1:-1;;;4838:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33296:276;33341:19;33363:10;:8;:10::i;:::-;33341:32;-1:-1:-1;33376:13:0;33392:22;:5;33341:32;33392:9;:22::i;:::-;33458:4;33442:22;;;;:7;:22;;;;;;33376:38;;-1:-1:-1;33442:33:0;;33376:38;33442:26;:33::i;:::-;33433:4;33417:22;;;;:7;:22;;;;;;;;:58;;;;33481:11;:26;;;;;;33478:90;;;33551:4;33535:22;;;;:7;:22;;;;;;:33;;33562:5;33535:26;:33::i;:::-;33526:4;33510:22;;;;:7;:22;;;;;:58;33478:90;33296:276;;;:::o;33574:127::-;33644:7;;:17;;33656:4;33644:11;:17::i;:::-;33634:7;:27;33677:10;;:20;;33692:4;33677:14;:20::i;:::-;33664:10;:33;-1:-1:-1;;33574:127:0:o
Swarm Source
ipfs://f5bc57cb9421fcbe57c457d7ccd118dcf6580aa30c75b18f1d6850b93170ff95