ETH Price: $3,302.98 (-2.03%)

Token

ACAcoin (ACA)
 

Overview

Max Total Supply

100,000,000 ACA

Holders

772

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
55,551.340131992156663232 ACA

Value
$0.00
0x0246d9630e367b4571b4468c423f1e5b0a8ead5d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ACA Token - HedgeBoard is the “MyFxBook” of Crypto. It’s a Trading Performance Verification Tracking System. Using blockchain technology it’s able to permanently record, store & secure all trading data of a traders portfolio using smart contracts in real time.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ACAcoin

Compiler Version
v0.4.11+commit.68ef5810

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2021-08-06
*/

pragma solidity 0.4.11;

contract ERC20Interface {
	uint256 public totalSupply;
	function balanceOf(address _owner) public constant returns (uint balance); // Get the account balance of another account with address _owner
	function transfer(address _to, uint256 _value) public returns (bool success); // Send _value amount of tokens to address _to
	function transferFrom(address _from, address _to, uint256 _value) public returns (bool success); // Send _value amount of tokens from address _from to address _to
	function approve(address _spender, uint256 _value) public returns (bool success);
	function allowance(address _owner, address _spender) public constant returns (uint256 remaining); // Returns the amount which _spender is still allowed to withdraw from _owner
	event Transfer(address indexed _from, address indexed _to, uint256 _value); // Triggered when tokens are transferred.
	event Approval(address indexed _owner, address indexed _spender, uint256 _value); // Triggered whenever approve(address _spender, uint256 _value) is called.
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
	function mul(uint256 a, uint256 b) internal constant returns (uint256) {
		uint256 c = a * b;
		assert(a == 0 || c / a == b);
		return c;
	}

	function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) {
		assert(b <= a);
		return a - b;
	}

	function add(uint256 a, uint256 b) internal constant returns (uint256) {
		uint256 c = a + b;
		assert(c >= a);
		return c;
	}
}
contract ERC20Token is ERC20Interface {
	using SafeMath for uint256;

	mapping (address => uint) balances;
	mapping (address => mapping (address => uint256)) allowed;

	modifier onlyPayloadSize(uint size) {
		require(msg.data.length >= (size + 4));
		_;
	}

	function () public{
		revert();
	}

	function balanceOf(address _owner) public constant returns (uint balance) {
		return balances[_owner];
	}
	function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
		return allowed[_owner][_spender];
	}

	function transfer(address _to, uint _value) public onlyPayloadSize(2 * 32) returns (bool success) {
		_transferFrom(msg.sender, _to, _value);
		return true;
	}
	function transferFrom(address _from, address _to, uint256 _value) public onlyPayloadSize(3 * 32) returns (bool) {
		allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
		_transferFrom(_from, _to, _value);
		return true;
	}
	function _transferFrom(address _from, address _to, uint256 _value) internal {
		require(_value > 0);
		balances[_from] = balances[_from].sub(_value);
		balances[_to] = balances[_to].add(_value);
		Transfer(_from, _to, _value);
	}

	function approve(address _spender, uint256 _value) public returns (bool) {
		require((_value == 0) || (allowed[msg.sender][_spender] == 0));
		allowed[msg.sender][_spender] = _value;
		Approval(msg.sender, _spender, _value);
		return true;
	}
}

contract owned {
	address public owner;

	function owned() public {
		owner = msg.sender;
	}

	modifier onlyOwner {
		if (msg.sender != owner) revert();
		_;
	}

	function transferOwnership(address newOwner) public onlyOwner {
		owner = newOwner;
	}
}


contract ACAcoin is ERC20Token, owned{
	using SafeMath for uint256;

	string public name = 'ACAcoin';
	string public symbol = 'ACA';
	uint8 public decimals = 18;
	uint256 public totalSupply = 150000000000000000000000000;

	function ACAcoin() public {
		balances[this] = totalSupply;
	}

	function setTokens(address target, uint256 _value) public onlyOwner {
		balances[this] = balances[this].sub(_value);
		balances[target] = balances[target].add(_value);
		Transfer(this, target, _value);
	}

	function burnBalance(address target, uint256 _value) public onlyOwner {
		totalSupply = totalSupply.sub(_value);
		balances[target] = balances[target].sub(_value);
		Transfer(this, address(0), _value);
	}
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnBalance","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"_value","type":"uint256"}],"name":"setTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"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"}]

60a0604052600760608190527f414341636f696e00000000000000000000000000000000000000000000000000608090815261003e91600491906100e8565b506040805180820190915260038082527f41434100000000000000000000000000000000000000000000000000000000006020909201918252610083916005916100e8565b506006805460ff191660121790556a7c13bc4b2c133c5600000060075534156100a857fe5b5b5b60038054600160a060020a03191633600160a060020a03161790555b600754600160a060020a0330166000908152600160205260409020555b610188565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061012957805160ff1916838001178555610156565b82800160010185558215610156579182015b8281111561015657825182559160200191906001019061013b565b5b50610163929150610167565b5090565b61018591905b80821115610163576000815560010161016d565b5090565b90565b6109ae806101976000396000f300606060405236156100c25763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d8578063095ea7b31461016857806318160ddd1461019b57806323b872dd146101bd578063313ce567146101f65780634ba94ec91461021c57806370a082311461023d5780638da5cb5b1461026b57806395d89b4114610297578063a9059cbb14610327578063bac796511461035a578063dd62ed3e1461037b578063f2fde38b146103af575b34156100ca57fe5b6100d65b60006000fd5b565b005b34156100e057fe5b6100e86103cd565b60408051602080825283518183015283519192839290830191850190808383821561012e575b80518252602083111561012e57601f19909201916020918201910161010e565b505050905090810190601f16801561015a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017057fe5b610187600160a060020a036004351660243561045b565b604080519115158252519081900360200190f35b34156101a357fe5b6101ab610500565b60408051918252519081900360200190f35b34156101c557fe5b610187600160a060020a0360043581169060243516604435610506565b604080519115158252519081900360200190f35b34156101fe57fe5b610206610590565b6040805160ff9092168252519081900360200190f35b341561022457fe5b6100d6600160a060020a0360043516602435610599565b005b341561024557fe5b6101ab600160a060020a0360043516610653565b60408051918252519081900360200190f35b341561027357fe5b61027b610672565b60408051600160a060020a039092168252519081900360200190f35b341561029f57fe5b6100e8610681565b60408051602080825283518183015283519192839290830191850190808383821561012e575b80518252602083111561012e57601f19909201916020918201910161010e565b505050905090810190601f16801561015a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561032f57fe5b610187600160a060020a036004351660243561070f565b604080519115158252519081900360200190f35b341561036257fe5b6100d6600160a060020a036004351660243561073a565b005b341561038357fe5b6101ab600160a060020a0360043581169060243516610812565b60408051918252519081900360200190f35b34156103b757fe5b6100d6600160a060020a036004351661083f565b005b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104535780601f1061042857610100808354040283529160200191610453565b820191906000526020600020905b81548152906001019060200180831161043657829003601f168201915b505050505081565b600081158061048d5750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b15156104995760006000fd5b600160a060020a03338116600081815260026020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b60075481565b6000606060643610156105195760006000fd5b600160a060020a0380861660009081526002602090815260408083203390941683529290522054610550908463ffffffff61088816565b600160a060020a038087166000908152600260209081526040808320339094168352929052205561058285858561089f565b600191505b5b509392505050565b60065460ff1681565b60035433600160a060020a039081169116146105b55760006000fd5b6007546105c8908263ffffffff61088816565b600755600160a060020a0382166000908152600160205260409020546105f4908263ffffffff61088816565b600160a060020a0380841660009081526001602090815260408083209490945583518581529351919330909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35b5b5050565b600160a060020a0381166000908152600160205260409020545b919050565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104535780601f1061042857610100808354040283529160200191610453565b820191906000526020600020905b81548152906001019060200180831161043657829003601f168201915b505050505081565b6000604060443610156107225760006000fd5b61072d33858561089f565b600191505b5b5092915050565b60035433600160a060020a039081169116146107565760006000fd5b600160a060020a03301660009081526001602052604090205461077f908263ffffffff61088816565b600160a060020a0330811660009081526001602052604080822093909355908416815220546107b4908263ffffffff61096816565b600160a060020a038084166000818152600160209081526040918290209490945580518581529051919330909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35b5b5050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a0390811691161461085b5760006000fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282111561089457fe5b508082035b92915050565b600081116108ad5760006000fd5b600160a060020a0383166000908152600160205260409020546108d6908263ffffffff61088816565b600160a060020a03808516600090815260016020526040808220939093559084168152205461090b908263ffffffff61096816565b600160a060020a0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35b505050565b60008282018381101561097757fe5b8091505b50929150505600a165627a7a7230582091c3e3fe25d889aa531647696cd2cfaa87f93db9a30dfecb85d1fa6406ea629e0029

Deployed Bytecode

0x606060405236156100c25763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d8578063095ea7b31461016857806318160ddd1461019b57806323b872dd146101bd578063313ce567146101f65780634ba94ec91461021c57806370a082311461023d5780638da5cb5b1461026b57806395d89b4114610297578063a9059cbb14610327578063bac796511461035a578063dd62ed3e1461037b578063f2fde38b146103af575b34156100ca57fe5b6100d65b60006000fd5b565b005b34156100e057fe5b6100e86103cd565b60408051602080825283518183015283519192839290830191850190808383821561012e575b80518252602083111561012e57601f19909201916020918201910161010e565b505050905090810190601f16801561015a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017057fe5b610187600160a060020a036004351660243561045b565b604080519115158252519081900360200190f35b34156101a357fe5b6101ab610500565b60408051918252519081900360200190f35b34156101c557fe5b610187600160a060020a0360043581169060243516604435610506565b604080519115158252519081900360200190f35b34156101fe57fe5b610206610590565b6040805160ff9092168252519081900360200190f35b341561022457fe5b6100d6600160a060020a0360043516602435610599565b005b341561024557fe5b6101ab600160a060020a0360043516610653565b60408051918252519081900360200190f35b341561027357fe5b61027b610672565b60408051600160a060020a039092168252519081900360200190f35b341561029f57fe5b6100e8610681565b60408051602080825283518183015283519192839290830191850190808383821561012e575b80518252602083111561012e57601f19909201916020918201910161010e565b505050905090810190601f16801561015a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561032f57fe5b610187600160a060020a036004351660243561070f565b604080519115158252519081900360200190f35b341561036257fe5b6100d6600160a060020a036004351660243561073a565b005b341561038357fe5b6101ab600160a060020a0360043581169060243516610812565b60408051918252519081900360200190f35b34156103b757fe5b6100d6600160a060020a036004351661083f565b005b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104535780601f1061042857610100808354040283529160200191610453565b820191906000526020600020905b81548152906001019060200180831161043657829003601f168201915b505050505081565b600081158061048d5750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b15156104995760006000fd5b600160a060020a03338116600081815260026020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b60075481565b6000606060643610156105195760006000fd5b600160a060020a0380861660009081526002602090815260408083203390941683529290522054610550908463ffffffff61088816565b600160a060020a038087166000908152600260209081526040808320339094168352929052205561058285858561089f565b600191505b5b509392505050565b60065460ff1681565b60035433600160a060020a039081169116146105b55760006000fd5b6007546105c8908263ffffffff61088816565b600755600160a060020a0382166000908152600160205260409020546105f4908263ffffffff61088816565b600160a060020a0380841660009081526001602090815260408083209490945583518581529351919330909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35b5b5050565b600160a060020a0381166000908152600160205260409020545b919050565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104535780601f1061042857610100808354040283529160200191610453565b820191906000526020600020905b81548152906001019060200180831161043657829003601f168201915b505050505081565b6000604060443610156107225760006000fd5b61072d33858561089f565b600191505b5b5092915050565b60035433600160a060020a039081169116146107565760006000fd5b600160a060020a03301660009081526001602052604090205461077f908263ffffffff61088816565b600160a060020a0330811660009081526001602052604080822093909355908416815220546107b4908263ffffffff61096816565b600160a060020a038084166000818152600160209081526040918290209490945580518581529051919330909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35b5b5050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a0390811691161461085b5760006000fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282111561089457fe5b508082035b92915050565b600081116108ad5760006000fd5b600160a060020a0383166000908152600160205260409020546108d6908263ffffffff61088816565b600160a060020a03808516600090815260016020526040808220939093559084168152205461090b908263ffffffff61096816565b600160a060020a0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35b505050565b60008282018381101561097757fe5b8091505b50929150505600a165627a7a7230582091c3e3fe25d889aa531647696cd2cfaa87f93db9a30dfecb85d1fa6406ea629e0029

Deployed Bytecode Sourcemap

3592:724:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2121:36;2144:8;;;2121:36;:::o;3592:724::-;;3665:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3066:247:0;;;;;;;;-1:-1:-1;;;;;3066:247:0;;;;;;;;;;;;;;;;;;;;;;;;;3761:56;;;;;;;;;;;;;;;;;;;;;;;;;;2581:243;;;;;;;;-1:-1:-1;;;;;2581:243:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3731:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4105:208;;;;;;;;-1:-1:-1;;;;;4105:208:0;;;;;;;;;2162:107;;;;;;;;-1:-1:-1;;;;;2162:107:0;;;;;;;;;;;;;;;;;;;;;3339:20;;;;;;;;;;;;;;-1:-1:-1;;;;;3339:20:0;;;;;;;;;;;;;;3699:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2416:162:0;;;;;;;;-1:-1:-1;;;;;2416:162:0;;;;;;;;;;;;;;;;;;;;;;;;;3892:208;;;;;;;;-1:-1:-1;;;;;3892:208:0;;;;;;;;;2272:139;;;;;;;;-1:-1:-1;;;;;2272:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;3495:88;;;;;;;;-1:-1:-1;;;;;3495:88:0;;;;;;;3665:30;;;;;;;;;;;;;;;-1:-1:-1;;3665:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3066:247::-;3133:4;3153:11;;;3152:53;;-1:-1:-1;;;;;;3178:10:0;3170:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;:34;3152:53;3144:62;;;;;;;;-1:-1:-1;;;;;3219:10:0;3211:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:38;;;3254;;;;;;;;;;;;;;;;;-1:-1:-1;3304:4:0;3066:247;;;;;:::o;3761:56::-;;;;:::o;2581:243::-;2687:4;2670:6;2095:8;2075;:29;;2067:38;;;;;;-1:-1:-1;;;;;2727:14:0;;;;;;;:7;:14;;;;;;;;2742:10;2727:26;;;;;;;;;;:38;;2758:6;2727:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;2698:14:0;;;;;;;:7;:14;;;;;;;;2713:10;2698:26;;;;;;;;;:67;2770:33;2706:5;2791:3;2796:6;2770:13;:33::i;:::-;2815:4;2808:11;;2110:1;2581:243;;;;;;;:::o;3731:26::-;;;;;;:::o;4105:208::-;3464:5;;3450:10;-1:-1:-1;;;;;3450:19:0;;;3464:5;;3450:19;3446:33;;3471:8;;;3446:33;4194:11;;:23;;4210:6;4194:23;:15;:23;:::i;:::-;4180:11;:37;-1:-1:-1;;;;;4241:16:0;;;;;;:8;:16;;;;;;:28;;4262:6;4241:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;4222:16:0;;;;;;;:8;:16;;;;;;;;:47;;;;4274:34;;;;;;;4222:16;;4283:4;4274:34;;;;;;;;;;;;;;;3484:1;4105:208;;;:::o;2162:107::-;-1:-1:-1;;;;;2248:16:0;;2222:12;2248:16;;;:8;:16;;;;;;2162:107;;;;:::o;3339:20::-;;;-1:-1:-1;;;;;3339:20:0;;:::o;3699:28::-;;;;;;;;;;;;;;;-1:-1:-1;;3699:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2416:162::-;2500:12;2483:6;2095:8;2075;:29;;2067:38;;;;;;2519;2533:10;2545:3;2550:6;2519:13;:38::i;:::-;2569:4;2562:11;;2110:1;2416:162;;;;;;:::o;3892:208::-;3464:5;;3450:10;-1:-1:-1;;;;;3450:19:0;;;3464:5;;3450:19;3446:33;;3471:8;;;3446:33;-1:-1:-1;;;;;3991:4:0;3982:14;;;;;:8;:14;;;;;;:26;;4001:6;3982:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;3974:4:0;3965:14;;;;;;:8;:14;;;;;;:43;;;;4032:16;;;;;;;:28;;4053:6;4032:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;4013:16:0;;;;;;;:8;:16;;;;;;;;;:47;;;;4065:30;;;;;;;4013:16;;4074:4;4065:30;;;;;;;;;;;;;3484:1;3892:208;;;:::o;2272:139::-;-1:-1:-1;;;;;2381:15:0;;;2350:17;2381:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;2272:139;;;;;:::o;3495:88::-;3464:5;;3450:10;-1:-1:-1;;;;;3450:19:0;;;3464:5;;3450:19;3446:33;;3471:8;;;3446:33;3562:5;:16;;-1:-1:-1;;3562:16:0;-1:-1:-1;;;;;3562:16:0;;;;;3484:1;3495:88;;:::o;1599:112::-;1661:7;1682:6;;;;1675:14;;;;-1:-1:-1;1701:5:0;;;1599:112;;;;;:::o;2827:234::-;2925:1;2916:10;;2908:19;;;;;;-1:-1:-1;;;;;2950:15:0;;;;;;:8;:15;;;;;;:27;;2970:6;2950:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;2932:15:0;;;;;;;:8;:15;;;;;;:45;;;;2998:13;;;;;;;:25;;3016:6;2998:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2982:13:0;;;;;;;:8;:13;;;;;;;;;:41;;;;3028:28;;;;;;;2982:13;;3028:28;;;;;;;;;;;;;2827:234;;;;:::o;1716:130::-;1778:7;1804:5;;;1821:6;;;;1814:14;;;;1840:1;1833:8;;1716:130;;;;;;:::o

Swarm Source

bzzr://91c3e3fe25d889aa531647696cd2cfaa87f93db9a30dfecb85d1fa6406ea629e
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.