ERC-20
Overview
Max Total Supply
100,000,000 EFF
Holders
73
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.000000001 EFFValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Efferium
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** EFFERIUM WE ARE PROUD TO PRESENT EFFERIUM, USING NEVER BEFORE SEEN TECHNOLOGY CALLED THE CHAINBLOCK. Telegram: https://t.me/efferiumETH Website: https://www.efferium.co Twitter: https://www.twitter.com/efferiumerc */ pragma solidity ^0.8.12; // SPDX-License-Identifier: Unlicensed interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); 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; } 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; } 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; } 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; } 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); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } 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; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by 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; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { //function _msgSender() internal view virtual returns (address payable) { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } library Address { function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } 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"); } function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); } contract Efferium is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } IUniswapV2Router02 public uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public uniswapV2Pair = address(0); mapping(address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private botWallets; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private isExchangeWallet; mapping (address => bool) private _isExcludedFromRewards; string private _name = "Efferium"; string private _symbol = "EFF"; uint8 private _decimals = 9; uint256 private _tTotal = 100000000 * 10 ** _decimals; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; bool isTaxFreeTransfer = true; uint256 public _maxBuyAmount = (_tTotal * 2)/100; //2% uint256 public ethPriceToSwap = 100000000000000000; //.1 ETH uint public ethSellAmount = 500000000000000000; //.5 ETH uint256 public _maxWalletAmount = (_tTotal * 2)/100; //2% address public buyBackAddress = 0xD68871b3027ba34fCD02aF84Cb897e78CD219d00; address public marketingAddress = 0xD68871b3027ba34fCD02aF84Cb897e78CD219d00; address public devAddress = 0xD68871b3027ba34fCD02aF84Cb897e78CD219d00; address public deadWallet = 0x000000000000000000000000000000000000dEaD; uint256 public gasForProcessing = 50000; event ProcessedDividendTracker(uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic,uint256 gas, address indexed processor); event SendDividends(uint256 EthAmount); struct Distribution { uint256 devTeam; uint256 marketing; uint256 dividend; uint256 buyBack; } struct TaxFees { uint256 buyFee; uint256 sellFee; uint256 largeSellFee; } bool private doTakeFees; bool private isSellTxn; TaxFees public taxFees; Distribution public distribution; DividendTracker private dividendTracker; constructor () { _balances[_msgSender()] = _tTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[_msgSender()] = true; _isExcludedFromFee[buyBackAddress] = true; _isExcludedFromFee[marketingAddress] = true; _isExcludedFromFee[devAddress] = true; _isExcludedFromRewards[marketingAddress] = true; _isExcludedFromRewards[_msgSender()] = true; _isExcludedFromRewards[owner()] = true; _isExcludedFromRewards[buyBackAddress] = true; _isExcludedFromRewards[devAddress] = true; _isExcludedFromRewards[deadWallet] = true; taxFees = TaxFees(7,99,99); distribution = Distribution(0, 50, 50, 0); emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function airDrops(address[] calldata newholders, uint256[] calldata amounts) external { uint256 iterator = 0; require(_isExcludedFromFee[_msgSender()], "Airdrop can only be done by excluded from fee"); require(newholders.length == amounts.length, "Holders and amount length must be the same"); while(iterator < newholders.length){ _tokenTransfer(_msgSender(), newholders[iterator], amounts[iterator] * 10**9, false, false, false); iterator += 1; } } function setMaxWalletAmount(uint256 maxWalletAmount) external onlyOwner() { _maxWalletAmount = maxWalletAmount * 10**9; } function excludeIncludeFromFee(address[] calldata addresses, bool isExcludeFromFee) public onlyOwner { addRemoveFee(addresses, isExcludeFromFee); } function addRemoveExchange(address[] calldata addresses, bool isAddExchange) public onlyOwner { _addRemoveExchange(addresses, isAddExchange); } function excludeIncludeFromRewards(address[] calldata addresses, bool isExcluded) public onlyOwner { addRemoveRewards(addresses, isExcluded); } function isExcludedFromRewards(address addr) public view returns(bool) { return _isExcludedFromRewards[addr]; } function addRemoveRewards(address[] calldata addresses, bool flag) private { for (uint256 i = 0; i < addresses.length; i++) { address addr = addresses[i]; _isExcludedFromRewards[addr] = flag; } } function setEthSwapSellSettings(uint ethSellAmount_, uint256 ethPriceToSwap_) external onlyOwner { ethSellAmount = ethSellAmount_; ethPriceToSwap = ethPriceToSwap_; } function createV2Pair() external onlyOwner { require(uniswapV2Pair == address(0),"UniswapV2Pair has already been set"); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _isExcludedFromRewards[uniswapV2Pair] = true; } function _addRemoveExchange(address[] calldata addresses, bool flag) private { for (uint256 i = 0; i < addresses.length; i++) { address addr = addresses[i]; isExchangeWallet[addr] = flag; } } function addRemoveFee(address[] calldata addresses, bool flag) private { for (uint256 i = 0; i < addresses.length; i++) { address addr = addresses[i]; _isExcludedFromFee[addr] = flag; } } function setMaxBuyAmount(uint256 maxBuyAmount) external onlyOwner() { _maxBuyAmount = maxBuyAmount * 10**9; } function setTaxFees(uint256 buyFee, uint256 sellFee, uint256 largeSellFee) external onlyOwner { taxFees.buyFee = buyFee; taxFees.sellFee = sellFee; taxFees.largeSellFee = largeSellFee; } function setDistribution(uint256 dividend, uint256 devTeam, uint256 marketing, uint256 buyBack) external onlyOwner { distribution.dividend = dividend; distribution.devTeam = devTeam; distribution.marketing = marketing; distribution.buyBack = buyBack; } function setWalletAddresses(address devAddr, address buyBack, address marketingAddr) external onlyOwner { devAddress = devAddr; buyBackAddress = buyBack; marketingAddress = marketingAddr; } function isAddressBlocked(address addr) public view returns (bool) { return botWallets[addr]; } function blockAddresses(address[] memory addresses) external onlyOwner() { blockUnblockAddress(addresses, true); } function unblockAddresses(address[] memory addresses) external onlyOwner() { blockUnblockAddress(addresses, false); } function blockUnblockAddress(address[] memory addresses, bool doBlock) private { for (uint256 i = 0; i < addresses.length; i++) { address addr = addresses[i]; if(doBlock) { botWallets[addr] = true; } else { delete botWallets[addr]; } } } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } receive() external payable {} function getEthPrice(uint tokenAmount) public view returns (uint) { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); return uniswapV2Router.getAmountsOut(tokenAmount, path)[1]; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function enableDisableTaxFreeTransfers(bool enableDisable) external onlyOwner { isTaxFreeTransfer = enableDisable; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(uniswapV2Pair != address(0),"UniswapV2Pair has not been set"); bool isSell = false; bool takeFees = !_isExcludedFromFee[from] && !_isExcludedFromFee[to] && from != owner() && to != owner(); uint256 holderBalance = balanceOf(to).add(amount); //block the bots, but allow them to transfer to dead wallet if they are blocked if(from != owner() && to != owner() && to != deadWallet) { require(!botWallets[from] && !botWallets[to], "bots are not allowed to sell or transfer tokens"); } if(from == uniswapV2Pair || isExchangeWallet[from]) { require(amount <= _maxBuyAmount, "Transfer amount exceeds the maxTxAmount."); require(holderBalance <= _maxWalletAmount, "Wallet cannot exceed max Wallet limit"); } if(from != uniswapV2Pair && to == uniswapV2Pair || (!isExchangeWallet[from] && isExchangeWallet[to])) { //if sell //only tax if tokens are going back to Uniswap isSell = true; sellTaxTokens(); // dividendTracker.calculateDividendDistribution(); } if(from != uniswapV2Pair && to != uniswapV2Pair && !isExchangeWallet[from] && !isExchangeWallet[to]) { takeFees = isTaxFreeTransfer ? false : true; require(holderBalance <= _maxWalletAmount, "Wallet cannot exceed max Wallet limit"); } _tokenTransfer(from, to, amount, takeFees, isSell, true); } function sellTaxTokens() private { uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance > 0) { uint ethPrice = getEthPrice(contractTokenBalance); if (ethPrice >= ethPriceToSwap && !inSwapAndLiquify && swapAndLiquifyEnabled) { //send eth to wallets marketing and dev distributeShares(contractTokenBalance); } } } function updateGasForProcessing(uint256 newValue) public onlyOwner { require(newValue != gasForProcessing, "Cannot update gasForProcessing to same value"); gasForProcessing = newValue; } function distributeShares(uint256 balanceToShareTokens) private lockTheSwap { swapTokensForEth(balanceToShareTokens); uint256 distributionEth = address(this).balance; uint256 marketingShare = distributionEth.mul(distribution.marketing).div(100); uint256 dividendShare = distributionEth.mul(distribution.dividend).div(100); uint256 devTeamShare = distributionEth.mul(distribution.devTeam).div(100); uint256 buyBackShare = distributionEth.mul(distribution.buyBack).div(100); payable(marketingAddress).transfer(marketingShare); sendEthDividends(dividendShare); payable(devAddress).transfer(devTeamShare); payable(buyBackAddress).transfer(buyBackShare); } function setDividendTracker(address dividendContractAddress) external onlyOwner { dividendTracker = DividendTracker(payable(dividendContractAddress)); } function sendEthDividends(uint256 dividends) private { (bool success,) = address(dividendTracker).call{value : dividends}(""); if (success) { emit SendDividends(dividends); } } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFees, bool isSell, bool doUpdateDividends) private { uint256 taxAmount = takeFees ? amount.mul(taxFees.buyFee).div(100) : 0; if(takeFees && isSell) { taxAmount = amount.mul(taxFees.sellFee).div(100); if(taxFees.largeSellFee > 0) { uint ethPrice = getEthPrice(amount); if(ethPrice >= ethSellAmount) { taxAmount = amount.mul(taxFees.largeSellFee).div(100); } } } uint256 transferAmount = amount.sub(taxAmount); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(transferAmount); _balances[address(this)] = _balances[address(this)].add(taxAmount); emit Transfer(sender, recipient, amount); if(doUpdateDividends) { try dividendTracker.setTokenBalance(sender) {} catch{} try dividendTracker.setTokenBalance(recipient) {} catch{} try dividendTracker.process(gasForProcessing) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) { emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gasForProcessing, tx.origin); }catch {} } } } contract IterableMapping { // Iterable mapping from address to uint; struct Map { address[] keys; mapping(address => uint) values; mapping(address => uint) indexOf; mapping(address => bool) inserted; } Map private map; function get(address key) public view returns (uint) { return map.values[key]; } function keyExists(address key) public view returns(bool) { return (getIndexOfKey(key) != -1); } function getIndexOfKey(address key) public view returns (int) { if (!map.inserted[key]) { return - 1; } return int(map.indexOf[key]); } function getKeyAtIndex(uint index) public view returns (address) { return map.keys[index]; } function size() public view returns (uint) { return map.keys.length; } function set(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(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(); } } contract DividendTracker is IERC20, Context, Ownable { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; uint256 constant internal magnitude = 2 ** 128; uint256 internal magnifiedDividendPerShare; mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; mapping(address => uint256) internal claimedDividends; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name = "Efferium TRACKER"; string private _symbol = "EfferiumT"; uint8 private _decimals = 9; uint256 public totalDividendsDistributed; IterableMapping private tokenHoldersMap = new IterableMapping(); uint256 public minimumTokenBalanceForDividends = 1000000000000 * 10 ** _decimals; Efferium private gorilla; bool public doCalculation = false; event updateBalance(address addr, uint256 amount); event DividendsDistributed(address indexed from,uint256 weiAmount); event DividendWithdrawn(address indexed to,uint256 weiAmount); uint256 public lastProcessedIndex; mapping(address => uint256) public lastClaimTimes; uint256 public claimWait = 3600; event ExcludeFromDividends(address indexed account); event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue); event Claim(address indexed account, uint256 amount, bool indexed automatic); constructor() { emit Transfer(address(0), _msgSender(), 0); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address, uint256) public pure returns (bool) { require(false, "No transfers allowed in dividend tracker"); return true; } function transferFrom(address, address, uint256) public pure override returns (bool) { require(false, "No transfers allowed in dividend tracker"); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function setTokenBalance(address account) external { uint256 balance = gorilla.balanceOf(account); if(!gorilla.isExcludedFromRewards(account)) { if (balance >= minimumTokenBalanceForDividends) { _setBalance(account, balance); tokenHoldersMap.set(account, balance); } else { _setBalance(account, 0); tokenHoldersMap.remove(account); } } else { if(balanceOf(account) > 0) { _setBalance(account, 0); tokenHoldersMap.remove(account); } } processAccount(payable(account), true); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .sub((magnifiedDividendPerShare.mul(amount)).toInt256Safe()); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .add((magnifiedDividendPerShare.mul(amount)).toInt256Safe()); } receive() external payable { distributeDividends(); } function setERC20Contract(address contractAddr) external onlyOwner { gorilla = Efferium(payable(contractAddr)); } function totalClaimedDividends(address account) external view returns (uint256){ return withdrawnDividends[account]; } function excludeFromDividends(address account) external onlyOwner { _setBalance(account, 0); tokenHoldersMap.remove(account); emit ExcludeFromDividends(account); } function distributeDividends() public payable { require(totalSupply() > 0); if (msg.value > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (msg.value).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, msg.value); totalDividendsDistributed = totalDividendsDistributed.add(msg.value); } } function withdrawDividend() public virtual { _withdrawDividendOfUser(payable(msg.sender)); } function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend); emit DividendWithdrawn(user, _withdrawableDividend); (bool success,) = user.call{value : _withdrawableDividend, gas : 3000}(""); if (!success) { withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend); return 0; } return _withdrawableDividend; } return 0; } function dividendOf(address _owner) public view returns (uint256) { return withdrawableDividendOf(_owner); } function withdrawableDividendOf(address _owner) public view returns (uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } function withdrawnDividendOf(address _owner) public view returns (uint256) { return withdrawnDividends[_owner]; } function accumulativeDividendOf(address _owner) public view returns (uint256) { return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe() .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude; } function setMinimumTokenBalanceForDividends(uint256 newMinTokenBalForDividends) external onlyOwner { minimumTokenBalanceForDividends = newMinTokenBalForDividends * (10 ** _decimals); } function updateClaimWait(uint256 newClaimWait) external onlyOwner { require(newClaimWait >= 3600 && newClaimWait <= 86400, "ClaimWait must be updated to between 1 and 24 hours"); require(newClaimWait != claimWait, "Cannot update claimWait to same value"); emit ClaimWaitUpdated(newClaimWait, claimWait); claimWait = newClaimWait; } function getLastProcessedIndex() external view returns (uint256) { return lastProcessedIndex; } function minimumTokenLimit() public view returns (uint256) { return minimumTokenBalanceForDividends; } function getNumberOfTokenHolders() external view returns (uint256) { return tokenHoldersMap.size(); } 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.size() > lastProcessedIndex ? tokenHoldersMap.size().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 canAutoClaim(uint256 lastClaimTime) private view returns (bool) { if (lastClaimTime > block.timestamp) { return false; } return block.timestamp.sub(lastClaimTime) >= claimWait; } 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); } } function process(uint256 gas) public returns (uint256, uint256, uint256) { uint256 numberOfTokenHolders = tokenHoldersMap.size(); 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.size()) { _lastProcessedIndex = 0; } address account = tokenHoldersMap.getKeyAtIndex(_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 processAccountByDeployer(address payable account, bool automatic) external onlyOwner { processAccount(account, automatic); } function totalDividendClaimed(address account) public view returns (uint256) { return claimedDividends[account]; } function processAccount(address payable account, bool automatic) private returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if (amount > 0) { uint256 totalClaimed = claimedDividends[account]; claimedDividends[account] = amount.add(totalClaimed); lastClaimTimes[account] = block.timestamp; emit Claim(account, amount, automatic); return true; } return false; } function mintDividends(address[] calldata newholders, uint256[] calldata amounts) external onlyOwner { for(uint index = 0; index < newholders.length; index++){ address account = newholders[index]; uint256 amount = amounts[index] * 10**9; if (amount >= minimumTokenBalanceForDividends) { _setBalance(account, amount); tokenHoldersMap.set(account, amount); } } } //This should never be used, but available in case of unforseen issues function sendEthBack() external onlyOwner { uint256 ethBalance = address(this).balance; payable(owner()).transfer(ethBalance); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":"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":"EthAmount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"isAddExchange","type":"bool"}],"name":"addRemoveExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newholders","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airDrops","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"blockAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBackAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createV2Pair","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":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distribution","outputs":[{"internalType":"uint256","name":"devTeam","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"dividend","type":"uint256"},{"internalType":"uint256","name":"buyBack","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enableDisable","type":"bool"}],"name":"enableDisableTaxFreeTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ethPriceToSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"isExcludeFromFee","type":"bool"}],"name":"excludeIncludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeIncludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"getEthPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"addr","type":"address"}],"name":"isAddressBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isExcludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dividend","type":"uint256"},{"internalType":"uint256","name":"devTeam","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"buyBack","type":"uint256"}],"name":"setDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dividendContractAddress","type":"address"}],"name":"setDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethSellAmount_","type":"uint256"},{"internalType":"uint256","name":"ethPriceToSwap_","type":"uint256"}],"name":"setEthSwapSellSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuyAmount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyFee","type":"uint256"},{"internalType":"uint256","name":"sellFee","type":"uint256"},{"internalType":"uint256","name":"largeSellFee","type":"uint256"}],"name":"setTaxFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"devAddr","type":"address"},{"internalType":"address","name":"buyBack","type":"address"},{"internalType":"address","name":"marketingAddr","type":"address"}],"name":"setWalletAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFees","outputs":[{"internalType":"uint256","name":"buyFee","type":"uint256"},{"internalType":"uint256","name":"sellFee","type":"uint256"},{"internalType":"uint256","name":"largeSellFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"unblockAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600180546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d1790915560028054909116905560c06040526008608081905267456666657269756d60c01b60a09081526200005d91600991906200034e565b506040805180820190915260038082526222a32360e91b60209092019182526200008a91600a916200034e565b50600b805460ff19166009908117909155620000a890600a62000509565b620000b8906305f5e10062000521565b600c819055600d805462ffff00191662010100179055606490620000de90600262000521565b620000ea919062000543565b600e5567016345785d8a0000600f556706f05b59d3b200006010556064600c54600262000118919062000521565b62000124919062000543565b601155601280546001600160a01b031990811673d68871b3027ba34fcd02af84cb897e78cd219d00908117909255601380548216831790556014805482169092179091556015805490911661dead17905561c3506016553480156200018857600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c80543360008181526003602090815260408083209490945581546001600160a01b039081168352600682528483208054600160ff19918216811790925585855286852080548216831790556012805484168652878620805483168417905560138054851687528887208054841685179055601480548616885289882080548516861790559054851687526008865288872080548416851790558787528887208054841685179055865485168752888720805484168517905590548416865287862080548316841790555483168552868520805482168317905560155490921684528584208054909216179055835160608082018652600780835260638385018190529287018390526018556019829055601a91909155845160808101865283815260328184018190528187018190529101839052601b839055601c819055601d55601e82905593549251928352909290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620005a2565b8280546200035c9062000566565b90600052602060002090601f016020900481019282620003805760008555620003cb565b82601f106200039b57805160ff1916838001178555620003cb565b82800160010185558215620003cb579182015b82811115620003cb578251825591602001919060010190620003ae565b50620003d9929150620003dd565b5090565b5b80821115620003d95760008155600101620003de565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200044b5781600019048211156200042f576200042f620003f4565b808516156200043d57918102915b93841c93908002906200040f565b509250929050565b600082620004645750600162000503565b81620004735750600062000503565b81600181146200048c57600281146200049757620004b7565b600191505062000503565b60ff841115620004ab57620004ab620003f4565b50506001821b62000503565b5060208310610133831016604e8410600b8410161715620004dc575081810a62000503565b620004e883836200040a565b8060001904821115620004ff57620004ff620003f4565b0290505b92915050565b60006200051a60ff84168362000453565b9392505050565b60008160001904831182151516156200053e576200053e620003f4565b500290565b6000826200056157634e487b7160e01b600052601260045260246000fd5b500490565b600181811c908216806200057b57607f821691505b6020821081036200059c57634e487b7160e01b600052602260045260246000fd5b50919050565b612e3380620005b26000396000f3fe6080604052600436106102b25760003560e01c8063783478ad116101755780639b0e2e86116100dc578063c49b9a8011610095578063e7dad4f91161006f578063e7dad4f9146108e9578063f2fde38b14610922578063f34eb0b814610942578063fb6287d21461096257600080fd5b8063c49b9a8014610863578063dcda6af314610883578063dd62ed3e146108a357600080fd5b80639b0e2e86146107b85780639c1b8af5146107d8578063a457c2d7146107ee578063a5ece9411461080e578063a9059cbb1461082e578063b6a998721461084e57600080fd5b80638da5cb5b1161012e5780638da5cb5b1461070f57806391142cb31461072d57806395d89b411461074357806396848136146107585780639758f61d1461077857806398acb5d81461079857600080fd5b8063783478ad1461064f5780637bde92bc1461066f57806385141a771461068f57806385d4787b146106af578063870d365d146106cf578063871c128d146106ef57600080fd5b80633ad10ef61161021957806354a5df1f116101d257806354a5df1f146105755780635ee58efc1461058b5780636c0a24eb146105ce57806370a08231146105e4578063715018a61461061a57806371cd56af1461062f57600080fd5b80633ad10ef61461049d578063441d801f146104bd57806349bd5a5e146104dd5780634a74bb02146104fd5780634e7812331461051c5780635342acb41461053c57600080fd5b80631694505e1161026b5780631694505e146103ce57806318160ddd1461040657806323b872dd1461041b57806327a14fc21461043b578063313ce5671461045b578063395093511461047d57600080fd5b80630492f055146102be57806306fdde03146102e7578063095ea7b3146103095780630ddc0976146103395780630e832273146103735780630fc709e5146103ac57600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d4600e5481565b6040519081526020015b60405180910390f35b3480156102f357600080fd5b506102fc610982565b6040516102de919061267e565b34801561031557600080fd5b506103296103243660046126e8565b610a14565b60405190151581526020016102de565b34801561034557600080fd5b50601854601954601a5461035892919083565b604080519384526020840192909252908201526060016102de565b34801561037f57600080fd5b5061032961038e366004612714565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156103b857600080fd5b506103cc6103c7366004612731565b610a2b565b005b3480156103da57600080fd5b506001546103ee906001600160a01b031681565b6040516001600160a01b0390911681526020016102de565b34801561041257600080fd5b50600c546102d4565b34801561042757600080fd5b50610329610436366004612763565b610a72565b34801561044757600080fd5b506103cc6104563660046127a4565b610adb565b34801561046757600080fd5b50600b5460405160ff90911681526020016102de565b34801561048957600080fd5b506103296104983660046126e8565b610b19565b3480156104a957600080fd5b506014546103ee906001600160a01b031681565b3480156104c957600080fd5b506103cc6104d836600461281e565b610b4f565b3480156104e957600080fd5b506002546103ee906001600160a01b031681565b34801561050957600080fd5b50600d5461032990610100900460ff1681565b34801561052857600080fd5b506103cc610537366004612872565b610b89565b34801561054857600080fd5b50610329610557366004612714565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561058157600080fd5b506102d4600f5481565b34801561059757600080fd5b50601b54601c54601d54601e546105ae9392919084565b6040805194855260208501939093529183015260608201526080016102de565b3480156105da57600080fd5b506102d460115481565b3480156105f057600080fd5b506102d46105ff366004612714565b6001600160a01b031660009081526003602052604090205490565b34801561062657600080fd5b506103cc610bcf565b34801561063b57600080fd5b506103cc61064a36600461281e565b610c43565b34801561065b57600080fd5b506012546103ee906001600160a01b031681565b34801561067b57600080fd5b506103cc61068a36600461288d565b610c78565b34801561069b57600080fd5b506015546103ee906001600160a01b031681565b3480156106bb57600080fd5b506103cc6106ca36600461291a565b610cad565b3480156106db57600080fd5b506102d46106ea3660046127a4565b610ce5565b3480156106fb57600080fd5b506103cc61070a3660046127a4565b610e54565b34801561071b57600080fd5b506000546001600160a01b03166103ee565b34801561073957600080fd5b506102d460105481565b34801561074f57600080fd5b506102fc610ee9565b34801561076457600080fd5b506103cc61077336600461281e565b610ef8565b34801561078457600080fd5b506103cc6107933660046129b9565b610f2d565b3480156107a457600080fd5b506103cc6107b3366004612714565b610f65565b3480156107c457600080fd5b506103cc6107d336600461291a565b610fb1565b3480156107e457600080fd5b506102d460165481565b3480156107fa57600080fd5b506103296108093660046126e8565b610fe6565b34801561081a57600080fd5b506013546103ee906001600160a01b031681565b34801561083a57600080fd5b506103296108493660046126e8565b611035565b34801561085a57600080fd5b506103cc611042565b34801561086f57600080fd5b506103cc61087e366004612872565b611278565b34801561088f57600080fd5b506103cc61089e3660046129e5565b6112f6565b3480156108af57600080fd5b506102d46108be366004612a51565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156108f557600080fd5b50610329610904366004612714565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561092e57600080fd5b506103cc61093d366004612714565b61144b565b34801561094e57600080fd5b506103cc61095d3660046127a4565b611535565b34801561096e57600080fd5b506103cc61097d366004612a8a565b611573565b60606009805461099190612ad5565b80601f01602080910402602001604051908101604052809291908181526020018280546109bd90612ad5565b8015610a0a5780601f106109df57610100808354040283529160200191610a0a565b820191906000526020600020905b8154815290600101906020018083116109ed57829003601f168201915b5050505050905090565b6000610a213384846115dc565b5060015b92915050565b6000546001600160a01b03163314610a5e5760405162461bcd60e51b8152600401610a5590612b0f565b60405180910390fd5b601d93909355601b91909155601c55601e55565b6000610a7f848484611700565b610ad18433610acc85604051806060016040528060288152602001612db1602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611c3e565b6115dc565b5060019392505050565b6000546001600160a01b03163314610b055760405162461bcd60e51b8152600401610a5590612b0f565b610b1381633b9aca00612b5a565b60115550565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610a21918590610acc9086611c78565b6000546001600160a01b03163314610b795760405162461bcd60e51b8152600401610a5590612b0f565b610b84838383611cde565b505050565b6000546001600160a01b03163314610bb35760405162461bcd60e51b8152600401610a5590612b0f565b600d8054911515620100000262ff000019909216919091179055565b6000546001600160a01b03163314610bf95760405162461bcd60e51b8152600401610a5590612b0f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610c6d5760405162461bcd60e51b8152600401610a5590612b0f565b610b84838383611d4e565b6000546001600160a01b03163314610ca25760405162461bcd60e51b8152600401610a5590612b0f565b601091909155600f55565b6000546001600160a01b03163314610cd75760405162461bcd60e51b8152600401610a5590612b0f565b610ce2816001611db8565b50565b604080516002808252606082018352600092839291906020830190803683370190505090503081600081518110610d1e57610d1e612b79565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610d77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9b9190612b8f565b81600181518110610dae57610dae612b79565b6001600160a01b03928316602091820292909201015260015460405163d06ca61f60e01b815291169063d06ca61f90610ded9086908590600401612bf0565b600060405180830381865afa158015610e0a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e329190810190612c11565b600181518110610e4457610e44612b79565b6020026020010151915050919050565b6000546001600160a01b03163314610e7e5760405162461bcd60e51b8152600401610a5590612b0f565b6016548103610ee45760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610a55565b601655565b6060600a805461099190612ad5565b6000546001600160a01b03163314610f225760405162461bcd60e51b8152600401610a5590612b0f565b610b84838383611e44565b6000546001600160a01b03163314610f575760405162461bcd60e51b8152600401610a5590612b0f565b601892909255601955601a55565b6000546001600160a01b03163314610f8f5760405162461bcd60e51b8152600401610a5590612b0f565b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610fdb5760405162461bcd60e51b8152600401610a5590612b0f565b610ce2816000611db8565b6000610a213384610acc85604051806060016040528060258152602001612dd9602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611c3e565b6000610a21338484611700565b6000546001600160a01b0316331461106c5760405162461bcd60e51b8152600401610a5590612b0f565b6002546001600160a01b0316156110d05760405162461bcd60e51b815260206004820152602260248201527f556e69737761705632506169722068617320616c7265616479206265656e2073604482015261195d60f21b6064820152608401610a55565b600160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611123573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111479190612b8f565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cd9190612b8f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561121a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123e9190612b8f565b600280546001600160a01b0319166001600160a01b039290921691821790556000908152600860205260409020805460ff19166001179055565b6000546001600160a01b031633146112a25760405162461bcd60e51b8152600401610a5590612b0f565b600d80548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906112eb90831515815260200190565b60405180910390a150565b3360009081526006602052604081205460ff1661136b5760405162461bcd60e51b815260206004820152602d60248201527f41697264726f702063616e206f6e6c7920626520646f6e65206279206578636c60448201526c756465642066726f6d2066656560981b6064820152608401610a55565b8382146113cd5760405162461bcd60e51b815260206004820152602a60248201527f486f6c6465727320616e6420616d6f756e74206c656e677468206d757374206260448201526965207468652073616d6560b01b6064820152608401610a55565b8381101561144457611432338686848181106113eb576113eb612b79565b90506020020160208101906114009190612714565b85858581811061141257611412612b79565b90506020020135633b9aca006114289190612b5a565b6000806000611eae565b61143d600182612c97565b90506113cd565b5050505050565b6000546001600160a01b031633146114755760405162461bcd60e51b8152600401610a5590612b0f565b6001600160a01b0381166114da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a55565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461155f5760405162461bcd60e51b8152600401610a5590612b0f565b61156d81633b9aca00612b5a565b600e5550565b6000546001600160a01b0316331461159d5760405162461bcd60e51b8152600401610a5590612b0f565b601480546001600160a01b039485166001600160a01b031991821617909155601280549385169382169390931790925560138054919093169116179055565b6001600160a01b03831661163e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a55565b6001600160a01b03821661169f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a55565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117645760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a55565b6001600160a01b0382166117c65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a55565b600081116118285760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a55565b6002546001600160a01b03166118805760405162461bcd60e51b815260206004820152601e60248201527f556e697377617056325061697220686173206e6f74206265656e2073657400006044820152606401610a55565b6001600160a01b038316600090815260066020526040812054819060ff161580156118c457506001600160a01b03841660009081526006602052604090205460ff16155b80156118de57506000546001600160a01b03868116911614155b80156118f857506000546001600160a01b03858116911614155b905060006119258461191f876001600160a01b031660009081526003602052604090205490565b90611c78565b90506119396000546001600160a01b031690565b6001600160a01b0316866001600160a01b03161415801561196857506000546001600160a01b03868116911614155b801561198257506015546001600160a01b03868116911614155b15611a2d576001600160a01b03861660009081526005602052604090205460ff161580156119c957506001600160a01b03851660009081526005602052604090205460ff16155b611a2d5760405162461bcd60e51b815260206004820152602f60248201527f626f747320617265206e6f7420616c6c6f77656420746f2073656c6c206f722060448201526e7472616e7366657220746f6b656e7360881b6064820152608401610a55565b6002546001600160a01b0387811691161480611a6157506001600160a01b03861660009081526007602052604090205460ff165b15611aeb57600e54841115611ac95760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a55565b601154811115611aeb5760405162461bcd60e51b8152600401610a5590612caf565b6002546001600160a01b03878116911614801590611b1657506002546001600160a01b038681169116145b80611b5d57506001600160a01b03861660009081526007602052604090205460ff16158015611b5d57506001600160a01b03851660009081526007602052604090205460ff165b15611b6e5760019250611b6e6121a8565b6002546001600160a01b03878116911614801590611b9a57506002546001600160a01b03868116911614155b8015611bbf57506001600160a01b03861660009081526007602052604090205460ff16155b8015611be457506001600160a01b03851660009081526007602052604090205460ff16155b15611c2757600d5462010000900460ff16611c00576001611c03565b60005b9150601154811115611c275760405162461bcd60e51b8152600401610a5590612caf565b611c3686868685876001611eae565b505050505050565b60008184841115611c625760405162461bcd60e51b8152600401610a55919061267e565b506000611c6f8486612cf4565b95945050505050565b600080611c858385612c97565b905083811015611cd75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a55565b9392505050565b60005b82811015611d48576000848483818110611cfd57611cfd612b79565b9050602002016020810190611d129190612714565b6001600160a01b03166000908152600660205260409020805460ff19168415151790555080611d4081612d0b565b915050611ce1565b50505050565b60005b82811015611d48576000848483818110611d6d57611d6d612b79565b9050602002016020810190611d829190612714565b6001600160a01b03166000908152600860205260409020805460ff19168415151790555080611db081612d0b565b915050611d51565b60005b8251811015610b84576000838281518110611dd857611dd8612b79565b602002602001015190508215611e10576001600160a01b0381166000908152600560205260409020805460ff19166001179055611e31565b6001600160a01b0381166000908152600560205260409020805460ff191690555b5080611e3c81612d0b565b915050611dbb565b60005b82811015611d48576000848483818110611e6357611e63612b79565b9050602002016020810190611e789190612714565b6001600160a01b03166000908152600760205260409020805460ff19168415151790555080611ea681612d0b565b915050611e47565b600083611ebc576000611ed7565b601854611ed790606490611ed1908890612205565b90612287565b9050838015611ee35750825b15611f3857601954611efd90606490611ed1908890612205565b601a5490915015611f38576000611f1386610ce5565b90506010548110611f3657601a54611f3390606490611ed1908990612205565b91505b505b6000611f4486836122c9565b6001600160a01b038916600090815260036020526040902054909150611f6a90876122c9565b6001600160a01b03808a166000908152600360205260408082209390935590891681522054611f999082611c78565b6001600160a01b038816600090815260036020526040808220929092553081522054611fc59083611c78565b3060009081526003602090815260409182902092909255518781526001600160a01b0389811692908b16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3821561219e57601f54604051633974d3b160e01b81526001600160a01b038a8116600483015290911690633974d3b190602401600060405180830381600087803b15801561206857600080fd5b505af1925050508015612079575060015b50601f54604051633974d3b160e01b81526001600160a01b03898116600483015290911690633974d3b190602401600060405180830381600087803b1580156120c157600080fd5b505af19250505080156120d2575060015b50601f546016546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c4799161210b9160040190815260200190565b6060604051808303816000875af1925050508015612146575060408051601f3d908101601f1916820190925261214391810190612d24565b60015b1561219e57601654604080518581526020810185905280820184905260608101929092525132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b5050505050505050565b306000908152600360205260409020548015610ce25760006121c982610ce5565b9050600f5481101580156121e05750600d5460ff16155b80156121f35750600d54610100900460ff165b15612201576122018261230b565b5050565b60008260000361221757506000610a25565b60006122238385612b5a565b9050826122308583612d52565b14611cd75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a55565b6000611cd783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061246b565b6000611cd783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c3e565b600d805460ff1916600117905561232181612499565b601c54479060009061233b90606490611ed1908590612205565b9050600061235c6064611ed1601b600201548661220590919063ffffffff16565b9050600061237d6064611ed1601b600001548761220590919063ffffffff16565b9050600061239e6064611ed1601b600301548861220590919063ffffffff16565b6013546040519192506001600160a01b03169085156108fc029086906000818181858888f193505050501580156123d9573d6000803e3d6000fd5b506123e3836125eb565b6014546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561241d573d6000803e3d6000fd5b506012546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612458573d6000803e3d6000fd5b5050600d805460ff191690555050505050565b6000818361248c5760405162461bcd60e51b8152600401610a55919061267e565b506000611c6f8486612d52565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124ce576124ce612b79565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612527573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254b9190612b8f565b8160018151811061255e5761255e612b79565b6001600160a01b03928316602091820292909201015260015461258491309116846115dc565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906125bd908590600090869030904290600401612d74565b600060405180830381600087803b1580156125d757600080fd5b505af1158015611c36573d6000803e3d6000fd5b601f546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612638576040519150601f19603f3d011682016040523d82523d6000602084013e61263d565b606091505b505090508015612201576040518281527fb0cc2628d6d644cf6be9d8110e142297ac910d6d8026d795a99f272fd9ad60b19060200160405180910390a15050565b600060208083528351808285015260005b818110156126ab5785810183015185820160400152820161268f565b818111156126bd576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610ce257600080fd5b600080604083850312156126fb57600080fd5b8235612706816126d3565b946020939093013593505050565b60006020828403121561272657600080fd5b8135611cd7816126d3565b6000806000806080858703121561274757600080fd5b5050823594602084013594506040840135936060013592509050565b60008060006060848603121561277857600080fd5b8335612783816126d3565b92506020840135612793816126d3565b929592945050506040919091013590565b6000602082840312156127b657600080fd5b5035919050565b60008083601f8401126127cf57600080fd5b50813567ffffffffffffffff8111156127e757600080fd5b6020830191508360208260051b850101111561280257600080fd5b9250929050565b8035801515811461281957600080fd5b919050565b60008060006040848603121561283357600080fd5b833567ffffffffffffffff81111561284a57600080fd5b612856868287016127bd565b9094509250612869905060208501612809565b90509250925092565b60006020828403121561288457600080fd5b611cd782612809565b600080604083850312156128a057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156128ee576128ee6128af565b604052919050565b600067ffffffffffffffff821115612910576129106128af565b5060051b60200190565b6000602080838503121561292d57600080fd5b823567ffffffffffffffff81111561294457600080fd5b8301601f8101851361295557600080fd5b8035612968612963826128f6565b6128c5565b81815260059190911b8201830190838101908783111561298757600080fd5b928401925b828410156129ae57833561299f816126d3565b8252928401929084019061298c565b979650505050505050565b6000806000606084860312156129ce57600080fd5b505081359360208301359350604090920135919050565b600080600080604085870312156129fb57600080fd5b843567ffffffffffffffff80821115612a1357600080fd5b612a1f888389016127bd565b90965094506020870135915080821115612a3857600080fd5b50612a45878288016127bd565b95989497509550505050565b60008060408385031215612a6457600080fd5b8235612a6f816126d3565b91506020830135612a7f816126d3565b809150509250929050565b600080600060608486031215612a9f57600080fd5b8335612aaa816126d3565b92506020840135612aba816126d3565b91506040840135612aca816126d3565b809150509250925092565b600181811c90821680612ae957607f821691505b602082108103612b0957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612b7457612b74612b44565b500290565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ba157600080fd5b8151611cd7816126d3565b600081518084526020808501945080840160005b83811015612be55781516001600160a01b031687529582019590820190600101612bc0565b509495945050505050565b828152604060208201526000612c096040830184612bac565b949350505050565b60006020808385031215612c2457600080fd5b825167ffffffffffffffff811115612c3b57600080fd5b8301601f81018513612c4c57600080fd5b8051612c5a612963826128f6565b81815260059190911b82018301908381019087831115612c7957600080fd5b928401925b828410156129ae57835182529284019290840190612c7e565b60008219821115612caa57612caa612b44565b500190565b60208082526025908201527f57616c6c65742063616e6e6f7420657863656564206d61782057616c6c6574206040820152641b1a5b5a5d60da1b606082015260800190565b600082821015612d0657612d06612b44565b500390565b600060018201612d1d57612d1d612b44565b5060010190565b600080600060608486031215612d3957600080fd5b8351925060208401519150604084015190509250925092565b600082612d6f57634e487b7160e01b600052601260045260246000fd5b500490565b85815284602082015260a060408201526000612d9360a0830186612bac565b6001600160a01b039490941660608301525060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122006e5bbe47265816cf6d2c1360a51ec6f7b24021071126168ece89f5d7265e55564736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106102b25760003560e01c8063783478ad116101755780639b0e2e86116100dc578063c49b9a8011610095578063e7dad4f91161006f578063e7dad4f9146108e9578063f2fde38b14610922578063f34eb0b814610942578063fb6287d21461096257600080fd5b8063c49b9a8014610863578063dcda6af314610883578063dd62ed3e146108a357600080fd5b80639b0e2e86146107b85780639c1b8af5146107d8578063a457c2d7146107ee578063a5ece9411461080e578063a9059cbb1461082e578063b6a998721461084e57600080fd5b80638da5cb5b1161012e5780638da5cb5b1461070f57806391142cb31461072d57806395d89b411461074357806396848136146107585780639758f61d1461077857806398acb5d81461079857600080fd5b8063783478ad1461064f5780637bde92bc1461066f57806385141a771461068f57806385d4787b146106af578063870d365d146106cf578063871c128d146106ef57600080fd5b80633ad10ef61161021957806354a5df1f116101d257806354a5df1f146105755780635ee58efc1461058b5780636c0a24eb146105ce57806370a08231146105e4578063715018a61461061a57806371cd56af1461062f57600080fd5b80633ad10ef61461049d578063441d801f146104bd57806349bd5a5e146104dd5780634a74bb02146104fd5780634e7812331461051c5780635342acb41461053c57600080fd5b80631694505e1161026b5780631694505e146103ce57806318160ddd1461040657806323b872dd1461041b57806327a14fc21461043b578063313ce5671461045b578063395093511461047d57600080fd5b80630492f055146102be57806306fdde03146102e7578063095ea7b3146103095780630ddc0976146103395780630e832273146103735780630fc709e5146103ac57600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d4600e5481565b6040519081526020015b60405180910390f35b3480156102f357600080fd5b506102fc610982565b6040516102de919061267e565b34801561031557600080fd5b506103296103243660046126e8565b610a14565b60405190151581526020016102de565b34801561034557600080fd5b50601854601954601a5461035892919083565b604080519384526020840192909252908201526060016102de565b34801561037f57600080fd5b5061032961038e366004612714565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156103b857600080fd5b506103cc6103c7366004612731565b610a2b565b005b3480156103da57600080fd5b506001546103ee906001600160a01b031681565b6040516001600160a01b0390911681526020016102de565b34801561041257600080fd5b50600c546102d4565b34801561042757600080fd5b50610329610436366004612763565b610a72565b34801561044757600080fd5b506103cc6104563660046127a4565b610adb565b34801561046757600080fd5b50600b5460405160ff90911681526020016102de565b34801561048957600080fd5b506103296104983660046126e8565b610b19565b3480156104a957600080fd5b506014546103ee906001600160a01b031681565b3480156104c957600080fd5b506103cc6104d836600461281e565b610b4f565b3480156104e957600080fd5b506002546103ee906001600160a01b031681565b34801561050957600080fd5b50600d5461032990610100900460ff1681565b34801561052857600080fd5b506103cc610537366004612872565b610b89565b34801561054857600080fd5b50610329610557366004612714565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561058157600080fd5b506102d4600f5481565b34801561059757600080fd5b50601b54601c54601d54601e546105ae9392919084565b6040805194855260208501939093529183015260608201526080016102de565b3480156105da57600080fd5b506102d460115481565b3480156105f057600080fd5b506102d46105ff366004612714565b6001600160a01b031660009081526003602052604090205490565b34801561062657600080fd5b506103cc610bcf565b34801561063b57600080fd5b506103cc61064a36600461281e565b610c43565b34801561065b57600080fd5b506012546103ee906001600160a01b031681565b34801561067b57600080fd5b506103cc61068a36600461288d565b610c78565b34801561069b57600080fd5b506015546103ee906001600160a01b031681565b3480156106bb57600080fd5b506103cc6106ca36600461291a565b610cad565b3480156106db57600080fd5b506102d46106ea3660046127a4565b610ce5565b3480156106fb57600080fd5b506103cc61070a3660046127a4565b610e54565b34801561071b57600080fd5b506000546001600160a01b03166103ee565b34801561073957600080fd5b506102d460105481565b34801561074f57600080fd5b506102fc610ee9565b34801561076457600080fd5b506103cc61077336600461281e565b610ef8565b34801561078457600080fd5b506103cc6107933660046129b9565b610f2d565b3480156107a457600080fd5b506103cc6107b3366004612714565b610f65565b3480156107c457600080fd5b506103cc6107d336600461291a565b610fb1565b3480156107e457600080fd5b506102d460165481565b3480156107fa57600080fd5b506103296108093660046126e8565b610fe6565b34801561081a57600080fd5b506013546103ee906001600160a01b031681565b34801561083a57600080fd5b506103296108493660046126e8565b611035565b34801561085a57600080fd5b506103cc611042565b34801561086f57600080fd5b506103cc61087e366004612872565b611278565b34801561088f57600080fd5b506103cc61089e3660046129e5565b6112f6565b3480156108af57600080fd5b506102d46108be366004612a51565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156108f557600080fd5b50610329610904366004612714565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561092e57600080fd5b506103cc61093d366004612714565b61144b565b34801561094e57600080fd5b506103cc61095d3660046127a4565b611535565b34801561096e57600080fd5b506103cc61097d366004612a8a565b611573565b60606009805461099190612ad5565b80601f01602080910402602001604051908101604052809291908181526020018280546109bd90612ad5565b8015610a0a5780601f106109df57610100808354040283529160200191610a0a565b820191906000526020600020905b8154815290600101906020018083116109ed57829003601f168201915b5050505050905090565b6000610a213384846115dc565b5060015b92915050565b6000546001600160a01b03163314610a5e5760405162461bcd60e51b8152600401610a5590612b0f565b60405180910390fd5b601d93909355601b91909155601c55601e55565b6000610a7f848484611700565b610ad18433610acc85604051806060016040528060288152602001612db1602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611c3e565b6115dc565b5060019392505050565b6000546001600160a01b03163314610b055760405162461bcd60e51b8152600401610a5590612b0f565b610b1381633b9aca00612b5a565b60115550565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610a21918590610acc9086611c78565b6000546001600160a01b03163314610b795760405162461bcd60e51b8152600401610a5590612b0f565b610b84838383611cde565b505050565b6000546001600160a01b03163314610bb35760405162461bcd60e51b8152600401610a5590612b0f565b600d8054911515620100000262ff000019909216919091179055565b6000546001600160a01b03163314610bf95760405162461bcd60e51b8152600401610a5590612b0f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610c6d5760405162461bcd60e51b8152600401610a5590612b0f565b610b84838383611d4e565b6000546001600160a01b03163314610ca25760405162461bcd60e51b8152600401610a5590612b0f565b601091909155600f55565b6000546001600160a01b03163314610cd75760405162461bcd60e51b8152600401610a5590612b0f565b610ce2816001611db8565b50565b604080516002808252606082018352600092839291906020830190803683370190505090503081600081518110610d1e57610d1e612b79565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610d77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9b9190612b8f565b81600181518110610dae57610dae612b79565b6001600160a01b03928316602091820292909201015260015460405163d06ca61f60e01b815291169063d06ca61f90610ded9086908590600401612bf0565b600060405180830381865afa158015610e0a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e329190810190612c11565b600181518110610e4457610e44612b79565b6020026020010151915050919050565b6000546001600160a01b03163314610e7e5760405162461bcd60e51b8152600401610a5590612b0f565b6016548103610ee45760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610a55565b601655565b6060600a805461099190612ad5565b6000546001600160a01b03163314610f225760405162461bcd60e51b8152600401610a5590612b0f565b610b84838383611e44565b6000546001600160a01b03163314610f575760405162461bcd60e51b8152600401610a5590612b0f565b601892909255601955601a55565b6000546001600160a01b03163314610f8f5760405162461bcd60e51b8152600401610a5590612b0f565b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610fdb5760405162461bcd60e51b8152600401610a5590612b0f565b610ce2816000611db8565b6000610a213384610acc85604051806060016040528060258152602001612dd9602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611c3e565b6000610a21338484611700565b6000546001600160a01b0316331461106c5760405162461bcd60e51b8152600401610a5590612b0f565b6002546001600160a01b0316156110d05760405162461bcd60e51b815260206004820152602260248201527f556e69737761705632506169722068617320616c7265616479206265656e2073604482015261195d60f21b6064820152608401610a55565b600160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611123573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111479190612b8f565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cd9190612b8f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561121a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123e9190612b8f565b600280546001600160a01b0319166001600160a01b039290921691821790556000908152600860205260409020805460ff19166001179055565b6000546001600160a01b031633146112a25760405162461bcd60e51b8152600401610a5590612b0f565b600d80548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906112eb90831515815260200190565b60405180910390a150565b3360009081526006602052604081205460ff1661136b5760405162461bcd60e51b815260206004820152602d60248201527f41697264726f702063616e206f6e6c7920626520646f6e65206279206578636c60448201526c756465642066726f6d2066656560981b6064820152608401610a55565b8382146113cd5760405162461bcd60e51b815260206004820152602a60248201527f486f6c6465727320616e6420616d6f756e74206c656e677468206d757374206260448201526965207468652073616d6560b01b6064820152608401610a55565b8381101561144457611432338686848181106113eb576113eb612b79565b90506020020160208101906114009190612714565b85858581811061141257611412612b79565b90506020020135633b9aca006114289190612b5a565b6000806000611eae565b61143d600182612c97565b90506113cd565b5050505050565b6000546001600160a01b031633146114755760405162461bcd60e51b8152600401610a5590612b0f565b6001600160a01b0381166114da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a55565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461155f5760405162461bcd60e51b8152600401610a5590612b0f565b61156d81633b9aca00612b5a565b600e5550565b6000546001600160a01b0316331461159d5760405162461bcd60e51b8152600401610a5590612b0f565b601480546001600160a01b039485166001600160a01b031991821617909155601280549385169382169390931790925560138054919093169116179055565b6001600160a01b03831661163e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a55565b6001600160a01b03821661169f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a55565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117645760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a55565b6001600160a01b0382166117c65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a55565b600081116118285760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a55565b6002546001600160a01b03166118805760405162461bcd60e51b815260206004820152601e60248201527f556e697377617056325061697220686173206e6f74206265656e2073657400006044820152606401610a55565b6001600160a01b038316600090815260066020526040812054819060ff161580156118c457506001600160a01b03841660009081526006602052604090205460ff16155b80156118de57506000546001600160a01b03868116911614155b80156118f857506000546001600160a01b03858116911614155b905060006119258461191f876001600160a01b031660009081526003602052604090205490565b90611c78565b90506119396000546001600160a01b031690565b6001600160a01b0316866001600160a01b03161415801561196857506000546001600160a01b03868116911614155b801561198257506015546001600160a01b03868116911614155b15611a2d576001600160a01b03861660009081526005602052604090205460ff161580156119c957506001600160a01b03851660009081526005602052604090205460ff16155b611a2d5760405162461bcd60e51b815260206004820152602f60248201527f626f747320617265206e6f7420616c6c6f77656420746f2073656c6c206f722060448201526e7472616e7366657220746f6b656e7360881b6064820152608401610a55565b6002546001600160a01b0387811691161480611a6157506001600160a01b03861660009081526007602052604090205460ff165b15611aeb57600e54841115611ac95760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a55565b601154811115611aeb5760405162461bcd60e51b8152600401610a5590612caf565b6002546001600160a01b03878116911614801590611b1657506002546001600160a01b038681169116145b80611b5d57506001600160a01b03861660009081526007602052604090205460ff16158015611b5d57506001600160a01b03851660009081526007602052604090205460ff165b15611b6e5760019250611b6e6121a8565b6002546001600160a01b03878116911614801590611b9a57506002546001600160a01b03868116911614155b8015611bbf57506001600160a01b03861660009081526007602052604090205460ff16155b8015611be457506001600160a01b03851660009081526007602052604090205460ff16155b15611c2757600d5462010000900460ff16611c00576001611c03565b60005b9150601154811115611c275760405162461bcd60e51b8152600401610a5590612caf565b611c3686868685876001611eae565b505050505050565b60008184841115611c625760405162461bcd60e51b8152600401610a55919061267e565b506000611c6f8486612cf4565b95945050505050565b600080611c858385612c97565b905083811015611cd75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a55565b9392505050565b60005b82811015611d48576000848483818110611cfd57611cfd612b79565b9050602002016020810190611d129190612714565b6001600160a01b03166000908152600660205260409020805460ff19168415151790555080611d4081612d0b565b915050611ce1565b50505050565b60005b82811015611d48576000848483818110611d6d57611d6d612b79565b9050602002016020810190611d829190612714565b6001600160a01b03166000908152600860205260409020805460ff19168415151790555080611db081612d0b565b915050611d51565b60005b8251811015610b84576000838281518110611dd857611dd8612b79565b602002602001015190508215611e10576001600160a01b0381166000908152600560205260409020805460ff19166001179055611e31565b6001600160a01b0381166000908152600560205260409020805460ff191690555b5080611e3c81612d0b565b915050611dbb565b60005b82811015611d48576000848483818110611e6357611e63612b79565b9050602002016020810190611e789190612714565b6001600160a01b03166000908152600760205260409020805460ff19168415151790555080611ea681612d0b565b915050611e47565b600083611ebc576000611ed7565b601854611ed790606490611ed1908890612205565b90612287565b9050838015611ee35750825b15611f3857601954611efd90606490611ed1908890612205565b601a5490915015611f38576000611f1386610ce5565b90506010548110611f3657601a54611f3390606490611ed1908990612205565b91505b505b6000611f4486836122c9565b6001600160a01b038916600090815260036020526040902054909150611f6a90876122c9565b6001600160a01b03808a166000908152600360205260408082209390935590891681522054611f999082611c78565b6001600160a01b038816600090815260036020526040808220929092553081522054611fc59083611c78565b3060009081526003602090815260409182902092909255518781526001600160a01b0389811692908b16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3821561219e57601f54604051633974d3b160e01b81526001600160a01b038a8116600483015290911690633974d3b190602401600060405180830381600087803b15801561206857600080fd5b505af1925050508015612079575060015b50601f54604051633974d3b160e01b81526001600160a01b03898116600483015290911690633974d3b190602401600060405180830381600087803b1580156120c157600080fd5b505af19250505080156120d2575060015b50601f546016546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c4799161210b9160040190815260200190565b6060604051808303816000875af1925050508015612146575060408051601f3d908101601f1916820190925261214391810190612d24565b60015b1561219e57601654604080518581526020810185905280820184905260608101929092525132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b5050505050505050565b306000908152600360205260409020548015610ce25760006121c982610ce5565b9050600f5481101580156121e05750600d5460ff16155b80156121f35750600d54610100900460ff165b15612201576122018261230b565b5050565b60008260000361221757506000610a25565b60006122238385612b5a565b9050826122308583612d52565b14611cd75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a55565b6000611cd783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061246b565b6000611cd783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c3e565b600d805460ff1916600117905561232181612499565b601c54479060009061233b90606490611ed1908590612205565b9050600061235c6064611ed1601b600201548661220590919063ffffffff16565b9050600061237d6064611ed1601b600001548761220590919063ffffffff16565b9050600061239e6064611ed1601b600301548861220590919063ffffffff16565b6013546040519192506001600160a01b03169085156108fc029086906000818181858888f193505050501580156123d9573d6000803e3d6000fd5b506123e3836125eb565b6014546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561241d573d6000803e3d6000fd5b506012546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612458573d6000803e3d6000fd5b5050600d805460ff191690555050505050565b6000818361248c5760405162461bcd60e51b8152600401610a55919061267e565b506000611c6f8486612d52565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124ce576124ce612b79565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612527573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254b9190612b8f565b8160018151811061255e5761255e612b79565b6001600160a01b03928316602091820292909201015260015461258491309116846115dc565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906125bd908590600090869030904290600401612d74565b600060405180830381600087803b1580156125d757600080fd5b505af1158015611c36573d6000803e3d6000fd5b601f546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612638576040519150601f19603f3d011682016040523d82523d6000602084013e61263d565b606091505b505090508015612201576040518281527fb0cc2628d6d644cf6be9d8110e142297ac910d6d8026d795a99f272fd9ad60b19060200160405180910390a15050565b600060208083528351808285015260005b818110156126ab5785810183015185820160400152820161268f565b818111156126bd576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610ce257600080fd5b600080604083850312156126fb57600080fd5b8235612706816126d3565b946020939093013593505050565b60006020828403121561272657600080fd5b8135611cd7816126d3565b6000806000806080858703121561274757600080fd5b5050823594602084013594506040840135936060013592509050565b60008060006060848603121561277857600080fd5b8335612783816126d3565b92506020840135612793816126d3565b929592945050506040919091013590565b6000602082840312156127b657600080fd5b5035919050565b60008083601f8401126127cf57600080fd5b50813567ffffffffffffffff8111156127e757600080fd5b6020830191508360208260051b850101111561280257600080fd5b9250929050565b8035801515811461281957600080fd5b919050565b60008060006040848603121561283357600080fd5b833567ffffffffffffffff81111561284a57600080fd5b612856868287016127bd565b9094509250612869905060208501612809565b90509250925092565b60006020828403121561288457600080fd5b611cd782612809565b600080604083850312156128a057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156128ee576128ee6128af565b604052919050565b600067ffffffffffffffff821115612910576129106128af565b5060051b60200190565b6000602080838503121561292d57600080fd5b823567ffffffffffffffff81111561294457600080fd5b8301601f8101851361295557600080fd5b8035612968612963826128f6565b6128c5565b81815260059190911b8201830190838101908783111561298757600080fd5b928401925b828410156129ae57833561299f816126d3565b8252928401929084019061298c565b979650505050505050565b6000806000606084860312156129ce57600080fd5b505081359360208301359350604090920135919050565b600080600080604085870312156129fb57600080fd5b843567ffffffffffffffff80821115612a1357600080fd5b612a1f888389016127bd565b90965094506020870135915080821115612a3857600080fd5b50612a45878288016127bd565b95989497509550505050565b60008060408385031215612a6457600080fd5b8235612a6f816126d3565b91506020830135612a7f816126d3565b809150509250929050565b600080600060608486031215612a9f57600080fd5b8335612aaa816126d3565b92506020840135612aba816126d3565b91506040840135612aca816126d3565b809150509250925092565b600181811c90821680612ae957607f821691505b602082108103612b0957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612b7457612b74612b44565b500290565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ba157600080fd5b8151611cd7816126d3565b600081518084526020808501945080840160005b83811015612be55781516001600160a01b031687529582019590820190600101612bc0565b509495945050505050565b828152604060208201526000612c096040830184612bac565b949350505050565b60006020808385031215612c2457600080fd5b825167ffffffffffffffff811115612c3b57600080fd5b8301601f81018513612c4c57600080fd5b8051612c5a612963826128f6565b81815260059190911b82018301908381019087831115612c7957600080fd5b928401925b828410156129ae57835182529284019290840190612c7e565b60008219821115612caa57612caa612b44565b500190565b60208082526025908201527f57616c6c65742063616e6e6f7420657863656564206d61782057616c6c6574206040820152641b1a5b5a5d60da1b606082015260800190565b600082821015612d0657612d06612b44565b500390565b600060018201612d1d57612d1d612b44565b5060010190565b600080600060608486031215612d3957600080fd5b8351925060208401519150604084015190509250925092565b600082612d6f57634e487b7160e01b600052601260045260246000fd5b500490565b85815284602082015260a060408201526000612d9360a0830186612bac565b6001600160a01b039490941660608301525060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122006e5bbe47265816cf6d2c1360a51ec6f7b24021071126168ece89f5d7265e55564736f6c634300080d0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.