Overview
Max Total Supply
88,888,888 L3USD
Holders
35 (0.00%)
Transfers
-
0
Market
Price
$0.95 @ 0.000457 ETH
Onchain Market Cap
-
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
L3USD
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
assert(c / a == b);
return c;
}
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 c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 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;
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
constructor() {
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 {
if (newOwner != address(0)) {
owner = newOwner;
}
}
}
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
abstract contract ERC20Basic {
uint public _totalSupply;
function totalSupply() virtual public view returns (uint);
function balanceOf(address who) virtual public view returns (uint);
function transfer(address to, uint value) virtual public;
event Transfer(address indexed from, address indexed to, uint value);
}
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
abstract contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) virtual public view returns (uint);
function transferFrom(address from, address to, uint value) virtual public;
function approve(address spender, uint value) virtual public;
event Approval(address indexed owner, address indexed spender, uint value);
}
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
abstract contract BasicToken is Ownable, ERC20Basic {
using SafeMath for uint;
mapping(address => uint) public balances;
// additional variables for use if transaction fees ever became necessary
uint public basisPointsRate = 0;
uint public maximumFee = 0;
/**
* @dev Fix for the ERC20 short address attack.
*/
modifier onlyPayloadSize(uint size) {
require(!(msg.data.length < size + 4));
_;
}
/**
* @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, uint _value) override virtual public onlyPayloadSize(2 * 32) {
uint fee = (_value.mul(basisPointsRate)).div(10000);
if (fee > maximumFee) {
fee = maximumFee;
}
uint sendAmount = _value.sub(fee);
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(sendAmount);
if (fee > 0) {
balances[owner] = balances[owner].add(fee);
emit Transfer(msg.sender, owner, fee);
}
emit Transfer(msg.sender, _to, sendAmount);
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the the balance of.
* @return balance An uint representing the amount owned by the passed address.
*/
function balanceOf(address _owner) override virtual public view returns (uint balance) {
return balances[_owner];
}
}
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* @dev https://github.com/ethereum/EIPs/issues/20
* @dev Based oncode by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
abstract contract StandardToken is BasicToken, ERC20 {
using SafeMath for uint;
mapping (address => mapping (address => uint)) public allowed;
uint public constant MAX_UINT = 2**256 - 1;
/**
* @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 uint the amount of tokens to be transferred
*/
function transferFrom(address _from, address _to, uint _value) override virtual public onlyPayloadSize(3 * 32) {
uint _allowance = allowed[_from][msg.sender];
// Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
// if (_value > _allowance) throw;
uint fee = (_value.mul(basisPointsRate)).div(10000);
if (fee > maximumFee) {
fee = maximumFee;
}
if (_allowance < MAX_UINT) {
allowed[_from][msg.sender] = _allowance.sub(_value);
}
uint sendAmount = _value.sub(fee);
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(sendAmount);
if (fee > 0) {
balances[owner] = balances[owner].add(fee);
emit Transfer(_from, owner, fee);
}
emit Transfer(_from, _to, sendAmount);
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint _value) override virtual public onlyPayloadSize(2 * 32) {
// To change the approve amount you first have to reduce the addresses`
// allowance to zero by calling `approve(_spender, 0)` if it is not
// already 0 to mitigate the race condition described here:
// https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
require(!((_value != 0) && (allowed[msg.sender][_spender] != 0)));
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
}
/**
* @dev Function to check the amount of tokens than 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 remaining A uint specifying the amount of tokens still available for the spender.
*/
function allowance(address _owner, address _spender) override virtual public view returns (uint remaining) {
return allowed[_owner][_spender];
}
}
/**
* @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism.
*/
abstract contract Pausable is Ownable {
event Pause();
event Unpause();
bool public paused = false;
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*/
modifier whenNotPaused() {
require(!paused);
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*/
modifier whenPaused() {
require(paused);
_;
}
/**
* @dev called by the owner to pause, triggers stopped state
*/
function pause() onlyOwner whenNotPaused public {
paused = true;
emit Pause();
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() onlyOwner whenPaused public {
paused = false;
emit Unpause();
}
}
abstract contract BlackList is Ownable, BasicToken {
/////// Getters to allow the same blacklist to be used also by other contracts (including upgraded L3USD) ///////
function getBlackListStatus(address _maker) external view returns (bool) {
return isBlackListed[_maker];
}
function getOwner() external view returns (address) {
return owner;
}
mapping (address => bool) public isBlackListed;
function addBlackList (address _evilUser) public onlyOwner {
isBlackListed[_evilUser] = true;
emit AddedBlackList(_evilUser);
}
function removeBlackList (address _clearedUser) public onlyOwner {
isBlackListed[_clearedUser] = false;
emit RemovedBlackList(_clearedUser);
}
function destroyBlackFunds (address _blackListedUser) public onlyOwner {
require(isBlackListed[_blackListedUser]);
uint dirtyFunds = balanceOf(_blackListedUser);
balances[_blackListedUser] = 0;
_totalSupply -= dirtyFunds;
emit DestroyedBlackFunds(_blackListedUser, dirtyFunds);
}
event DestroyedBlackFunds(address _blackListedUser, uint _balance);
event AddedBlackList(address _user);
event RemovedBlackList(address _user);
}
abstract contract UpgradedStandardToken is StandardToken {
// those methods are called by the legacy contract
// and they must ensure msg.sender to be the contract address
function transferByLegacy(address from, address to, uint value) virtual public;
function transferFromByLegacy(address sender, address from, address spender, uint value) virtual public;
function approveByLegacy(address from, address spender, uint value) virtual public;
}
/**
* @title Tomb Finance's L3USD Contract
* @notice L3USD is an implementation of EIP-20 extended with Snapshot and Ownable functionality
* @author Tomb Finance
*/
contract L3USD is Pausable, StandardToken, BlackList {
using SafeMath for uint;
string public name;
string public symbol;
uint public decimals;
address public upgradedAddress;
bool public deprecated;
mapping(address => bool) public minters;
/**
* @notice Construct a new L3USD contract
*
*/
constructor() {
_totalSupply = 0;
name = "L3USD";
symbol = "L3USD";
decimals = 18;
deprecated = false;
minters[owner] = true;
}
/**
* @notice only wallet with Minter permission can add new tokens into circulation
*
*/
modifier onlyMinter() {
require(minters[msg.sender]);
_;
}
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address _to, uint _value) override public whenNotPaused {
require(!isBlackListed[msg.sender]);
if (deprecated) {
return UpgradedStandardToken(upgradedAddress).transferByLegacy(msg.sender, _to, _value);
} else {
return super.transfer(_to, _value);
}
}
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address _from, address _to, uint _value) override public whenNotPaused {
require(!isBlackListed[_from]);
if (deprecated) {
return UpgradedStandardToken(upgradedAddress).transferFromByLegacy(msg.sender, _from, _to, _value);
} else {
return super.transferFrom(_from, _to, _value);
}
}
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address who) override public view returns (uint) {
if (deprecated) {
return UpgradedStandardToken(upgradedAddress).balanceOf(who);
} else {
return super.balanceOf(who);
}
}
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address _spender, uint _value) override public onlyPayloadSize(2 * 32) {
if (deprecated) {
return UpgradedStandardToken(upgradedAddress).approveByLegacy(msg.sender, _spender, _value);
} else {
return super.approve(_spender, _value);
}
}
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address _owner, address _spender) override public view returns (uint remaining) {
if (deprecated) {
return StandardToken(upgradedAddress).allowance(_owner, _spender);
} else {
return super.allowance(_owner, _spender);
}
}
/**
* @dev deprecate current contract in favor of the new one.
*/
function deprecate(address _upgradedAddress) public onlyOwner {
deprecated = true;
upgradedAddress = _upgradedAddress;
emit Deprecate(_upgradedAddress);
}
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() override public view returns (uint) {
if (deprecated) {
return StandardToken(upgradedAddress).totalSupply();
} else {
return _totalSupply;
}
}
/**
* @dev Issue a new amount of tokens
* these tokens are deposited into the owner address
* @param amount Number of tokens to be issued
*/
function issue(uint amount) public onlyMinter {
require(_totalSupply + amount > _totalSupply);
require(balances[msg.sender] + amount > balances[msg.sender]);
balances[msg.sender] += amount;
_totalSupply += amount;
emit Issue(msg.sender, amount);
}
/**
* Redeem tokens.
* These tokens are withdrawn from the owner address
* if the balance must be enough to cover the redeem
* or the call will fail.
* @param amount Number of tokens to be issued
*/
function redeem(uint amount) public onlyOwner {
require(_totalSupply >= amount);
require(balances[owner] >= amount);
_totalSupply -= amount;
balances[owner] -= amount;
emit Redeem(amount);
}
/**
* @dev Grant minter permissions to a wallet.
*/
function addMinter(address newMinter) public onlyOwner {
require(newMinter != address(0));
require(!minters[newMinter]);
minters[newMinter] = true;
emit AddMinter(newMinter);
}
/**
* @dev Remove minter permissions from a wallet.
*/
function removeMinter(address minterToRemove) public onlyOwner {
require(minters[minterToRemove]);
minters[minterToRemove] = false;
emit RemoveMinter(minterToRemove);
}
/**
* @dev set fee on transfer parameters.
*/
function setParams(uint newBasisPoints, uint newMaxFee) public onlyOwner {
// Ensure transparency by hardcoding limit beyond which fees can never be added
require(newBasisPoints < 20);
require(newMaxFee < 50);
basisPointsRate = newBasisPoints;
maximumFee = newMaxFee.mul(10**decimals);
emit Params(basisPointsRate, maximumFee);
}
/**
* @dev Called when new token are issued.
*/
event Issue(address minter, uint amount);
/**
* @dev Called when tokens are redeemed.
*/
event Redeem(uint amount);
/**
* @dev Called when contract is deprecated.
*/
event Deprecate(address newAddress);
/**
* @dev Called if contract ever adds fees.
*/
event Params(uint feeBasisPoints, uint maxFee);
/**
* @dev Called when minter is added.
*/
event AddMinter(address newMinter);
/**
* @dev Called when minter is removed.
*/
event RemoveMinter(address removedMinter);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newMinter","type":"address"}],"name":"AddMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_blackListedUser","type":"address"},{"indexed":false,"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feeBasisPoints","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxFee","type":"uint256"}],"name":"Params","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"removedMinter","type":"address"}],"name":"RemoveMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"RemovedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"inputs":[],"name":"MAX_UINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMinter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basisPointsRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deprecated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"issue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maximumFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minterToRemove","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBasisPoints","type":"uint256"},{"internalType":"uint256","name":"newMaxFee","type":"uint256"}],"name":"setParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgradedAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60806040526000805460ff60a01b1916815560038190556004553480156200002657600080fd5b50600080546001600160a01b0319163317815560015560408051808201909152600580825264130cd554d160da1b60209092019182526200006a91600791620000d5565b5060408051808201909152600580825264130cd554d160da1b60209092019182526200009991600891620000d5565b506012600955600a805460ff60a01b19169055600080546001600160a01b03168152600b60205260409020805460ff19166001179055620001b8565b828054620000e3906200017b565b90600052602060002090601f01602090048101928262000107576000855562000152565b82601f106200012257805160ff191683800117855562000152565b8280016001018555821562000152579182015b828111156200015257825182559160200191906001019062000135565b506200016092915062000164565b5090565b5b8082111562000160576000815560010162000165565b600181811c908216806200019057607f821691505b60208210811415620001b257634e487b7160e01b600052602260045260246000fd5b50919050565b61183680620001c86000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063db006a75116100ad578063e4997dc51161007c578063e4997dc51461048d578063e5b5019a146104a0578063f2fde38b146104a9578063f3bdc228146104bc578063f46eccc4146104cf57600080fd5b8063db006a751461043b578063dd62ed3e1461044e578063dd644f7214610461578063e47d60601461046a57600080fd5b806395d89b41116100f457806395d89b41146103e7578063983b2d56146103ef578063a9059cbb14610402578063c0324c7714610415578063cc872b661461042857600080fd5b806370a08231146103a85780638456cb59146103bb578063893d20e8146103c35780638da5cb5b146103d457600080fd5b806327e235e3116101a85780633eaaf86b116101775780633eaaf86b1461032c5780633f4ba83a1461033557806359bf1abe1461033d5780635c658165146103695780635c975abb1461039457600080fd5b806327e235e3146102e75780633092afd514610307578063313ce5671461031a578063353907141461032357600080fd5b80630ecb93c0116101e45780630ecb93c01461028057806318160ddd1461029357806323b872dd146102a957806326976e3f146102bc57600080fd5b806306fdde03146102165780630753c30c14610234578063095ea7b3146102495780630e136b191461025c575b600080fd5b61021e6104f2565b60405161022b91906114a5565b60405180910390f35b610247610242366004611511565b610580565b005b61024761025736600461152c565b6105f3565b600a5461027090600160a01b900460ff1681565b604051901515815260200161022b565b61024761028e366004611511565b61069f565b61029b61070a565b60405190815260200161022b565b6102476102b7366004611556565b6107b1565b600a546102cf906001600160a01b031681565b6040516001600160a01b03909116815260200161022b565b61029b6102f5366004611511565b60026020526000908152604090205481565b610247610315366004611511565b610852565b61029b60095481565b61029b60045481565b61029b60015481565b6102476108df565b61027061034b366004611511565b6001600160a01b031660009081526006602052604090205460ff1690565b61029b610377366004611592565b600560209081526000928352604080842090915290825290205481565b60005461027090600160a01b900460ff1681565b61029b6103b6366004611511565b610942565b6102476109fd565b6000546001600160a01b03166102cf565b6000546102cf906001600160a01b031681565b61021e610a67565b6102476103fd366004611511565b610a74565b61024761041036600461152c565b610b18565b6102476104233660046115c5565b610bdc565b6102476104363660046115e7565b610c75565b6102476104493660046115e7565b610d3f565b61029b61045c366004611592565b610dfe565b61029b60035481565b610270610478366004611511565b60066020526000908152604090205460ff1681565b61024761049b366004611511565b610eca565b61029b60001981565b6102476104b7366004611511565b610f32565b6102476104ca366004611511565b610f77565b6102706104dd366004611511565b600b6020526000908152604090205460ff1681565b600780546104ff90611600565b80601f016020809104026020016040519081016040528092919081815260200182805461052b90611600565b80156105785780601f1061054d57610100808354040283529160200191610578565b820191906000526020600020905b81548152906001019060200180831161055b57829003601f168201915b505050505081565b6000546001600160a01b0316331461059757600080fd5b600a80546001600160a01b0383166001600160a81b03199091168117600160a01b179091556040519081527fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e906020015b60405180910390a150565b6040610600816004611651565b36101561060c57600080fd5b600a54600160a01b900460ff161561069057600a5460405163aee92d3360e01b81523360048201526001600160a01b038581166024830152604482018590529091169063aee92d33906064015b600060405180830381600087803b15801561067357600080fd5b505af1158015610687573d6000803e3d6000fd5b50505050505050565b61069a8383611034565b505050565b6000546001600160a01b031633146106b657600080fd5b6001600160a01b038116600081815260066020908152604091829020805460ff1916600117905590519182527f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc91016105e8565b600a54600090600160a01b900460ff16156107aa57600a60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561076d57600080fd5b505afa158015610781573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a59190611669565b905090565b5060015490565b600054600160a01b900460ff16156107c857600080fd5b6001600160a01b03831660009081526006602052604090205460ff16156107ee57600080fd5b600a54600160a01b900460ff161561084757600a54604051638b477adb60e01b81523360048201526001600160a01b03858116602483015284811660448301526064820184905290911690638b477adb90608401610659565b61069a8383836110e8565b6000546001600160a01b0316331461086957600080fd5b6001600160a01b0381166000908152600b602052604090205460ff1661088e57600080fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff1916905590519182527f2f91b591fc56ac0917953ad01ec225524ee5ef0555213e4c8a9d8c9728ee7ffb91016105e8565b6000546001600160a01b031633146108f657600080fd5b600054600160a01b900460ff1661090c57600080fd5b6000805460ff60a01b191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600a54600090600160a01b900460ff16156109da57600a546040516370a0823160e01b81526001600160a01b038481166004830152909116906370a082319060240160206040518083038186803b15801561099c57600080fd5b505afa1580156109b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d49190611669565b92915050565b6001600160a01b0382166000908152600260205260409020546109d4565b919050565b6000546001600160a01b03163314610a1457600080fd5b600054600160a01b900460ff1615610a2b57600080fd5b6000805460ff60a01b1916600160a01b1781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b600880546104ff90611600565b6000546001600160a01b03163314610a8b57600080fd5b6001600160a01b038116610a9e57600080fd5b6001600160a01b0381166000908152600b602052604090205460ff1615610ac457600080fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff1916600117905590519182527f16baa937b08d58713325f93ac58b8a9369a4359bbefb4957d6d9b402735722ab91016105e8565b600054600160a01b900460ff1615610b2f57600080fd5b3360009081526006602052604090205460ff1615610b4c57600080fd5b600a54600160a01b900460ff1615610bce57600a5460405163370c4c0560e11b81523360048201526001600160a01b0384811660248301526044820184905290911690636e18980a90606401600060405180830381600087803b158015610bb257600080fd5b505af1158015610bc6573d6000803e3d6000fd5b505050505050565b610bd882826112bf565b5050565b6000546001600160a01b03163314610bf357600080fd5b60148210610c0057600080fd5b60328110610c0d57600080fd5b6003829055600954610c2b90610c2490600a611766565b8290611419565b60048190556003546040517fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e92610c69928252602082015260400190565b60405180910390a15050565b336000908152600b602052604090205460ff16610c9157600080fd5b600154610c9e8282611651565b11610ca857600080fd5b33600090815260026020526040902054610cc28282611651565b11610ccc57600080fd5b3360009081526002602052604081208054839290610ceb908490611651565b925050819055508060016000828254610d049190611651565b909155505060408051338152602081018390527fc65a3f767206d2fdcede0b094a4840e01c0dd0be1888b5ba800346eaa0123c1691016105e8565b6000546001600160a01b03163314610d5657600080fd5b806001541015610d6557600080fd5b600080546001600160a01b0316815260026020526040902054811115610d8a57600080fd5b8060016000828254610d9c9190611772565b9091555050600080546001600160a01b031681526002602052604081208054839290610dc9908490611772565b90915550506040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a44906020016105e8565b600a54600090600160a01b900460ff1615610e9f57600a54604051636eb1769f60e11b81526001600160a01b03858116600483015284811660248301529091169063dd62ed3e9060440160206040518083038186803b158015610e6057600080fd5b505afa158015610e74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e989190611669565b90506109d4565b6001600160a01b03808416600090815260056020908152604080832093861683529290522054610e98565b6000546001600160a01b03163314610ee157600080fd5b6001600160a01b038116600081815260066020908152604091829020805460ff1916905590519182527fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c91016105e8565b6000546001600160a01b03163314610f4957600080fd5b6001600160a01b03811615610f7457600080546001600160a01b0319166001600160a01b0383161790555b50565b6000546001600160a01b03163314610f8e57600080fd5b6001600160a01b03811660009081526006602052604090205460ff16610fb357600080fd5b6000610fbe82610942565b6001600160a01b0383166000908152600260205260408120819055600180549293508392909190610ff0908490611772565b9091555050604080516001600160a01b0384168152602081018390527f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c69101610c69565b6040611041816004611651565b36101561104d57600080fd5b811580159061107e57503360009081526005602090815260408083206001600160a01b038716845290915290205415155b1561108857600080fd5b3360008181526005602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60606110f5816004611651565b36101561110157600080fd5b6001600160a01b0384166000908152600560209081526040808320338452909152812054600354909190611144906127109061113e908790611419565b90611455565b905060045481111561115557506004545b60001982101561118e57611169828561146a565b6001600160a01b03871660009081526005602090815260408083203384529091529020555b600061119a858361146a565b6001600160a01b0388166000908152600260205260409020549091506111c0908661146a565b6001600160a01b0380891660009081526002602052604080822093909355908816815220546111ef9082611486565b6001600160a01b038716600090815260026020526040902055811561127b57600080546001600160a01b03168152600260205260409020546112319083611486565b600080546001600160a01b039081168252600260209081526040808420949094559154925185815292811692908a16916000805160206117e1833981519152910160405180910390a35b856001600160a01b0316876001600160a01b03166000805160206117e1833981519152836040516112ae91815260200190565b60405180910390a350505050505050565b60406112cc816004611651565b3610156112d857600080fd5b60006112f561271061113e6003548661141990919063ffffffff16565b905060045481111561130657506004545b6000611312848361146a565b3360009081526002602052604090205490915061132f908561146a565b33600090815260026020526040808220929092556001600160a01b0387168152205461135b9082611486565b6001600160a01b03861660009081526002602052604090205581156113e457600080546001600160a01b031681526002602052604090205461139d9083611486565b600080546001600160a01b039081168252600260209081526040808420949094559154925185815292169133916000805160206117e1833981519152910160405180910390a35b6040518181526001600160a01b0386169033906000805160206117e18339815191529060200160405180910390a35050505050565b600082611428575060006109d4565b60006114348385611789565b90508261144185836117a8565b1461144e5761144e6117ca565b9392505050565b60008061146283856117a8565b949350505050565b60008282111561147c5761147c6117ca565b61144e8284611772565b6000806114938385611651565b90508381101561144e5761144e6117ca565b600060208083528351808285015260005b818110156114d2578581018301518582016040015282016114b6565b818111156114e4576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146109f857600080fd5b60006020828403121561152357600080fd5b61144e826114fa565b6000806040838503121561153f57600080fd5b611548836114fa565b946020939093013593505050565b60008060006060848603121561156b57600080fd5b611574846114fa565b9250611582602085016114fa565b9150604084013590509250925092565b600080604083850312156115a557600080fd5b6115ae836114fa565b91506115bc602084016114fa565b90509250929050565b600080604083850312156115d857600080fd5b50508035926020909101359150565b6000602082840312156115f957600080fd5b5035919050565b600181811c9082168061161457607f821691505b6020821081141561163557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156116645761166461163b565b500190565b60006020828403121561167b57600080fd5b5051919050565b600181815b808511156116bd5781600019048211156116a3576116a361163b565b808516156116b057918102915b93841c9390800290611687565b509250929050565b6000826116d4575060016109d4565b816116e1575060006109d4565b81600181146116f757600281146117015761171d565b60019150506109d4565b60ff8411156117125761171261163b565b50506001821b6109d4565b5060208310610133831016604e8410600b8410161715611740575081810a6109d4565b61174a8383611682565b806000190482111561175e5761175e61163b565b029392505050565b600061144e83836116c5565b6000828210156117845761178461163b565b500390565b60008160001904831182151516156117a3576117a361163b565b500290565b6000826117c557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052600160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220fc414ebd086d764b40670054381d00a1f438cbc0fc592c6da5c2e4a3fcb1e2e164736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063db006a75116100ad578063e4997dc51161007c578063e4997dc51461048d578063e5b5019a146104a0578063f2fde38b146104a9578063f3bdc228146104bc578063f46eccc4146104cf57600080fd5b8063db006a751461043b578063dd62ed3e1461044e578063dd644f7214610461578063e47d60601461046a57600080fd5b806395d89b41116100f457806395d89b41146103e7578063983b2d56146103ef578063a9059cbb14610402578063c0324c7714610415578063cc872b661461042857600080fd5b806370a08231146103a85780638456cb59146103bb578063893d20e8146103c35780638da5cb5b146103d457600080fd5b806327e235e3116101a85780633eaaf86b116101775780633eaaf86b1461032c5780633f4ba83a1461033557806359bf1abe1461033d5780635c658165146103695780635c975abb1461039457600080fd5b806327e235e3146102e75780633092afd514610307578063313ce5671461031a578063353907141461032357600080fd5b80630ecb93c0116101e45780630ecb93c01461028057806318160ddd1461029357806323b872dd146102a957806326976e3f146102bc57600080fd5b806306fdde03146102165780630753c30c14610234578063095ea7b3146102495780630e136b191461025c575b600080fd5b61021e6104f2565b60405161022b91906114a5565b60405180910390f35b610247610242366004611511565b610580565b005b61024761025736600461152c565b6105f3565b600a5461027090600160a01b900460ff1681565b604051901515815260200161022b565b61024761028e366004611511565b61069f565b61029b61070a565b60405190815260200161022b565b6102476102b7366004611556565b6107b1565b600a546102cf906001600160a01b031681565b6040516001600160a01b03909116815260200161022b565b61029b6102f5366004611511565b60026020526000908152604090205481565b610247610315366004611511565b610852565b61029b60095481565b61029b60045481565b61029b60015481565b6102476108df565b61027061034b366004611511565b6001600160a01b031660009081526006602052604090205460ff1690565b61029b610377366004611592565b600560209081526000928352604080842090915290825290205481565b60005461027090600160a01b900460ff1681565b61029b6103b6366004611511565b610942565b6102476109fd565b6000546001600160a01b03166102cf565b6000546102cf906001600160a01b031681565b61021e610a67565b6102476103fd366004611511565b610a74565b61024761041036600461152c565b610b18565b6102476104233660046115c5565b610bdc565b6102476104363660046115e7565b610c75565b6102476104493660046115e7565b610d3f565b61029b61045c366004611592565b610dfe565b61029b60035481565b610270610478366004611511565b60066020526000908152604090205460ff1681565b61024761049b366004611511565b610eca565b61029b60001981565b6102476104b7366004611511565b610f32565b6102476104ca366004611511565b610f77565b6102706104dd366004611511565b600b6020526000908152604090205460ff1681565b600780546104ff90611600565b80601f016020809104026020016040519081016040528092919081815260200182805461052b90611600565b80156105785780601f1061054d57610100808354040283529160200191610578565b820191906000526020600020905b81548152906001019060200180831161055b57829003601f168201915b505050505081565b6000546001600160a01b0316331461059757600080fd5b600a80546001600160a01b0383166001600160a81b03199091168117600160a01b179091556040519081527fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e906020015b60405180910390a150565b6040610600816004611651565b36101561060c57600080fd5b600a54600160a01b900460ff161561069057600a5460405163aee92d3360e01b81523360048201526001600160a01b038581166024830152604482018590529091169063aee92d33906064015b600060405180830381600087803b15801561067357600080fd5b505af1158015610687573d6000803e3d6000fd5b50505050505050565b61069a8383611034565b505050565b6000546001600160a01b031633146106b657600080fd5b6001600160a01b038116600081815260066020908152604091829020805460ff1916600117905590519182527f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc91016105e8565b600a54600090600160a01b900460ff16156107aa57600a60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561076d57600080fd5b505afa158015610781573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a59190611669565b905090565b5060015490565b600054600160a01b900460ff16156107c857600080fd5b6001600160a01b03831660009081526006602052604090205460ff16156107ee57600080fd5b600a54600160a01b900460ff161561084757600a54604051638b477adb60e01b81523360048201526001600160a01b03858116602483015284811660448301526064820184905290911690638b477adb90608401610659565b61069a8383836110e8565b6000546001600160a01b0316331461086957600080fd5b6001600160a01b0381166000908152600b602052604090205460ff1661088e57600080fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff1916905590519182527f2f91b591fc56ac0917953ad01ec225524ee5ef0555213e4c8a9d8c9728ee7ffb91016105e8565b6000546001600160a01b031633146108f657600080fd5b600054600160a01b900460ff1661090c57600080fd5b6000805460ff60a01b191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600a54600090600160a01b900460ff16156109da57600a546040516370a0823160e01b81526001600160a01b038481166004830152909116906370a082319060240160206040518083038186803b15801561099c57600080fd5b505afa1580156109b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d49190611669565b92915050565b6001600160a01b0382166000908152600260205260409020546109d4565b919050565b6000546001600160a01b03163314610a1457600080fd5b600054600160a01b900460ff1615610a2b57600080fd5b6000805460ff60a01b1916600160a01b1781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b600880546104ff90611600565b6000546001600160a01b03163314610a8b57600080fd5b6001600160a01b038116610a9e57600080fd5b6001600160a01b0381166000908152600b602052604090205460ff1615610ac457600080fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff1916600117905590519182527f16baa937b08d58713325f93ac58b8a9369a4359bbefb4957d6d9b402735722ab91016105e8565b600054600160a01b900460ff1615610b2f57600080fd5b3360009081526006602052604090205460ff1615610b4c57600080fd5b600a54600160a01b900460ff1615610bce57600a5460405163370c4c0560e11b81523360048201526001600160a01b0384811660248301526044820184905290911690636e18980a90606401600060405180830381600087803b158015610bb257600080fd5b505af1158015610bc6573d6000803e3d6000fd5b505050505050565b610bd882826112bf565b5050565b6000546001600160a01b03163314610bf357600080fd5b60148210610c0057600080fd5b60328110610c0d57600080fd5b6003829055600954610c2b90610c2490600a611766565b8290611419565b60048190556003546040517fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e92610c69928252602082015260400190565b60405180910390a15050565b336000908152600b602052604090205460ff16610c9157600080fd5b600154610c9e8282611651565b11610ca857600080fd5b33600090815260026020526040902054610cc28282611651565b11610ccc57600080fd5b3360009081526002602052604081208054839290610ceb908490611651565b925050819055508060016000828254610d049190611651565b909155505060408051338152602081018390527fc65a3f767206d2fdcede0b094a4840e01c0dd0be1888b5ba800346eaa0123c1691016105e8565b6000546001600160a01b03163314610d5657600080fd5b806001541015610d6557600080fd5b600080546001600160a01b0316815260026020526040902054811115610d8a57600080fd5b8060016000828254610d9c9190611772565b9091555050600080546001600160a01b031681526002602052604081208054839290610dc9908490611772565b90915550506040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a44906020016105e8565b600a54600090600160a01b900460ff1615610e9f57600a54604051636eb1769f60e11b81526001600160a01b03858116600483015284811660248301529091169063dd62ed3e9060440160206040518083038186803b158015610e6057600080fd5b505afa158015610e74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e989190611669565b90506109d4565b6001600160a01b03808416600090815260056020908152604080832093861683529290522054610e98565b6000546001600160a01b03163314610ee157600080fd5b6001600160a01b038116600081815260066020908152604091829020805460ff1916905590519182527fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c91016105e8565b6000546001600160a01b03163314610f4957600080fd5b6001600160a01b03811615610f7457600080546001600160a01b0319166001600160a01b0383161790555b50565b6000546001600160a01b03163314610f8e57600080fd5b6001600160a01b03811660009081526006602052604090205460ff16610fb357600080fd5b6000610fbe82610942565b6001600160a01b0383166000908152600260205260408120819055600180549293508392909190610ff0908490611772565b9091555050604080516001600160a01b0384168152602081018390527f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c69101610c69565b6040611041816004611651565b36101561104d57600080fd5b811580159061107e57503360009081526005602090815260408083206001600160a01b038716845290915290205415155b1561108857600080fd5b3360008181526005602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60606110f5816004611651565b36101561110157600080fd5b6001600160a01b0384166000908152600560209081526040808320338452909152812054600354909190611144906127109061113e908790611419565b90611455565b905060045481111561115557506004545b60001982101561118e57611169828561146a565b6001600160a01b03871660009081526005602090815260408083203384529091529020555b600061119a858361146a565b6001600160a01b0388166000908152600260205260409020549091506111c0908661146a565b6001600160a01b0380891660009081526002602052604080822093909355908816815220546111ef9082611486565b6001600160a01b038716600090815260026020526040902055811561127b57600080546001600160a01b03168152600260205260409020546112319083611486565b600080546001600160a01b039081168252600260209081526040808420949094559154925185815292811692908a16916000805160206117e1833981519152910160405180910390a35b856001600160a01b0316876001600160a01b03166000805160206117e1833981519152836040516112ae91815260200190565b60405180910390a350505050505050565b60406112cc816004611651565b3610156112d857600080fd5b60006112f561271061113e6003548661141990919063ffffffff16565b905060045481111561130657506004545b6000611312848361146a565b3360009081526002602052604090205490915061132f908561146a565b33600090815260026020526040808220929092556001600160a01b0387168152205461135b9082611486565b6001600160a01b03861660009081526002602052604090205581156113e457600080546001600160a01b031681526002602052604090205461139d9083611486565b600080546001600160a01b039081168252600260209081526040808420949094559154925185815292169133916000805160206117e1833981519152910160405180910390a35b6040518181526001600160a01b0386169033906000805160206117e18339815191529060200160405180910390a35050505050565b600082611428575060006109d4565b60006114348385611789565b90508261144185836117a8565b1461144e5761144e6117ca565b9392505050565b60008061146283856117a8565b949350505050565b60008282111561147c5761147c6117ca565b61144e8284611772565b6000806114938385611651565b90508381101561144e5761144e6117ca565b600060208083528351808285015260005b818110156114d2578581018301518582016040015282016114b6565b818111156114e4576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146109f857600080fd5b60006020828403121561152357600080fd5b61144e826114fa565b6000806040838503121561153f57600080fd5b611548836114fa565b946020939093013593505050565b60008060006060848603121561156b57600080fd5b611574846114fa565b9250611582602085016114fa565b9150604084013590509250925092565b600080604083850312156115a557600080fd5b6115ae836114fa565b91506115bc602084016114fa565b90509250929050565b600080604083850312156115d857600080fd5b50508035926020909101359150565b6000602082840312156115f957600080fd5b5035919050565b600181811c9082168061161457607f821691505b6020821081141561163557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156116645761166461163b565b500190565b60006020828403121561167b57600080fd5b5051919050565b600181815b808511156116bd5781600019048211156116a3576116a361163b565b808516156116b057918102915b93841c9390800290611687565b509250929050565b6000826116d4575060016109d4565b816116e1575060006109d4565b81600181146116f757600281146117015761171d565b60019150506109d4565b60ff8411156117125761171261163b565b50506001821b6109d4565b5060208310610133831016604e8410600b8410161715611740575081810a6109d4565b61174a8383611682565b806000190482111561175e5761175e61163b565b029392505050565b600061144e83836116c5565b6000828210156117845761178461163b565b500390565b60008160001904831182151516156117a3576117a361163b565b500290565b6000826117c557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052600160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220fc414ebd086d764b40670054381d00a1f438cbc0fc592c6da5c2e4a3fcb1e2e164736f6c63430008090033
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.
Add Token to MetaMask (Web3)