Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 DEFI
Holders
26
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MMMDEFITOKENS
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-11 */ pragma solidity ^0.4.23; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. **/ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. **/ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). **/ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. **/ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". **/ contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender account. **/ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. **/ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. **/ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title ERC20Basic interface * @dev Basic ERC20 interface **/ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 **/ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. **/ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence **/ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. **/ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. **/ function balanceOf(address _owner) public view returns (uint256) { return balances[_owner]; } } contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; address public owner; event Transfer(address indexed from, address indexed to, uint256 value); mapping(address => uint256) internal tokenBalanceLedger_; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred **/ // Defining a constructor function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. **/ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. **/ function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. **/ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. **/ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } // Defining a constructor constructor() public{ owner=msg.sender; } function contractBalance() public view returns (uint) { return address(this).balance; } function PurchageToken() public payable { //address _customerAddress = msg.sender; uint256 _balance = msg.value; if (_balance > msg.sender.balance) {revert("Amount unmatched");} /*owner.transfer(_internalTxn);*/ tokenBalanceLedger_[address(this)] = SafeMath.add(tokenBalanceLedger_[address(this)],_balance); /** Below line is for DEFI. emit Transfer(_customerAddress,owner,_balance); */ } function SellToken(address _receiver, uint256 _withdrawAmount) public { //uint256 _contractBalance = contractBalance(); if (msg.sender != address(this) && msg.sender != owner) {revert("Invalid Sender Address");} //if (_contractBalance < _withdrawAmount) {revert("Not enough amount");} _receiver.transfer(_withdrawAmount); tokenBalanceLedger_[address(this)] = SafeMath.sub(tokenBalanceLedger_[address(this)],_withdrawAmount); /** Below line is for DEFI. emit Transfer(address(this),_receiver,_withdrawAmount); */ } } /** * @title Configurable * @dev Configurable varriables of the contract **/ contract Configurable { uint256 public constant cap = 1000000*10**6; uint256 public constant basePrice = 100*10**6; // tokens per 1 ether uint256 public tokensSold = 0; uint256 public constant tokenReserve = 1000000*10**6; uint256 public remainingTokens = 0; } /** * @title CrowdsaleToken * @dev Contract to preform crowd sale with token **/ contract CrowdsaleToken is StandardToken, Configurable, Ownable { /** * @dev enum of current crowd sale state **/ enum Stages { none, icoStart, icoEnd } Stages currentStage; /** * @dev constructor of CrowdsaleToken **/ constructor() public { currentStage = Stages.none; balances[owner] = balances[owner].add(tokenReserve); totalSupply_ = totalSupply_.add(tokenReserve); remainingTokens = cap; emit Transfer(address(this), owner, tokenReserve); } /** * @dev fallback function to send ether to for Crowd sale **/ function () public payable { require(currentStage == Stages.icoStart); require(msg.value > 0); require(remainingTokens > 0); uint256 weiAmount = msg.value; // Calculate tokens to sell uint256 tokens = weiAmount.mul(basePrice).div(1 ether); uint256 returnWei = 0; if(tokensSold.add(tokens) > cap){ uint256 newTokens = cap.sub(tokensSold); uint256 newWei = newTokens.div(basePrice).mul(1 ether); returnWei = weiAmount.sub(newWei); weiAmount = newWei; tokens = newTokens; } tokensSold = tokensSold.add(tokens); // Increment raised amount remainingTokens = cap.sub(tokensSold); if(returnWei > 0){ msg.sender.transfer(returnWei); emit Transfer(address(this), msg.sender, returnWei); } balances[msg.sender] = balances[msg.sender].add(tokens); emit Transfer(address(this), msg.sender, tokens); totalSupply_ = totalSupply_.add(tokens); owner.transfer(weiAmount);// Send money to owner } /** * @dev startIco starts the public ICO **/ function startIco() public onlyOwner { require(currentStage != Stages.icoEnd); currentStage = Stages.icoStart; } /** * @dev endIco closes down the ICO **/ function endIco() internal { currentStage = Stages.icoEnd; // Transfer any remaining tokens if(remainingTokens > 0) balances[owner] = balances[owner].add(remainingTokens); // transfer any remaining ETH balance in the contract to the owner owner.transfer(address(this).balance); } /** * @dev finalizeIco closes down the ICO and sets needed varriables **/ function finalizeIco() public onlyOwner { require(currentStage != Stages.icoEnd); endIco(); } /* function getCommFunds(uint256 _amount) onlyAdministrator() public { if(_amount <= commFunds) { etherBalanceLedger_[dev2]+=(_amount*20/100); etherBalanceLedger_[dev3]+=(_amount*20/100); etherBalanceLedger_[dev4]+=(_amount*25/100); etherBalanceLedger_[dev5]+=(_amount*10/100); etherBalanceLedger_[dev6]+=(_amount*25/100); commFunds = SafeMath.sub(commFunds,_amount); } } function redeemTokens() public returns(uint256) { address _customerAddress = msg.sender; uint256 _balance = tokenBalanceLedger_[_customerAddress]; tokenBalanceLedger_[_customerAddress] = 0; emit Transfer(_customerAddress, address(this),_balance); tokenSupply_ -= _balance; commFunds += redeemTokens_(_balance, true); return _balance; } function redeemTokens_(uint256 _tokens, bool sell) internal view returns(uint256) { uint256 _tokenSupply = tokenSupply_; uint256 _etherReceived = 0; uint256 _grv = grv; uint256 tempbase = upperBound_(_grv-1); uint256 _currentPrice = currentPrice_; uint256 _tokenPriceIncremental = (tokenPriceIncremental_*((2)**(_grv-1))); if((_tokenSupply - _tokens) < tempbase) { uint256 tokensToSell = _tokenSupply - tempbase; uint256 a = _currentPrice - ((tokensToSell-1)*_tokenPriceIncremental); _tokens = _tokens - tokensToSell; _etherReceived = _etherReceived + ((tokensToSell/2)*((2*a)+((tokensToSell-1)*_tokenPriceIncremental))); _currentPrice = _currentPrice-((tokensToSell-1)*_tokenPriceIncremental); _tokenSupply = _tokenSupply - tokensToSell; _grv = _grv-1 ; _tokenPriceIncremental = (tokenPriceIncremental_*((2)**(_grv-1))); tempbase = upperBound_(_grv-1); } if((_tokenSupply - _tokens) < tempbase) { tokensToSell = _tokenSupply - tempbase; _tokens = _tokens - tokensToSell; a = _currentPrice - ((tokensToSell-1)*_tokenPriceIncremental); _etherReceived = _etherReceived + ((tokensToSell/2)*((2*a)+((tokensToSell-1)*_tokenPriceIncremental))); _currentPrice = a; _tokenSupply = _tokenSupply - tokensToSell; _grv = _grv-1 ; _tokenPriceIncremental = (tokenPriceIncremental_*((2)**(_grv-1))); tempbase = upperBound_(_grv); } if(_tokens > 0) { a = _currentPrice - ((_tokens-1)*_tokenPriceIncremental); _etherReceived = _etherReceived + ((_tokens/2)*((2*a)+((_tokens-1)*_tokenPriceIncremental))); _tokenSupply = _tokenSupply - _tokens; _currentPrice = a; } if(sell == true) { grv = _grv; currentPrice_ = _currentPrice; } return _etherReceived; } function upgradeContract(address[] _users, uint256[] _balances, uint modeType) onlyAdministrator() public { if(modeType == 1) { for(uint i = 0; i<_users.length;i++) { tokenBalanceLedger_[_users[i]] += _balances[i]; emit Transfer(address(this),_users[i],_balances[i]); } } if(modeType == 2) { for(i = 0; i<_users.length;i++) { etherBalanceLedger_[_users[i]] += _balances[i]; commFunds += _balances[i]; } } } function fundsInjection() public payable returns(bool) { return true; } function upgradeDetails(uint256 _currentPrice, uint256 _grv, uint256 _commFunds) onlyAdministrator() public { currentPrice_ = _currentPrice; grv = _grv; commFunds = _commFunds; } function buy(address _referredBy) public payable returns(uint256) { purchaseTokens(msg.value, _referredBy); } */ } /** * @title LavevelToken * @dev Contract to create the DEFI Token **/ contract MMMDEFITOKENS is CrowdsaleToken { string public constant name = "MMM DEFI"; string public constant symbol = "DEFI"; uint32 public constant decimals = 6; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[],"name":"PurchageToken","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"startIco","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contractBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalizeIco","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"remainingTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basePrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenReserve","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_receiver","type":"address"},{"name":"_withdrawAmount","type":"uint256"}],"name":"SellToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
608060409081526000600581905560068190556003805433600160a060020a031991821681179092556007805490911690911760a060020a60ff02198116909155600160a060020a031681526020819052205461006e9064e8d4a510006401000000006106e06100fe82021704565b600754600160a060020a03166000908152602081905260409020556001546100a89064e8d4a510006401000000006106e06100fe82021704565b60015564e8d4a5100060068190556007546040805192835251600160a060020a039091169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3610111565b8181018281101561010b57fe5b92915050565b61101e806101206000396000f3006080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166304506480811461037f57806306fdde0314610389578063095ea7b31461041357806318160ddd1461044b57806323b872dd14610472578063313ce5671461049c578063355274ea146104ca578063518ab2a8146104df57806366188463146104f457806370a082311461051857806389311e6f146105395780638b7afe2e1461054e5780638da5cb5b14610563578063903a3ef61461059457806395d89b41146105a9578063a9059cbb146105be578063bf583903146105e2578063c7876ea4146105f7578063cbcb3171146104ca578063d73dd6231461060c578063dd62ed3e14610630578063f2fde38b14610657578063f567b51b14610678575b600080808080600160075474010000000000000000000000000000000000000000900460ff16600281111561016357fe5b1461016d57600080fd5b6000341161017a57600080fd5b60065460001061018957600080fd5b3494506101b8670de0b6b3a76400006101ac876305f5e10063ffffffff61069c16565b9063ffffffff6106cb16565b93506000925064e8d4a510006101d9856005546106e090919063ffffffff16565b1115610241576005546101f89064e8d4a510009063ffffffff6106ed16565b9150610226670de0b6b3a764000061021a846305f5e10063ffffffff6106cb16565b9063ffffffff61069c16565b9050610238858263ffffffff6106ed16565b92508094508193505b600554610254908563ffffffff6106e016565b600581905561026f9064e8d4a510009063ffffffff6106ed16565b60065560008311156102cf57604051339084156108fc029085906000818181858888f193505050501580156102a8573d6000803e3d6000fd5b5060408051848152905133913091600080516020610fd38339815191529181900360200190a35b336000908152602081905260409020546102ef908563ffffffff6106e016565b3360008181526020818152604091829020939093558051878152905191923092600080516020610fd38339815191529281900390910190a360015461033a908563ffffffff6106e016565b600155600754604051600160a060020a039091169086156108fc029087906000818181858888f19350505050158015610377573d6000803e3d6000fd5b505050505050005b6103876106ff565b005b34801561039557600080fd5b5061039e61079d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103d85781810151838201526020016103c0565b50505050905090810190601f1680156104055780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561041f57600080fd5b50610437600160a060020a03600435166024356107d4565b604080519115158252519081900360200190f35b34801561045757600080fd5b5061046061083a565b60408051918252519081900360200190f35b34801561047e57600080fd5b50610437600160a060020a0360043581169060243516604435610840565b3480156104a857600080fd5b506104b16109a5565b6040805163ffffffff9092168252519081900360200190f35b3480156104d657600080fd5b506104606109aa565b3480156104eb57600080fd5b506104606109b3565b34801561050057600080fd5b50610437600160a060020a03600435166024356109b9565b34801561052457600080fd5b50610460600160a060020a0360043516610aa9565b34801561054557600080fd5b50610387610ac4565b34801561055a57600080fd5b50610460610b48565b34801561056f57600080fd5b50610578610b4d565b60408051600160a060020a039092168252519081900360200190f35b3480156105a057600080fd5b50610387610b5c565b3480156105b557600080fd5b5061039e610bb3565b3480156105ca57600080fd5b50610437600160a060020a0360043516602435610bea565b3480156105ee57600080fd5b50610460610cb9565b34801561060357600080fd5b50610460610cbf565b34801561061857600080fd5b50610437600160a060020a0360043516602435610cc7565b34801561063c57600080fd5b50610460600160a060020a0360043581169060243516610d60565b34801561066357600080fd5b50610387600160a060020a0360043516610d8b565b34801561068457600080fd5b50610387600160a060020a0360043516602435610e20565b60008215156106ad575060006106c5565b508181028183828115156106bd57fe5b04146106c557fe5b92915050565b600081838115156106d857fe5b049392505050565b818101828110156106c557fe5b6000828211156106f957fe5b50900390565b34333181111561077057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f416d6f756e7420756e6d61746368656400000000000000000000000000000000604482015290519081900360640190fd5b3060009081526004602052604090205461078a90826106e0565b3060009081526004602052604090205550565b60408051808201909152600881527f4d4d4d2044454649000000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a038316151561085757600080fd5b600160a060020a03841660009081526020819052604090205482111561087c57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156108ac57600080fd5b600160a060020a0384166000908152602081905260409020546108d5908363ffffffff6106ed16565b600160a060020a03808616600090815260208190526040808220939093559085168152205461090a908363ffffffff6106e016565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461094c908363ffffffff6106ed16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610fd3833981519152929181900390910190a35060019392505050565b600681565b64e8d4a5100081565b60055481565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610a0e57336000908152600260209081526040808320600160a060020a0388168452909152812055610a43565b610a1e818463ffffffff6106ed16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b600754600160a060020a03163314610adb57600080fd5b600260075474010000000000000000000000000000000000000000900460ff166002811115610b0657fe5b1415610b1157600080fd5b6007805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b303190565b600754600160a060020a031681565b600754600160a060020a03163314610b7357600080fd5b600260075474010000000000000000000000000000000000000000900460ff166002811115610b9e57fe5b1415610ba957600080fd5b610bb1610f0c565b565b60408051808201909152600481527f4445464900000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610c0157600080fd5b33600090815260208190526040902054821115610c1d57600080fd5b33600090815260208190526040902054610c3d908363ffffffff6106ed16565b3360009081526020819052604080822092909255600160a060020a03851681522054610c6f908363ffffffff6106e016565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610fd38339815191529281900390910190a350600192915050565b60065481565b6305f5e10081565b336000908152600260209081526040808320600160a060020a0386168452909152812054610cfb908363ffffffff6106e016565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600754600160a060020a03163314610da257600080fd5b600160a060020a0381161515610db757600080fd5b600754604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b333014801590610e3b5750600354600160a060020a03163314155b15610ea757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f496e76616c69642053656e646572204164647265737300000000000000000000604482015290519081900360640190fd5b604051600160a060020a0383169082156108fc029083906000818181858888f19350505050158015610edd573d6000803e3d6000fd5b5030600090815260046020526040902054610ef890826106ed565b306000908152600460205260409020555050565b6007805474ff000000000000000000000000000000000000000019167402000000000000000000000000000000000000000017905560065460001015610f9557600654600754600160a060020a0316600090815260208190526040902054610f799163ffffffff6106e016565b600754600160a060020a03166000908152602081905260409020555b600754604051600160a060020a0390911690303180156108fc02916000818181858888f19350505050158015610fcf573d6000803e3d6000fd5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820806b69308f881f0930d0b9a6974c026056aba23b221c6f631f82dc2ae12983880029
Deployed Bytecode
0x6080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166304506480811461037f57806306fdde0314610389578063095ea7b31461041357806318160ddd1461044b57806323b872dd14610472578063313ce5671461049c578063355274ea146104ca578063518ab2a8146104df57806366188463146104f457806370a082311461051857806389311e6f146105395780638b7afe2e1461054e5780638da5cb5b14610563578063903a3ef61461059457806395d89b41146105a9578063a9059cbb146105be578063bf583903146105e2578063c7876ea4146105f7578063cbcb3171146104ca578063d73dd6231461060c578063dd62ed3e14610630578063f2fde38b14610657578063f567b51b14610678575b600080808080600160075474010000000000000000000000000000000000000000900460ff16600281111561016357fe5b1461016d57600080fd5b6000341161017a57600080fd5b60065460001061018957600080fd5b3494506101b8670de0b6b3a76400006101ac876305f5e10063ffffffff61069c16565b9063ffffffff6106cb16565b93506000925064e8d4a510006101d9856005546106e090919063ffffffff16565b1115610241576005546101f89064e8d4a510009063ffffffff6106ed16565b9150610226670de0b6b3a764000061021a846305f5e10063ffffffff6106cb16565b9063ffffffff61069c16565b9050610238858263ffffffff6106ed16565b92508094508193505b600554610254908563ffffffff6106e016565b600581905561026f9064e8d4a510009063ffffffff6106ed16565b60065560008311156102cf57604051339084156108fc029085906000818181858888f193505050501580156102a8573d6000803e3d6000fd5b5060408051848152905133913091600080516020610fd38339815191529181900360200190a35b336000908152602081905260409020546102ef908563ffffffff6106e016565b3360008181526020818152604091829020939093558051878152905191923092600080516020610fd38339815191529281900390910190a360015461033a908563ffffffff6106e016565b600155600754604051600160a060020a039091169086156108fc029087906000818181858888f19350505050158015610377573d6000803e3d6000fd5b505050505050005b6103876106ff565b005b34801561039557600080fd5b5061039e61079d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103d85781810151838201526020016103c0565b50505050905090810190601f1680156104055780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561041f57600080fd5b50610437600160a060020a03600435166024356107d4565b604080519115158252519081900360200190f35b34801561045757600080fd5b5061046061083a565b60408051918252519081900360200190f35b34801561047e57600080fd5b50610437600160a060020a0360043581169060243516604435610840565b3480156104a857600080fd5b506104b16109a5565b6040805163ffffffff9092168252519081900360200190f35b3480156104d657600080fd5b506104606109aa565b3480156104eb57600080fd5b506104606109b3565b34801561050057600080fd5b50610437600160a060020a03600435166024356109b9565b34801561052457600080fd5b50610460600160a060020a0360043516610aa9565b34801561054557600080fd5b50610387610ac4565b34801561055a57600080fd5b50610460610b48565b34801561056f57600080fd5b50610578610b4d565b60408051600160a060020a039092168252519081900360200190f35b3480156105a057600080fd5b50610387610b5c565b3480156105b557600080fd5b5061039e610bb3565b3480156105ca57600080fd5b50610437600160a060020a0360043516602435610bea565b3480156105ee57600080fd5b50610460610cb9565b34801561060357600080fd5b50610460610cbf565b34801561061857600080fd5b50610437600160a060020a0360043516602435610cc7565b34801561063c57600080fd5b50610460600160a060020a0360043581169060243516610d60565b34801561066357600080fd5b50610387600160a060020a0360043516610d8b565b34801561068457600080fd5b50610387600160a060020a0360043516602435610e20565b60008215156106ad575060006106c5565b508181028183828115156106bd57fe5b04146106c557fe5b92915050565b600081838115156106d857fe5b049392505050565b818101828110156106c557fe5b6000828211156106f957fe5b50900390565b34333181111561077057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f416d6f756e7420756e6d61746368656400000000000000000000000000000000604482015290519081900360640190fd5b3060009081526004602052604090205461078a90826106e0565b3060009081526004602052604090205550565b60408051808201909152600881527f4d4d4d2044454649000000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a038316151561085757600080fd5b600160a060020a03841660009081526020819052604090205482111561087c57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156108ac57600080fd5b600160a060020a0384166000908152602081905260409020546108d5908363ffffffff6106ed16565b600160a060020a03808616600090815260208190526040808220939093559085168152205461090a908363ffffffff6106e016565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461094c908363ffffffff6106ed16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610fd3833981519152929181900390910190a35060019392505050565b600681565b64e8d4a5100081565b60055481565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610a0e57336000908152600260209081526040808320600160a060020a0388168452909152812055610a43565b610a1e818463ffffffff6106ed16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b600754600160a060020a03163314610adb57600080fd5b600260075474010000000000000000000000000000000000000000900460ff166002811115610b0657fe5b1415610b1157600080fd5b6007805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b303190565b600754600160a060020a031681565b600754600160a060020a03163314610b7357600080fd5b600260075474010000000000000000000000000000000000000000900460ff166002811115610b9e57fe5b1415610ba957600080fd5b610bb1610f0c565b565b60408051808201909152600481527f4445464900000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610c0157600080fd5b33600090815260208190526040902054821115610c1d57600080fd5b33600090815260208190526040902054610c3d908363ffffffff6106ed16565b3360009081526020819052604080822092909255600160a060020a03851681522054610c6f908363ffffffff6106e016565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610fd38339815191529281900390910190a350600192915050565b60065481565b6305f5e10081565b336000908152600260209081526040808320600160a060020a0386168452909152812054610cfb908363ffffffff6106e016565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600754600160a060020a03163314610da257600080fd5b600160a060020a0381161515610db757600080fd5b600754604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b333014801590610e3b5750600354600160a060020a03163314155b15610ea757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f496e76616c69642053656e646572204164647265737300000000000000000000604482015290519081900360640190fd5b604051600160a060020a0383169082156108fc029083906000818181858888f19350505050158015610edd573d6000803e3d6000fd5b5030600090815260046020526040902054610ef890826106ed565b306000908152600460205260409020555050565b6007805474ff000000000000000000000000000000000000000019167402000000000000000000000000000000000000000017905560065460001015610f9557600654600754600160a060020a0316600090815260208190526040902054610f799163ffffffff6106e016565b600754600160a060020a03166000908152602081905260409020555b600754604051600160a060020a0390911690303180156108fc02916000818181858888f19350505050158015610fcf573d6000803e3d6000fd5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820806b69308f881f0930d0b9a6974c026056aba23b221c6f631f82dc2ae12983880029
Deployed Bytecode Sourcemap
17374:182:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11253:17;;;;;11134:15;11118:12;;;;;;;:31;;;;;;;;;11110:40;;;;;;11181:1;11169:9;:13;11161:22;;;;;;11202:15;;11220:1;-1:-1:-1;11194:28:0;;;;;;11273:9;;-1:-1:-1;11338:37:0;11367:7;11338:24;11273:9;10122;11338:24;:13;:24;:::i;:::-;:28;:37;:28;:37;:::i;:::-;11321:54;;11406:1;11386:21;;10066:13;11431:22;11446:6;11431:10;;:14;;:22;;;;:::i;:::-;:28;11428:281;;;11503:10;;11495:19;;10066:13;;11495:19;:7;:19;:::i;:::-;11475:39;-1:-1:-1;11546:37:0;11575:7;11546:24;11475:39;10122:9;11546:24;:13;:24;:::i;:::-;:28;:37;:28;:37;:::i;:::-;11529:54;-1:-1:-1;11610:21:0;:9;11529:54;11610:21;:13;:21;:::i;:::-;11598:33;;11658:6;11646:18;;11688:9;11679:18;;11428:281;11742:10;;:22;;11757:6;11742:22;:14;:22;:::i;:::-;11729:10;:35;;;11820:19;;10066:13;;11820:19;:7;:19;:::i;:::-;11802:15;:37;11865:1;11853:13;;11850:140;;;11882:30;;:10;;:30;;;;;11902:9;;11882:30;;;;11902:9;11882:10;:30;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;11932:46:0;;;;;;;;11956:10;;11949:4;;-1:-1:-1;;;;;;;;;;;11932:46:0;;;;;;;;11850:140;12042:10;12033:8;:20;;;;;;;;;;;:32;;12058:6;12033:32;:24;:32;:::i;:::-;12019:10;12010:8;:20;;;;;;;;;;;;:55;;;;12081:43;;;;;;;12019:10;;12098:4;;-1:-1:-1;;;;;;;;;;;12081:43:0;;;;;;;;;12150:12;;:24;;12167:6;12150:24;:16;:24;:::i;:::-;12135:12;:39;12185:5;;:25;;-1:-1:-1;;;;;12185:5:0;;;;:25;;;;;12200:9;;12185:5;:25;:5;:25;12200:9;12185:5;:25;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12185:25:0;11072:1168;;;;;17374:182;8926:418;;;;;;17425:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17425:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;17425:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6293:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6293:206:0;-1:-1:-1;;;;;6293:206:0;;;;;;;;;;;;;;;;;;;;;;;;;3520:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3520:91:0;;;;;;;;;;;;;;;;;;;;5129:502;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5129:502:0;-1:-1:-1;;;;;5129:502:0;;;;;;;;;;;;17517:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17517:35:0;;;;;;;;;;;;;;;;;;;;;;;10036:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10036:43:0;;;;10160:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10160:29:0;;;;8256:450;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8256:450:0;-1:-1:-1;;;;;8256:450:0;;;;;;;4386:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4386:107:0;-1:-1:-1;;;;;4386:107:0;;;;;12305:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12305:135:0;;;;8828:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8828:92:0;;;;1525:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1525:20:0;;;;;;;;-1:-1:-1;;;;;1525:20:0;;;;;;;;;;;;;;12938:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12938:116:0;;;;17472:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17472:38:0;;;;3793:363;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3793:363:0;-1:-1:-1;;;;;3793:363:0;;;;;;;10261:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10261:34:0;;;;10086:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10086:45:0;;;;7475:280;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7475:280:0;-1:-1:-1;;;;;7475:280:0;;;;;;;6845:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6845:134:0;-1:-1:-1;;;;;6845:134:0;;;;;;;;;;2170:186;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2170:186:0;-1:-1:-1;;;;;2170:186:0;;;;;9350:541;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9350:541:0;-1:-1:-1;;;;;9350:541:0;;;;;;;220:202;278:9;304:6;;300:47;;;-1:-1:-1;334:1:0;327:8;;300:47;-1:-1:-1;361:5:0;;;365:1;361;:5;384;;;;;;;;:10;377:18;;;;220:202;;;;:::o;524:295::-;582:7;810:1;806;:5;;;;;;;;;524:295;-1:-1:-1;;;524:295:0:o;1156:141::-;1240:5;;;1263:6;;;;1256:14;;;951:123;1009:7;1036:6;;;;1029:14;;;;-1:-1:-1;1061:5:0;;;951:123::o;8926:418::-;9038:9;9067:10;:18;9056:29;;9052:64;;;9088:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9052:64;9235:4;9207:34;;;;:19;:34;;;;;;9194:57;;9242:8;9194:12;:57::i;:::-;9185:4;9157:34;;;;:19;:34;;;;;:94;-1:-1:-1;8926:418:0:o;17425:40::-;;;;;;;;;;;;;;;;;;;:::o;6293:206::-;6385:10;6360:4;6377:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6377:29:0;;;;;;;;;;;:38;;;6431;;;;;;;6360:4;;6377:29;;6385:10;;6431:38;;;;;;;;-1:-1:-1;6487:4:0;6293:206;;;;:::o;3520:91::-;3591:12;;3520:91;:::o;5129:502::-;5211:4;-1:-1:-1;;;;;5236:17:0;;;;5228:26;;;;;;-1:-1:-1;;;;;5283:15:0;;:8;:15;;;;;;;;;;;5273:25;;;5265:34;;;;;;-1:-1:-1;;;;;5328:14:0;;;;;;:7;:14;;;;;;;;5343:10;5328:26;;;;;;;;5318:36;;;5310:45;;;;;;-1:-1:-1;;;;;5390:15:0;;:8;:15;;;;;;;;;;;:27;;5410:6;5390:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5372:15:0;;;:8;:15;;;;;;;;;;;:45;;;;5444:13;;;;;;;:25;;5462:6;5444:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5428:13:0;;;:8;:13;;;;;;;;;;;:41;;;;5509:14;;;;;:7;:14;;;;;5524:10;5509:26;;;;;;;:38;;5540:6;5509:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;5480:14:0;;;;;;;:7;:14;;;;;;;;5495:10;5480:26;;;;;;;;:67;;;;5573:28;;;;;;;;;;;5480:14;;-1:-1:-1;;;;;;;;;;;5573:28:0;;;;;;;;;;-1:-1:-1;5619:4:0;5129:502;;;;;:::o;17517:35::-;17551:1;17517:35;:::o;10036:43::-;10066:13;10036:43;:::o;10160:29::-;;;;:::o;8256:450::-;8380:10;8339:4;8372:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8372:29:0;;;;;;;;;;8416:27;;;8412:188;;;8468:10;8492:1;8460:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8460:29:0;;;;;;;;;:33;8412:188;;;8558:30;:8;8571:16;8558:30;:12;:30;:::i;:::-;8534:10;8526:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8526:29:0;;;;;;;;;:62;8412:188;8624:10;8646:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8615:61:0;;8646:29;;;;;;;;;;;8615:61;;;;;;;;;8624:10;8615:61;;;;;;;;;;;-1:-1:-1;8694:4:0;;8256:450;-1:-1:-1;;;8256:450:0:o;4386:107::-;-1:-1:-1;;;;;4469:16:0;4442:7;4469:16;;;;;;;;;;;;4386:107::o;12305:135::-;1964:5;;-1:-1:-1;;;;;1964:5:0;1950:10;:19;1942:28;;;;;;12377:13;12361:12;;;;;;;:29;;;;;;;;;;12353:38;;;;;;12402:12;:30;;-1:-1:-1;;12402:30:0;;;;;12305:135::o;8828:92::-;8902:4;8894:21;8828:92;:::o;1525:20::-;;;-1:-1:-1;;;;;1525:20:0;;:::o;12938:116::-;1964:5;;-1:-1:-1;;;;;1964:5:0;1950:10;:19;1942:28;;;;;;13013:13;12997:12;;;;;;;:29;;;;;;;;;;12989:38;;;;;;13038:8;:6;:8::i;:::-;12938:116::o;17472:38::-;;;;;;;;;;;;;;;;;;;:::o;3793:363::-;3856:4;-1:-1:-1;;;;;3881:17:0;;;;3873:26;;;;;;3937:10;3928:8;:20;;;;;;;;;;;3918:30;;;3910:39;;;;;;4002:10;3993:8;:20;;;;;;;;;;;:32;;4018:6;3993:32;:24;:32;:::i;:::-;3979:10;3970:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;4052:13:0;;;;;;:25;;4070:6;4052:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4036:13:0;;:8;:13;;;;;;;;;;;;:41;;;;4093:33;;;;;;;4036:13;;4102:10;;-1:-1:-1;;;;;;;;;;;4093:33:0;;;;;;;;;-1:-1:-1;4144:4:0;3793:363;;;;:::o;10261:34::-;;;;:::o;10086:45::-;10122:9;10086:45;:::o;7475:280::-;7610:10;7553:4;7602:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7602:29:0;;;;;;;;;;:46;;7636:11;7602:46;:33;:46;:::i;:::-;7578:10;7570:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7570:29:0;;;;;;;;;;;;:78;;;7664:61;;;;;;7570:29;;7664:61;;;;;;;;;;;-1:-1:-1;7743:4:0;7475:280;;;;:::o;6845:134::-;-1:-1:-1;;;;;6946:15:0;;;6919:7;6946:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6845:134::o;2170:186::-;1964:5;;-1:-1:-1;;;;;1964:5:0;1950:10;:19;1942:28;;;;;;-1:-1:-1;;;;;2249:22:0;;;;2241:31;;;;;;2307:5;;2286:37;;-1:-1:-1;;;;;2286:37:0;;;;2307:5;;2286:37;;2307:5;;2286:37;2332:5;:16;;-1:-1:-1;;2332:16:0;-1:-1:-1;;;;;2332:16:0;;;;;;;;;;2170:186::o;9350:541::-;9482:10;9504:4;9482:27;;;;:50;;-1:-1:-1;9527:5:0;;-1:-1:-1;;;;;9527:5:0;9513:10;:19;;9482:50;9478:91;;;9535:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9478:91;9649:35;;-1:-1:-1;;;;;9649:18:0;;;:35;;;;;9668:15;;9649:35;;;;9668:15;9649:18;:35;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;9767:4:0;9739:34;;;;:19;:34;;;;;;9726:64;;9774:15;9726:12;:64::i;:::-;9717:4;9689:34;;;;:19;:34;;;;;:101;-1:-1:-1;;9350:541:0:o;12502:343::-;12540:12;:28;;-1:-1:-1;;12540:28:0;;;;;12624:15;;-1:-1:-1;;12621:91:0;;;12696:15;;12685:5;;-1:-1:-1;;;;;12685:5:0;12676:8;:15;;;;;;;;;;;:36;;;:19;:36;:::i;:::-;12667:5;;-1:-1:-1;;;;;12667:5:0;12658:8;:15;;;;;;;;;;:54;12621:91;12799:5;;:37;;-1:-1:-1;;;;;12799:5:0;;;;12822:4;12814:21;12799:37;;;;;:5;:37;:5;:37;12814:21;12799:5;:37;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12799:37:0;12502:343::o
Swarm Source
bzzr://806b69308f881f0930d0b9a6974c026056aba23b221c6f631f82dc2ae1298388
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.