Polygon Sponsored slots available. Book your slot here!
ERC-20
DeFi
Overview
Max Total Supply
100,000,000 PET
Holders
1,497 (0.00%)
Total Transfers
-
Market
Price
$0.00 @ 0.000100 POL
Onchain Market Cap
$3,805.75
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract contains unverified libraries: IterableMapping
Contract Name:
PET
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; import "./DividendPayingToken.sol"; import "./SafeMath.sol"; import "./IterableMapping.sol"; import "./Ownable.sol"; import "./IUniswapV2Pair.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Router.sol"; import "./SafeERC20.sol"; import "./Address.sol"; abstract contract Reentrancy { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () { _status = _NOT_ENTERED; } modifier nonReentrant() { require(_status != _ENTERED, "Reentrant call"); _status = _ENTERED; _; _status = _NOT_ENTERED; } } contract PET is ERC20, Ownable, Reentrancy { using SafeMath for uint256; using SafeERC20 for IERC20; using Address for address; IUniswapV2Router02 public uniswapV2Router; bool private swapping; DividendTracker public dividendTracker; address public deadWallet = 0x000000000000000000000000000000000000dEaD; uint256 public swapTokensAtAmount = 100 * (10**18); mapping(address => bool) public _isBlacklisted; uint256 public rewardsFee = 3; uint256 public liquidityFee = 2; uint256 public marketingFee = 1; uint256 public sellTopUp = 1; uint256 public walletFee; uint256 public capFees = 20; uint256 public slippage = 20; uint256 public totalFees = rewardsFee.add(liquidityFee).add(marketingFee); address public _marketingWalletAddress = 0x5C9D790F7d38c97b6F78a8ad173de262e06f0A37; // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public automatedMarketMakerPairs; event UpdateDividendTracker(address indexed newAddress, address indexed oldAddress); event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet); event MarketingWalletUpdated(address indexed newMarketingyWallet, address indexed oldMarketingyWallet); event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue); event SendDividends( uint256 amount ); event ProcessedDividendTracker( uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic, uint256 gas, address indexed processor ); constructor() ERC20("Poodl Exchange Token", "PET") { dividendTracker = new DividendTracker(); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; automatedMarketMakerPairs[_uniswapV2Pair]=true; // exclude from receiving dividends dividendTracker.excludeFromDividends(address(dividendTracker)); dividendTracker.excludeFromDividends(address(this)); dividendTracker.excludeFromDividends(owner()); dividendTracker.excludeFromDividends(deadWallet); dividendTracker.excludeFromDividends(address(_uniswapV2Router)); dividendTracker.excludeFromDividends(address(_uniswapV2Pair)); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(_marketingWalletAddress, true); excludeFromFees(address(this), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(owner(), 100000000 * (10**18)); } receive() external payable {} //WRITE FUNCTIONS OWNER function updateDividendTracker(address newAddress) public onlyOwner { require(newAddress != address(dividendTracker), ""); DividendTracker newDividendTracker = DividendTracker(payable(newAddress)); require(newDividendTracker.owner() == address(this), ""); newDividendTracker.excludeFromDividends(address(newDividendTracker)); newDividendTracker.excludeFromDividends(address(this)); newDividendTracker.excludeFromDividends(owner()); newDividendTracker.excludeFromDividends(deadWallet); newDividendTracker.excludeFromDividends(address(uniswapV2Router)); emit UpdateDividendTracker(newAddress, address(dividendTracker)); dividendTracker = newDividendTracker; } function updateUniswapV2Router(address newAddress) public onlyOwner { require(newAddress != address(uniswapV2Router), ""); uniswapV2Router = IUniswapV2Router02(newAddress); address pair = IUniswapV2Factory(uniswapV2Router.factory()) .getPair(address(this), uniswapV2Router.WETH()); if(pair == address(0)){ address newPair = IUniswapV2Factory(uniswapV2Router.factory()) .createPair(address(this), uniswapV2Router.WETH()); automatedMarketMakerPairs[newPair]=true; }else{ automatedMarketMakerPairs[pair]=true; } dividendTracker.excludeFromDividends(address(uniswapV2Router)); emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router)); } // updates the default router for buying tokens from dividend tracker function updateDividendUniswapV2Router(address newAddress) external onlyOwner { dividendTracker.updateDividendUniswapV2Router(newAddress); } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){ swapTokensAtAmount = newAmount * (10**18); return true; } function excludeFromFees(address account, bool excluded) public onlyOwner { require(_isExcludedFromFees[account] != excluded, ""); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) external onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded; } emit ExcludeMultipleAccountsFromFees(accounts, excluded); } function blacklistAddress(address account, bool value) external onlyOwner{ _isBlacklisted[account] = value; } function blacklistMultipleAddresses(address[] calldata accounts, bool blacklisted) external onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { _isBlacklisted[accounts[i]] = blacklisted; } } function excludeFromDividends(address account) external onlyOwner{ dividendTracker.excludeFromDividends(account); } function includeInDividends(address account) external onlyOwner { uint256 balance = balanceOf(account); dividendTracker.includeInDividends(account, balance); } function updateGasStipend(uint value) public onlyOwner{ dividendTracker.updateStipend(value); } function setMarketingWallet(address payable wallet) external onlyOwner{ require(wallet != _marketingWalletAddress,""); excludeFromFees(wallet, true); emit MarketingWalletUpdated(wallet, _marketingWalletAddress); _marketingWalletAddress = wallet; } function setWalletFee(uint256 value) external onlyOwner{ require((value<= capFees),""); walletFee = value; } function setSlippage(uint _slippage) external onlyOwner { slippage = _slippage; dividendTracker.setSlippage(_slippage); } function setFees(uint256 marketing, uint256 rewards, uint256 liquidity, uint sellTop) public onlyOwner{ require(marketing.add(rewards).add(liquidity).add(sellTop) <= capFees, ""); totalFees = marketing.add(rewards).add(liquidity); marketingFee = marketing; rewardsFee = rewards; liquidityFee = liquidity; sellTopUp = sellTop; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require(automatedMarketMakerPairs[pair] != value, ""); automatedMarketMakerPairs[pair] = value; if(value) { dividendTracker.excludeFromDividends(pair); } emit SetAutomatedMarketMakerPair(pair, value); } function updateClaimWait(uint256 claimWait) external onlyOwner { dividendTracker.updateClaimWait(claimWait); } function approveToken(address tokenAddress, bool isApproved) external onlyOwner returns (bool){ dividendTracker.approveToken(tokenAddress, isApproved); return true; } function approveAMM(address AMMAddress, bool isApproved) external onlyOwner returns (bool){ dividendTracker.approveAMM(AMMAddress, isApproved); return true; } //WRITE FUNCTIONS USERS function processDividendTracker(uint256 gas) external nonReentrant { (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas); emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, msg.sender); } function claim() external nonReentrant { dividendTracker.processAccount(payable(msg.sender), false); } function processAccount(address account) external nonReentrant { dividendTracker.processAccount(payable(account), false); } // set the reward token for the user. Call from here. function setRewardToken(address rewardTokenAddress) external nonReentrant returns (bool) { require(rewardTokenAddress != address(this), ""); require(dividendTracker.isTokenApproved(rewardTokenAddress),"Token not approved"); dividendTracker.setRewardToken(msg.sender, rewardTokenAddress); return true; } // set the reward token for the user with a custom AMM (AMM must be whitelisted). Call from here. function setRewardTokenWithCustomAMM(address rewardTokenAddress, address ammContractAddress) external nonReentrant returns (bool) { require(ammContractAddress != address(uniswapV2Router), ""); require(rewardTokenAddress != address(this), ""); require(dividendTracker.isTokenApproved(rewardTokenAddress) , "Token not approved."); require(dividendTracker.isAMMApproved(ammContractAddress) , "AMM is not whitelisted!"); dividendTracker.setRewardTokenWithCustomAMM(msg.sender, rewardTokenAddress, ammContractAddress); return true; } // Unset the reward token and AMM back to default. Call from here. function unsetRewardToken() external nonReentrant returns (bool){ dividendTracker.unsetRewardToken(msg.sender); return true; } //TRANSFER LOGICS function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), ""); require(to != address(0), ""); require(!_isBlacklisted[from] && !_isBlacklisted[to], 'Blacklisted address'); if(amount == 0) { super._transfer(from, to, 0); return; } if(totalFees > 0){ uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && !swapping && !automatedMarketMakerPairs[from] && from != owner() && to != owner() ) { swapping = true; swapBack(contractTokenBalance); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if(takeFee) { if(automatedMarketMakerPairs[from]){ //BUYS uint256 fees = amount.mul(totalFees).div(100); amount = amount.sub(fees); super._transfer(from, address(this), fees); }else if (automatedMarketMakerPairs[to]){ //SELLS uint256 fees = amount.mul(totalFees.add(sellTopUp)).div(100); amount = amount.sub(fees); super._transfer(from, address(this), fees); }else{ if(walletFee > 0){ uint256 fees = amount.mul(walletFee).div(100); amount = amount.sub(fees); super._transfer(from, address(this), fees); } } } } super._transfer(from, to, amount); try dividendTracker.setBalance(from, balanceOf(from)) {} catch {} try dividendTracker.setBalance(to, balanceOf(to)) {} catch {} } function swapBack(uint256 contractTokenBalance) internal { uint256 amountToLiquify = contractTokenBalance.mul(liquidityFee).div(totalFees).div(2); uint256 amountToSwap = contractTokenBalance.sub(amountToLiquify); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uint256 balanceBefore = address(this).balance; swapTokensForEth(amountToSwap); uint256 amountMATIC = address(this).balance.sub(balanceBefore); uint256 totalMATICFee = totalFees.sub(liquidityFee.div(2)); uint256 amountMATICLiquidity = amountMATIC.mul(liquidityFee).div(totalMATICFee).div(2); uint256 amountMATICReflection = amountMATIC.mul(rewardsFee).div(totalMATICFee); uint256 amountMATICMarketing = amountMATIC.mul(marketingFee).div(totalMATICFee); (bool success,) = address(dividendTracker).call{value: amountMATICReflection}(""); if (success) { emit SendDividends(amountMATICReflection); } (success,) = address(_marketingWalletAddress).call{value: amountMATICMarketing}(""); if(amountToLiquify > 0){ addLiquidity(amountToLiquify, amountMATICLiquidity); } } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uint256 out = uniswapV2Router.getAmountsOut(tokenAmount, path)[1]; // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, out.mul(slippage).div(100), // 15% slippage to cover up to max capFees path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 1, // slippage is unavoidable 1, // slippage is unavoidable owner(), block.timestamp ); } //Withdraws trapped tokens and send them to a multi-sig marketing wallet function withdrawBep20(address token) public onlyOwner nonReentrant{ require((IERC20(address(token)).balanceOf(address(this)))>0); IERC20(token).safeTransfer(_marketingWalletAddress,IERC20(token).balanceOf(address(this))); } //Withdraws trapped MATICs and send them to a multi-sig marketing wallet function withdrawMATIC() public onlyOwner nonReentrant { uint256 amountMATIC = address(this).balance; (bool success, ) = payable(_marketingWalletAddress).call{value: amountMATIC}(""); require(success, "transfer failed"); } //READ FUNCTIONS function getClaimWait() external view returns(uint256) { return dividendTracker.claimWait(); } function getUserCurrentRewardToken(address holder) external view returns (address){ return dividendTracker.userCurrentRewardToken(holder); } function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function getDividendTokensMinimum() external view returns (uint256) { return dividendTracker.minimumTokenBalanceForDividends(); } function withdrawableDividendOf(address account) public view returns(uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf(address account) public view returns (uint256) { return dividendTracker.balanceOf(account); } function getAccountDividendsInfo(address account) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { return dividendTracker.getAccount(account); } function getAccountDividendsInfoAtIndex(uint256 index) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { return dividendTracker.getAccountAtIndex(index); } function getLastProcessedIndex() external view returns(uint256) { return dividendTracker.getLastProcessedIndex(); } function getNumberOfDividendTokenHolders() external view returns(uint256) { return dividendTracker.getNumberOfTokenHolders(); } // determines if a token can be used for rewards function isTokenApproved(address tokenAddress) public view returns (bool){ return dividendTracker.isTokenApproved(tokenAddress); } // determines if an AMM can be used for rewards function isAMMApproved(address ammAddress) public view returns (bool){ return dividendTracker.isAMMApproved(ammAddress); } } contract DividendTracker is Ownable, DividendPayingToken { using SafeMath for uint256; using SafeMathInt for int256; using IterableMapping for IterableMapping.Map; IterableMapping.Map private tokenHoldersMap; uint256 public lastProcessedIndex; mapping (address => bool) public excludedFromDividends; mapping (address => uint256) public lastClaimTimes; uint256 public claimWait; uint256 public minimumTokenBalanceForDividends; event ExcludeFromDividends(address indexed account); event IncludeInDividends(address indexed account); event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue); event Claim(address indexed account, uint256 amount, bool indexed automatic); constructor() DividendPayingToken("Dividend_Tracker", "Dividend_Tracker") { claimWait = 21600; minimumTokenBalanceForDividends = 100 * (10**18); //must hold 100+ tokens } //WRITE FUNCTIONS function _transfer(address, address, uint256) internal override pure { //Users can not transfer this token as it has to be 1:1 with the parent token. require(false, ""); } function excludeFromDividends(address account) external onlyOwner { require(!excludedFromDividends[account],""); excludedFromDividends[account] = true; _setBalance(account, 0); tokenHoldersMap.remove(account); emit ExcludeFromDividends(account); } function includeInDividends(address account, uint256 balance) external onlyOwner { require(excludedFromDividends[account]); excludedFromDividends[account] = false; tokenHoldersMap.set(account, balance); emit IncludeInDividends(account); } function updateClaimWait(uint256 newClaimWait) external onlyOwner { require(newClaimWait >= 3600 && newClaimWait <= 86400, ""); require(newClaimWait != claimWait, ""); emit ClaimWaitUpdated(newClaimWait, claimWait); claimWait = newClaimWait; } function setBalance(address account, uint256 newBalance) external onlyOwner { if(excludedFromDividends[account]) { return; } if(newBalance >= minimumTokenBalanceForDividends) { _setBalance(account, newBalance); tokenHoldersMap.set(account, newBalance); } else { _setBalance(account, 0); tokenHoldersMap.remove(account); } } function process(uint256 gas) public onlyOwner returns (uint256, uint256, uint256) { uint256 numberOfTokenHolders = tokenHoldersMap.keys.length; if(numberOfTokenHolders == 0) { return (0, 0, lastProcessedIndex); } uint256 _lastProcessedIndex = lastProcessedIndex; uint256 gasUsed = 0; uint256 gasLeft = gasleft(); uint256 iterations = 0; uint256 claims = 0; while(gasUsed < gas && iterations < numberOfTokenHolders) { _lastProcessedIndex++; if(_lastProcessedIndex >= tokenHoldersMap.keys.length) { _lastProcessedIndex = 0; } address account = tokenHoldersMap.keys[_lastProcessedIndex]; if(canAutoClaim(lastClaimTimes[account])) { if(processAccount(payable(account), true)) { claims++; } } iterations++; uint256 newGasLeft = gasleft(); if(gasLeft > newGasLeft) { gasUsed = gasUsed.add(gasLeft.sub(newGasLeft)); } gasLeft = newGasLeft; } lastProcessedIndex = _lastProcessedIndex; return (iterations, claims, lastProcessedIndex); } function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) { if(canAutoClaim(lastClaimTimes[account])){ uint256 amount = _withdrawDividendOfUser(account); if(amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount, automatic); return true; } } return false; } //READ FUNCTIONS function getLastProcessedIndex() external view returns(uint256) { return lastProcessedIndex; } function getNumberOfTokenHolders() external view returns(uint256) { return tokenHoldersMap.keys.length; } function getAccount(address _account) public view returns ( address account, int256 index, int256 iterationsUntilProcessed, uint256 withdrawableDividends, uint256 totalDividends, uint256 lastClaimTime, uint256 nextClaimTime, uint256 secondsUntilAutoClaimAvailable) { account = _account; index = tokenHoldersMap.getIndexOfKey(account); iterationsUntilProcessed = -1; if(index >= 0) { if(uint256(index) > lastProcessedIndex) { iterationsUntilProcessed = index.sub(int256(lastProcessedIndex)); } else { uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ? tokenHoldersMap.keys.length.sub(lastProcessedIndex) : 0; iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray)); } } withdrawableDividends = withdrawableDividendOf(account); totalDividends = accumulativeDividendOf(account); lastClaimTime = lastClaimTimes[account]; nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0; secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime.sub(block.timestamp) : 0; } function getAccountAtIndex(uint256 index) public view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { if(index >= tokenHoldersMap.size()) { return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0); } address account = tokenHoldersMap.getKeyAtIndex(index); return getAccount(account); } function canAutoClaim(uint256 lastClaimTime) private view returns (bool) { if(lastClaimTime > block.timestamp) { return false; } return block.timestamp.sub(lastClaimTime) >= claimWait; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @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"); (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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; import "./ERC20.sol"; import "./SafeMath.sol"; import "./SafeMathUint.sol"; import "./SafeMathInt.sol"; import "./DividendPayingTokenInterface.sol"; import "./DividendPayingTokenOptionalInterface.sol"; import "./Ownable.sol"; import "./SafeERC20.sol"; import "./IUniswapV2Router.sol"; /// @title Dividend-Paying Token /// @author Roger Wu (https://github.com/roger-wu) /// @dev A mintable ERC20 token that allows anyone to pay and distribute ether /// to token holders as dividends and allows token holders to withdraw their dividends. /// Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code contract DividendPayingToken is ERC20, Ownable, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; using SafeERC20 for IERC20; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 constant internal magnitude = 2**128; uint256 internal magnifiedDividendPerShare; address public defaultToken; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; mapping(address => address) public userCurrentRewardToken; mapping(address => bool) public approvedTokens; mapping(address => address) public userCurrentRewardAMM; mapping(address => bool) public ammIsWhiteListed; // only allow whitelisted AMMs uint256 public stipend = 3000; uint256 public slippage = 20; uint256 public totalDividendsDistributed; IUniswapV2Router02 public uniswapV2Router = IUniswapV2Router02(0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff); constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) { ammIsWhiteListed[address(0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff)] = true; approvedTokens[0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174] = true; // USDC approvedTokens[0xc2132D05D31c914a87C6611C10748AEb04B58e8F] = true; // USDT approvedTokens[0x2C89bbc92BD86F8075d1DEcc58C7F4E0107f286b] = true; // AVAX approvedTokens[0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6] = true; // WBTC approvedTokens[0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619] = true; // WETH approvedTokens[0x2C89bbc92BD86F8075d1DEcc58C7F4E0107f286b] = true; // AVAX } receive() external payable { distributeDividends(msg.value); } //WRITE FUNCTIONS function updateStipend(uint value) public onlyOwner{ stipend = value; } function updateDividendUniswapV2Router(address newAddress) external onlyOwner { require(newAddress != address(uniswapV2Router), ""); require(newAddress != address(0), ""); uniswapV2Router = IUniswapV2Router02(newAddress); } function approveToken(address tokenAddress, bool isApproved) external onlyOwner { approvedTokens[tokenAddress] = isApproved; } function approveAMM(address ammAddress, bool whitelisted) external onlyOwner { ammIsWhiteListed[ammAddress] = whitelisted; } function setSlippage(uint _slippage) external onlyOwner { slippage = _slippage; } // call this to set a custom reward token (call from token contract only) function setRewardToken(address holder, address rewardTokenAddress) external onlyOwner { userCurrentRewardToken[holder] = rewardTokenAddress; } // call this to set a custom reward token and AMM(call from token contract only) function setRewardTokenWithCustomAMM(address holder, address rewardTokenAddress, address ammContractAddress) external onlyOwner { userCurrentRewardToken[holder] = rewardTokenAddress; userCurrentRewardAMM[holder] = ammContractAddress; } // call this to go back to receiving defaultToken after setting another token. (call from token contract only) function unsetRewardToken(address holder) external onlyOwner { userCurrentRewardToken[holder] = address(0); userCurrentRewardAMM[holder] = address(uniswapV2Router); } function distributeDividends(uint256 amount) public payable { require (msg.value == amount); require(totalSupply() > 0,""); if (amount > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (amount).mul(magnitude).div(totalSupply()) ); emit DividendsDistributed(msg.sender, amount); totalDividendsDistributed = totalDividendsDistributed.add(amount); } } /// @notice Withdraws the dividends distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn dividends is greater than 0. function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend); // if no custom reward token send MATIC. if(userCurrentRewardToken[user] == address(0) || !approvedTokens[userCurrentRewardToken[user]]){ (bool success,) = user.call{value: _withdrawableDividend, gas: stipend}(""); if(!success) { withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend); return 0; } emit DividendWithdrawn(user, _withdrawableDividend); return _withdrawableDividend; } else { // if the reward is not MATIC emit DividendWithdrawn(user, _withdrawableDividend); return swapETHForTokens(user, _withdrawableDividend); } } return 0; } // Customized function to send tokens to dividend recipients function swapETHForTokens( address recipient, uint256 ethAmount ) private returns (uint256) { bool swapSuccess; IUniswapV2Router02 swapRouter = uniswapV2Router; if(userCurrentRewardAMM[recipient] != address(0) && ammIsWhiteListed[userCurrentRewardAMM[recipient]]){ swapRouter = IUniswapV2Router02(userCurrentRewardAMM[recipient]); } // generate the pair path of token -> weth address[] memory path = new address[](2); path[0] = swapRouter.WETH(); path[1] = userCurrentRewardToken[recipient]; uint256 out = uniswapV2Router.getAmountsOut(ethAmount, path)[1]; // make the swap _approve(path[0], address(swapRouter), ethAmount); try swapRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}( //try to swap for tokens, if it fails (bad contract, or whatever other reason, send MATIC) out.mul(slippage).div(100), //15% slippage path, address(recipient), block.timestamp + 360 ){ swapSuccess = true; } catch { swapSuccess = false; } // if the swap failed, send them their MATIC instead if(!swapSuccess){ (bool success,) = recipient.call{value: ethAmount, gas: stipend}(""); if(!success) { withdrawnDividends[recipient] = withdrawnDividends[recipient].sub(ethAmount); return 0; } } return ethAmount; } function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .sub((magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if(newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if(newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } //READ FUNCTIONS function isTokenApproved(address tokenAddress) public view returns (bool){ return approvedTokens[tokenAddress]; } function isAMMApproved(address ammAddress) public view returns (bool){ return ammIsWhiteListed[ammAddress]; } function dividendOf(address _owner) public view override returns(uint256) { return withdrawableDividendOf(_owner); } function withdrawableDividendOf(address _owner) public view override returns(uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } function withdrawnDividendOf(address _owner) public view override returns(uint256) { return withdrawnDividends[_owner]; } function accumulativeDividendOf(address _owner) public view override returns(uint256) { return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe() .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; /// @title Dividend-Paying Token Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev An interface for a dividend-paying token contract. interface DividendPayingTokenInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) external view returns(uint256); /// @dev This event MUST emit when ether is distributed to token holders. /// @param from The address which sends ether to this contract. /// @param weiAmount The amount of distributed ether in wei. event DividendsDistributed( address indexed from, uint256 weiAmount ); /// @dev This event MUST emit when an address withdraws their dividend. /// @param to The address which withdraws ether from this contract. /// @param weiAmount The amount of withdrawn ether in wei. event DividendWithdrawn( address indexed to, uint256 weiAmount ); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; /// @title Dividend-Paying Token Optional Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev OPTIONAL functions for a dividend-paying token contract. interface DividendPayingTokenOptionalInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) external view returns(uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; import "./SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ 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; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { 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); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; library IterableMapping { // Iterable mapping from address to uint; struct Map { address[] keys; mapping(address => uint) values; mapping(address => uint) indexOf; mapping(address => bool) inserted; } function get(Map storage map, address key) public view returns (uint) { return map.values[key]; } function getIndexOfKey(Map storage map, address key) public view returns (int) { if(!map.inserted[key]) { return -1; } return int(map.indexOf[key]); } function getKeyAtIndex(Map storage map, uint index) public view returns (address) { return map.keys[index]; } function size(Map storage map) public view returns (uint) { return map.keys.length; } function set(Map storage map, address key, uint val) public { if (map.inserted[key]) { map.values[key] = val; } else { map.inserted[key] = true; map.values[key] = val; map.indexOf[key] = map.keys.length; map.keys.push(key); } } function remove(Map storage map, address key) public { if (!map.inserted[key]) { return; } delete map.inserted[key]; delete map.values[key]; uint index = map.indexOf[key]; uint lastIndex = map.keys.length - 1; address lastKey = map.keys[lastIndex]; map.indexOf[lastKey] = index; delete map.indexOf[key]; map.keys[index] = lastKey; map.keys.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; 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; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; 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; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity 0.8.15; // SPDX-License-Identifier: MIT License import "./Context.sol"; contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { 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; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; import "./IERC20.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; 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; } }
// SPDX-License-Identifier: MIT /* MIT License Copyright (c) 2018 requestnetwork Copyright (c) 2018 Fragments, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ pragma solidity 0.8.15; /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newMarketingyWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldMarketingyWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"AMMAddress","type":"address"},{"internalType":"bool","name":"isApproved","type":"bool"}],"name":"approveAMM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"bool","name":"isApproved","type":"bool"}],"name":"approveToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"blacklistMultipleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"capFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDividendTokensMinimum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"}],"name":"getUserCurrentRewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInDividends","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":"ammAddress","type":"address"}],"name":"isAMMApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"isTokenApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"processAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTopUp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"rewards","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"sellTop","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"rewardTokenAddress","type":"address"}],"name":"setRewardToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"rewardTokenAddress","type":"address"},{"internalType":"address","name":"ammContractAddress","type":"address"}],"name":"setRewardTokenWithCustomAMM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_slippage","type":"uint256"}],"name":"setSlippage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setWalletFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"slippage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unsetRewardToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"updateGasStipend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawBep20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMATIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526009805461dead6001600160a01b031990911617905568056bc75e2d63100000600a556003600c8190556002600d8190556001600e819055600f819055601460118190556012556200007e9290916200006a919062000657602090811b620038af17901c565b6200065760201b620038af1790919060201c565b601355601480546001600160a01b031916735c9d790f7d38c97b6f78a8ad173de262e06f0a37179055348015620000b457600080fd5b506040518060400160405280601481526020017f506f6f646c2045786368616e676520546f6b656e0000000000000000000000008152506040518060400160405280600381526020016214115560ea1b815250816003908162000118919062000992565b50600462000127828262000992565b50505060006200013c620006c560201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060016006556040516200019d90620008e0565b604051809103906000f080158015620001ba573d6000803e3d6000fd5b50600860006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600073a5e0829caced8ffdd4de3c43696c57f7d7a678ff90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000261919062000a5e565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d5919062000a5e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000323573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000349919062000a5e565b600780546001600160a01b0319166001600160a01b038581169190911790915581811660009081526016602052604090819020805460ff19166001179055600854905163031e79db60e41b81529116600482018190529192506331e79db090602401600060405180830381600087803b158015620003c657600080fd5b505af1158015620003db573d6000803e3d6000fd5b505060085460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200042557600080fd5b505af11580156200043a573d6000803e3d6000fd5b50506008546001600160a01b031691506331e79db09050620004646005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620004a657600080fd5b505af1158015620004bb573d6000803e3d6000fd5b505060085460095460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db09150602401600060405180830381600087803b1580156200050957600080fd5b505af11580156200051e573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200056a57600080fd5b505af11580156200057f573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03858116600483015290911692506331e79db09150602401600060405180830381600087803b158015620005cb57600080fd5b505af1158015620005e0573d6000803e3d6000fd5b5050505062000600620005f8620006c960201b60201c565b6001620006d8565b60145462000619906001600160a01b03166001620006d8565b62000626306001620006d8565b6200064f6200063d6005546001600160a01b031690565b6a52b7d2dcc80cd2e4000000620007df565b505062000ab0565b60008062000666838562000a89565b905083811015620006be5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064015b60405180910390fd5b9392505050565b3390565b6005546001600160a01b031690565b6005546001600160a01b03163314620007345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620006b5565b6001600160a01b03821660009081526015602052604090205481151560ff909116151503620007805760405162461bcd60e51b81526020600482015260006024820152604401620006b5565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620008375760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620006b5565b62000853816002546200065760201b620038af1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000886918390620038af62000657821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b61380a8062005f2f83390190565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200091957607f821691505b6020821081036200093a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620008db57600081815260208120601f850160051c81016020861015620009695750805b601f850160051c820191505b818110156200098a5782815560010162000975565b505050505050565b81516001600160401b03811115620009ae57620009ae620008ee565b620009c681620009bf845462000904565b8462000940565b602080601f831160018114620009fe5760008415620009e55750858301515b600019600386901b1c1916600185901b1785556200098a565b600085815260208120601f198616915b8281101562000a2f5788860151825594840194600190910190840162000a0e565b508582101562000a4e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000a7157600080fd5b81516001600160a01b0381168114620006be57600080fd5b6000821982111562000aab57634e487b7160e01b600052601160045260246000fd5b500190565b61546f8062000ac06000396000f3fe60806040526004361061044e5760003560e01c80638021974b11610243578063b6563edb11610143578063dd62ed3e116100bb578063e98030c71161008a578063f27fd2541161006f578063f27fd25414610cc9578063f2fde38b14610ce9578063f9fbb13814610d0957600080fd5b8063e98030c714610c89578063f0fa55a914610ca957600080fd5b8063dd62ed3e14610bf8578063e2f4560514610c3e578063e3fabbdb14610c54578063e7841ec014610c7457600080fd5b8063c689e56011610112578063d2bbdac2116100f7578063d2bbdac214610ba3578063d32cf92914610bc3578063d99f666814610be357600080fd5b8063c689e56014610b63578063d257b34f14610b8357600080fd5b8063b6563edb14610ae3578063c024666814610b03578063c0f306ef14610b23578063c492f04614610b4357600080fd5b80639a7a23d6116101d6578063a8b9d240116101a5578063ac557f661161018a578063ac557f6614610a38578063ad56c13c14610a4e578063b62496f514610ab357600080fd5b8063a8b9d240146109f8578063a9059cbb14610a1857600080fd5b80639a7a23d6146109835780639d93d352146109a3578063a26579ad146109c3578063a457c2d7146109d857600080fd5b80638aee8127116102125780638aee81271461091a5780638da5cb5b1461093a57806395d89b411461095857806398118cb41461096d57600080fd5b80638021974b1461089a578063807ab4f7146108ba57806385141a77146108da57806388bdd9be146108fa57600080fd5b80634144d9e41161034e57806364b0f653116102e15780636fcba377116102b057806370a082311161029557806370a0823114610839578063715018a61461086f57806378f0a3771461088457600080fd5b80636fcba377146107f9578063700bb1911461081957600080fd5b806364b0f6531461078e57806365b8dbc0146107a35780636843cd84146107c35780636b67c4df146107e357600080fd5b80634e71d92d1161031d5780634e71d92d1461070a5780634fbee1931461071f5780635154a903146107585780635d098b381461076e57600080fd5b80634144d9e414610695578063455a4396146106b5578063479c5266146106d55780634aea2242146106ea57600080fd5b80632bb14e1d116103e157806331e79db0116103b057806334e6b6291161039557806334e6b6291461063f578063395093511461065f5780633e032a3b1461067f57600080fd5b806331e79db0146105fd57806331ef708c1461061f57600080fd5b80632bb14e1d146105965780632c1f5216146105ac57806330bb4cff146105cc578063313ce567146105e157600080fd5b80631694505e1161041d5780631694505e146104f957806318160ddd146105315780631cdd3be31461054657806323b872dd1461057657600080fd5b806306fdde031461045a578063095ea7b3146104855780630c0e0cef146104b557806313114a9d146104d557600080fd5b3661045557005b600080fd5b34801561046657600080fd5b5061046f610d1e565b60405161047c9190614cf9565b60405180910390f35b34801561049157600080fd5b506104a56104a0366004614d62565b610db0565b604051901515815260200161047c565b3480156104c157600080fd5b506104a56104d0366004614d9c565b610dc7565b3480156104e157600080fd5b506104eb60135481565b60405190815260200161047c565b34801561050557600080fd5b50600754610519906001600160a01b031681565b6040516001600160a01b03909116815260200161047c565b34801561053d57600080fd5b506002546104eb565b34801561055257600080fd5b506104a5610561366004614dd5565b600b6020526000908152604090205460ff1681565b34801561058257600080fd5b506104a5610591366004614df2565b610eb3565b3480156105a257600080fd5b506104eb600c5481565b3480156105b857600080fd5b50600854610519906001600160a01b031681565b3480156105d857600080fd5b506104eb610f1d565b3480156105ed57600080fd5b506040516012815260200161047c565b34801561060957600080fd5b5061061d610618366004614dd5565b610fa9565b005b34801561062b57600080fd5b5061061d61063a366004614dd5565b61107f565b34801561064b57600080fd5b506104a561065a366004614dd5565b611264565b34801561066b57600080fd5b506104a561067a366004614d62565b6112ed565b34801561068b57600080fd5b506104eb60125481565b3480156106a157600080fd5b50601454610519906001600160a01b031681565b3480156106c157600080fd5b5061061d6106d0366004614d9c565b611323565b3480156106e157600080fd5b506104eb6113c6565b3480156106f657600080fd5b506104a5610705366004614d9c565b611429565b34801561071657600080fd5b5061061d6114d9565b34801561072b57600080fd5b506104a561073a366004614dd5565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561076457600080fd5b506104eb600f5481565b34801561077a57600080fd5b5061061d610789366004614dd5565b6115be565b34801561079a57600080fd5b506104eb6116d0565b3480156107af57600080fd5b5061061d6107be366004614dd5565b611733565b3480156107cf57600080fd5b506104eb6107de366004614dd5565b611c6b565b3480156107ef57600080fd5b506104eb600e5481565b34801561080557600080fd5b5061061d610814366004614e33565b611cf4565b34801561082557600080fd5b5061061d610834366004614e65565b611db4565b34801561084557600080fd5b506104eb610854366004614dd5565b6001600160a01b031660009081526020819052604090205490565b34801561087b57600080fd5b5061061d611ef8565b34801561089057600080fd5b506104eb60115481565b3480156108a657600080fd5b5061061d6108b5366004614dd5565b611fb4565b3480156108c657600080fd5b5061061d6108d5366004614dd5565b612059565b3480156108e657600080fd5b50600954610519906001600160a01b031681565b34801561090657600080fd5b5061061d610915366004614dd5565b612149565b34801561092657600080fd5b506104a5610935366004614dd5565b61255a565b34801561094657600080fd5b506005546001600160a01b0316610519565b34801561096457600080fd5b5061046f612744565b34801561097957600080fd5b506104eb600d5481565b34801561098f57600080fd5b5061061d61099e366004614d9c565b612753565b3480156109af57600080fd5b506104a56109be366004614dd5565b6127bb565b3480156109cf57600080fd5b506104eb612807565b3480156109e457600080fd5b506104a56109f3366004614d62565b61286a565b348015610a0457600080fd5b506104eb610a13366004614dd5565b6128b9565b348015610a2457600080fd5b506104a5610a33366004614d62565b612905565b348015610a4457600080fd5b506104eb60105481565b348015610a5a57600080fd5b50610a6e610a69366004614dd5565b612912565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161047c565b348015610abf57600080fd5b506104a5610ace366004614dd5565b60166020526000908152604090205460ff1681565b348015610aef57600080fd5b5061061d610afe366004614e65565b6129c6565b348015610b0f57600080fd5b5061061d610b1e366004614d9c565b612a6a565b348015610b2f57600080fd5b5061061d610b3e366004614dd5565b612b8b565b348015610b4f57600080fd5b5061061d610b5e366004614e7e565b612c83565b348015610b6f57600080fd5b5061061d610b7e366004614e7e565b612dad565b348015610b8f57600080fd5b506104a5610b9e366004614e65565b612e9c565b348015610baf57600080fd5b50610519610bbe366004614dd5565b612f16565b348015610bcf57600080fd5b506104a5610bde366004614f04565b612f9e565b348015610bef57600080fd5b5061061d61329c565b348015610c0457600080fd5b506104eb610c13366004614f04565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610c4a57600080fd5b506104eb600a5481565b348015610c6057600080fd5b5061061d610c6f366004614e65565b6133f4565b348015610c8057600080fd5b506104eb61347f565b348015610c9557600080fd5b5061061d610ca4366004614e65565b6134e2565b348015610cb557600080fd5b5061061d610cc4366004614e65565b613586565b348015610cd557600080fd5b50610a6e610ce4366004614e65565b61362f565b348015610cf557600080fd5b5061061d610d04366004614dd5565b61368a565b348015610d1557600080fd5b506104a56137d4565b606060038054610d2d90614f32565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5990614f32565b8015610da65780601f10610d7b57610100808354040283529160200191610da6565b820191906000526020600020905b815481529060010190602001808311610d8957829003601f168201915b5050505050905090565b6000610dbd33848461390e565b5060015b92915050565b6005546000906001600160a01b03163314610e295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6008546040517f0c0e0cef0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152841515602483015290911690630c0e0cef906044015b600060405180830381600087803b158015610e9257600080fd5b505af1158015610ea6573d6000803e3d6000fd5b5060019695505050505050565b6000610ec0848484613a67565b610f128433610f0d856040518060600160405280602881526020016153ed602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190613f36565b61390e565b5060015b9392505050565b600854604080517f85a6b3ae00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610f80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa49190614f85565b905090565b6005546001600160a01b031633146110035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6008546040517f31e79db00000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b15801561106457600080fd5b505af1158015611078573d6000803e3d6000fd5b5050505050565b6005546001600160a01b031633146110d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b60026006540361112b5760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b60026006556040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611190573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b49190614f85565b116111be57600080fd5b6014546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015261125c916001600160a01b0390811691908416906370a0823190602401602060405180830381865afa158015611227573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124b9190614f85565b6001600160a01b0384169190613f70565b506001600655565b6008546040517f34e6b6290000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015260009216906334e6b629906024015b602060405180830381865afa1580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc19190614f9e565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610dbd918590610f0d90866138af565b6005546001600160a01b0316331461137d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6001600160a01b03919091166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600854604080517fbe10b61400000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163be10b6149160048083019260209291908290030181865afa158015610f80573d6000803e3d6000fd5b6005546000906001600160a01b031633146114865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6008546040517f4aea22420000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152841515602483015290911690634aea224290604401610e78565b60026006540361152b5760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b60026006556008546040517fbc4c4b37000000000000000000000000000000000000000000000000000000008152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af115801561159a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125c9190614f9e565b6005546001600160a01b031633146116185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6014546001600160a01b03908116908216036116505760405162461bcd60e51b81526020600482015260006024820152604401610e20565b61165b816001612a6a565b6014546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3601480547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600854604080517f09bbedde00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610f80573d6000803e3d6000fd5b6005546001600160a01b0316331461178d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6007546001600160a01b03908116908216036117c55760405162461bcd60e51b81526020600482015260006024820152604401610e20565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038316908117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000929163c45a01559160048083019260209291908290030181865afa158015611852573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118769190614fbb565b6001600160a01b031663e6a4390530600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118fc9190614fbb565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa15801561195f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119839190614fbb565b90506001600160a01b038116611b6f57600754604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163c45a01559160048083019260209291908290030181865afa1580156119f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1a9190614fbb565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa09190614fbb565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611b05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b299190614fbb565b6001600160a01b0316600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905550611bb1565b6001600160a01b038116600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b6008546007546040517f31e79db00000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201529116906331e79db090602401600060405180830381600087803b158015611c1357600080fd5b505af1158015611c27573d6000803e3d6000fd5b50506007546040516001600160a01b03918216935090851691507f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a35050565b6008546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa158015611cd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc19190614f85565b6005546001600160a01b03163314611d4e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b601154611d6782611d61858189896138af565b906138af565b1115611d8f5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b611d9d82611d6186866138af565b601355600e93909355600c91909155600d55600f55565b600260065403611e065760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b60026006556008546040517fffb2c47900000000000000000000000000000000000000000000000000000000815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af1158015611e74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e989190614fd8565b604080518481526020810184905290810182905260608101889052929550909350915033906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a3505060016006555050565b6005546001600160a01b03163314611f525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6005546001600160a01b0316331461200e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6008546040517f8021974b0000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015290911690638021974b9060240161104a565b6002600654036120ab5760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b60026006556008546040517fbc4c4b370000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152600060248301529091169063bc4c4b37906044016020604051808303816000875af115801561211c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121409190614f9e565b50506001600655565b6005546001600160a01b031633146121a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6008546001600160a01b03908116908216036121db5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061224c9190614fbb565b6001600160a01b03161461227c5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6040517f31e79db00000000000000000000000000000000000000000000000000000000081526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b1580156122d757600080fd5b505af11580156122eb573d6000803e3d6000fd5b50506040517f31e79db00000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03841692506331e79db09150602401600060405180830381600087803b15801561234957600080fd5b505af115801561235d573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db06123826005546001600160a01b031690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b1580156123db57600080fd5b505af11580156123ef573d6000803e3d6000fd5b50506009546040517f31e79db00000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b15801561245357600080fd5b505af1158015612467573d6000803e3d6000fd5b50506007546040517f31e79db00000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b1580156124cb57600080fd5b505af11580156124df573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039290921691909117905550565b60006002600654036125ae5760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b6002600655306001600160a01b038316036125e55760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6008546040517f9d93d3520000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015290911690639d93d35290602401602060405180830381865afa158015612648573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061266c9190614f9e565b6126b85760405162461bcd60e51b815260206004820152601260248201527f546f6b656e206e6f7420617070726f76656400000000000000000000000000006044820152606401610e20565b6008546040517fe5c8c5720000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0384811660248301529091169063e5c8c57290604401600060405180830381600087803b15801561271e57600080fd5b505af1158015612732573d6000803e3d6000fd5b50505050600190506001600655919050565b606060048054610d2d90614f32565b6005546001600160a01b031633146127ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6127b78282613ff0565b5050565b6008546040517f9d93d3520000000000000000000000000000000000000000000000000000000081526001600160a01b0383811660048301526000921690639d93d352906024016112ac565b600854604080517f6f2789ec00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610f80573d6000803e3d6000fd5b6000610dbd3384610f0d85604051806060016040528060258152602001615415602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190613f36565b6008546040517fa8b9d2400000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152600092169063a8b9d24090602401611cb3565b6000610dbd338484613a67565b6008546040517ffbcbc0f10000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b61010060405180830381865afa158015612987573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129ab9190615006565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03163314612a205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6008546040517f95afddf4000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b03909116906395afddf49060240161104a565b6005546001600160a01b03163314612ac45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6001600160a01b03821660009081526015602052604090205481151560ff909116151503612b0e5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6001600160a01b03821660008181526015602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314612be55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6001600160a01b0381166000908152602081905260408120546008546040517fb817d7250000000000000000000000000000000000000000000000000000000081526001600160a01b0385811660048301526024820184905292935091169063b817d72590604401600060405180830381600087803b158015612c6757600080fd5b505af1158015612c7b573d6000803e3d6000fd5b505050505050565b6005546001600160a01b03163314612cdd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b60005b82811015612d6c578160156000868685818110612cff57612cff615070565b9050602002016020810190612d149190614dd5565b6001600160a01b03168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580612d64816150ce565b915050612ce0565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051612da093929190615106565b60405180910390a1505050565b6005546001600160a01b03163314612e075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b60005b82811015612e965781600b6000868685818110612e2957612e29615070565b9050602002016020810190612e3e9190614dd5565b6001600160a01b03168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580612e8e816150ce565b915050612e0a565b50505050565b6005546000906001600160a01b03163314612ef95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b612f0b82670de0b6b3a764000061515f565b600a55506001919050565b6008546040517faddee51e0000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152600092169063addee51e90602401602060405180830381865afa158015612f7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc19190614fbb565b6000600260065403612ff25760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b60026006556007546001600160a01b039081169083160361302f5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b306001600160a01b038416036130615760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6008546040517f9d93d3520000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015290911690639d93d35290602401602060405180830381865afa1580156130c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130e89190614f9e565b6131345760405162461bcd60e51b815260206004820152601360248201527f546f6b656e206e6f7420617070726f7665642e000000000000000000000000006044820152606401610e20565b6008546040517f34e6b6290000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152909116906334e6b62990602401602060405180830381865afa158015613197573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131bb9190614f9e565b6132075760405162461bcd60e51b815260206004820152601760248201527f414d4d206973206e6f742077686974656c6973746564210000000000000000006044820152606401610e20565b6008546040517f664209ef0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b03858116602483015284811660448301529091169063664209ef90606401600060405180830381600087803b15801561327557600080fd5b505af1158015613289573d6000803e3d6000fd5b5050505060019050600160065592915050565b6005546001600160a01b031633146132f65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6002600654036133485760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b600260065560145460405147916000916001600160a01b039091169083908381818185875af1925050503d806000811461339e576040519150601f19603f3d011682016040523d82523d6000602084013e6133a3565b606091505b50509050806121405760405162461bcd60e51b815260206004820152600f60248201527f7472616e73666572206661696c656400000000000000000000000000000000006044820152606401610e20565b6005546001600160a01b0316331461344e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b60115481111561347a5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b601055565b600854604080517fe7841ec000000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015610f80573d6000803e3d6000fd5b6005546001600160a01b0316331461353c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6008546040517fe98030c7000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b039091169063e98030c79060240161104a565b6005546001600160a01b031633146135e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b60128190556008546040517ff0fa55a9000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b039091169063f0fa55a99060240161104a565b6008546040517f5183d6fd0000000000000000000000000000000000000000000000000000000081526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401612969565b6005546001600160a01b031633146136e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6001600160a01b0381166137605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e20565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60006002600654036138285760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b60026006556008546040517fe8f8fe390000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b039091169063e8f8fe3990602401600060405180830381600087803b15801561388b57600080fd5b505af115801561389f573d6000803e3d6000fd5b5050505060019050600160065590565b6000806138bc838561519c565b905083811015610f165760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610e20565b6001600160a01b0383166139895760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610e20565b6001600160a01b038216613a055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610e20565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316613a975760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6001600160a01b038216613ac75760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6001600160a01b0383166000908152600b602052604090205460ff16158015613b0957506001600160a01b0382166000908152600b602052604090205460ff16155b613b555760405162461bcd60e51b815260206004820152601360248201527f426c61636b6c69737465642061646472657373000000000000000000000000006044820152606401610e20565b80600003613b6e57613b698383600061413a565b505050565b60135415613de05730600090815260208190526040902054600a5481108015908190613bb5575060075474010000000000000000000000000000000000000000900460ff16155b8015613bda57506001600160a01b03851660009081526016602052604090205460ff16155b8015613bf457506005546001600160a01b03868116911614155b8015613c0e57506005546001600160a01b03858116911614155b15613c8457600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055613c5b826142ef565b600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b6007546001600160a01b03861660009081526015602052604090205460ff74010000000000000000000000000000000000000000909204821615911680613ce357506001600160a01b03851660009081526015602052604090205460ff165b15613cec575060005b8015613ddc576001600160a01b03861660009081526016602052604090205460ff1615613d54576000613d356064613d2f601354886145bb90919063ffffffff16565b90614659565b9050613d41858261469b565b9450613d4e87308361413a565b50613ddc565b6001600160a01b03851660009081526016602052604090205460ff1615613d9d576000613d356064613d2f613d96600f546013546138af90919063ffffffff16565b88906145bb565b60105415613ddc576000613dc16064613d2f601054886145bb90919063ffffffff16565b9050613dcd858261469b565b9450613dda87308361413a565b505b5050505b613deb83838361413a565b6008546001600160a01b031663e30443bc84613e1c816001600160a01b031660009081526020819052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015613e7a57600080fd5b505af1925050508015613e8b575060015b506008546001600160a01b031663e30443bc83613ebd816001600160a01b031660009081526020819052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015613f1b57600080fd5b505af1925050508015613f2c575060015b15613b6957505050565b60008184841115613f5a5760405162461bcd60e51b8152600401610e209190614cf9565b506000613f6784866151b4565b95945050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052613b699084906146dd565b6001600160a01b03821660009081526016602052604090205481151560ff90911615150361403a5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6001600160a01b038216600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682158015919091179091556140fe576008546040517f31e79db00000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156140e557600080fd5b505af11580156140f9573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166141b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610e20565b6001600160a01b0382166142325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610e20565b61426f816040518060600160405280602681526020016153c7602691396001600160a01b0386166000908152602081905260409020549190613f36565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461429e90826138af565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101613a5a565b60006143116002613d2f601354613d2f600d54876145bb90919063ffffffff16565b9050600061431f838361469b565b6040805160028082526060820183529293506000929091602083019080368337019050509050308160008151811061435957614359615070565b6001600160a01b03928316602091820292909201810191909152600754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa1580156143cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143ef9190614fbb565b8160018151811061440257614402615070565b6001600160a01b039092166020928302919091019091015247614424836147c2565b6000614430478361469b565b9050600061445661444d6002600d5461465990919063ffffffff16565b6013549061469b565b905060006144786002613d2f84613d2f600d54886145bb90919063ffffffff16565b9050600061449583613d2f600c54876145bb90919063ffffffff16565b905060006144b284613d2f600e54886145bb90919063ffffffff16565b6008546040519192506000916001600160a01b039091169084908381818185875af1925050503d8060008114614504576040519150601f19603f3d011682016040523d82523d6000602084013e614509565b606091505b505090508015614547576040518381527fb0cc2628d6d644cf6be9d8110e142297ac910d6d8026d795a99f272fd9ad60b19060200160405180910390a15b6014546040516001600160a01b03909116908390600081818185875af1925050503d8060008114614594576040519150601f19603f3d011682016040523d82523d6000602084013e614599565b606091505b509091505089156145ae576145ae8a85614a2a565b5050505050505050505050565b6000826000036145cd57506000610dc1565b60006145d9838561515f565b9050826145e685836151fa565b14610f165760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610e20565b6000610f1683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614b10565b6000610f1683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613f36565b6000614732826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316614b3e9092919063ffffffff16565b805190915015613b6957808060200190518101906147509190614f9e565b613b695760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610e20565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106147f7576147f7615070565b6001600160a01b03928316602091820292909201810191909152600754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015614869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061488d9190614fbb565b816001815181106148a0576148a0615070565b6001600160a01b0392831660209182029290920101526007546148c6913091168461390e565b6007546040517fd06ca61f0000000000000000000000000000000000000000000000000000000081526000916001600160a01b03169063d06ca61f906149129086908690600401615279565b600060405180830381865afa15801561492f573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526149759190810190615292565b60018151811061498757614987615070565b60200260200101519050600760009054906101000a90046001600160a01b03166001600160a01b031663791ac947846149d06064613d2f601254876145bb90919063ffffffff16565b8530426040518663ffffffff1660e01b81526004016149f395949392919061536e565b600060405180830381600087803b158015614a0d57600080fd5b505af1158015614a21573d6000803e3d6000fd5b50505050505050565b600754614a429030906001600160a01b03168461390e565b6007546001600160a01b031663f305d719823085600180614a6b6005546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015614aeb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110789190614fd8565b60008183614b315760405162461bcd60e51b8152600401610e209190614cf9565b506000613f6784866151fa565b6060614b4d8484600085614b55565b949350505050565b606082471015614bcd5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610e20565b843b614c1b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610e20565b600080866001600160a01b03168587604051614c3791906153aa565b60006040518083038185875af1925050503d8060008114614c74576040519150601f19603f3d011682016040523d82523d6000602084013e614c79565b606091505b5091509150614c89828286614c94565b979650505050505050565b60608315614ca3575081610f16565b825115614cb35782518084602001fd5b8160405162461bcd60e51b8152600401610e209190614cf9565b60005b83811015614ce8578181015183820152602001614cd0565b83811115612e965750506000910152565b6020815260008251806020840152614d18816040850160208701614ccd565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6001600160a01b0381168114614d5f57600080fd5b50565b60008060408385031215614d7557600080fd5b8235614d8081614d4a565b946020939093013593505050565b8015158114614d5f57600080fd5b60008060408385031215614daf57600080fd5b8235614dba81614d4a565b91506020830135614dca81614d8e565b809150509250929050565b600060208284031215614de757600080fd5b8135610f1681614d4a565b600080600060608486031215614e0757600080fd5b8335614e1281614d4a565b92506020840135614e2281614d4a565b929592945050506040919091013590565b60008060008060808587031215614e4957600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215614e7757600080fd5b5035919050565b600080600060408486031215614e9357600080fd5b833567ffffffffffffffff80821115614eab57600080fd5b818601915086601f830112614ebf57600080fd5b813581811115614ece57600080fd5b8760208260051b8501011115614ee357600080fd5b60209283019550935050840135614ef981614d8e565b809150509250925092565b60008060408385031215614f1757600080fd5b8235614f2281614d4a565b91506020830135614dca81614d4a565b600181811c90821680614f4657607f821691505b602082108103614f7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060208284031215614f9757600080fd5b5051919050565b600060208284031215614fb057600080fd5b8151610f1681614d8e565b600060208284031215614fcd57600080fd5b8151610f1681614d4a565b600080600060608486031215614fed57600080fd5b8351925060208401519150604084015190509250925092565b600080600080600080600080610100898b03121561502357600080fd5b885161502e81614d4a565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036150ff576150ff61509f565b5060010190565b6040808252810183905260008460608301825b8681101561514957823561512c81614d4a565b6001600160a01b0316825260209283019290910190600101615119565b5080925050508215156020830152949350505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151975761519761509f565b500290565b600082198211156151af576151af61509f565b500190565b6000828210156151c6576151c661509f565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082615230577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600081518084526020808501945080840160005b8381101561526e5781516001600160a01b031687529582019590820190600101615249565b509495945050505050565b828152604060208201526000614b4d6040830184615235565b600060208083850312156152a557600080fd5b825167ffffffffffffffff808211156152bd57600080fd5b818501915085601f8301126152d157600080fd5b8151818111156152e3576152e36151cb565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f83011681018181108582111715615326576153266151cb565b60405291825284820192508381018501918883111561534457600080fd5b938501935b8285101561536257845184529385019392850192615349565b98975050505050505050565b85815284602082015260a06040820152600061538d60a0830186615235565b6001600160a01b0394909416606083015250608001529392505050565b600082516153bc818460208701614ccd565b919091019291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cccfa0a0e6c177c458bd90379de939c2b591f97a4b25b823025864428dcaacf664736f6c634300080f00336080604052610bb8600e556014600f55601180546001600160a01b03191673a5e0829caced8ffdd4de3c43696c57f7d7a678ff1790553480156200004257600080fd5b5060408051808201825260108082526f2234bb34b232b7322faa3930b1b5b2b960811b602080840182905284518086019095529184529083015290818160036200008d8382620002df565b5060046200009c8282620002df565b5050506000620000b16200023660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350507f735b8162b66af2d2798bbdadda6e57b16cb8cee4eab0ae18f52c5edc3f6108428054600160ff199182168117909255600b6020527fac78c2f56b05b3ba17cdfb628c66d7dc8dfd14346d967e9df7533909c525552d80548216831790557f6bc1ae4f8117bf44eca4ec97d844e277f954e6d81d87e181a69e14fb6b40de6280548216831790557fe63b4f80b3173b9ce8828b6aa165160963f8023e50d09cae99981bd79fbf2d0a80548216831790557f9544d3eb0bda33c778e8cbf7f301a40809aad5a4922370624bbf6f85e9ede42c80548216831790557f16617e1aed01a5f8c06976c0eefc2337cc3f218df4c4bf2026d511f52a9c480f8054909116909117905550732c89bbc92bd86f8075d1decc58c7f4e0107f286b60005261546060195568056bc75e2d63100000601a55620003ab565b3390565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200026557607f821691505b6020821081036200028657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002da57600081815260208120601f850160051c81016020861015620002b55750805b601f850160051c820191505b81811015620002d657828155600101620002c1565b5050505b505050565b81516001600160401b03811115620002fb57620002fb6200023a565b62000313816200030c845462000250565b846200028c565b602080601f8311600181146200034b5760008415620003325750858301515b600019600386901b1c1916600185901b178555620002d6565b600085815260208120601f198616915b828110156200037c578886015182559484019460019091019084016200035b565b50858210156200039b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61344f80620003bb6000396000f3fe60806040526004361061034e5760003560e01c806374c13fda116101bb578063b817d725116100f7578063e7841ec011610095578063f0fa55a91161006f578063f0fa55a914610a6c578063f2fde38b14610a8c578063fbcbc0f114610aac578063ffb2c47914610acc57600080fd5b8063e7841ec014610a17578063e8f8fe3914610a2c578063e98030c714610a4c57600080fd5b8063dd62ed3e116100d1578063dd62ed3e14610961578063e12b91b3146109a7578063e30443bc146109d7578063e5c8c572146109f757600080fd5b8063b817d7251461090b578063bc4c4b371461092b578063be10b6141461094b57600080fd5b806395d89b4111610164578063a8b9d2401161013e578063a8b9d2401461085f578063a9059cbb1461087f578063aafd847a1461089f578063addee51e146108d557600080fd5b806395d89b41146107f15780639d93d35214610806578063a457c2d71461083f57600080fd5b80638da5cb5b116101955780638da5cb5b1461079357806391b89fba146107b157806395afddf4146107d157600080fd5b806374c13fda1461073d5780638021974b1461075d57806385a6b3ae1461077d57600080fd5b80633243c7911161028a5780634e7b827f116102335780636d1ea3fa1161020d5780636d1ea3fa146106ac5780636f2789ec146106dc57806370a08231146106f2578063715018a61461072857600080fd5b80634e7b827f146105f75780635183d6fd14610627578063664209ef1461068c57600080fd5b80633e032a3b116102645780633e032a3b146105ab5780634256163d146105c15780634aea2242146105d757600080fd5b80633243c7911461053f57806334e6b62914610552578063395093511461058b57600080fd5b806318160ddd116102f757806327ce0147116102d157806327ce0147146104cd5780633009a609146104ed578063313ce5671461050357806331e79db01461051f57600080fd5b806318160ddd1461046b578063226cfa3d1461048057806323b872dd146104ad57600080fd5b80630c0e0cef116103285780630c0e0cef146103dd578063133b1d5e146103fd5780631694505e1461044b57600080fd5b806306fdde0314610363578063095ea7b31461038e57806309bbedde146103be57600080fd5b3661035e5761035c34610b07565b005b600080fd5b34801561036f57600080fd5b50610378610bd5565b6040516103859190612d5e565b60405180910390f35b34801561039a57600080fd5b506103ae6103a9366004612de6565b610c67565b6040519015158152602001610385565b3480156103ca57600080fd5b506012545b604051908152602001610385565b3480156103e957600080fd5b5061035c6103f8366004612e27565b610c7e565b34801561040957600080fd5b50610433610418366004612e5c565b600c602052600090815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610385565b34801561045757600080fd5b50601154610433906001600160a01b031681565b34801561047757600080fd5b506002546103cf565b34801561048c57600080fd5b506103cf61049b366004612e5c565b60186020526000908152604090205481565b3480156104b957600080fd5b506103ae6104c8366004612e79565b610d21565b3480156104d957600080fd5b506103cf6104e8366004612e5c565b610d8a565b3480156104f957600080fd5b506103cf60165481565b34801561050f57600080fd5b5060405160128152602001610385565b34801561052b57600080fd5b5061035c61053a366004612e5c565b610df3565b61035c61054d366004612eba565b610b07565b34801561055e57600080fd5b506103ae61056d366004612e5c565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561059757600080fd5b506103ae6105a6366004612de6565b610f9e565b3480156105b757600080fd5b506103cf600f5481565b3480156105cd57600080fd5b506103cf600e5481565b3480156105e357600080fd5b5061035c6105f2366004612e27565b610fd4565b34801561060357600080fd5b506103ae610612366004612e5c565b60176020526000908152604090205460ff1681565b34801561063357600080fd5b50610647610642366004612eba565b611077565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610385565b34801561069857600080fd5b5061035c6106a7366004612ed3565b611202565b3480156106b857600080fd5b506103ae6106c7366004612e5c565b600b6020526000908152604090205460ff1681565b3480156106e857600080fd5b506103cf60195481565b3480156106fe57600080fd5b506103cf61070d366004612e5c565b6001600160a01b031660009081526020819052604090205490565b34801561073457600080fd5b5061035c6112b8565b34801561074957600080fd5b50600754610433906001600160a01b031681565b34801561076957600080fd5b5061035c610778366004612e5c565b611374565b34801561078957600080fd5b506103cf60105481565b34801561079f57600080fd5b506005546001600160a01b0316610433565b3480156107bd57600080fd5b506103cf6107cc366004612e5c565b611470565b3480156107dd57600080fd5b5061035c6107ec366004612eba565b61147b565b3480156107fd57600080fd5b506103786114da565b34801561081257600080fd5b506103ae610821366004612e5c565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561084b57600080fd5b506103ae61085a366004612de6565b6114e9565b34801561086b57600080fd5b506103cf61087a366004612e5c565b611538565b34801561088b57600080fd5b506103ae61089a366004612de6565b611564565b3480156108ab57600080fd5b506103cf6108ba366004612e5c565b6001600160a01b031660009081526009602052604090205490565b3480156108e157600080fd5b506104336108f0366004612e5c565b600a602052600090815260409020546001600160a01b031681565b34801561091757600080fd5b5061035c610926366004612de6565b611571565b34801561093757600080fd5b506103ae610946366004612e27565b6116f1565b34801561095757600080fd5b506103cf601a5481565b34801561096d57600080fd5b506103cf61097c366004612f1e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b357600080fd5b506103ae6109c2366004612e5c565b600d6020526000908152604090205460ff1681565b3480156109e357600080fd5b5061035c6109f2366004612de6565b6117f7565b348015610a0357600080fd5b5061035c610a12366004612f1e565b61199c565b348015610a2357600080fd5b506016546103cf565b348015610a3857600080fd5b5061035c610a47366004612e5c565b611a3c565b348015610a5857600080fd5b5061035c610a67366004612eba565b611af2565b348015610a7857600080fd5b5061035c610a87366004612eba565b611be5565b348015610a9857600080fd5b5061035c610aa7366004612e5c565b611c44565b348015610ab857600080fd5b50610647610ac7366004612e5c565b611d8e565b348015610ad857600080fd5b50610aec610ae7366004612eba565b611f2e565b60408051938452602084019290925290820152606001610385565b803414610b1357600080fd5b6000610b1e60025490565b11610b4a5760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b8015610bd257610b89610b80610b5f60025490565b610b7a847001000000000000000000000000000000006120a7565b9061214c565b6006549061218e565b60065560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2601054610bce908261218e565b6010555b50565b606060038054610be490612f57565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1090612f57565b8015610c5d5780601f10610c3257610100808354040283529160200191610c5d565b820191906000526020600020905b815481529060010190602001808311610c4057829003601f168201915b5050505050905090565b6000610c743384846121ed565b5060015b92915050565b6005546001600160a01b03163314610cd85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6001600160a01b03919091166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6000610d2e848484612345565b610d808433610d7b856040518060600160405280602881526020016133cd602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061236c565b6121ed565b5060019392505050565b6001600160a01b0381166000908152600860209081526040808320549183905282205460065470010000000000000000000000000000000092610de992610de492610dde91610dd991906120a7565b6123a6565b906123b6565b6123f4565b610c789190612fd9565b6005546001600160a01b03163314610e4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6001600160a01b03811660009081526017602052604090205460ff1615610e905760405162461bcd60e51b81526020600482015260006024820152604401610b41565b6001600160a01b038116600090815260176020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055610edc908290612407565b6040517f4c60db9c000000000000000000000000000000000000000000000000000000008152601260048201526001600160a01b038216602482015273be20aaf5878a7dc92c74029bae47bc42f917a78b90634c60db9c9060440160006040518083038186803b158015610f4f57600080fd5b505af4158015610f63573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c74918590610d7b908661218e565b6005546001600160a01b0316331461102e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6001600160a01b03919091166000908152600d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600080600080600080600080601273be20aaf5878a7dc92c74029bae47bc42f917a78b63deb3d89690916040518263ffffffff1660e01b81526004016110bf91815260200190565b602060405180830381865af41580156110dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111009190613014565b89106111435750600096507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9550859450869350839250829150819050806111f7565b6040517fd1aa9e7e00000000000000000000000000000000000000000000000000000000815260126004820152602481018a905260009073be20aaf5878a7dc92c74029bae47bc42f917a78b9063d1aa9e7e90604401602060405180830381865af41580156111b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111da919061302d565b90506111e581611d8e565b98509850985098509850985098509850505b919395975091939597565b6005546001600160a01b0316331461125c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6001600160a01b039283166000908152600a6020908152604080832080549587167fffffffffffffffffffffffff0000000000000000000000000000000000000000968716179055600c90915290208054919093169116179055565b6005546001600160a01b031633146113125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6005546001600160a01b031633146113ce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6011546001600160a01b03908116908216036114065760405162461bcd60e51b81526020600482015260006024820152604401610b41565b6001600160a01b0381166114365760405162461bcd60e51b81526020600482015260006024820152604401610b41565b601180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000610c7882611538565b6005546001600160a01b031633146114d55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b600e55565b606060048054610be490612f57565b6000610c743384610d7b856040518060600160405280602581526020016133f5602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061236c565b6001600160a01b038116600090815260096020526040812054610c789061155e84610d8a565b90612466565b6000610c74338484612345565b6005546001600160a01b031633146115cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6001600160a01b03821660009081526017602052604090205460ff166115f057600080fd5b6001600160a01b0382166000818152601760205260409081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055517fbc2b405c0000000000000000000000000000000000000000000000000000000081526012600482015260248101919091526044810182905273be20aaf5878a7dc92c74029bae47bc42f917a78b9063bc2b405c9060640160006040518083038186803b1580156116a157600080fd5b505af41580156116b5573d6000803e3d6000fd5b50506040516001600160a01b03851692507f40a78dcf8526b72f2eaf598af1c7e49c8d5fc577f6c8f1bed887f3e4dfa289329150600090a25050565b6005546000906001600160a01b0316331461174e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6001600160a01b038316600090815260186020526040902054611770906124a8565b156117ee576000611780846124cf565b905080156117ec576001600160a01b038416600081815260186020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf092906117da9085815260200190565b60405180910390a36001915050610c78565b505b50600092915050565b6005546001600160a01b031633146118515760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6001600160a01b03821660009081526017602052604090205460ff1661199857601a54811061191a576118848282612407565b6040517fbc2b405c000000000000000000000000000000000000000000000000000000008152601260048201526001600160a01b03831660248201526044810182905273be20aaf5878a7dc92c74029bae47bc42f917a78b9063bc2b405c9060640160006040518083038186803b1580156118fe57600080fd5b505af4158015611912573d6000803e3d6000fd5b505050505050565b611925826000612407565b6040517f4c60db9c000000000000000000000000000000000000000000000000000000008152601260048201526001600160a01b038316602482015273be20aaf5878a7dc92c74029bae47bc42f917a78b90634c60db9c9060440160006040518083038186803b1580156118fe57600080fd5b5050565b6005546001600160a01b031633146119f65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6001600160a01b039182166000908152600a6020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001691909216179055565b6005546001600160a01b03163314611a965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6001600160a01b039081166000908152600a6020908152604080832080547fffffffffffffffffffffffff0000000000000000000000000000000000000000908116909155601154600c90935292208054919093169116179055565b6005546001600160a01b03163314611b4c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b610e108110158015611b615750620151808111155b611b875760405162461bcd60e51b81526020600482015260006024820152604401610b41565b6019548103611bb25760405162461bcd60e51b81526020600482015260006024820152604401610b41565b60195460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601955565b6005546001600160a01b03163314611c3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b600f55565b6005546001600160a01b03163314611c9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6001600160a01b038116611d1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b41565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6040517f17e142d1000000000000000000000000000000000000000000000000000000008152601260048201526001600160a01b0382166024820152819060009081908190819081908190819073be20aaf5878a7dc92c74029bae47bc42f917a78b906317e142d190604401602060405180830381865af4158015611e17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e3b9190613014565b96507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff955060008712611ebb57601654871115611e8757601654611e809088906126a5565b9550611ebb565b60165460125460009110611e9c576000611eab565b601654601254611eab91612466565b9050611eb788826123b6565b9650505b611ec488611538565b9450611ecf88610d8a565b6001600160a01b038916600090815260186020526040902054909450925082611ef9576000611f07565b601954611f0790849061218e565b9150428211611f17576000611f21565b611f218242612466565b9050919395975091939597565b600554600090819081906001600160a01b03163314611f8f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6012546000819003611fac575050601654600092508291506120a0565b6016546000805a90506000805b8984108015611fc757508582105b1561208f5784611fd68161304a565b60125490965086109050611fe957600094505b60006012600001868154811061200157612001613082565b60009182526020808320909101546001600160a01b03168083526018909152604090912054909150612032906124a8565b15612055576120428160016116f1565b1561205557816120518161304a565b9250505b8261205f8161304a565b93505060005a9050808511156120865761208361207c8683612466565b879061218e565b95505b9350611fb99050565b601685905590975095509193505050505b9193909250565b6000826000036120b957506000610c78565b60006120c583856130b1565b9050826120d28583612fd9565b146121455760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610b41565b9392505050565b600061214583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506126e2565b60008061219b83856130ee565b9050838110156121455760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b41565b6001600160a01b0383166122685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b41565b6001600160a01b0382166122e45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610b41565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b81526020600482015260006024820152604401610b41565b505050565b600081848411156123905760405162461bcd60e51b8152600401610b419190612d5e565b50600061239d8486613106565b95945050505050565b60008181811215610c7857600080fd5b6000806123c3838561311d565b9050600083121580156123d65750838112155b806123eb57506000831280156123eb57508381125b61214557600080fd5b60008082121561240357600080fd5b5090565b6001600160a01b038216600090815260208190526040902054808211156124465760006124348383612466565b90506124408482612710565b50505050565b8082101561236757600061245a8284612466565b90506124408482612774565b600061214583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061236c565b6000428211156124ba57506000919050565b6019546124c74284612466565b101592915050565b6000806124db83611538565b905080156117ee576001600160a01b038316600090815260096020526040902054612506908261218e565b6001600160a01b03808516600090815260096020908152604080832094909455600a9052919091205416158061256457506001600160a01b038084166000908152600a60209081526040808320549093168252600b9052205460ff16155b1561265857600e546040516000916001600160a01b03861691849084818181858888f193505050503d80600081146125b8576040519150601f19603f3d011682016040523d82523d6000602084013e6125bd565b606091505b505090508061260e576001600160a01b0384166000908152600960205260409020546125e99083612466565b6001600160a01b03909416600090815260096020526040812094909455509192915050565b836001600160a01b03167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8360405161264991815260200190565b60405180910390a25092915050565b826001600160a01b03167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8260405161269391815260200190565b60405180910390a261214583826127b8565b6000806126b28385613191565b9050600083121580156126c55750838113155b806123eb57506000831280156123eb575083811361214557600080fd5b600081836127035760405162461bcd60e51b8152600401610b419190612d5e565b50600061239d8486612fd9565b61271a8282612b5f565b612754612735610dd9836006546120a790919063ffffffff16565b6001600160a01b038416600090815260086020526040902054906126a5565b6001600160a01b0390921660009081526008602052604090209190915550565b61277e8282612c3e565b612754612799610dd9836006546120a790919063ffffffff16565b6001600160a01b038416600090815260086020526040902054906123b6565b6011546001600160a01b038381166000908152600c60205260408120549092839290811691161580159061281357506001600160a01b038086166000908152600c60209081526040808320549093168252600d9052205460ff165b1561283557506001600160a01b038085166000908152600c6020526040902054165b604080516002808252606082018352600092602083019080368337019050509050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612894573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b8919061302d565b816000815181106128cb576128cb613082565b6001600160a01b039283166020918202929092018101919091528782166000908152600a909152604090205482519116908290600190811061290f5761290f613082565b6001600160a01b0392831660209182029290920101526011546040517fd06ca61f000000000000000000000000000000000000000000000000000000008152600092919091169063d06ca61f9061296c9089908690600401613278565b600060405180830381865afa158015612989573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526129cf9190810190613299565b6001815181106129e1576129e1613082565b60200260200101519050612a1082600081518110612a0157612a01613082565b602002602001015184886121ed565b826001600160a01b031663b6f9de9587612a3a6064610b7a600f54876120a790919063ffffffff16565b858b612a48426101686130ee565b6040518663ffffffff1660e01b8152600401612a679493929190613375565b6000604051808303818588803b158015612a8057600080fd5b505af193505050508015612a92575060015b612a9f5760009350612aa4565b600193505b83612b5457600e546040516000916001600160a01b038a1691899084818181858888f193505050503d8060008114612af8576040519150601f19603f3d011682016040523d82523d6000602084013e612afd565b606091505b5050905080612b52576001600160a01b038816600090815260096020526040902054612b299088612466565b6001600160a01b0389166000908152600960205260408120919091559550610c78945050505050565b505b509395945050505050565b6001600160a01b038216612bb55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610b41565b600254612bc2908261218e565b6002556001600160a01b038216600090815260208190526040902054612be8908261218e565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6001600160a01b038216612cba5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610b41565b612cf7816040518060600160405280602281526020016133ab602291396001600160a01b038516600090815260208190526040902054919061236c565b6001600160a01b038316600090815260208190526040902055600254612d1d9082612466565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001612c32565b600060208083528351808285015260005b81811015612d8b57858101830151858201604001528201612d6f565b81811115612d9d576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6001600160a01b0381168114610bd257600080fd5b60008060408385031215612df957600080fd5b8235612e0481612dd1565b946020939093013593505050565b80358015158114612e2257600080fd5b919050565b60008060408385031215612e3a57600080fd5b8235612e4581612dd1565b9150612e5360208401612e12565b90509250929050565b600060208284031215612e6e57600080fd5b813561214581612dd1565b600080600060608486031215612e8e57600080fd5b8335612e9981612dd1565b92506020840135612ea981612dd1565b929592945050506040919091013590565b600060208284031215612ecc57600080fd5b5035919050565b600080600060608486031215612ee857600080fd5b8335612ef381612dd1565b92506020840135612f0381612dd1565b91506040840135612f1381612dd1565b809150509250925092565b60008060408385031215612f3157600080fd5b8235612f3c81612dd1565b91506020830135612f4c81612dd1565b809150509250929050565b600181811c90821680612f6b57607f821691505b602082108103612fa4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008261300f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60006020828403121561302657600080fd5b5051919050565b60006020828403121561303f57600080fd5b815161214581612dd1565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361307b5761307b612faa565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130e9576130e9612faa565b500290565b6000821982111561310157613101612faa565b500190565b60008282101561311857613118612faa565b500390565b6000808212827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0384138115161561315757613157612faa565b827f800000000000000000000000000000000000000000000000000000000000000003841281161561318b5761318b612faa565b50500190565b6000808312837f8000000000000000000000000000000000000000000000000000000000000000018312811516156131cb576131cb612faa565b837f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0183138116156131ff576131ff612faa565b50500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081518084526020808501945080840160005b8381101561326d5781516001600160a01b031687529582019590820190600101613248565b509495945050505050565b8281526040602082015260006132916040830184613234565b949350505050565b600060208083850312156132ac57600080fd5b825167ffffffffffffffff808211156132c457600080fd5b818501915085601f8301126132d857600080fd5b8151818111156132ea576132ea613205565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f8301168101818110858211171561332d5761332d613205565b60405291825284820192508381018501918883111561334b57600080fd5b938501935b8285101561336957845184529385019392850192613350565b98975050505050505050565b84815260806020820152600061338e6080830186613234565b6001600160a01b0394909416604083015250606001529291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204cb537a75b1dd3388f53cd1e6b8884a0edc65c1d811b332e6badf2a29fdf940364736f6c634300080f0033
Deployed Bytecode
0x60806040526004361061044e5760003560e01c80638021974b11610243578063b6563edb11610143578063dd62ed3e116100bb578063e98030c71161008a578063f27fd2541161006f578063f27fd25414610cc9578063f2fde38b14610ce9578063f9fbb13814610d0957600080fd5b8063e98030c714610c89578063f0fa55a914610ca957600080fd5b8063dd62ed3e14610bf8578063e2f4560514610c3e578063e3fabbdb14610c54578063e7841ec014610c7457600080fd5b8063c689e56011610112578063d2bbdac2116100f7578063d2bbdac214610ba3578063d32cf92914610bc3578063d99f666814610be357600080fd5b8063c689e56014610b63578063d257b34f14610b8357600080fd5b8063b6563edb14610ae3578063c024666814610b03578063c0f306ef14610b23578063c492f04614610b4357600080fd5b80639a7a23d6116101d6578063a8b9d240116101a5578063ac557f661161018a578063ac557f6614610a38578063ad56c13c14610a4e578063b62496f514610ab357600080fd5b8063a8b9d240146109f8578063a9059cbb14610a1857600080fd5b80639a7a23d6146109835780639d93d352146109a3578063a26579ad146109c3578063a457c2d7146109d857600080fd5b80638aee8127116102125780638aee81271461091a5780638da5cb5b1461093a57806395d89b411461095857806398118cb41461096d57600080fd5b80638021974b1461089a578063807ab4f7146108ba57806385141a77146108da57806388bdd9be146108fa57600080fd5b80634144d9e41161034e57806364b0f653116102e15780636fcba377116102b057806370a082311161029557806370a0823114610839578063715018a61461086f57806378f0a3771461088457600080fd5b80636fcba377146107f9578063700bb1911461081957600080fd5b806364b0f6531461078e57806365b8dbc0146107a35780636843cd84146107c35780636b67c4df146107e357600080fd5b80634e71d92d1161031d5780634e71d92d1461070a5780634fbee1931461071f5780635154a903146107585780635d098b381461076e57600080fd5b80634144d9e414610695578063455a4396146106b5578063479c5266146106d55780634aea2242146106ea57600080fd5b80632bb14e1d116103e157806331e79db0116103b057806334e6b6291161039557806334e6b6291461063f578063395093511461065f5780633e032a3b1461067f57600080fd5b806331e79db0146105fd57806331ef708c1461061f57600080fd5b80632bb14e1d146105965780632c1f5216146105ac57806330bb4cff146105cc578063313ce567146105e157600080fd5b80631694505e1161041d5780631694505e146104f957806318160ddd146105315780631cdd3be31461054657806323b872dd1461057657600080fd5b806306fdde031461045a578063095ea7b3146104855780630c0e0cef146104b557806313114a9d146104d557600080fd5b3661045557005b600080fd5b34801561046657600080fd5b5061046f610d1e565b60405161047c9190614cf9565b60405180910390f35b34801561049157600080fd5b506104a56104a0366004614d62565b610db0565b604051901515815260200161047c565b3480156104c157600080fd5b506104a56104d0366004614d9c565b610dc7565b3480156104e157600080fd5b506104eb60135481565b60405190815260200161047c565b34801561050557600080fd5b50600754610519906001600160a01b031681565b6040516001600160a01b03909116815260200161047c565b34801561053d57600080fd5b506002546104eb565b34801561055257600080fd5b506104a5610561366004614dd5565b600b6020526000908152604090205460ff1681565b34801561058257600080fd5b506104a5610591366004614df2565b610eb3565b3480156105a257600080fd5b506104eb600c5481565b3480156105b857600080fd5b50600854610519906001600160a01b031681565b3480156105d857600080fd5b506104eb610f1d565b3480156105ed57600080fd5b506040516012815260200161047c565b34801561060957600080fd5b5061061d610618366004614dd5565b610fa9565b005b34801561062b57600080fd5b5061061d61063a366004614dd5565b61107f565b34801561064b57600080fd5b506104a561065a366004614dd5565b611264565b34801561066b57600080fd5b506104a561067a366004614d62565b6112ed565b34801561068b57600080fd5b506104eb60125481565b3480156106a157600080fd5b50601454610519906001600160a01b031681565b3480156106c157600080fd5b5061061d6106d0366004614d9c565b611323565b3480156106e157600080fd5b506104eb6113c6565b3480156106f657600080fd5b506104a5610705366004614d9c565b611429565b34801561071657600080fd5b5061061d6114d9565b34801561072b57600080fd5b506104a561073a366004614dd5565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561076457600080fd5b506104eb600f5481565b34801561077a57600080fd5b5061061d610789366004614dd5565b6115be565b34801561079a57600080fd5b506104eb6116d0565b3480156107af57600080fd5b5061061d6107be366004614dd5565b611733565b3480156107cf57600080fd5b506104eb6107de366004614dd5565b611c6b565b3480156107ef57600080fd5b506104eb600e5481565b34801561080557600080fd5b5061061d610814366004614e33565b611cf4565b34801561082557600080fd5b5061061d610834366004614e65565b611db4565b34801561084557600080fd5b506104eb610854366004614dd5565b6001600160a01b031660009081526020819052604090205490565b34801561087b57600080fd5b5061061d611ef8565b34801561089057600080fd5b506104eb60115481565b3480156108a657600080fd5b5061061d6108b5366004614dd5565b611fb4565b3480156108c657600080fd5b5061061d6108d5366004614dd5565b612059565b3480156108e657600080fd5b50600954610519906001600160a01b031681565b34801561090657600080fd5b5061061d610915366004614dd5565b612149565b34801561092657600080fd5b506104a5610935366004614dd5565b61255a565b34801561094657600080fd5b506005546001600160a01b0316610519565b34801561096457600080fd5b5061046f612744565b34801561097957600080fd5b506104eb600d5481565b34801561098f57600080fd5b5061061d61099e366004614d9c565b612753565b3480156109af57600080fd5b506104a56109be366004614dd5565b6127bb565b3480156109cf57600080fd5b506104eb612807565b3480156109e457600080fd5b506104a56109f3366004614d62565b61286a565b348015610a0457600080fd5b506104eb610a13366004614dd5565b6128b9565b348015610a2457600080fd5b506104a5610a33366004614d62565b612905565b348015610a4457600080fd5b506104eb60105481565b348015610a5a57600080fd5b50610a6e610a69366004614dd5565b612912565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161047c565b348015610abf57600080fd5b506104a5610ace366004614dd5565b60166020526000908152604090205460ff1681565b348015610aef57600080fd5b5061061d610afe366004614e65565b6129c6565b348015610b0f57600080fd5b5061061d610b1e366004614d9c565b612a6a565b348015610b2f57600080fd5b5061061d610b3e366004614dd5565b612b8b565b348015610b4f57600080fd5b5061061d610b5e366004614e7e565b612c83565b348015610b6f57600080fd5b5061061d610b7e366004614e7e565b612dad565b348015610b8f57600080fd5b506104a5610b9e366004614e65565b612e9c565b348015610baf57600080fd5b50610519610bbe366004614dd5565b612f16565b348015610bcf57600080fd5b506104a5610bde366004614f04565b612f9e565b348015610bef57600080fd5b5061061d61329c565b348015610c0457600080fd5b506104eb610c13366004614f04565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610c4a57600080fd5b506104eb600a5481565b348015610c6057600080fd5b5061061d610c6f366004614e65565b6133f4565b348015610c8057600080fd5b506104eb61347f565b348015610c9557600080fd5b5061061d610ca4366004614e65565b6134e2565b348015610cb557600080fd5b5061061d610cc4366004614e65565b613586565b348015610cd557600080fd5b50610a6e610ce4366004614e65565b61362f565b348015610cf557600080fd5b5061061d610d04366004614dd5565b61368a565b348015610d1557600080fd5b506104a56137d4565b606060038054610d2d90614f32565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5990614f32565b8015610da65780601f10610d7b57610100808354040283529160200191610da6565b820191906000526020600020905b815481529060010190602001808311610d8957829003601f168201915b5050505050905090565b6000610dbd33848461390e565b5060015b92915050565b6005546000906001600160a01b03163314610e295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6008546040517f0c0e0cef0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152841515602483015290911690630c0e0cef906044015b600060405180830381600087803b158015610e9257600080fd5b505af1158015610ea6573d6000803e3d6000fd5b5060019695505050505050565b6000610ec0848484613a67565b610f128433610f0d856040518060600160405280602881526020016153ed602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190613f36565b61390e565b5060015b9392505050565b600854604080517f85a6b3ae00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610f80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa49190614f85565b905090565b6005546001600160a01b031633146110035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6008546040517f31e79db00000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b15801561106457600080fd5b505af1158015611078573d6000803e3d6000fd5b5050505050565b6005546001600160a01b031633146110d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b60026006540361112b5760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b60026006556040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611190573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b49190614f85565b116111be57600080fd5b6014546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015261125c916001600160a01b0390811691908416906370a0823190602401602060405180830381865afa158015611227573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124b9190614f85565b6001600160a01b0384169190613f70565b506001600655565b6008546040517f34e6b6290000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015260009216906334e6b629906024015b602060405180830381865afa1580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc19190614f9e565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610dbd918590610f0d90866138af565b6005546001600160a01b0316331461137d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6001600160a01b03919091166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600854604080517fbe10b61400000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163be10b6149160048083019260209291908290030181865afa158015610f80573d6000803e3d6000fd5b6005546000906001600160a01b031633146114865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6008546040517f4aea22420000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152841515602483015290911690634aea224290604401610e78565b60026006540361152b5760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b60026006556008546040517fbc4c4b37000000000000000000000000000000000000000000000000000000008152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af115801561159a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125c9190614f9e565b6005546001600160a01b031633146116185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6014546001600160a01b03908116908216036116505760405162461bcd60e51b81526020600482015260006024820152604401610e20565b61165b816001612a6a565b6014546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3601480547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600854604080517f09bbedde00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610f80573d6000803e3d6000fd5b6005546001600160a01b0316331461178d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6007546001600160a01b03908116908216036117c55760405162461bcd60e51b81526020600482015260006024820152604401610e20565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038316908117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000929163c45a01559160048083019260209291908290030181865afa158015611852573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118769190614fbb565b6001600160a01b031663e6a4390530600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118fc9190614fbb565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa15801561195f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119839190614fbb565b90506001600160a01b038116611b6f57600754604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163c45a01559160048083019260209291908290030181865afa1580156119f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1a9190614fbb565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa09190614fbb565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611b05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b299190614fbb565b6001600160a01b0316600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905550611bb1565b6001600160a01b038116600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b6008546007546040517f31e79db00000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201529116906331e79db090602401600060405180830381600087803b158015611c1357600080fd5b505af1158015611c27573d6000803e3d6000fd5b50506007546040516001600160a01b03918216935090851691507f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a35050565b6008546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa158015611cd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc19190614f85565b6005546001600160a01b03163314611d4e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b601154611d6782611d61858189896138af565b906138af565b1115611d8f5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b611d9d82611d6186866138af565b601355600e93909355600c91909155600d55600f55565b600260065403611e065760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b60026006556008546040517fffb2c47900000000000000000000000000000000000000000000000000000000815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af1158015611e74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e989190614fd8565b604080518481526020810184905290810182905260608101889052929550909350915033906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a3505060016006555050565b6005546001600160a01b03163314611f525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6005546001600160a01b0316331461200e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6008546040517f8021974b0000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015290911690638021974b9060240161104a565b6002600654036120ab5760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b60026006556008546040517fbc4c4b370000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152600060248301529091169063bc4c4b37906044016020604051808303816000875af115801561211c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121409190614f9e565b50506001600655565b6005546001600160a01b031633146121a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6008546001600160a01b03908116908216036121db5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061224c9190614fbb565b6001600160a01b03161461227c5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6040517f31e79db00000000000000000000000000000000000000000000000000000000081526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b1580156122d757600080fd5b505af11580156122eb573d6000803e3d6000fd5b50506040517f31e79db00000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03841692506331e79db09150602401600060405180830381600087803b15801561234957600080fd5b505af115801561235d573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db06123826005546001600160a01b031690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b1580156123db57600080fd5b505af11580156123ef573d6000803e3d6000fd5b50506009546040517f31e79db00000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b15801561245357600080fd5b505af1158015612467573d6000803e3d6000fd5b50506007546040517f31e79db00000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b1580156124cb57600080fd5b505af11580156124df573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039290921691909117905550565b60006002600654036125ae5760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b6002600655306001600160a01b038316036125e55760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6008546040517f9d93d3520000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015290911690639d93d35290602401602060405180830381865afa158015612648573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061266c9190614f9e565b6126b85760405162461bcd60e51b815260206004820152601260248201527f546f6b656e206e6f7420617070726f76656400000000000000000000000000006044820152606401610e20565b6008546040517fe5c8c5720000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0384811660248301529091169063e5c8c57290604401600060405180830381600087803b15801561271e57600080fd5b505af1158015612732573d6000803e3d6000fd5b50505050600190506001600655919050565b606060048054610d2d90614f32565b6005546001600160a01b031633146127ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6127b78282613ff0565b5050565b6008546040517f9d93d3520000000000000000000000000000000000000000000000000000000081526001600160a01b0383811660048301526000921690639d93d352906024016112ac565b600854604080517f6f2789ec00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610f80573d6000803e3d6000fd5b6000610dbd3384610f0d85604051806060016040528060258152602001615415602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190613f36565b6008546040517fa8b9d2400000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152600092169063a8b9d24090602401611cb3565b6000610dbd338484613a67565b6008546040517ffbcbc0f10000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b61010060405180830381865afa158015612987573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129ab9190615006565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03163314612a205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6008546040517f95afddf4000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b03909116906395afddf49060240161104a565b6005546001600160a01b03163314612ac45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6001600160a01b03821660009081526015602052604090205481151560ff909116151503612b0e5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6001600160a01b03821660008181526015602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314612be55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6001600160a01b0381166000908152602081905260408120546008546040517fb817d7250000000000000000000000000000000000000000000000000000000081526001600160a01b0385811660048301526024820184905292935091169063b817d72590604401600060405180830381600087803b158015612c6757600080fd5b505af1158015612c7b573d6000803e3d6000fd5b505050505050565b6005546001600160a01b03163314612cdd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b60005b82811015612d6c578160156000868685818110612cff57612cff615070565b9050602002016020810190612d149190614dd5565b6001600160a01b03168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580612d64816150ce565b915050612ce0565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051612da093929190615106565b60405180910390a1505050565b6005546001600160a01b03163314612e075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b60005b82811015612e965781600b6000868685818110612e2957612e29615070565b9050602002016020810190612e3e9190614dd5565b6001600160a01b03168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580612e8e816150ce565b915050612e0a565b50505050565b6005546000906001600160a01b03163314612ef95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b612f0b82670de0b6b3a764000061515f565b600a55506001919050565b6008546040517faddee51e0000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152600092169063addee51e90602401602060405180830381865afa158015612f7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc19190614fbb565b6000600260065403612ff25760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b60026006556007546001600160a01b039081169083160361302f5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b306001600160a01b038416036130615760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6008546040517f9d93d3520000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015290911690639d93d35290602401602060405180830381865afa1580156130c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130e89190614f9e565b6131345760405162461bcd60e51b815260206004820152601360248201527f546f6b656e206e6f7420617070726f7665642e000000000000000000000000006044820152606401610e20565b6008546040517f34e6b6290000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152909116906334e6b62990602401602060405180830381865afa158015613197573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131bb9190614f9e565b6132075760405162461bcd60e51b815260206004820152601760248201527f414d4d206973206e6f742077686974656c6973746564210000000000000000006044820152606401610e20565b6008546040517f664209ef0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b03858116602483015284811660448301529091169063664209ef90606401600060405180830381600087803b15801561327557600080fd5b505af1158015613289573d6000803e3d6000fd5b5050505060019050600160065592915050565b6005546001600160a01b031633146132f65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6002600654036133485760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b600260065560145460405147916000916001600160a01b039091169083908381818185875af1925050503d806000811461339e576040519150601f19603f3d011682016040523d82523d6000602084013e6133a3565b606091505b50509050806121405760405162461bcd60e51b815260206004820152600f60248201527f7472616e73666572206661696c656400000000000000000000000000000000006044820152606401610e20565b6005546001600160a01b0316331461344e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b60115481111561347a5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b601055565b600854604080517fe7841ec000000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015610f80573d6000803e3d6000fd5b6005546001600160a01b0316331461353c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6008546040517fe98030c7000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b039091169063e98030c79060240161104a565b6005546001600160a01b031633146135e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b60128190556008546040517ff0fa55a9000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b039091169063f0fa55a99060240161104a565b6008546040517f5183d6fd0000000000000000000000000000000000000000000000000000000081526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401612969565b6005546001600160a01b031633146136e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e20565b6001600160a01b0381166137605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e20565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60006002600654036138285760405162461bcd60e51b815260206004820152600e60248201527f5265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610e20565b60026006556008546040517fe8f8fe390000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b039091169063e8f8fe3990602401600060405180830381600087803b15801561388b57600080fd5b505af115801561389f573d6000803e3d6000fd5b5050505060019050600160065590565b6000806138bc838561519c565b905083811015610f165760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610e20565b6001600160a01b0383166139895760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610e20565b6001600160a01b038216613a055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610e20565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316613a975760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6001600160a01b038216613ac75760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6001600160a01b0383166000908152600b602052604090205460ff16158015613b0957506001600160a01b0382166000908152600b602052604090205460ff16155b613b555760405162461bcd60e51b815260206004820152601360248201527f426c61636b6c69737465642061646472657373000000000000000000000000006044820152606401610e20565b80600003613b6e57613b698383600061413a565b505050565b60135415613de05730600090815260208190526040902054600a5481108015908190613bb5575060075474010000000000000000000000000000000000000000900460ff16155b8015613bda57506001600160a01b03851660009081526016602052604090205460ff16155b8015613bf457506005546001600160a01b03868116911614155b8015613c0e57506005546001600160a01b03858116911614155b15613c8457600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055613c5b826142ef565b600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b6007546001600160a01b03861660009081526015602052604090205460ff74010000000000000000000000000000000000000000909204821615911680613ce357506001600160a01b03851660009081526015602052604090205460ff165b15613cec575060005b8015613ddc576001600160a01b03861660009081526016602052604090205460ff1615613d54576000613d356064613d2f601354886145bb90919063ffffffff16565b90614659565b9050613d41858261469b565b9450613d4e87308361413a565b50613ddc565b6001600160a01b03851660009081526016602052604090205460ff1615613d9d576000613d356064613d2f613d96600f546013546138af90919063ffffffff16565b88906145bb565b60105415613ddc576000613dc16064613d2f601054886145bb90919063ffffffff16565b9050613dcd858261469b565b9450613dda87308361413a565b505b5050505b613deb83838361413a565b6008546001600160a01b031663e30443bc84613e1c816001600160a01b031660009081526020819052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015613e7a57600080fd5b505af1925050508015613e8b575060015b506008546001600160a01b031663e30443bc83613ebd816001600160a01b031660009081526020819052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015613f1b57600080fd5b505af1925050508015613f2c575060015b15613b6957505050565b60008184841115613f5a5760405162461bcd60e51b8152600401610e209190614cf9565b506000613f6784866151b4565b95945050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052613b699084906146dd565b6001600160a01b03821660009081526016602052604090205481151560ff90911615150361403a5760405162461bcd60e51b81526020600482015260006024820152604401610e20565b6001600160a01b038216600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682158015919091179091556140fe576008546040517f31e79db00000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156140e557600080fd5b505af11580156140f9573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166141b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610e20565b6001600160a01b0382166142325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610e20565b61426f816040518060600160405280602681526020016153c7602691396001600160a01b0386166000908152602081905260409020549190613f36565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461429e90826138af565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101613a5a565b60006143116002613d2f601354613d2f600d54876145bb90919063ffffffff16565b9050600061431f838361469b565b6040805160028082526060820183529293506000929091602083019080368337019050509050308160008151811061435957614359615070565b6001600160a01b03928316602091820292909201810191909152600754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa1580156143cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143ef9190614fbb565b8160018151811061440257614402615070565b6001600160a01b039092166020928302919091019091015247614424836147c2565b6000614430478361469b565b9050600061445661444d6002600d5461465990919063ffffffff16565b6013549061469b565b905060006144786002613d2f84613d2f600d54886145bb90919063ffffffff16565b9050600061449583613d2f600c54876145bb90919063ffffffff16565b905060006144b284613d2f600e54886145bb90919063ffffffff16565b6008546040519192506000916001600160a01b039091169084908381818185875af1925050503d8060008114614504576040519150601f19603f3d011682016040523d82523d6000602084013e614509565b606091505b505090508015614547576040518381527fb0cc2628d6d644cf6be9d8110e142297ac910d6d8026d795a99f272fd9ad60b19060200160405180910390a15b6014546040516001600160a01b03909116908390600081818185875af1925050503d8060008114614594576040519150601f19603f3d011682016040523d82523d6000602084013e614599565b606091505b509091505089156145ae576145ae8a85614a2a565b5050505050505050505050565b6000826000036145cd57506000610dc1565b60006145d9838561515f565b9050826145e685836151fa565b14610f165760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610e20565b6000610f1683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614b10565b6000610f1683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613f36565b6000614732826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316614b3e9092919063ffffffff16565b805190915015613b6957808060200190518101906147509190614f9e565b613b695760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610e20565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106147f7576147f7615070565b6001600160a01b03928316602091820292909201810191909152600754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015614869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061488d9190614fbb565b816001815181106148a0576148a0615070565b6001600160a01b0392831660209182029290920101526007546148c6913091168461390e565b6007546040517fd06ca61f0000000000000000000000000000000000000000000000000000000081526000916001600160a01b03169063d06ca61f906149129086908690600401615279565b600060405180830381865afa15801561492f573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526149759190810190615292565b60018151811061498757614987615070565b60200260200101519050600760009054906101000a90046001600160a01b03166001600160a01b031663791ac947846149d06064613d2f601254876145bb90919063ffffffff16565b8530426040518663ffffffff1660e01b81526004016149f395949392919061536e565b600060405180830381600087803b158015614a0d57600080fd5b505af1158015614a21573d6000803e3d6000fd5b50505050505050565b600754614a429030906001600160a01b03168461390e565b6007546001600160a01b031663f305d719823085600180614a6b6005546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015614aeb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110789190614fd8565b60008183614b315760405162461bcd60e51b8152600401610e209190614cf9565b506000613f6784866151fa565b6060614b4d8484600085614b55565b949350505050565b606082471015614bcd5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610e20565b843b614c1b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610e20565b600080866001600160a01b03168587604051614c3791906153aa565b60006040518083038185875af1925050503d8060008114614c74576040519150601f19603f3d011682016040523d82523d6000602084013e614c79565b606091505b5091509150614c89828286614c94565b979650505050505050565b60608315614ca3575081610f16565b825115614cb35782518084602001fd5b8160405162461bcd60e51b8152600401610e209190614cf9565b60005b83811015614ce8578181015183820152602001614cd0565b83811115612e965750506000910152565b6020815260008251806020840152614d18816040850160208701614ccd565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6001600160a01b0381168114614d5f57600080fd5b50565b60008060408385031215614d7557600080fd5b8235614d8081614d4a565b946020939093013593505050565b8015158114614d5f57600080fd5b60008060408385031215614daf57600080fd5b8235614dba81614d4a565b91506020830135614dca81614d8e565b809150509250929050565b600060208284031215614de757600080fd5b8135610f1681614d4a565b600080600060608486031215614e0757600080fd5b8335614e1281614d4a565b92506020840135614e2281614d4a565b929592945050506040919091013590565b60008060008060808587031215614e4957600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215614e7757600080fd5b5035919050565b600080600060408486031215614e9357600080fd5b833567ffffffffffffffff80821115614eab57600080fd5b818601915086601f830112614ebf57600080fd5b813581811115614ece57600080fd5b8760208260051b8501011115614ee357600080fd5b60209283019550935050840135614ef981614d8e565b809150509250925092565b60008060408385031215614f1757600080fd5b8235614f2281614d4a565b91506020830135614dca81614d4a565b600181811c90821680614f4657607f821691505b602082108103614f7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060208284031215614f9757600080fd5b5051919050565b600060208284031215614fb057600080fd5b8151610f1681614d8e565b600060208284031215614fcd57600080fd5b8151610f1681614d4a565b600080600060608486031215614fed57600080fd5b8351925060208401519150604084015190509250925092565b600080600080600080600080610100898b03121561502357600080fd5b885161502e81614d4a565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036150ff576150ff61509f565b5060010190565b6040808252810183905260008460608301825b8681101561514957823561512c81614d4a565b6001600160a01b0316825260209283019290910190600101615119565b5080925050508215156020830152949350505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151975761519761509f565b500290565b600082198211156151af576151af61509f565b500190565b6000828210156151c6576151c661509f565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082615230577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600081518084526020808501945080840160005b8381101561526e5781516001600160a01b031687529582019590820190600101615249565b509495945050505050565b828152604060208201526000614b4d6040830184615235565b600060208083850312156152a557600080fd5b825167ffffffffffffffff808211156152bd57600080fd5b818501915085601f8301126152d157600080fd5b8151818111156152e3576152e36151cb565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f83011681018181108582111715615326576153266151cb565b60405291825284820192508381018501918883111561534457600080fd5b938501935b8285101561536257845184529385019392850192615349565b98975050505050505050565b85815284602082015260a06040820152600061538d60a0830186615235565b6001600160a01b0394909416606083015250608001529392505050565b600082516153bc818460208701614ccd565b919091019291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cccfa0a0e6c177c458bd90379de939c2b591f97a4b25b823025864428dcaacf664736f6c634300080f0033
Deployed Bytecode Sourcemap
701:18185:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2113:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4210:166;;;;;;;;;;-1:-1:-1;4210:166:5;;;;;:::i;:::-;;:::i;:::-;;;1368:14:18;;1361:22;1343:41;;1331:2;1316:18;4210:166:5;1203:187:18;8977:186:13;;;;;;;;;;-1:-1:-1;8977:186:13;;;;;:::i;:::-;;:::i;1390:73::-;;;;;;;;;;;;;;;;;;;2051:25:18;;;2039:2;2024:18;1390:73:13;1905:177:18;846:41:13;;;;;;;;;;-1:-1:-1;846:41:13;;;;-1:-1:-1;;;;;846:41:13;;;;;;-1:-1:-1;;;;;2278:55:18;;;2260:74;;2248:2;2233:18;846:41:13;2087:253:18;3201:106:5;;;;;;;;;;-1:-1:-1;3288:12:5;;3201:106;;1097:46:13;;;;;;;;;;-1:-1:-1;1097:46:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;4843:347:5;;;;;;;;;;-1:-1:-1;4843:347:5;;;;;:::i;:::-;;:::i;1150:29:13:-;;;;;;;;;;;;;;;;920:38;;;;;;;;;;-1:-1:-1;920:38:13;;;;-1:-1:-1;;;;;920:38:13;;;16890:139;;;;;;;;;;;;;:::i;3050:91:5:-;;;;;;;;;;-1:-1:-1;3050:91:5;;3132:2;3463:36:18;;3451:2;3436:18;3050:91:5;3321:184:18;6981:121:13;;;;;;;;;;-1:-1:-1;6981:121:13;;;;;:::i;:::-;;:::i;:::-;;16014:244;;;;;;;;;;-1:-1:-1;16014:244:13;;;;;:::i;:::-;;:::i;18750:134::-;;;;;;;;;;-1:-1:-1;18750:134:13;;;;;:::i;:::-;;:::i;5585:215:5:-;;;;;;;;;;-1:-1:-1;5585:215:5;;;;;:::i;:::-;;:::i;1356:28:13:-;;;;;;;;;;;;;;;;1469:83;;;;;;;;;;-1:-1:-1;1469:83:13;;;;-1:-1:-1;;;;;1469:83:13;;;6622:121;;;;;;;;;;-1:-1:-1;6622:121:13;;;;;:::i;:::-;;:::i;17164:141::-;;;;;;;;;;;;;:::i;9169:178::-;;;;;;;;;;-1:-1:-1;9169:178:13;;;;;:::i;:::-;;:::i;9655:108::-;;;;;;;;;;;;;:::i;17035:123::-;;;;;;;;;;-1:-1:-1;17035:123:13;;;;;:::i;:::-;-1:-1:-1;;;;;17123:28:13;17100:4;17123:28;;;:19;:28;;;;;;;;;17035:123;1259:28;;;;;;;;;;;;;;;;7406:283;;;;;;;;;;-1:-1:-1;7406:283:13;;;;;:::i;:::-;;:::i;18352:139::-;;;;;;;;;;;;;:::i;4882:781::-;;;;;;;;;;-1:-1:-1;4882:781:13;;;;;:::i;:::-;;:::i;17458:128::-;;;;;;;;;;-1:-1:-1;17458:128:13;;;;;:::i;:::-;;:::i;1222:31::-;;;;;;;;;;;;;;;;7974:379;;;;;;;;;;-1:-1:-1;7974:379:13;;;;;:::i;:::-;;:::i;9379:270::-;;;;;;;;;;-1:-1:-1;9379:270:13;;;;;:::i;:::-;;:::i;3365:125:5:-;;;;;;;;;;-1:-1:-1;3365:125:5;;;;;:::i;:::-;-1:-1:-1;;;;;3465:18:5;3439:7;3465:18;;;;;;;;;;;;3365:125;1190:145:12;;;;;;;;;;;;;:::i;1323:27:13:-;;;;;;;;;;;;;;;;5743:152;;;;;;;;;;-1:-1:-1;5743:152:13;;;;;:::i;:::-;;:::i;9769:129::-;;;;;;;;;;-1:-1:-1;9769:129:13;;;;;:::i;:::-;;:::i;965:70::-;;;;;;;;;;-1:-1:-1;965:70:13;;;;-1:-1:-1;;;;;965:70:13;;;4131:741;;;;;;;;;;-1:-1:-1;4131:741:13;;;;;:::i;:::-;;:::i;9962:334::-;;;;;;;;;;-1:-1:-1;9962:334:13;;;;;:::i;:::-;;:::i;567:77:12:-;;;;;;;;;;-1:-1:-1;631:6:12;;-1:-1:-1;;;;;631:6:12;567:77;;2324:102:5;;;;;;;;;;;;;:::i;1185:31:13:-;;;;;;;;;;;;;;;;8359:138;;;;;;;;;;-1:-1:-1;8359:138:13;;;;;:::i;:::-;;:::i;18550:142::-;;;;;;;;;;-1:-1:-1;18550:142:13;;;;;:::i;:::-;;:::i;16620:106::-;;;;;;;;;;;;;:::i;6287:266:5:-;;;;;;;;;;-1:-1:-1;6287:266:5;;;;;:::i;:::-;;:::i;17310:145:13:-;;;;;;;;;;-1:-1:-1;17310:145:13;;;;;:::i;:::-;;:::i;3693:172:5:-;;;;;;;;;;-1:-1:-1;3693:172:5;;;;;:::i;:::-;;:::i;1293:24:13:-;;;;;;;;;;;;;;;;17592:307;;;;;;;;;;-1:-1:-1;17592:307:13;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4933:55:18;;;4915:74;;5020:2;5005:18;;4998:34;;;;5048:18;;;5041:34;;;;5106:2;5091:18;;5084:34;;;;5149:3;5134:19;;5127:35;5193:3;5178:19;;5171:35;5237:3;5222:19;;5215:35;5281:3;5266:19;;5259:35;4902:3;4887:19;17592:307:13;4576:724:18;1672:58:13;;;;;;;;;;-1:-1:-1;1672:58:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;7293:107;;;;;;;;;;-1:-1:-1;7293:107:13;;;;;:::i;:::-;;:::i;6069:242::-;;;;;;;;;;-1:-1:-1;6069:242:13;;;;;:::i;:::-;;:::i;7108:179::-;;;;;;;;;;-1:-1:-1;7108:179:13;;;;;:::i;:::-;;:::i;6317:299::-;;;;;;;;;;-1:-1:-1;6317:299:13;;;;;:::i;:::-;;:::i;6749:229::-;;;;;;;;;;-1:-1:-1;6749:229:13;;;;;:::i;:::-;;:::i;5901:162::-;;;;;;;;;;-1:-1:-1;5901:162:13;;;;;:::i;:::-;;:::i;16731:150::-;;;;;;;;;;-1:-1:-1;16731:150:13;;;;;:::i;:::-;;:::i;10403:573::-;;;;;;;;;;-1:-1:-1;10403:573:13;;;;;:::i;:::-;;:::i;16345:247::-;;;;;;;;;;;;;:::i;3923:149:5:-;;;;;;;;;;-1:-1:-1;3923:149:5;;;;;:::i;:::-;-1:-1:-1;;;;;4038:18:5;;;4012:7;4038:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3923:149;1041:50:13;;;;;;;;;;;;;;;;7695:128;;;;;;;;;;-1:-1:-1;7695:128:13;;;;;:::i;:::-;;:::i;18222:124::-;;;;;;;;;;;;;:::i;8845:122::-;;;;;;;;;;-1:-1:-1;8845:122:13;;;;;:::i;:::-;;:::i;7828:141::-;;;;;;;;;;-1:-1:-1;7828:141:13;;;;;:::i;:::-;;:::i;17902:314::-;;;;;;;;;;-1:-1:-1;17902:314:13;;;;;:::i;:::-;;:::i;1484:240:12:-;;;;;;;;;;-1:-1:-1;1484:240:12;;;;;:::i;:::-;;:::i;11056:143:13:-;;;;;;;;;;;;;:::i;2113:98:5:-;2167:13;2199:5;2192:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2113:98;:::o;4210:166::-;4293:4;4309:39;666:10:1;4332:7:5;4341:6;4309:8;:39::i;:::-;-1:-1:-1;4365:4:5;4210:166;;;;;:::o;8977:186:13:-;771:6:12;;9066:4:13;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;;;;;;;;;9081:15:13::1;::::0;:54:::1;::::0;;;;-1:-1:-1;;;;;7442:55:18;;;9081:54:13::1;::::0;::::1;7424:74:18::0;7541:14;;7534:22;7514:18;;;7507:50;9081:15:13;;::::1;::::0;:28:::1;::::0;7397:18:18;;9081:54:13::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;9152:4:13::1;::::0;8977:186;-1:-1:-1;;;;;;8977:186:13:o;4843:347:5:-;4979:4;4995:36;5005:6;5013:9;5024:6;4995:9;:36::i;:::-;5041:121;5050:6;666:10:1;5072:89:5;5110:6;5072:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5072:19:5;;;;;;:11;:19;;;;;;;;666:10:1;5072:33:5;;;;;;;;;;:37;:89::i;:::-;5041:8;:121::i;:::-;-1:-1:-1;5179:4:5;4843:347;;;;;;:::o;16890:139:13:-;16979:15;;:43;;;;;;;;16953:7;;-1:-1:-1;;;;;16979:15:13;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16972:50;;16890:139;:::o;6981:121::-;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;7053:15:13::1;::::0;:45:::1;::::0;;;;-1:-1:-1;;;;;2278:55:18;;;7053:45:13::1;::::0;::::1;2260:74:18::0;7053:15:13;;::::1;::::0;:36:::1;::::0;2233:18:18;;7053:45:13::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;6981:121:::0;:::o;16014:244::-;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;442:1:13::1;580:7;;:19:::0;572:46:::1;;;::::0;-1:-1:-1;;;572:46:13;;7959:2:18;572:46:13::1;::::0;::::1;7941:21:18::0;7998:2;7978:18;;;7971:30;8037:16;8017:18;;;8010:44;8071:18;;572:46:13::1;7757:338:18::0;572:46:13::1;442:1;628:7;:18:::0;16100:47:::2;::::0;;;;16141:4:::2;16100:47;::::0;::::2;2260:74:18::0;16149:1:13::2;::::0;-1:-1:-1;;;;;16100:32:13;::::2;::::0;::::2;::::0;2233:18:18;;16100:47:13::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16099:51;16091:60;;;::::0;::::2;;16188:23;::::0;16212:38:::2;::::0;;;;16244:4:::2;16212:38;::::0;::::2;2260:74:18::0;16161:90:13::2;::::0;-1:-1:-1;;;;;16188:23:13;;::::2;::::0;16212;;::::2;::::0;::::2;::::0;2233:18:18;;16212:38:13::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;16161:26:13;::::2;::::0;:90;:26:::2;:90::i;:::-;-1:-1:-1::0;399:1:13::1;667:7;:22:::0;16014:244::o;18750:134::-;18836:15;;:41;;;;;-1:-1:-1;;;;;2278:55:18;;;18836:41:13;;;2260:74:18;18814:4:13;;18836:15;;:29;;2233:18:18;;18836:41:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5585:215:5:-;666:10:1;5673:4:5;5721:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5721:34:5;;;;;;;;;;5673:4;;5689:83;;5712:7;;5721:50;;5760:10;5721:38;:50::i;6622:121:13:-;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;-1:-1:-1;;;;;6705:23:13;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:31;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;6622:121::o;17164:141::-;17249:15;;:49;;;;;;;;17223:7;;-1:-1:-1;;;;;17249:15:13;;:47;;:49;;;;;;;;;;;;;;:15;:49;;;;;;;;;;;;;;9169:178;771:6:12;;9254:4:13;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;9269:15:13::1;::::0;:50:::1;::::0;;;;-1:-1:-1;;;;;7442:55:18;;;9269:50:13::1;::::0;::::1;7424:74:18::0;7541:14;;7534:22;7514:18;;;7507:50;9269:15:13;;::::1;::::0;:26:::1;::::0;7397:18:18;;9269:50:13::1;7256:307:18::0;9655:108:13;442:1;580:7;;:19;572:46;;;;-1:-1:-1;;;572:46:13;;7959:2:18;572:46:13;;;7941:21:18;7998:2;7978:18;;;7971:30;8037:16;8017:18;;;8010:44;8071:18;;572:46:13;7757:338:18;572:46:13;442:1;628:7;:18;9698:15:::1;::::0;:58:::1;::::0;;;;9737:10:::1;9698:58;::::0;::::1;7424:74:18::0;9698:15:13::1;7514:18:18::0;;;7507:50;-1:-1:-1;;;;;9698:15:13;;::::1;::::0;:30:::1;::::0;7397:18:18;;9698:58:13::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;7406:283::-:0;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;7504:23:13::1;::::0;-1:-1:-1;;;;;7504:23:13;;::::1;7494:33:::0;;::::1;::::0;7486:45:::1;;;::::0;-1:-1:-1;;;7486:45:13;;8880:2:18;7486:45:13::1;::::0;::::1;8862:21:18::0;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;7486:45:13::1;8678:284:18::0;7486:45:13::1;7541:29;7557:6;7565:4;7541:15;:29::i;:::-;7616:23;::::0;7585:55:::1;::::0;-1:-1:-1;;;;;7616:23:13;;::::1;::::0;7585:55;::::1;::::0;::::1;::::0;7616:23:::1;::::0;7585:55:::1;7650:23;:32:::0;;;::::1;-1:-1:-1::0;;;;;7650:32:13;;;::::1;::::0;;;::::1;::::0;;7406:283::o;18352:139::-;18443:15;;:41;;;;;;;;18417:7;;-1:-1:-1;;;;;18443:15:13;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;;;;;4882:781;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;4990:15:13::1;::::0;-1:-1:-1;;;;;4990:15:13;;::::1;4968:38:::0;;::::1;::::0;4960:51:::1;;;::::0;-1:-1:-1;;;4960:51:13;;8880:2:18;4960:51:13::1;::::0;::::1;8862:21:18::0;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;4960:51:13::1;8678:284:18::0;4960:51:13::1;5021:15;:48:::0;;;::::1;-1:-1:-1::0;;;;;5021:48:13;::::1;::::0;;::::1;::::0;;;5112:25:::1;::::0;;;;;;;-1:-1:-1;;5021:48:13;5112:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;5021:48;5112:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5094:65:13::1;;5168:4;5175:15;;;;;;;;;-1:-1:-1::0;;;;;5175:15:13::1;-1:-1:-1::0;;;;;5175:20:13::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5094:104;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;9476:15:18;;;5094:104:13::1;::::0;::::1;9458:34:18::0;9528:15;;9508:18;;;9501:43;9370:18;;5094:104:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5079:119:::0;-1:-1:-1;;;;;;5211:18:13;::::1;5208:303;;5280:15;::::0;:25:::1;::::0;;;;;;;5244:15:::1;::::0;-1:-1:-1;;;;;5280:15:13::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:15;:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5262:72:13::1;;5343:4;5350:15;;;;;;;;;-1:-1:-1::0;;;;;5350:15:13::1;-1:-1:-1::0;;;;;5350:20:13::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5262:111;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;9476:15:18;;;5262:111:13::1;::::0;::::1;9458:34:18::0;9528:15;;9508:18;;;9501:43;9370:18;;5262:111:13::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5387:34:13::1;;::::0;;;:25:::1;:34;::::0;;;;:39;;;::::1;5422:4;5387:39;::::0;;-1:-1:-1;5208:303:13::1;;;-1:-1:-1::0;;;;;5464:31:13;::::1;;::::0;;;:25:::1;:31;::::0;;;;:36;;;::::1;5496:4;5464:36;::::0;;5208:303:::1;5520:15;::::0;5565::::1;::::0;5520:62:::1;::::0;;;;-1:-1:-1;;;;;5565:15:13;;::::1;5520:62;::::0;::::1;2260:74:18::0;5520:15:13;::::1;::::0;:36:::1;::::0;2233:18:18;;5520:62:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;5639:15:13::1;::::0;5597:59:::1;::::0;-1:-1:-1;;;;;5639:15:13;;::::1;::::0;-1:-1:-1;5597:59:13;;::::1;::::0;-1:-1:-1;5597:59:13::1;::::0;5639:15:::1;::::0;5597:59:::1;4950:713;4882:781:::0;:::o;17458:128::-;17548:15;;:34;;;;;-1:-1:-1;;;;;2278:55:18;;;17548:34:13;;;2260:74:18;17528:7:13;;17548:15;;:25;;2233:18:18;;17548:34:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;7974:379::-;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;8148:7:13::1;::::0;8094:50:::1;8136:7:::0;8094:37:::1;8121:9:::0;8094:37;:9;8108:7;8094:13:::1;:22::i;:::-;:26:::0;::::1;:37::i;:50::-;:61;;8086:74;;;::::0;-1:-1:-1;;;8086:74:13;;8880:2:18;8086:74:13::1;::::0;::::1;8862:21:18::0;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;8086:74:13::1;8678:284:18::0;8086:74:13::1;8182:37;8209:9:::0;8182:22:::1;:9:::0;8196:7;8182:13:::1;:22::i;:37::-;8170:9;:49:::0;8229:12:::1;:24:::0;;;;8263:10:::1;:20:::0;;;;8293:12:::1;:24:::0;8327:9:::1;:19:::0;7974:379::o;9379:270::-;442:1;580:7;;:19;572:46;;;;-1:-1:-1;;;572:46:13;;7959:2:18;572:46:13;;;7941:21:18;7998:2;7978:18;;;7971:30;8037:16;8017:18;;;8010:44;8071:18;;572:46:13;7757:338:18;572:46:13;442:1;628:7;:18;9517:15:::1;::::0;:28:::1;::::0;;;;::::1;::::0;::::1;2051:25:18::0;;;9451:18:13::1;::::0;;;;;-1:-1:-1;;;;;9517:15:13::1;::::0;:23:::1;::::0;2024:18:18;;9517:28:13::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9554:88;::::0;;10097:25:18;;;10153:2;10138:18;;10131:34;;;10181:18;;;10174:34;;;10239:2;10224:18;;10217:34;;;9450:95:13;;-1:-1:-1;9450:95:13;;-1:-1:-1;9450:95:13;-1:-1:-1;9631:10:13::1;::::0;9619:5:::1;::::0;9554:88:::1;::::0;10084:3:18;10069:19;9554:88:13::1;;;;;;;-1:-1:-1::0;;399:1:13;667:7;:22;-1:-1:-1;;9379:270:13:o;1190:145:12:-;771:6;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;1280:6:::1;::::0;1259:40:::1;::::0;1296:1:::1;::::0;-1:-1:-1;;;;;1280:6:12::1;::::0;1259:40:::1;::::0;1296:1;;1259:40:::1;1309:6;:19:::0;;;::::1;::::0;;1190:145::o;5743:152:13:-;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;5831:15:13::1;::::0;:57:::1;::::0;;;;-1:-1:-1;;;;;2278:55:18;;;5831:57:13::1;::::0;::::1;2260:74:18::0;5831:15:13;;::::1;::::0;:45:::1;::::0;2233:18:18;;5831:57:13::1;2087:253:18::0;9769:129:13;442:1;580:7;;:19;572:46;;;;-1:-1:-1;;;572:46:13;;7959:2:18;572:46:13;;;7941:21:18;7998:2;7978:18;;;7971:30;8037:16;8017:18;;;8010:44;8071:18;;572:46:13;7757:338:18;572:46:13;442:1;628:7;:18;9836:15:::1;::::0;:55:::1;::::0;;;;-1:-1:-1;;;;;7442:55:18;;;9836::13::1;::::0;::::1;7424:74:18::0;9836:15:13::1;7514:18:18::0;;;7507:50;9836:15:13;;::::1;::::0;:30:::1;::::0;7397:18:18;;9836:55:13::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;399:1:13;667:7;:22;9769:129::o;4131:741::-;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;4239:15:13::1;::::0;-1:-1:-1;;;;;4239:15:13;;::::1;4217:38:::0;;::::1;::::0;4209:51:::1;;;::::0;-1:-1:-1;;;4209:51:13;;8880:2:18;4209:51:13::1;::::0;::::1;8862:21:18::0;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;4209:51:13::1;8678:284:18::0;4209:51:13::1;4270:34;4331:10;4270:73;;4399:4;-1:-1:-1::0;;;;;4361:43:13::1;:18;-1:-1:-1::0;;;;;4361:24:13::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4361:43:13::1;;4353:56;;;::::0;-1:-1:-1;;;4353:56:13;;8880:2:18;4353:56:13::1;::::0;::::1;8862:21:18::0;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;4353:56:13::1;8678:284:18::0;4353:56:13::1;4419:68;::::0;;;;-1:-1:-1;;;;;4419:39:13;::::1;:68;::::0;::::1;2260:74:18::0;;;4419:39:13;::::1;::::0;2233:18:18;;4419:68:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;4497:54:13::1;::::0;;;;4545:4:::1;4497:54;::::0;::::1;2260:74:18::0;-1:-1:-1;;;;;4497:39:13;::::1;::::0;-1:-1:-1;4497:39:13::1;::::0;-1:-1:-1;2233:18:18;;4497:54:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;4561:18;-1:-1:-1::0;;;;;4561:39:13::1;;4601:7;631:6:12::0;;-1:-1:-1;;;;;631:6:12;;567:77;4601:7:13::1;4561:48;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;2278:55:18;;;4561:48:13::1;::::0;::::1;2260:74:18::0;2233:18;;4561:48:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;4659:10:13::1;::::0;4619:51:::1;::::0;;;;-1:-1:-1;;;;;4659:10:13;;::::1;4619:51;::::0;::::1;2260:74:18::0;4619:39:13;;::::1;::::0;-1:-1:-1;4619:39:13::1;::::0;-1:-1:-1;2233:18:18;;4619:51:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;4728:15:13::1;::::0;4680:65:::1;::::0;;;;-1:-1:-1;;;;;4728:15:13;;::::1;4680:65;::::0;::::1;2260:74:18::0;4680:39:13;;::::1;::::0;-1:-1:-1;4680:39:13::1;::::0;-1:-1:-1;2233:18:18;;4680:65:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;4802:15:13::1;::::0;4760:59:::1;::::0;-1:-1:-1;;;;;4802:15:13;;::::1;::::0;-1:-1:-1;4760:59:13;;::::1;::::0;-1:-1:-1;4760:59:13::1;::::0;4802:15:::1;::::0;4760:59:::1;4829:15;:36:::0;;;::::1;-1:-1:-1::0;;;;;4829:36:13;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;4131:741:13:o;9962:334::-;10045:4;442:1;580:7;;:19;572:46;;;;-1:-1:-1;;;572:46:13;;7959:2:18;572:46:13;;;7941:21:18;7998:2;7978:18;;;7971:30;8037:16;8017:18;;;8010:44;8071:18;;572:46:13;7757:338:18;572:46:13;442:1;628:7;:18;10098:4:::1;-1:-1:-1::0;;;;;10068:35:13;::::1;::::0;10060:48:::1;;;::::0;-1:-1:-1;;;10060:48:13;;8880:2:18;10060:48:13::1;::::0;::::1;8862:21:18::0;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;10060:48:13::1;8678:284:18::0;10060:48:13::1;10126:15;::::0;:51:::1;::::0;;;;-1:-1:-1;;;;;2278:55:18;;;10126:51:13::1;::::0;::::1;2260:74:18::0;10126:15:13;;::::1;::::0;:31:::1;::::0;2233:18:18;;10126:51:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10118:81;;;::::0;-1:-1:-1;;;10118:81:13;;10464:2:18;10118:81:13::1;::::0;::::1;10446:21:18::0;10503:2;10483:18;;;10476:30;10542:20;10522:18;;;10515:48;10580:18;;10118:81:13::1;10262:342:18::0;10118:81:13::1;10208:15;::::0;:62:::1;::::0;;;;10239:10:::1;10208:62;::::0;::::1;9458:34:18::0;-1:-1:-1;;;;;9528:15:18;;;9508:18;;;9501:43;10208:15:13;;::::1;::::0;:30:::1;::::0;9370:18:18;;10208:62:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;10286:4;10279:11;;399:1:::0;667:7;:22;9962:334;;-1:-1:-1;9962:334:13:o;2324:102:5:-;2380:13;2412:7;2405:14;;;;;:::i;8359:138:13:-;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;8449:41:13::1;8478:4;8484:5;8449:28;:41::i;:::-;8359:138:::0;;:::o;18550:142::-;18640:15;;:45;;;;;-1:-1:-1;;;;;2278:55:18;;;18640:45:13;;;2260:74:18;18618:4:13;;18640:15;;:31;;2233:18:18;;18640:45:13;2087:253:18;16620:106:13;16692:15;;:27;;;;;;;;16666:7;;-1:-1:-1;;;;;16692:15:13;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;;;;;6287:266:5;6380:4;6396:129;666:10:1;6419:7:5;6428:96;6467:15;6428:96;;;;;;;;;;;;;;;;;666:10:1;6428:25:5;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6428:34:5;;;;;;;;;;;;:38;:96::i;17310:145:13:-;17402:15;;:47;;;;;-1:-1:-1;;;;;2278:55:18;;;17402:47:13;;;2260:74:18;17379:7:13;;17402:15;;:38;;2233:18:18;;17402:47:13;2087:253:18;3693:172:5;3779:4;3795:42;666:10:1;3819:9:5;3830:6;3795:9;:42::i;17592:307:13:-;17857:15;;:35;;;;;-1:-1:-1;;;;;2278:55:18;;;17857:35:13;;;2260:74:18;17686:7:13;;;;;;;;;;;;;;;;17857:15;;;:26;;2233:18:18;;17857:35:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17850:42;;;;;;;;;;;;;;;;17592:307;;;;;;;;;:::o;7293:107::-;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;7357:15:13::1;::::0;:36:::1;::::0;;;;::::1;::::0;::::1;2051:25:18::0;;;-1:-1:-1;;;;;7357:15:13;;::::1;::::0;:29:::1;::::0;2024:18:18;;7357:36:13::1;1905:177:18::0;6069:242:13;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;-1:-1:-1;;;;;6161:28:13;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;6153:53:::1;;;::::0;-1:-1:-1;;;6153:53:13;;8880:2:18;6153:53:13::1;::::0;::::1;8862:21:18::0;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;6153:53:13::1;8678:284:18::0;6153:53:13::1;-1:-1:-1::0;;;;;6216:28:13;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;6270:34;;1343:41:18;;;6270:34:13::1;::::0;1316:18:18;6270:34:13::1;;;;;;;6069:242:::0;;:::o;7108:179::-;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;-1:-1:-1;;;;;3465:18:5;;7182:15:13::1;3465:18:5::0;;;;;;;;;;;7228:15:13::1;::::0;:52:::1;::::0;;;;-1:-1:-1;;;;;11487:55:18;;;7228:52:13::1;::::0;::::1;11469:74:18::0;11559:18;;;11552:34;;;7182:36:13;;-1:-1:-1;7228:15:13;::::1;::::0;:34:::1;::::0;11442:18:18;;7228:52:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;7172:115;7108:179:::0;:::o;6317:299::-;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;6435:9:13::1;6431:113;6450:19:::0;;::::1;6431:113;;;6525:8;6490:19;:32;6510:8;;6519:1;6510:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6490:32:13::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;6490:32:13;:43;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;6471:3;::::1;::::0;::::1;:::i;:::-;;;;6431:113;;;;6558:51;6590:8;;6600;6558:51;;;;;;;;:::i;:::-;;;;;;;;6317:299:::0;;;:::o;6749:229::-;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;6865:9:13::1;6861:111;6880:19:::0;;::::1;6861:111;;;6950:11;6920:14;:27;6935:8;;6944:1;6935:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6920:27:13::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;6920:27:13;:41;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;6901:3;::::1;::::0;::::1;:::i;:::-;;;;6861:111;;;;6749:229:::0;;;:::o;5901:162::-;771:6:12;;5982:4:13;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;6017:20:13::1;:9:::0;6030:6:::1;6017:20;:::i;:::-;5996:18;:41:::0;-1:-1:-1;6053:4:13::1;5901:162:::0;;;:::o;16731:150::-;16829:15;;:46;;;;;-1:-1:-1;;;;;2278:55:18;;;16829:46:13;;;2260:74:18;16805:7:13;;16829:15;;:38;;2233:18:18;;16829:46:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;10403:573::-;10527:4;442:1;580:7;;:19;572:46;;;;-1:-1:-1;;;572:46:13;;7959:2:18;572:46:13;;;7941:21:18;7998:2;7978:18;;;7971:30;8037:16;8017:18;;;8010:44;8071:18;;572:46:13;7757:338:18;572:46:13;442:1;628:7;:18;10580:15:::1;::::0;-1:-1:-1;;;;;10580:15:13;;::::1;10550:46:::0;;::::1;::::0;10542:59:::1;;;::::0;-1:-1:-1;;;10542:59:13;;8880:2:18;10542:59:13::1;::::0;::::1;8862:21:18::0;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;10542:59:13::1;8678:284:18::0;10542:59:13::1;10648:4;-1:-1:-1::0;;;;;10618:35:13;::::1;::::0;10610:48:::1;;;::::0;-1:-1:-1;;;10610:48:13;;8880:2:18;10610:48:13::1;::::0;::::1;8862:21:18::0;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;10610:48:13::1;8678:284:18::0;10610:48:13::1;10675:15;::::0;:51:::1;::::0;;;;-1:-1:-1;;;;;2278:55:18;;;10675:51:13::1;::::0;::::1;2260:74:18::0;10675:15:13;;::::1;::::0;:31:::1;::::0;2233:18:18;;10675:51:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10667:84;;;::::0;-1:-1:-1;;;10667:84:13;;13432:2:18;10667:84:13::1;::::0;::::1;13414:21:18::0;13471:2;13451:18;;;13444:30;13510:21;13490:18;;;13483:49;13549:18;;10667:84:13::1;13230:343:18::0;10667:84:13::1;10768:15;::::0;:49:::1;::::0;;;;-1:-1:-1;;;;;2278:55:18;;;10768:49:13::1;::::0;::::1;2260:74:18::0;10768:15:13;;::::1;::::0;:29:::1;::::0;2233:18:18;;10768:49:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10760:86;;;::::0;-1:-1:-1;;;10760:86:13;;13780:2:18;10760:86:13::1;::::0;::::1;13762:21:18::0;13819:2;13799:18;;;13792:30;13858:25;13838:18;;;13831:53;13901:18;;10760:86:13::1;13578:347:18::0;10760:86:13::1;10855:15;::::0;:95:::1;::::0;;;;10899:10:::1;10855:95;::::0;::::1;14193:34:18::0;-1:-1:-1;;;;;14263:15:18;;;14243:18;;;14236:43;14315:15;;;14295:18;;;14288:43;10855:15:13;;::::1;::::0;:43:::1;::::0;14105:18:18;;10855:95:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;10966:4;10959:11;;399:1:::0;667:7;:22;10403:573;;-1:-1:-1;;10403:573:13:o;16345:247::-;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;442:1:13::1;580:7;;:19:::0;572:46:::1;;;::::0;-1:-1:-1;;;572:46:13;;7959:2:18;572:46:13::1;::::0;::::1;7941:21:18::0;7998:2;7978:18;;;7971:30;8037:16;8017:18;;;8010:44;8071:18;;572:46:13::1;7757:338:18::0;572:46:13::1;442:1;628:7;:18:::0;16487:23:::2;::::0;16479:61:::2;::::0;16429:21:::2;::::0;16407:19:::2;::::0;-1:-1:-1;;;;;16487:23:13;;::::2;::::0;16429:21;;16407:19;16479:61;16407:19;16479:61;16429:21;16487:23;16479:61:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16460:80;;;16558:7;16550:35;;;::::0;-1:-1:-1;;;16550:35:13;;14754:2:18;16550:35:13::2;::::0;::::2;14736:21:18::0;14793:2;14773:18;;;14766:30;14832:17;14812:18;;;14805:45;14867:18;;16550:35:13::2;14552:339:18::0;7695:128:13;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;7777:7:13::1;;7769:5;:15;;7760:29;;;::::0;-1:-1:-1;;;7760:29:13;;8880:2:18;7760:29:13::1;::::0;::::1;8862:21:18::0;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;7760:29:13::1;8678:284:18::0;7760:29:13::1;7799:9;:17:::0;7695:128::o;18222:124::-;18300:15;;:39;;;;;;;;18277:7;;-1:-1:-1;;;;;18300:15:13;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;8845:122;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;8918:15:13::1;::::0;:42:::1;::::0;;;;::::1;::::0;::::1;2051:25:18::0;;;-1:-1:-1;;;;;8918:15:13;;::::1;::::0;:31:::1;::::0;2024:18:18;;8918:42:13::1;1905:177:18::0;7828:141:13;771:6:12;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;7894:8:13::1;:20:::0;;;7924:15:::1;::::0;:38:::1;::::0;;;;::::1;::::0;::::1;2051:25:18::0;;;-1:-1:-1;;;;;7924:15:13;;::::1;::::0;:27:::1;::::0;2024:18:18;;7924:38:13::1;1905:177:18::0;17902:314:13;18169:15;;:40;;;;;;;;2051:25:18;;;18001:7:13;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18169:15:13;;;;:33;;2024:18:18;;18169:40:13;1905:177:18;1484:240:12;771:6;;-1:-1:-1;;;;;771:6:12;666:10:1;771:22:12;763:67;;;;-1:-1:-1;;;763:67:12;;7097:2:18;763:67:12;;;7079:21:18;;;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;7227:18;;763:67:12;6895:356:18;763:67:12;-1:-1:-1;;;;;1572:22:12;::::1;1564:73;;;::::0;-1:-1:-1;;;1564:73:12;;15098:2:18;1564:73:12::1;::::0;::::1;15080:21:18::0;15137:2;15117:18;;;15110:30;15176:34;15156:18;;;15149:62;15247:8;15227:18;;;15220:36;15273:19;;1564:73:12::1;14896:402:18::0;1564:73:12::1;1673:6;::::0;1652:38:::1;::::0;-1:-1:-1;;;;;1652:38:12;;::::1;::::0;1673:6:::1;::::0;1652:38:::1;::::0;1673:6:::1;::::0;1652:38:::1;1700:6;:17:::0;;;::::1;-1:-1:-1::0;;;;;1700:17:12;;;::::1;::::0;;;::::1;::::0;;1484:240::o;11056:143:13:-;11115:4;442:1;580:7;;:19;572:46;;;;-1:-1:-1;;;572:46:13;;7959:2:18;572:46:13;;;7941:21:18;7998:2;7978:18;;;7971:30;8037:16;8017:18;;;8010:44;8071:18;;572:46:13;7757:338:18;572:46:13;442:1;628:7;:18;11129:15:::1;::::0;:44:::1;::::0;;;;11162:10:::1;11129:44;::::0;::::1;2260:74:18::0;-1:-1:-1;;;;;11129:15:13;;::::1;::::0;:32:::1;::::0;2233:18:18;;11129:44:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;11189:4;11182:11;;399:1:::0;667:7;:22;11056:143;:::o;311:176:15:-;369:7;;400:5;404:1;400;:5;:::i;:::-;388:17;;428:1;423;:6;;415:46;;;;-1:-1:-1;;;415:46:15;;15638:2:18;415:46:15;;;15620:21:18;15677:2;15657:18;;;15650:30;15716:29;15696:18;;;15689:57;15763:18;;415:46:15;15436:351:18;9386:370:5;-1:-1:-1;;;;;9517:19:5;;9509:68;;;;-1:-1:-1;;;9509:68:5;;15994:2:18;9509:68:5;;;15976:21:18;16033:2;16013:18;;;16006:30;16072:34;16052:18;;;16045:62;16143:6;16123:18;;;16116:34;16167:19;;9509:68:5;15792:400:18;9509:68:5;-1:-1:-1;;;;;9595:21:5;;9587:68;;;;-1:-1:-1;;;9587:68:5;;16399:2:18;9587:68:5;;;16381:21:18;16438:2;16418:18;;;16411:30;16477:34;16457:18;;;16450:62;16548:4;16528:18;;;16521:32;16570:19;;9587:68:5;16197:398:18;9587:68:5;-1:-1:-1;;;;;9666:18:5;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9717:32;;2051:25:18;;;9717:32:5;;2024:18:18;9717:32:5;;;;;;;;9386:370;;;:::o;11232:2208:13:-;-1:-1:-1;;;;;11361:18:13;;11353:31;;;;-1:-1:-1;;;11353:31:13;;8880:2:18;11353:31:13;;;8862:21:18;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;11353:31:13;8678:284:18;11353:31:13;-1:-1:-1;;;;;11402:16:13;;11394:29;;;;-1:-1:-1;;;11394:29:13;;8880:2:18;11394:29:13;;;8862:21:18;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;11394:29:13;8678:284:18;11394:29:13;-1:-1:-1;;;;;11442:20:13;;;;;;:14;:20;;;;;;;;11441:21;:44;;;;-1:-1:-1;;;;;;11467:18:13;;;;;;:14;:18;;;;;;;;11466:19;11441:44;11433:76;;;;-1:-1:-1;;;11433:76:13;;16802:2:18;11433:76:13;;;16784:21:18;16841:2;16821:18;;;16814:30;16880:21;16860:18;;;16853:49;16919:18;;11433:76:13;16600:343:18;11433:76:13;11523:6;11533:1;11523:11;11520:89;;11550:28;11566:4;11572:2;11576:1;11550:15;:28::i;:::-;11232:2208;;;:::o;11520:89::-;11622:9;;:13;11619:1628;;11701:4;11652:28;3465:18:5;;;;;;;;;;;11760::13;;11736:42;;;;;;;11796:36;;-1:-1:-1;11824:8:13;;;;;;;11823:9;11796:36;:88;;;;-1:-1:-1;;;;;;11853:31:13;;;;;;:25;:31;;;;;;;;11852:32;11796:88;:123;;;;-1:-1:-1;631:6:12;;-1:-1:-1;;;;;11904:15:13;;;631:6:12;;11904:15:13;;11796:123;:156;;;;-1:-1:-1;631:6:12;;-1:-1:-1;;;;;11939:13:13;;;631:6:12;;11939:13:13;;11796:156;11792:337;;;12009:8;:15;;;;;;;;12046:30;12055:20;12046:8;:30::i;:::-;12098:8;:16;;;;;;11792:337;12158:8;;-1:-1:-1;;;;;12271:25:13;;12142:12;12271:25;;;:19;:25;;;;;;12158:8;;;;;;;12157:9;;12271:25;;:52;;-1:-1:-1;;;;;;12300:23:13;;;;;;:19;:23;;;;;;;;12271:52;12268:105;;;-1:-1:-1;12353:5:13;12268:105;12389:7;12386:848;;;-1:-1:-1;;;;;12419:31:13;;;;;;:25;:31;;;;;;;;12416:804;;;12497:12;12512:30;12538:3;12512:21;12523:9;;12512:6;:10;;:21;;;;:::i;:::-;:25;;:30::i;:::-;12497:45;-1:-1:-1;12570:16:13;:6;12497:45;12570:10;:16::i;:::-;12561:25;;12608:42;12624:4;12638;12645;12608:15;:42::i;:::-;12451:218;12416:804;;;-1:-1:-1;;;;;12678:29:13;;;;;;:25;:29;;;;;;;;12674:546;;;12758:12;12773:45;12814:3;12773:36;12784:24;12798:9;;12784;;:13;;:24;;;;:::i;:::-;12773:6;;:10;:36::i;12674:546::-;12975:9;;:13;12972:230;;13015:12;13030:30;13056:3;13030:21;13041:9;;13030:6;:10;;:21;;;;:::i;:30::-;13015:45;-1:-1:-1;13095:16:13;:6;13015:45;13095:10;:16::i;:::-;13086:25;;13137:42;13153:4;13167;13174;13137:15;:42::i;:::-;12989:213;12972:230;11636:1611;;;11619:1628;13256:33;13272:4;13278:2;13282:6;13256:15;:33::i;:::-;13303:15;;-1:-1:-1;;;;;13303:15:13;:26;13330:4;13336:15;13330:4;-1:-1:-1;;;;;3465:18:5;3439:7;3465:18;;;;;;;;;;;;3365:125;13336:15:13;13303:49;;;;;;;;;;-1:-1:-1;;;;;11487:55:18;;;13303:49:13;;;11469:74:18;11559:18;;;11552:34;11442:18;;13303:49:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13299:65;13377:15;;-1:-1:-1;;;;;13377:15:13;:26;13404:2;13408:13;13404:2;-1:-1:-1;;;;;3465:18:5;3439:7;3465:18;;;;;;;;;;;;3365:125;13408:13:13;13377:45;;;;;;;;;;-1:-1:-1;;;;;11487:55:18;;;13377:45:13;;;11469:74:18;11559:18;;;11552:34;11442:18;;13377:45:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13373:61;;;11232:2208;;;:::o;1183:187:15:-;1269:7;1304:12;1296:6;;;;1288:29;;;;-1:-1:-1;;;1288:29:15;;;;;;;;:::i;:::-;-1:-1:-1;1327:9:15;1339:5;1343:1;1339;:5;:::i;:::-;1327:17;1183:187;-1:-1:-1;;;;;1183:187:15:o;621:205:14:-;760:58;;;-1:-1:-1;;;;;11487:55:18;;760:58:14;;;11469:74:18;11559:18;;;;11552:34;;;760:58:14;;;;;;;;;;11442:18:18;;;;760:58:14;;;;;;;;;;783:23;760:58;;;733:86;;753:5;;733:19;:86::i;8507:332:13:-;-1:-1:-1;;;;;8597:31:13;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;8589:53;;;;-1:-1:-1;;;8589:53:13;;8880:2:18;8589:53:13;;;8862:21:18;-1:-1:-1;8899:18:18;;;8892:29;8938:18;;8589:53:13;8678:284:18;8589:53:13;-1:-1:-1;;;;;8652:31:13;;;;;;:25;:31;;;;;:39;;;;;;;;;;;;;;;8701:77;;8725:15;;:42;;;;;-1:-1:-1;;;;;2278:55:18;;;8725:42:13;;;2260:74:18;8725:15:13;;;;:36;;2233:18:18;;8725:42:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8701:77;8792:40;;;;;;-1:-1:-1;;;;;8792:40:13;;;;;;;;8507:332;;:::o;7027:560:5:-;-1:-1:-1;;;;;7162:20:5;;7154:70;;;;-1:-1:-1;;;7154:70:5;;17280:2:18;7154:70:5;;;17262:21:18;17319:2;17299:18;;;17292:30;17358:34;17338:18;;;17331:62;17429:7;17409:18;;;17402:35;17454:19;;7154:70:5;17078:401:18;7154:70:5;-1:-1:-1;;;;;7242:23:5;;7234:71;;;;-1:-1:-1;;;7234:71:5;;17686:2:18;7234:71:5;;;17668:21:18;17725:2;17705:18;;;17698:30;17764:34;17744:18;;;17737:62;17835:5;17815:18;;;17808:33;17858:19;;7234:71:5;17484:399:18;7234:71:5;7394;7416:6;7394:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7394:17:5;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;7374:17:5;;;:9;:17;;;;;;;;;;;:91;;;;7498:20;;;;;;;:32;;7523:6;7498:24;:32::i;:::-;-1:-1:-1;;;;;7475:20:5;;;:9;:20;;;;;;;;;;;;:55;;;;7545:35;2051:25:18;;;7475:20:5;;7545:35;;;;;;2024:18:18;7545:35:5;1905:177:18;13446:1268:13;13513:23;13539:60;13597:1;13539:53;13582:9;;13539:38;13564:12;;13539:20;:24;;:38;;;;:::i;:60::-;13513:86;-1:-1:-1;13609:20:13;13632:41;:20;13513:86;13632:24;:41::i;:::-;13708:16;;;13722:1;13708:16;;;;;;;;13609:64;;-1:-1:-1;13684:21:13;;13708:16;;;;;;;;;;;;-1:-1:-1;13708:16:13;13684:40;;13752:4;13734;13739:1;13734:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;13734:23:13;;;:7;;;;;;;;;;:23;;;;13777:15;;:22;;;;;;;;:15;;;;;:20;;:22;;;;;13734:7;;13777:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13767:4;13772:1;13767:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;13767:32:13;;;:7;;;;;;;;;;;:32;13834:21;13865:30;13882:12;13865:16;:30::i;:::-;13906:19;13928:40;:21;13954:13;13928:25;:40::i;:::-;13906:62;;13978:21;14002:34;14016:19;14033:1;14016:12;;:16;;:19;;;;:::i;:::-;14002:9;;;:13;:34::i;:::-;13978:58;;14046:28;14077:55;14130:1;14077:48;14111:13;14077:29;14093:12;;14077:11;:15;;:29;;;;:::i;:55::-;14046:86;;14142:29;14174:46;14206:13;14174:27;14190:10;;14174:11;:15;;:27;;;;:::i;:46::-;14142:78;;14230:28;14261:48;14295:13;14261:29;14277:12;;14261:11;:15;;:29;;;;:::i;:48::-;14363:15;;14355:63;;14230:79;;-1:-1:-1;14338:12:13;;-1:-1:-1;;;;;14363:15:13;;;;14392:21;;14338:12;14355:63;14338:12;14355:63;14392:21;14363:15;14355:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14337:81;;;14432:7;14428:79;;;14460:36;;2051:25:18;;;14460:36:13;;2039:2:18;2024:18;14460:36:13;;;;;;;14428:79;14537:23;;14529:70;;-1:-1:-1;;;;;14537:23:13;;;;14574:20;;14529:70;;;;14574:20;14537:23;14529:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14516:83:13;;-1:-1:-1;;14612:19:13;;14609:99;;14646:51;14659:15;14676:20;14646:12;:51::i;:::-;13503:1211;;;;;;;;;;13446:1268;:::o;1617:459:15:-;1675:7;1916:1;1921;1916:6;1912:45;;-1:-1:-1;1945:1:15;1938:8;;1912:45;1967:9;1979:5;1983:1;1979;:5;:::i;:::-;1967:17;-1:-1:-1;2011:1:15;2002:5;2006:1;1967:17;2002:5;:::i;:::-;:10;1994:56;;;;-1:-1:-1;;;1994:56:15;;18558:2:18;1994:56:15;;;18540:21:18;18597:2;18577:18;;;18570:30;18636:34;18616:18;;;18609:62;18707:3;18687:18;;;18680:31;18728:19;;1994:56:15;18356:397:18;2538:130:15;2596:7;2622:39;2626:1;2629;2622:39;;;;;;;;;;;;;;;;;:3;:39::i;758:134::-;816:7;842:43;846:1;849;842:43;;;;;;;;;;;;;;;;;:3;:43::i;3127:706:14:-;3546:23;3572:69;3600:4;3572:69;;;;;;;;;;;;;;;;;3580:5;-1:-1:-1;;;;;3572:27:14;;;:69;;;;;:::i;:::-;3655:17;;3546:95;;-1:-1:-1;3655:21:14;3651:176;;3750:10;3739:30;;;;;;;;;;;;:::i;:::-;3731:85;;;;-1:-1:-1;;;3731:85:14;;18960:2:18;3731:85:14;;;18942:21:18;18999:2;18979:18;;;18972:30;19038:34;19018:18;;;19011:62;19109:12;19089:18;;;19082:40;19139:19;;3731:85:14;18758:406:18;14720:695:13;14870:16;;;14884:1;14870:16;;;;;;;;14846:21;;14870:16;;;;;;;;;;-1:-1:-1;14870:16:13;14846:40;;14914:4;14896;14901:1;14896:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;14896:23:13;;;:7;;;;;;;;;;:23;;;;14939:15;;:22;;;;;;;;:15;;;;;:20;;:22;;;;;14896:7;;14939:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14929:4;14934:1;14929:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;14929:32:13;;;:7;;;;;;;;;:32;15004:15;;14972:62;;14989:4;;15004:15;15022:11;14972:8;:62::i;:::-;15058:15;;:48;;;;;15044:11;;-1:-1:-1;;;;;15058:15:13;;:29;;:48;;15088:11;;15101:4;;15058:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15107:1;15058:51;;;;;;;;:::i;:::-;;;;;;;15044:65;;15144:15;;;;;;;;;-1:-1:-1;;;;;15144:15:13;-1:-1:-1;;;;;15144:66:13;;15224:11;15249:26;15271:3;15249:17;15257:8;;15249:3;:7;;:17;;;;:::i;:26::-;15332:4;15358;15377:15;15144:258;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14775:640;;14720:695;:::o;15421:510::-;15607:15;;15575:62;;15592:4;;-1:-1:-1;;;;;15607:15:13;15625:11;15575:8;:62::i;:::-;15676:15;;-1:-1:-1;;;;;15676:15:13;:31;15715:9;15747:4;15766:11;15676:15;;15875:7;631:6:12;;-1:-1:-1;;;;;631:6:12;;567:77;15875:7:13;15676:245;;;;;;;;;;-1:-1:-1;;;;;22148:15:18;;;15676:245:13;;;22130:34:18;22180:18;;;22173:34;;;;22223:18;;;22216:34;;;;22266:18;;;22259:34;22330:15;;;22309:19;;;22302:44;15896:15:13;22362:19:18;;;22355:35;22041:19;;15676:245:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3150:272:15:-;3236:7;3270:12;3263:5;3255:28;;;;-1:-1:-1;;;3255:28:15;;;;;;;;:::i;:::-;-1:-1:-1;3293:9:15;3305:5;3309:1;3305;:5;:::i;3462:223:0:-;3595:12;3626:52;3648:6;3656:4;3662:1;3665:12;3626:21;:52::i;:::-;3619:59;3462:223;-1:-1:-1;;;;3462:223:0:o;4549:499::-;4714:12;4771:5;4746:21;:30;;4738:81;;;;-1:-1:-1;;;4738:81:0;;22603:2:18;4738:81:0;;;22585:21:18;22642:2;22622:18;;;22615:30;22681:34;22661:18;;;22654:62;22752:8;22732:18;;;22725:36;22778:19;;4738:81:0;22401:402:18;4738:81:0;1035:20;;4829:60;;;;-1:-1:-1;;;4829:60:0;;23010:2:18;4829:60:0;;;22992:21:18;23049:2;23029:18;;;23022:30;23088:31;23068:18;;;23061:59;23137:18;;4829:60:0;22808:353:18;4829:60:0;4901:12;4915:23;4942:6;-1:-1:-1;;;;;4942:11:0;4961:5;4968:4;4942:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4900:73;;;;4990:51;5007:7;5016:10;5028:12;4990:16;:51::i;:::-;4983:58;4549:499;-1:-1:-1;;;;;;;4549:499:0:o;7162:692::-;7308:12;7336:7;7332:516;;;-1:-1:-1;7366:10:0;7359:17;;7332:516;7477:17;;:21;7473:365;;7671:10;7665:17;7731:15;7718:10;7714:2;7710:19;7703:44;7473:365;7810:12;7803:20;;-1:-1:-1;;;7803:20:0;;;;;;;;:::i;14:258:18:-;86:1;96:113;110:6;107:1;104:13;96:113;;;186:11;;;180:18;167:11;;;160:39;132:2;125:10;96:113;;;227:6;224:1;221:13;218:48;;;-1:-1:-1;;262:1:18;244:16;;237:27;14:258::o;277:442::-;426:2;415:9;408:21;389:4;458:6;452:13;501:6;496:2;485:9;481:18;474:34;517:66;576:6;571:2;560:9;556:18;551:2;543:6;539:15;517:66;:::i;:::-;635:2;623:15;640:66;619:88;604:104;;;;710:2;600:113;;277:442;-1:-1:-1;;277:442:18:o;724:154::-;-1:-1:-1;;;;;803:5:18;799:54;792:5;789:65;779:93;;868:1;865;858:12;779:93;724:154;:::o;883:315::-;951:6;959;1012:2;1000:9;991:7;987:23;983:32;980:52;;;1028:1;1025;1018:12;980:52;1067:9;1054:23;1086:31;1111:5;1086:31;:::i;:::-;1136:5;1188:2;1173:18;;;;1160:32;;-1:-1:-1;;;883:315:18:o;1395:118::-;1481:5;1474:13;1467:21;1460:5;1457:32;1447:60;;1503:1;1500;1493:12;1518:382;1583:6;1591;1644:2;1632:9;1623:7;1619:23;1615:32;1612:52;;;1660:1;1657;1650:12;1612:52;1699:9;1686:23;1718:31;1743:5;1718:31;:::i;:::-;1768:5;-1:-1:-1;1825:2:18;1810:18;;1797:32;1838:30;1797:32;1838:30;:::i;:::-;1887:7;1877:17;;;1518:382;;;;;:::o;2345:247::-;2404:6;2457:2;2445:9;2436:7;2432:23;2428:32;2425:52;;;2473:1;2470;2463:12;2425:52;2512:9;2499:23;2531:31;2556:5;2531:31;:::i;2597:456::-;2674:6;2682;2690;2743:2;2731:9;2722:7;2718:23;2714:32;2711:52;;;2759:1;2756;2749:12;2711:52;2798:9;2785:23;2817:31;2842:5;2817:31;:::i;:::-;2867:5;-1:-1:-1;2924:2:18;2909:18;;2896:32;2937:33;2896:32;2937:33;:::i;:::-;2597:456;;2989:7;;-1:-1:-1;;;3043:2:18;3028:18;;;;3015:32;;2597:456::o;4001:385::-;4087:6;4095;4103;4111;4164:3;4152:9;4143:7;4139:23;4135:33;4132:53;;;4181:1;4178;4171:12;4132:53;-1:-1:-1;;4204:23:18;;;4274:2;4259:18;;4246:32;;-1:-1:-1;4325:2:18;4310:18;;4297:32;;4376:2;4361:18;4348:32;;-1:-1:-1;4001:385:18;-1:-1:-1;4001:385:18:o;4391:180::-;4450:6;4503:2;4491:9;4482:7;4478:23;4474:32;4471:52;;;4519:1;4516;4509:12;4471:52;-1:-1:-1;4542:23:18;;4391:180;-1:-1:-1;4391:180:18:o;5305:750::-;5397:6;5405;5413;5466:2;5454:9;5445:7;5441:23;5437:32;5434:52;;;5482:1;5479;5472:12;5434:52;5522:9;5509:23;5551:18;5592:2;5584:6;5581:14;5578:34;;;5608:1;5605;5598:12;5578:34;5646:6;5635:9;5631:22;5621:32;;5691:7;5684:4;5680:2;5676:13;5672:27;5662:55;;5713:1;5710;5703:12;5662:55;5753:2;5740:16;5779:2;5771:6;5768:14;5765:34;;;5795:1;5792;5785:12;5765:34;5850:7;5843:4;5833:6;5830:1;5826:14;5822:2;5818:23;5814:34;5811:47;5808:67;;;5871:1;5868;5861:12;5808:67;5902:4;5894:13;;;;-1:-1:-1;5926:6:18;-1:-1:-1;;5967:20:18;;5954:34;5997:28;5954:34;5997:28;:::i;:::-;6044:5;6034:15;;;5305:750;;;;;:::o;6060:388::-;6128:6;6136;6189:2;6177:9;6168:7;6164:23;6160:32;6157:52;;;6205:1;6202;6195:12;6157:52;6244:9;6231:23;6263:31;6288:5;6263:31;:::i;:::-;6313:5;-1:-1:-1;6370:2:18;6355:18;;6342:32;6383:33;6342:32;6383:33;:::i;6453:437::-;6532:1;6528:12;;;;6575;;;6596:61;;6650:4;6642:6;6638:17;6628:27;;6596:61;6703:2;6695:6;6692:14;6672:18;6669:38;6666:218;;6740:77;6737:1;6730:88;6841:4;6838:1;6831:15;6869:4;6866:1;6859:15;6666:218;;6453:437;;;:::o;7568:184::-;7638:6;7691:2;7679:9;7670:7;7666:23;7662:32;7659:52;;;7707:1;7704;7697:12;7659:52;-1:-1:-1;7730:16:18;;7568:184;-1:-1:-1;7568:184:18:o;8100:245::-;8167:6;8220:2;8208:9;8199:7;8195:23;8191:32;8188:52;;;8236:1;8233;8226:12;8188:52;8268:9;8262:16;8287:28;8309:5;8287:28;:::i;8967:251::-;9037:6;9090:2;9078:9;9069:7;9065:23;9061:32;9058:52;;;9106:1;9103;9096:12;9058:52;9138:9;9132:16;9157:31;9182:5;9157:31;:::i;9555:306::-;9643:6;9651;9659;9712:2;9700:9;9691:7;9687:23;9683:32;9680:52;;;9728:1;9725;9718:12;9680:52;9757:9;9751:16;9741:26;;9807:2;9796:9;9792:18;9786:25;9776:35;;9851:2;9840:9;9836:18;9830:25;9820:35;;9555:306;;;;;:::o;10609:681::-;10740:6;10748;10756;10764;10772;10780;10788;10796;10849:3;10837:9;10828:7;10824:23;10820:33;10817:53;;;10866:1;10863;10856:12;10817:53;10898:9;10892:16;10917:31;10942:5;10917:31;:::i;:::-;10967:5;10957:15;;;11012:2;11001:9;10997:18;10991:25;10981:35;;11056:2;11045:9;11041:18;11035:25;11025:35;;11100:2;11089:9;11085:18;11079:25;11069:35;;11144:3;11133:9;11129:19;11123:26;11113:36;;11189:3;11178:9;11174:19;11168:26;11158:36;;11234:3;11223:9;11219:19;11213:26;11203:36;;11279:3;11268:9;11264:19;11258:26;11248:36;;10609:681;;;;;;;;;;;:::o;11597:184::-;11649:77;11646:1;11639:88;11746:4;11743:1;11736:15;11770:4;11767:1;11760:15;11786:184;11838:77;11835:1;11828:88;11935:4;11932:1;11925:15;11959:4;11956:1;11949:15;11975:195;12014:3;12045:66;12038:5;12035:77;12032:103;;12115:18;;:::i;:::-;-1:-1:-1;12162:1:18;12151:13;;11975:195::o;12175:817::-;12397:2;12409:21;;;12382:18;;12465:22;;;12349:4;12544:6;12518:2;12503:18;;12349:4;12578:327;12592:6;12589:1;12586:13;12578:327;;;12667:6;12654:20;12687:31;12712:5;12687:31;:::i;:::-;-1:-1:-1;;;;;12743:54:18;12731:67;;12821:4;12880:15;;;;12845:12;;;;12614:1;12607:9;12578:327;;;12582:3;12922;12914:11;;;;12977:6;12970:14;12963:22;12956:4;12945:9;12941:20;12934:52;12175:817;;;;;;:::o;12997:228::-;13037:7;13163:1;13095:66;13091:74;13088:1;13085:81;13080:1;13073:9;13066:17;13062:105;13059:131;;;13170:18;;:::i;:::-;-1:-1:-1;13210:9:18;;12997:228::o;15303:128::-;15343:3;15374:1;15370:6;15367:1;15364:13;15361:39;;;15380:18;;:::i;:::-;-1:-1:-1;15416:9:18;;15303:128::o;16948:125::-;16988:4;17016:1;17013;17010:8;17007:34;;;17021:18;;:::i;:::-;-1:-1:-1;17058:9:18;;16948:125::o;17888:184::-;17940:77;17937:1;17930:88;18037:4;18034:1;18027:15;18061:4;18058:1;18051:15;18077:274;18117:1;18143;18133:189;;18178:77;18175:1;18168:88;18279:4;18276:1;18269:15;18307:4;18304:1;18297:15;18133:189;-1:-1:-1;18336:9:18;;18077:274::o;19169:484::-;19222:3;19260:5;19254:12;19287:6;19282:3;19275:19;19313:4;19342:2;19337:3;19333:12;19326:19;;19379:2;19372:5;19368:14;19400:1;19410:218;19424:6;19421:1;19418:13;19410:218;;;19489:13;;-1:-1:-1;;;;;19485:62:18;19473:75;;19568:12;;;;19603:15;;;;19446:1;19439:9;19410:218;;;-1:-1:-1;19644:3:18;;19169:484;-1:-1:-1;;;;;19169:484:18:o;19658:332::-;19865:6;19854:9;19847:25;19908:2;19903;19892:9;19888:18;19881:30;19828:4;19928:56;19980:2;19969:9;19965:18;19957:6;19928:56;:::i;19995:1164::-;20090:6;20121:2;20164;20152:9;20143:7;20139:23;20135:32;20132:52;;;20180:1;20177;20170:12;20132:52;20213:9;20207:16;20242:18;20283:2;20275:6;20272:14;20269:34;;;20299:1;20296;20289:12;20269:34;20337:6;20326:9;20322:22;20312:32;;20382:7;20375:4;20371:2;20367:13;20363:27;20353:55;;20404:1;20401;20394:12;20353:55;20433:2;20427:9;20455:2;20451;20448:10;20445:36;;;20461:18;;:::i;:::-;20507:2;20504:1;20500:10;20539:2;20533:9;20598:66;20593:2;20589;20585:11;20581:84;20573:6;20569:97;20716:6;20704:10;20701:22;20696:2;20684:10;20681:18;20678:46;20675:72;;;20727:18;;:::i;:::-;20763:2;20756:22;20813:18;;;20847:15;;;;-1:-1:-1;20889:11:18;;;20885:20;;;20917:19;;;20914:39;;;20949:1;20946;20939:12;20914:39;20973:11;;;;20993:135;21009:6;21004:3;21001:15;20993:135;;;21075:10;;21063:23;;21026:12;;;;21106;;;;20993:135;;;21147:6;19995:1164;-1:-1:-1;;;;;;;;19995:1164:18:o;21164:597::-;21455:6;21444:9;21437:25;21498:6;21493:2;21482:9;21478:18;21471:34;21541:3;21536:2;21525:9;21521:18;21514:31;21418:4;21562:57;21614:3;21603:9;21599:19;21591:6;21562:57;:::i;:::-;-1:-1:-1;;;;;21655:55:18;;;;21650:2;21635:18;;21628:83;-1:-1:-1;21742:3:18;21727:19;21720:35;21554:65;21164:597;-1:-1:-1;;;21164:597:18:o;23166:274::-;23295:3;23333:6;23327:13;23349:53;23395:6;23390:3;23383:4;23375:6;23371:17;23349:53;:::i;:::-;23418:16;;;;;23166:274;-1:-1:-1;;23166:274:18:o
Swarm Source
ipfs://4cb537a75b1dd3388f53cd1e6b8884a0edc65c1d811b332e6badf2a29fdf9403
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.