Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00Sponsored
Latest 25 from a total of 957 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 16935384 | 2 days 10 hrs ago | IN | 0 ETH | 0.00108505 | ||||
Transfer | 16933288 | 2 days 17 hrs ago | IN | 0 ETH | 0.00100592 | ||||
Transfer | 16925885 | 3 days 18 hrs ago | IN | 0 ETH | 0.00149794 | ||||
Transfer | 16890361 | 8 days 18 hrs ago | IN | 0 ETH | 0.00062701 | ||||
Transfer | 16890331 | 8 days 18 hrs ago | IN | 0 ETH | 0.0010334 | ||||
Transfer | 16883474 | 9 days 17 hrs ago | IN | 0 ETH | 0.00066782 | ||||
Transfer | 16868380 | 11 days 20 hrs ago | IN | 0 ETH | 0.00094329 | ||||
Transfer | 16836033 | 16 days 9 hrs ago | IN | 0 ETH | 0.001313 | ||||
Transfer | 16834313 | 16 days 15 hrs ago | IN | 0 ETH | 0.00131992 | ||||
Approve | 16826868 | 17 days 16 hrs ago | IN | 0 ETH | 0.00178341 | ||||
Transfer | 16826658 | 17 days 17 hrs ago | IN | 0 ETH | 0.00242434 | ||||
Transfer | 16826485 | 17 days 17 hrs ago | IN | 0 ETH | 0.00212383 | ||||
Transfer | 16817730 | 18 days 23 hrs ago | IN | 0 ETH | 0.000988 | ||||
Transfer | 16813643 | 19 days 13 hrs ago | IN | 0 ETH | 0.00085479 | ||||
Transfer | 16812280 | 19 days 17 hrs ago | IN | 0 ETH | 0.00087797 | ||||
Transfer | 16806986 | 20 days 11 hrs ago | IN | 0 ETH | 0.00201552 | ||||
Transfer | 16770708 | 25 days 14 hrs ago | IN | 0 ETH | 0.00215288 | ||||
Transfer | 16738083 | 30 days 4 hrs ago | IN | 0 ETH | 0.0011629 | ||||
Transfer | 16715412 | 33 days 8 hrs ago | IN | 0 ETH | 0.00127514 | ||||
Transfer | 16714637 | 33 days 11 hrs ago | IN | 0 ETH | 0.00116553 | ||||
Transfer | 16691132 | 36 days 18 hrs ago | IN | 0 ETH | 0.00137281 | ||||
Transfer | 16688625 | 37 days 3 hrs ago | IN | 0 ETH | 0.00138429 | ||||
Transfer | 16688568 | 37 days 3 hrs ago | IN | 0 ETH | 0.00075946 | ||||
Transfer | 16688558 | 37 days 3 hrs ago | IN | 0 ETH | 0.00068864 | ||||
Transfer | 16685143 | 37 days 14 hrs ago | IN | 0 ETH | 0.00176317 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
JackToken
Compiler Version
v0.5.13+commit.5b0b510c
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-11-22 */ pragma solidity 0.5.13; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a * b; assert(a == 0 || 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; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner public { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) internal balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0) && _to != address(this)); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0) && _to != address(this)); uint256 _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256 remaining) { return allowed[_owner][_spender]; } /** * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol */ function increaseApproval (address _spender, uint _addedValue) public returns (bool success) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval (address _spender, uint _subtractedValue) public returns (bool success) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } interface tokenRecipient { function receiveApproval(address _from, uint256 _value, bytes calldata _extraData) external; } contract JackToken is StandardToken, Ownable { event Burn(address indexed burner, uint256 value); string public constant name = "Jack Token"; string public constant symbol = "JACK"; uint public constant decimals = 18; // there is no problem in using * here instead of .mul() uint256 public constant initialSupply = 4600000000 * (10 ** uint256(decimals)); // Constructors constructor () public { totalSupply = initialSupply; balances[msg.sender] = initialSupply; // Send all tokens to owner emit Transfer(address(0), msg.sender, initialSupply); } function approveAndCall(address _spender, uint256 _value, bytes calldata _extraData) external returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, _extraData); return true; } } function transferAnyERC20Token(address _tokenAddress, address _to, uint _amount) public onlyOwner { ERC20(_tokenAddress).transfer(_to, _amount); } function mint(address account, uint value) public onlyOwner { require(account != address(0) && account != address(this)); totalSupply = totalSupply.add(value); balances[account] = balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { require(_value > 0); require(_value <= balances[msg.sender]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply = totalSupply.sub(_value); emit Burn(burner, _value); emit Transfer(burner, address(0), _value); } }
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":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Burn","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":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","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":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[],"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":"_tokenAddress","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[],"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
608060405234801561001057600080fd5b5033600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506012600a0a6401122e6e00026000819055506012600a0a6401122e6e0002600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6012600a0a6401122e6e00026040518082815260200191505060405180910390a3611b51806101336000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063cae9ca5111610071578063cae9ca5114610551578063d493b9ac1461060c578063d73dd6231461067a578063dd62ed3e146106e0578063f2fde38b1461075857610116565b806370a08231146103c65780638da5cb5b1461041e57806395d89b4114610468578063a9059cbb146104eb57610116565b8063313ce567116100e9578063313ce567146102a8578063378dc3dc146102c657806340c10f19146102e457806342966c6814610332578063661884631461036057610116565b806306fdde031461011b578063095ea7b31461019e57806318160ddd1461020457806323b872dd14610222575b600080fd5b61012361079c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610163578082015181840152602081019050610148565b50505050905090810190601f1680156101905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ea600480360360408110156101b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107d5565b604051808215151515815260200191505060405180910390f35b61020c6108c7565b6040518082815260200191505060405180910390f35b61028e6004803603606081101561023857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108cd565b604051808215151515815260200191505060405180910390f35b6102b0610bef565b6040518082815260200191505060405180910390f35b6102ce610bf4565b6040518082815260200191505060405180910390f35b610330600480360360408110156102fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c03565b005b61035e6004803603602081101561034857600080fd5b8101908080359060200190929190505050610de9565b005b6103ac6004803603604081101561037657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610faf565b604051808215151515815260200191505060405180910390f35b610408600480360360208110156103dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611240565b6040518082815260200191505060405180910390f35b610426611289565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104706112af565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104b0578082015181840152602081019050610495565b50505050905090810190601f1680156104dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105376004803603604081101561050157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112e8565b604051808215151515815260200191505060405180910390f35b6105f26004803603606081101561056757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156105ae57600080fd5b8201836020820111156105c057600080fd5b803590602001918460018302840111640100000000831117156105e257600080fd5b90919293919293905050506114f4565b604051808215151515815260200191505060405180910390f35b6106786004803603606081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115f0565b005b6106c66004803603604081101561069057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611712565b604051808215151515815260200191505060405180910390f35b610742600480360360408110156106f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061190e565b6040518082815260200191505060405180910390f35b61079a6004803603602081101561076e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611995565b005b6040518060400160405280600a81526020017f4a61636b20546f6b656e0000000000000000000000000000000000000000000081525081565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b60005481565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561093757503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61094057600080fd5b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610a1383600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ae990919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610aa883600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b0090919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610afe8382611ae990919063ffffffff16565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a360019150509392505050565b601281565b6012600a0a6401122e6e000281565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c5d57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610cc657503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b610ccf57600080fd5b610ce481600054611b0090919063ffffffff16565b600081905550610d3c81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b0090919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008111610df657600080fd5b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115610e4257600080fd5b6000339050610e9982600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ae990919063ffffffff16565b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ef182600054611ae990919063ffffffff16565b6000819055508073ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5836040518082815260200191505060405180910390a2600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050565b600080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808311156110c0576000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611154565b6110d38382611ae990919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6040518060400160405280600481526020017f4a41434b0000000000000000000000000000000000000000000000000000000081525081565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561135257503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61135b57600080fd5b6113ad82600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ae990919063ffffffff16565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061144282600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b0090919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b60008085905061150486866107d5565b156115e6578073ffffffffffffffffffffffffffffffffffffffff1663a2d57853338787876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b1580156115c457600080fd5b505af11580156115d8573d6000803e3d6000fd5b5050505060019150506115e8565b505b949350505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461164a57600080fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156116d157600080fd5b505af11580156116e5573d6000803e3d6000fd5b505050506040513d60208110156116fb57600080fd5b810190808051906020019092919050505050505050565b60006117a382600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b0090919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119ef57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a2957600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600082821115611af557fe5b818303905092915050565b600080828401905083811015611b1257fe5b809150509291505056fea265627a7a723158207502c4cd1777dbf0dd98a388b0166e9e86b3e1a240c0d2ce90b9bb746a914f9364736f6c634300050d0032
Deployed ByteCode Sourcemap
7438:2169:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7438:2169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7554:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;7554:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5680:192;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5680:192:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2012:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4470:575;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4470:575:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7648:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7751:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8619:305;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8619:305:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;9058:540;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9058:540:0;;;;;;;;;;;;;;;;;:::i;:::-;;6871:426;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6871:426:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3214:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3214:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1050:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7603:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;7603:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2634:371;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2634:371:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8077:358;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8077:358:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;8077:358:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;8077:358:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;8077:358:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8447:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8447:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6585:280;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6585:280:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6199:138;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6199:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1669:178;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1669:178:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;7554:42;;;;;;;;;;;;;;;;;;;:::o;5680:192::-;5747:4;5792:6;5760:7;:19;5768:10;5760:19;;;;;;;;;;;;;;;:29;5780:8;5760:29;;;;;;;;;;;;;;;:38;;;;5831:8;5810:38;;5819:10;5810:38;;;5841:6;5810:38;;;;;;;;;;;;;;;;;;5862:4;5855:11;;5680:192;;;;:::o;2012:26::-;;;;:::o;4470:575::-;4552:4;4588:1;4573:17;;:3;:17;;;;:41;;;;;4609:4;4594:20;;:3;:20;;;;4573:41;4565:50;;;;;;4624:18;4645:7;:14;4653:5;4645:14;;;;;;;;;;;;;;;:26;4660:10;4645:26;;;;;;;;;;;;;;;;4624:47;;4848:27;4868:6;4848:8;:15;4857:5;4848:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;4830:8;:15;4839:5;4830:15;;;;;;;;;;;;;;;:45;;;;4898:25;4916:6;4898:8;:13;4907:3;4898:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;4882:8;:13;4891:3;4882:13;;;;;;;;;;;;;;;:41;;;;4959:22;4974:6;4959:10;:14;;:22;;;;:::i;:::-;4930:7;:14;4938:5;4930:14;;;;;;;;;;;;;;;:26;4945:10;4930:26;;;;;;;;;;;;;;;:51;;;;5009:3;4993:28;;5002:5;4993:28;;;5014:6;4993:28;;;;;;;;;;;;;;;;;;5035:4;5028:11;;;4470:575;;;;;:::o;7648:34::-;7680:2;7648:34;:::o;7751:78::-;7680:2;7805;:23;7791:10;:38;7751:78;:::o;8619:305::-;1480:5;;;;;;;;;;;1466:19;;:10;:19;;;1458:28;;;;;;8717:1;8698:21;;:7;:21;;;;:49;;;;;8742:4;8723:24;;:7;:24;;;;8698:49;8690:58;;;;;;8783:22;8799:5;8783:11;;:15;;:22;;;;:::i;:::-;8769:11;:36;;;;8836:28;8858:5;8836:8;:17;8845:7;8836:17;;;;;;;;;;;;;;;;:21;;:28;;;;:::i;:::-;8816:8;:17;8825:7;8816:17;;;;;;;;;;;;;;;:48;;;;8901:7;8880:36;;8897:1;8880:36;;;8910:5;8880:36;;;;;;;;;;;;;;;;;;8619:305;;:::o;9058:540::-;9123:1;9114:6;:10;9106:19;;;;;;9154:8;:20;9163:10;9154:20;;;;;;;;;;;;;;;;9144:6;:30;;9136:39;;;;;;9369:14;9386:10;9369:27;;9426:28;9447:6;9426:8;:16;9435:6;9426:16;;;;;;;;;;;;;;;;:20;;:28;;;;:::i;:::-;9407:8;:16;9416:6;9407:16;;;;;;;;;;;;;;;:47;;;;9479:23;9495:6;9479:11;;:15;;:23;;;;:::i;:::-;9465:11;:37;;;;9523:6;9518:20;;;9531:6;9518:20;;;;;;;;;;;;;;;;;;9579:1;9554:36;;9563:6;9554:36;;;9583:6;9554:36;;;;;;;;;;;;;;;;;;9058:540;;:::o;6871:426::-;6960:12;6981:13;6997:7;:19;7005:10;6997:19;;;;;;;;;;;;;;;:29;7017:8;6997:29;;;;;;;;;;;;;;;;6981:45;;7056:8;7037:16;:27;7033:168;;;7107:1;7075:7;:19;7083:10;7075:19;;;;;;;;;;;;;;;:29;7095:8;7075:29;;;;;;;;;;;;;;;:33;;;;7033:168;;;7163:30;7176:16;7163:8;:12;;:30;;;;:::i;:::-;7131:7;:19;7139:10;7131:19;;;;;;;;;;;;;;;:29;7151:8;7131:29;;;;;;;;;;;;;;;:62;;;;7033:168;7233:8;7212:61;;7221:10;7212:61;;;7243:7;:19;7251:10;7243:19;;;;;;;;;;;;;;;:29;7263:8;7243:29;;;;;;;;;;;;;;;;7212:61;;;;;;;;;;;;;;;;;;7287:4;7280:11;;;6871:426;;;;:::o;3214:109::-;3270:15;3301:8;:16;3310:6;3301:16;;;;;;;;;;;;;;;;3294:23;;3214:109;;;:::o;1050:20::-;;;;;;;;;;;;;:::o;7603:38::-;;;;;;;;;;;;;;;;;;;:::o;2634:371::-;2697:4;2733:1;2718:17;;:3;:17;;;;:41;;;;;2754:4;2739:20;;:3;:20;;;;2718:41;2710:50;;;;;;2856:32;2881:6;2856:8;:20;2865:10;2856:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;2833:8;:20;2842:10;2833:20;;;;;;;;;;;;;;;:55;;;;2911:25;2929:6;2911:8;:13;2920:3;2911:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;2895:8;:13;2904:3;2895:13;;;;;;;;;;;;;;;:41;;;;2969:3;2948:33;;2957:10;2948:33;;;2974:6;2948:33;;;;;;;;;;;;;;;;;;2995:4;2988:11;;2634:371;;;;:::o;8077:358::-;8198:12;8229:22;8269:8;8229:49;;8293:25;8301:8;8311:6;8293:7;:25::i;:::-;8289:139;;;8335:7;:23;;;8359:10;8371:6;8379:10;;8335:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;8335:55:0;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8335:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8335:55:0;;;;8412:4;8405:11;;;;;8289:139;8077:358;;;;;;;;:::o;8447:160::-;1480:5;;;;;;;;;;;1466:19;;:10;:19;;;1458:28;;;;;;8562:13;8556:29;;;8586:3;8591:7;8556:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8556:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8556:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8556:43:0;;;;;;;;;;;;;;;;;8447:160;;;:::o;6585:280::-;6669:12;6722:46;6756:11;6722:7;:19;6730:10;6722:19;;;;;;;;;;;;;;;:29;6742:8;6722:29;;;;;;;;;;;;;;;;:33;;:46;;;;:::i;:::-;6690:7;:19;6698:10;6690:19;;;;;;;;;;;;;;;:29;6710:8;6690:29;;;;;;;;;;;;;;;:78;;;;6801:8;6780:61;;6789:10;6780:61;;;6811:7;:19;6819:10;6811:19;;;;;;;;;;;;;;;:29;6831:8;6811:29;;;;;;;;;;;;;;;;6780:61;;;;;;;;;;;;;;;;;;6855:4;6848:11;;6585:280;;;;:::o;6199:138::-;6273:17;6306:7;:15;6314:6;6306:15;;;;;;;;;;;;;;;:25;6322:8;6306:25;;;;;;;;;;;;;;;;6299:32;;6199:138;;;;:::o;1669:178::-;1480:5;;;;;;;;;;;1466:19;;:10;:19;;;1458:28;;;;;;1766:1;1746:22;;:8;:22;;;;1738:31;;;;;;1809:8;1781:37;;1802:5;;;;;;;;;;;1781:37;;;;;;;;;;;;1833:8;1825:5;;:16;;;;;;;;;;;;;;;;;;1669:178;:::o;572:113::-;630:7;658:1;653;:6;;646:14;;;;678:1;674;:5;667:12;;572:113;;;;:::o;691:133::-;749:7;765:9;781:1;777;:5;765:17;;801:1;796;:6;;789:14;;;;817:1;810:8;;;691:133;;;;:::o
Swarm Source
bzzr://7502c4cd1777dbf0dd98a388b0166e9e86b3e1a240c0d2ce90b9bb746a914f93
Loading...
Loading
Loading...
Loading
OVERVIEW
Jackr is a private, decentralized adult cryptocurrency that intends to solve the monopolization of the adult industry. By creating an all-new mining concept that rewards every content viewer/uploader/chatter with Jack Tokens, Jackr makes it possible for everyone to make money in the adult industry.
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.