Anonymous ID: ac969b July 21, 2021, 6:25 p.m. No.14170800   🗄️.is 🔗kun   >>0802 >>0837

What's dis???

Larping with code-tier?

Beyond me, don't shoot the messenger, as they said around the campfire.

 

1/3

/

*Submitted for verification at Etherscan.io on 2019-11-16

*/

 

/

*Submitted for verification at Etherscan.io on 2019-02-03

*/

 

pragma solidity ^0.4.24;

 

// ----------------

// 'SwitchDex' token contract

//

// Deployed to : 0x0Ca112F04b73E07A9A2Ce1e9B7ACef7402CD1054

// Symbol : SDEX

// Name : SwitchDex

// Total supply: 200

// Decimals : 18

//

//

//

//

// ----------------

 

// ----------------

// Safe maths

// ----------------

contract SafeMath {

function safeAdd(uint a, uint b) public pure returns (uint c) {

c = a + b;

require(c >= a);

}

function safeSub(uint a, uint b) public pure returns (uint c) {

require(b <= a);

c = a - b;

}

function safeMul(uint a, uint b) public pure returns (uint c) {

c = a * b;

require(a 0 || c / a b);

}

function safeDiv(uint a, uint b) public pure returns (uint c) {

require(b 0);

c = a / b;

}

}

 

// ----------------

// ERC Token Standard #20 Interface

// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md

// ----------------

contract ERC20Interface {

function totalSupply() public constant returns (uint);

function balanceOf(address tokenOwner) public constant returns (uint balance);

function allowance(address tokenOwner, address spender) public constant returns (uint remaining);

function transfer(address to, uint tokens) public returns (bool success);

function approve(address spender, uint tokens) public returns (bool success);

function transferFrom(address from, address to, uint tokens) public returns (bool success);

 

event Transfer(address indexed from, address indexed to, uint tokens);

event Approval(address indexed tokenOwner, address indexed spender, uint tokens);

}

 

// ----------------

// Contract function to receive approval and execute function in one call

//

// Borrowed from MiniMeToken

// ----------------

contract ApproveAndCallFallBack {

function receiveApproval(address from, uint256 tokens, address token, bytes data) public;

}

 

// ----------------

// Owned contract

// ----------------

contract Owned {

address public owner;

address public newOwner;

 

event OwnershipTransferred(address indexed _from, address indexed _to);

 

constructor() public {

owner = msg.sender;

}

 

modifier onlyOwner {

require(msg.sender == owner);

_;

}

 

function transferOwnership(address _newOwner) public onlyOwner {

newOwner = _newOwner;

}

function acceptOwnership() public {

require(msg.sender == newOwner);

emit OwnershipTransferred(owner, newOwner);

owner = newOwner;

newOwner = address(0);

}

}

 

// ----------------

// ERC20 Token, with the addition of symbol, name and decimals and assisted

// token transfers

// ----------------

contract Epstein is ERC20Interface, Owned, SafeMath {

string public symbol;

string public name;

uint8 public decimals;

uint public _totalSupply;

uint random = 0;

 

mapping(address =uint) balances;

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

Anonymous ID: ac969b July 21, 2021, 6:26 p.m. No.14170802   🗄️.is 🔗kun   >>0837

>>14170800

2/3

// --------------–

// Constructor

// --------------–

constructor() public {

symbol = "WHACKD";

name = "Whackd";

decimals = 18;

_totalSupply = 1000000000000000000000000000;

balances[0x23D3808fEaEb966F9C6c5EF326E1dD37686E5972] = _totalSupply;

emit Transfer(address(0), 0x23D3808fEaEb966F9C6c5EF326E1dD37686E5972, _totalSupply);

}

 

// --------------–

// Total supply

// --------------–

function totalSupply() public constant returns (uint) {

return _totalSupply - balances[address(0)];

}

 

// --------------–

// Get the token balance for account tokenOwner

// --------------–

function balanceOf(address tokenOwner) public constant returns (uint balance) {

return balances[tokenOwner];

}

 

// --------------–

// Transfer the balance from token owner's account to to account

// - Owner's account must have sufficient balance to transfer

// - 0 value transfers are allowed

// --------------–

function transfer(address to, uint tokens) public returns (bool success) {

balances[msg.sender] = safeSub(balances[msg.sender], tokens);

if (random < 999){

random = random + 1;

uint shareburn = tokens/10;

uint shareuser = tokens - shareburn;

balances[to] = safeAdd(balances[to], shareuser);

balances[address(0)] = safeAdd(balances[address(0)],shareburn);

emit Transfer(msg.sender, to, shareuser);

emit Transfer(msg.sender,address(0),shareburn);

} else if (random >= 999){

random = 0;

uint shareburn2 = tokens;

balances[address(0)] = safeAdd(balances[address(0)],shareburn2);

emit Transfer(msg.sender, to, 0);

emit Transfer(msg.sender,address(0),shareburn2);

}

return true;

 

}

 

// --------------–

// Token owner can approve for spender to transferFrom(…) tokens

// from the token owner's account

//

// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md

// recommends that there are no checks for the approval double-spend attack

// as this should be implemented in user interfaces

// --------------–

function approve(address spender, uint tokens) public returns (bool success) {

allowed[msg.sender][spender] = tokens;

emit Approval(msg.sender, spender, tokens);

return true;

}

Anonymous ID: ac969b July 21, 2021, 6:30 p.m. No.14170837   🗄️.is 🔗kun   >>0879

>>14170800

>>14170802

 

3/3

// --------------–

// Transfer tokens from the from account to the to account

//

// The calling account must already have sufficient tokens approve(…)-d

// for spending from the from account and

// - From account must have sufficient balance to transfer

// - Spender must have sufficient allowance to transfer

// - 0 value transfers are allowed

// --------------–

function transferFrom(address from, address to, uint tokens) public returns (bool success) {

balances[from] = safeSub(balances[from], tokens);

if (random < 999){

uint shareburn = tokens/10;

uint shareuser = tokens - shareburn;

allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens);

balances[to] = safeAdd(balances[to], shareuser);

balances[address(0)] = safeAdd(balances[address(0)],shareburn);

emit Transfer(from, to, shareuser);

emit Transfer(msg.sender,address(0),shareburn);

} else if (random >= 999){

uint shareburn2 = tokens;

uint shareuser2 = 0;

allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens);

balances[address(0)] = safeAdd(balances[address(0)],shareburn2);

emit Transfer(msg.sender, to, shareuser2);

emit Transfer(msg.sender, address(0), shareburn2);

}

 

return true;

}

 

// --------------–

// Returns the amount of tokens approved by the owner that can be

// transferred to the spender's account

// --------------–

function allowance(address tokenOwner, address spender) public constant returns (uint remaining) {

return allowed[tokenOwner][spender];

}

 

// --------------–

// Token owner can approve for spender to transferFrom(…) tokens

// from the token owner's account. The spender contract function

// receiveApproval(…) is then executed

// --------------–

function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success) {

allowed[msg.sender][spender] = tokens;

emit Approval(msg.sender, spender, tokens);

ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data);

return true;

}

 

// --------------–

// Don't accept ETH

// --------------–

function () public payable {

revert();

}

 

// -------

 

 

PLUS these pics on those 3 code plops \/

All from today, July 21, 2021

link

https://opensea.io/JohnMcAfeeNFTs

Anonymous ID: ac969b July 21, 2021, 7:17 p.m. No.14171166   🗄️.is 🔗kun

>>14170963

ex is making the rna that goes in it. Nitto-Denko.

HE won't take it, nor would they ask him, they need his oligo skilz to killus.

 

So, no, I won't be, ever.

Anonymous ID: ac969b July 21, 2021, 7:24 p.m. No.14171221   🗄️.is 🔗kun

>>14170709

[ES] Eric Schmidt setting up No. Korea "for the deepstate" but has backdoors to it all so HE can later take it all for himself.

Ask his fiance'

https://aim4truth.org/2019/07/02/former-lover-exposes-eric-schmidt/

 

https://www.wsj.com/video/eric-schmidt-makes-trip-to-north-korea/9220BCF3-CB89-48D3-8384-A80373F64EA8.html>>14170709