ERC-20
Overview
Max Total Supply
13,156.862897836909049191 DFT-V1
Holders
1
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
13,156.862897836909049191 DFT-V1Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x1e60fa3a...799764E84 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
DeerfiV1SwapToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-07-12 */ // File: contracts/interfaces/IDeerfiV1SwapToken.sol pragma solidity >=0.5.0; interface IDeerfiV1SwapToken { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function mint(address to, uint value) external returns (bool); function burn(address from, uint value) external returns (bool); function transferOwnership(address _newOwner) external; } // File: contracts/libraries/SafeMath.sol pragma solidity =0.5.16; // a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math) library SafeMath { function add(uint x, uint y) internal pure returns (uint z) { require((z = x + y) >= x, 'ds-math-add-overflow'); } function sub(uint x, uint y) internal pure returns (uint z) { require((z = x - y) <= x, 'ds-math-sub-underflow'); } function mul(uint x, uint y) internal pure returns (uint z) { require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow'); } } // File: contracts/libraries/Ownable.sol pragma solidity =0.5.16; /** * @title Ownable contract * @dev The Ownable contract has an owner address, and provides basic authorization control functions. */ contract Ownable { address public owner; // Modifiers modifier onlyOwner() { require(msg.sender == owner); _; } modifier validAddress(address _address) { require(_address != address(0)); _; } // Events event OwnershipTransferred(address indexed _previousOwner, address indexed _newOwner); /// @dev The Ownable constructor sets the original `owner` of the contract to the sender account. constructor(address _owner) public validAddress(_owner) { owner = _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 validAddress(_newOwner) { emit OwnershipTransferred(owner, _newOwner); owner = _newOwner; } } // File: contracts/DeerfiV1SwapToken.sol pragma solidity =0.5.16; contract DeerfiV1SwapToken is IDeerfiV1SwapToken, Ownable { using SafeMath for uint; string public constant name = 'Deerfi Swap Token'; string public constant symbol = 'DFT-V1'; uint8 public constant decimals = 18; uint public totalSupply; mapping(address => uint) public balanceOf; mapping(address => mapping(address => uint)) public allowance; event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); constructor() Ownable(msg.sender) public { } function _approve(address owner, address spender, uint value) private { allowance[owner][spender] = value; emit Approval(owner, spender, value); } function _transfer(address from, address to, uint value) private { balanceOf[from] = balanceOf[from].sub(value); balanceOf[to] = balanceOf[to].add(value); emit Transfer(from, to, value); } function approve(address spender, uint value) external returns (bool) { _approve(msg.sender, spender, value); return true; } function transfer(address to, uint value) external returns (bool) { _transfer(msg.sender, to, value); return true; } function transferFrom(address from, address to, uint value) external returns (bool) { if (allowance[from][msg.sender] != uint(-1)) { allowance[from][msg.sender] = allowance[from][msg.sender].sub(value); } _transfer(from, to, value); return true; } function mint(address to, uint value) external onlyOwner returns (bool) { totalSupply = totalSupply.add(value); balanceOf[to] = balanceOf[to].add(value); emit Transfer(address(0), to, value); return true; } function burn(address from, uint value) external onlyOwner returns (bool){ balanceOf[from] = balanceOf[from].sub(value); totalSupply = totalSupply.sub(value); emit Transfer(from, address(0), value); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"_newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5033808061001d57600080fd5b50600080546001600160a01b039092166001600160a01b0319909216919091179055610a808061004e6000396000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c806370a082311161008c5780639dc29fac116100665780639dc29fac146102ce578063a9059cbb14610307578063dd62ed3e14610340578063f2fde38b1461037b576100df565b806370a08231146102625780638da5cb5b1461029557806395d89b41146102c6576100df565b806323b872dd116100bd57806323b872dd146101c8578063313ce5671461020b57806340c10f1914610229576100df565b806306fdde03146100e4578063095ea7b31461016157806318160ddd146101ae575b600080fd5b6100ec6103b0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012657818101518382015260200161010e565b50505050905090810190601f1680156101535780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61019a6004803603604081101561017757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356103e9565b604080519115158252519081900360200190f35b6101b6610400565b60408051918252519081900360200190f35b61019a600480360360608110156101de57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610406565b6102136104e5565b6040805160ff9092168252519081900360200190f35b61019a6004803603604081101561023f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356104ea565b6101b66004803603602081101561027857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166105c5565b61029d6105d7565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6100ec6105f3565b61019a600480360360408110156102e457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561062c565b61019a6004803603604081101561031d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561071a565b6101b66004803603604081101561035657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610727565b6103ae6004803603602081101561039157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610744565b005b6040518060400160405280601181526020017f446565726669205377617020546f6b656e00000000000000000000000000000081525081565b60006103f6338484610817565b5060015b92915050565b60015481565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff146104d05773ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832033845290915290205461049e908363ffffffff61088616565b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602090815260408083203384529091529020555b6104db8484846108f8565b5060019392505050565b601281565b6000805473ffffffffffffffffffffffffffffffffffffffff16331461050f57600080fd5b600154610522908363ffffffff6109d916565b60015573ffffffffffffffffffffffffffffffffffffffff831660009081526002602052604090205461055b908363ffffffff6109d916565b73ffffffffffffffffffffffffffffffffffffffff841660008181526002602090815260408083209490945583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60026020526000908152604090205481565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b6040518060400160405280600681526020017f4446542d5631000000000000000000000000000000000000000000000000000081525081565b6000805473ffffffffffffffffffffffffffffffffffffffff16331461065157600080fd5b73ffffffffffffffffffffffffffffffffffffffff8316600090815260026020526040902054610687908363ffffffff61088616565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600260205260409020556001546106c0908363ffffffff61088616565b60015560408051838152905160009173ffffffffffffffffffffffffffffffffffffffff8616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b60006103f63384846108f8565b600360209081526000928352604080842090915290825290205481565b60005473ffffffffffffffffffffffffffffffffffffffff16331461076857600080fd5b8073ffffffffffffffffffffffffffffffffffffffff811661078957600080fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808616939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a350600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b808203828111156103fa57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526002602052604090205461092e908263ffffffff61088616565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600260205260408082209390935590841681522054610970908263ffffffff6109d916565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b808201828110156103fa57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfea265627a7a723158205657451ef0416e220d8c9fd48ffbf17fdeb7243c27517634a6ccc1436009249864736f6c63430005100032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100df5760003560e01c806370a082311161008c5780639dc29fac116100665780639dc29fac146102ce578063a9059cbb14610307578063dd62ed3e14610340578063f2fde38b1461037b576100df565b806370a08231146102625780638da5cb5b1461029557806395d89b41146102c6576100df565b806323b872dd116100bd57806323b872dd146101c8578063313ce5671461020b57806340c10f1914610229576100df565b806306fdde03146100e4578063095ea7b31461016157806318160ddd146101ae575b600080fd5b6100ec6103b0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012657818101518382015260200161010e565b50505050905090810190601f1680156101535780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61019a6004803603604081101561017757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356103e9565b604080519115158252519081900360200190f35b6101b6610400565b60408051918252519081900360200190f35b61019a600480360360608110156101de57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610406565b6102136104e5565b6040805160ff9092168252519081900360200190f35b61019a6004803603604081101561023f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356104ea565b6101b66004803603602081101561027857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166105c5565b61029d6105d7565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6100ec6105f3565b61019a600480360360408110156102e457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561062c565b61019a6004803603604081101561031d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561071a565b6101b66004803603604081101561035657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610727565b6103ae6004803603602081101561039157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610744565b005b6040518060400160405280601181526020017f446565726669205377617020546f6b656e00000000000000000000000000000081525081565b60006103f6338484610817565b5060015b92915050565b60015481565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff146104d05773ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832033845290915290205461049e908363ffffffff61088616565b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602090815260408083203384529091529020555b6104db8484846108f8565b5060019392505050565b601281565b6000805473ffffffffffffffffffffffffffffffffffffffff16331461050f57600080fd5b600154610522908363ffffffff6109d916565b60015573ffffffffffffffffffffffffffffffffffffffff831660009081526002602052604090205461055b908363ffffffff6109d916565b73ffffffffffffffffffffffffffffffffffffffff841660008181526002602090815260408083209490945583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60026020526000908152604090205481565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b6040518060400160405280600681526020017f4446542d5631000000000000000000000000000000000000000000000000000081525081565b6000805473ffffffffffffffffffffffffffffffffffffffff16331461065157600080fd5b73ffffffffffffffffffffffffffffffffffffffff8316600090815260026020526040902054610687908363ffffffff61088616565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600260205260409020556001546106c0908363ffffffff61088616565b60015560408051838152905160009173ffffffffffffffffffffffffffffffffffffffff8616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b60006103f63384846108f8565b600360209081526000928352604080842090915290825290205481565b60005473ffffffffffffffffffffffffffffffffffffffff16331461076857600080fd5b8073ffffffffffffffffffffffffffffffffffffffff811661078957600080fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808616939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a350600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b808203828111156103fa57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526002602052604090205461092e908263ffffffff61088616565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600260205260408082209390935590841681522054610970908263ffffffff6109d916565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b808201828110156103fa57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfea265627a7a723158205657451ef0416e220d8c9fd48ffbf17fdeb7243c27517634a6ccc1436009249864736f6c63430005100032
Deployed Bytecode Sourcemap
2948:2134:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2948:2134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3045:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;3045:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3959:147;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3959:147:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3190:24;;;:::i;:::-;;;;;;;;;;;;;;;;4261:301;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4261:301:0;;;;;;;;;;;;;;;;;;:::i;3148:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4570:247;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4570:247:0;;;;;;;;;:::i;3221:41::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3221:41:0;;;;:::i;1978:20::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3101:40;;;:::i;4825:254::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4825:254:0;;;;;;;;;:::i;4114:139::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4114:139:0;;;;;;;;;:::i;3269:61::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3269:61:0;;;;;;;;;;;:::i;2686:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2686:177:0;;;;:::i;:::-;;3045:49;;;;;;;;;;;;;;;;;;;:::o;3959:147::-;4023:4;4040:36;4049:10;4061:7;4070:5;4040:8;:36::i;:::-;-1:-1:-1;4094:4:0;3959:147;;;;;:::o;3190:24::-;;;;:::o;4261:301::-;4360:15;;;4339:4;4360:15;;;:9;:15;;;;;;;;4376:10;4360:27;;;;;;;;4396:2;4360:39;4356:140;;4446:15;;;;;;;:9;:15;;;;;;;;4462:10;4446:27;;;;;;;;:38;;4478:5;4446:38;:31;:38;:::i;:::-;4416:15;;;;;;;:9;:15;;;;;;;;4432:10;4416:27;;;;;;;:68;4356:140;4506:26;4516:4;4522:2;4526:5;4506:9;:26::i;:::-;-1:-1:-1;4550:4:0;4261:301;;;;;:::o;3148:35::-;3181:2;3148:35;:::o;4570:247::-;4636:4;2079:5;;;;2065:10;:19;2057:28;;;;;;4667:11;;:22;;4683:5;4667:22;:15;:22;:::i;:::-;4653:11;:36;4716:13;;;;;;;:9;:13;;;;;;:24;;4734:5;4716:24;:17;:24;:::i;:::-;4700:13;;;;;;;:9;:13;;;;;;;;:40;;;;4756:31;;;;;;;4700:13;;;;4756:31;;;;;;;;;;-1:-1:-1;4805:4:0;4570:247;;;;:::o;3221:41::-;;;;;;;;;;;;;:::o;1978:20::-;;;;;;:::o;3101:40::-;;;;;;;;;;;;;;;;;;;:::o;4825:254::-;4893:4;2079:5;;;;2065:10;:19;2057:28;;;;;;4927:15;;;;;;;:9;:15;;;;;;:26;;4947:5;4927:26;:19;:26;:::i;:::-;4909:15;;;;;;;:9;:15;;;;;:44;4978:11;;:22;;4994:5;4978:22;:15;:22;:::i;:::-;4964:11;:36;5016:33;;;;;;;;5039:1;;5016:33;;;;;;;;;;;;;-1:-1:-1;5067:4:0;4825:254;;;;:::o;4114:139::-;4174:4;4191:32;4201:10;4213:2;4217:5;4191:9;:32::i;3269:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;2686:177::-;2079:5;;;;2065:10;:19;2057:28;;;;;;2762:9;2172:22;;;2164:31;;;;;;2810:5;;;2789:38;;;;;;;2810:5;;;2789:38;;;-1:-1:-1;2838:5:0;:17;;;;;;;;;;;;;;;2686:177::o;3554:169::-;3635:16;;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;3684:31;;;;;;;;;;;;;;;;;3554:169;;;:::o;1454:129::-;1538:5;;;1533:16;;;;1525:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3731:220;3825:15;;;;;;;:9;:15;;;;;;:26;;3845:5;3825:26;:19;:26;:::i;:::-;3807:15;;;;;;;;:9;:15;;;;;;:44;;;;3878:13;;;;;;;:24;;3896:5;3878:24;:17;:24;:::i;:::-;3862:13;;;;;;;;:9;:13;;;;;;;;;:40;;;;3918:25;;;;;;;3862:13;;3918:25;;;;;;;;;;;;;3731:220;;;:::o;1318:128::-;1402:5;;;1397:16;;;;1389:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://5657451ef0416e220d8c9fd48ffbf17fdeb7243c27517634a6ccc14360092498
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.