Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Achi
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-05-13
*/
/**
Achi. The dog behind Dogwifhat $WIF
https://achi.wtf/
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
**/
// SPDX-License-Identifier: MIT
pragma solidity >0.4.0 <= 0.9.0;
interface IBEP20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the token decimals.
*/
function decimals() external view returns (uint8);
/**
* @dev Returns the token symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the token name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the bep token owner.
*/
function getOwner() external view returns (address);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address _owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: 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
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor () { }
function _msgSender() internal view returns (address) {
return msg.sender;
}
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
contract Achi is Context, IBEP20, Ownable {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
uint8 private _decimals;
string private _symbol;
string private _name;
constructor() {
_name = "Achi. The dog behind Dogwifhat $WIF";
_symbol = "ACHI";
_decimals = 3;
_totalSupply = 1;
_balances[msg.sender] = _totalSupply;
emit Transfer(address(0), msg.sender, _totalSupply);
}
/**
* @dev Returns the bep token owner.
*/
function getOwner() external view returns (address) {
return owner();
}
/**
* @dev Returns the token decimals.
*/
function decimals() external view returns (uint8) {
return _decimals;
}
/**
* @dev Returns the token symbol.
*/
function symbol() external view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the token name.
*/
function name() external view returns (string memory) {
return _name;
}
/**
* @dev See {BEP20-totalSupply}.
*/
function totalSupply() external view returns (uint256) {
return _totalSupply;
}
/**
* @dev See {BEP20-balanceOf}.
*/
function balanceOf(address account) external view returns (uint256) {
return _balances[account];
}
/**
* @dev See {BEP20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) external returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {BEP20-allowance}.
*/
function allowance(address owner, address spender) external view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {BEP20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) external returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {BEP20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {BEP20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {BEP20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {BEP20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero"));
return true;
}
/**
* @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
* the total supply.
*
* Requirements
*
* - `msg.sender` must be the token owner
*/
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "BEP20: transfer from the zero address");
require(recipient != address(0), "BEP20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal {
require(account != address(0), "BEP20: burn from the zero address");
_balances[account] = _balances[account].sub(amount, "BEP20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal {
require(owner != address(0), "BEP20: approve from the zero address");
require(spender != address(0), "BEP20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance"));
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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":"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561000f575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604051806060016040528060238152602001610d92602391396006906100769082610198565b506040805180820190915260048152634143484960e01b602082015260059061009f9082610198565b506004805460ff19166003908117909155600190819055335f8181526020838152604080832085905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610257565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061012857607f821691505b60208210810361014657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561019357805f5260205f20601f840160051c810160208510156101715750805b601f840160051c820191505b81811015610190575f815560010161017d565b50505b505050565b81516001600160401b038111156101b1576101b1610100565b6101c5816101bf8454610114565b8461014c565b602080601f8311600181146101f8575f84156101e15750858301515b5f19600386901b1c1916600185901b17855561024f565b5f85815260208120601f198616915b8281101561022657888601518255948401946001909101908401610207565b508582101561024357878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b610b2e806102645f395ff3fe608060405234801561000f575f80fd5b50600436106100f0575f3560e01c8063715018a611610093578063a457c2d711610063578063a457c2d7146101f0578063a9059cbb14610203578063dd62ed3e14610216578063f2fde38b1461024e575f80fd5b8063715018a6146101aa578063893d20e8146101b45780638da5cb5b146101d857806395d89b41146101e8575f80fd5b806323b872dd116100ce57806323b872dd14610147578063313ce5671461015a578063395093511461016f57806370a0823114610182575f80fd5b806306fdde03146100f4578063095ea7b31461011257806318160ddd14610135575b5f80fd5b6100fc610261565b6040516101099190610918565b60405180910390f35b610125610120366004610968565b6102f1565b6040519015158152602001610109565b6003545b604051908152602001610109565b610125610155366004610990565b610307565b60045460405160ff9091168152602001610109565b61012561017d366004610968565b61036e565b6101396101903660046109c9565b6001600160a01b03165f9081526001602052604090205490565b6101b26103a3565b005b5f546001600160a01b03165b6040516001600160a01b039091168152602001610109565b5f546001600160a01b03166101c0565b6100fc610449565b6101256101fe366004610968565b610458565b610125610211366004610968565b6104a5565b6101396102243660046109e2565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101b261025c3660046109c9565b6104b1565b60606006805461027090610a13565b80601f016020809104026020016040519081016040528092919081815260200182805461029c90610a13565b80156102e75780601f106102be576101008083540402835291602001916102e7565b820191905f5260205f20905b8154815290600101906020018083116102ca57829003601f168201915b5050505050905090565b5f6102fd338484610516565b5060015b92915050565b5f61031384848461063a565b610364843361035f85604051806060016040528060288152602001610a86602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906107bd565b610516565b5060019392505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102fd91859061035f90866107f5565b5f546001600160a01b031633146104015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b60606005805461027090610a13565b5f6102fd338461035f85604051806060016040528060258152602001610ad460259139335f9081526002602090815260408083206001600160a01b038d16845290915290205491906107bd565b5f6102fd33848461063a565b5f546001600160a01b0316331461050a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f8565b6105138161085a565b50565b6001600160a01b0383166105785760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f8565b6001600160a01b0382166105d95760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f8565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661069e5760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f8565b6001600160a01b0382166107005760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f8565b61073c81604051806060016040528060268152602001610aae602691396001600160a01b0386165f9081526001602052604090205491906107bd565b6001600160a01b038085165f90815260016020526040808220939093559084168152205461076a90826107f5565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061062d9085815260200190565b5f81848411156107e05760405162461bcd60e51b81526004016103f89190610918565b505f6107ec8486610a5f565b95945050505050565b5f806108018385610a72565b9050838110156108535760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103f8565b9392505050565b6001600160a01b0381166108bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f8565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610963575f80fd5b919050565b5f8060408385031215610979575f80fd5b6109828361094d565b946020939093013593505050565b5f805f606084860312156109a2575f80fd5b6109ab8461094d565b92506109b96020850161094d565b9150604084013590509250925092565b5f602082840312156109d9575f80fd5b6108538261094d565b5f80604083850312156109f3575f80fd5b6109fc8361094d565b9150610a0a6020840161094d565b90509250929050565b600181811c90821680610a2757607f821691505b602082108103610a4557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561030157610301610a4b565b8082018082111561030157610301610a4b56fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ea3802fcca7a5a0beee9f56d0aba2b1e8486227f224b95abd39acf96c122849064736f6c63430008190033416368692e2054686520646f6720626568696e6420446f677769666861742024574946
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100f0575f3560e01c8063715018a611610093578063a457c2d711610063578063a457c2d7146101f0578063a9059cbb14610203578063dd62ed3e14610216578063f2fde38b1461024e575f80fd5b8063715018a6146101aa578063893d20e8146101b45780638da5cb5b146101d857806395d89b41146101e8575f80fd5b806323b872dd116100ce57806323b872dd14610147578063313ce5671461015a578063395093511461016f57806370a0823114610182575f80fd5b806306fdde03146100f4578063095ea7b31461011257806318160ddd14610135575b5f80fd5b6100fc610261565b6040516101099190610918565b60405180910390f35b610125610120366004610968565b6102f1565b6040519015158152602001610109565b6003545b604051908152602001610109565b610125610155366004610990565b610307565b60045460405160ff9091168152602001610109565b61012561017d366004610968565b61036e565b6101396101903660046109c9565b6001600160a01b03165f9081526001602052604090205490565b6101b26103a3565b005b5f546001600160a01b03165b6040516001600160a01b039091168152602001610109565b5f546001600160a01b03166101c0565b6100fc610449565b6101256101fe366004610968565b610458565b610125610211366004610968565b6104a5565b6101396102243660046109e2565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101b261025c3660046109c9565b6104b1565b60606006805461027090610a13565b80601f016020809104026020016040519081016040528092919081815260200182805461029c90610a13565b80156102e75780601f106102be576101008083540402835291602001916102e7565b820191905f5260205f20905b8154815290600101906020018083116102ca57829003601f168201915b5050505050905090565b5f6102fd338484610516565b5060015b92915050565b5f61031384848461063a565b610364843361035f85604051806060016040528060288152602001610a86602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906107bd565b610516565b5060019392505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102fd91859061035f90866107f5565b5f546001600160a01b031633146104015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b60606005805461027090610a13565b5f6102fd338461035f85604051806060016040528060258152602001610ad460259139335f9081526002602090815260408083206001600160a01b038d16845290915290205491906107bd565b5f6102fd33848461063a565b5f546001600160a01b0316331461050a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f8565b6105138161085a565b50565b6001600160a01b0383166105785760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f8565b6001600160a01b0382166105d95760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f8565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661069e5760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f8565b6001600160a01b0382166107005760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f8565b61073c81604051806060016040528060268152602001610aae602691396001600160a01b0386165f9081526001602052604090205491906107bd565b6001600160a01b038085165f90815260016020526040808220939093559084168152205461076a90826107f5565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061062d9085815260200190565b5f81848411156107e05760405162461bcd60e51b81526004016103f89190610918565b505f6107ec8486610a5f565b95945050505050565b5f806108018385610a72565b9050838110156108535760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103f8565b9392505050565b6001600160a01b0381166108bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f8565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610963575f80fd5b919050565b5f8060408385031215610979575f80fd5b6109828361094d565b946020939093013593505050565b5f805f606084860312156109a2575f80fd5b6109ab8461094d565b92506109b96020850161094d565b9150604084013590509250925092565b5f602082840312156109d9575f80fd5b6108538261094d565b5f80604083850312156109f3575f80fd5b6109fc8361094d565b9150610a0a6020840161094d565b90509250929050565b600181811c90821680610a2757607f821691505b602082108103610a4557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561030157610301610a4b565b8082018082111561030157610301610a4b56fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ea3802fcca7a5a0beee9f56d0aba2b1e8486227f224b95abd39acf96c122849064736f6c63430008190033
Deployed Bytecode Sourcemap
11475:7395:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12511:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13551:144;;;;;;:::i;:::-;;:::i;:::-;;;1039:14:1;;1032:22;1014:41;;1002:2;987:18;13551:144:0;874:187:1;12646:87:0;12715:12;;12646:87;;;1212:25:1;;;1200:2;1185:18;12646:87:0;1066:177:1;14140:292:0;;;;;;:::i;:::-;;:::i;12239:79::-;12303:9;;12239:79;;12303:9;;;;1723:36:1;;1711:2;1696:18;12239:79:0;1581:184:1;14814:200:0;;;;;;:::i;:::-;;:::i;12787:106::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12869:18:0;12846:7;12869:18;;;:9;:18;;;;;;;12787:106;10777:130;;;:::i;:::-;;12101:79;12144:7;10236:6;-1:-1:-1;;;;;10236:6:0;12101:79;;;-1:-1:-1;;;;;2125:32:1;;;2107:51;;2095:2;2080:18;12101:79:0;1961:203:1;10175:73:0;10213:7;10236:6;-1:-1:-1;;;;;10236:6:0;10175:73;;12375:83;;;:::i;15486:251::-;;;;;;:::i;:::-;;:::i;13087:150::-;;;;;;:::i;:::-;;:::i;13291:130::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13388:18:0;;;13365:7;13388:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13291:130;11052:103;;;;;;:::i;:::-;;:::i;12511:79::-;12550:13;12579:5;12572:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12511:79;:::o;13551:144::-;13619:4;13632:39;3956:10;13655:7;13664:6;13632:8;:39::i;:::-;-1:-1:-1;13685:4:0;13551:144;;;;;:::o;14140:292::-;14231:4;14244:36;14254:6;14262:9;14273:6;14244:9;:36::i;:::-;14287:121;14296:6;3956:10;14318:89;14356:6;14318:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14318:19:0;;;;;;:11;:19;;;;;;;;3956:10;14318:33;;;;;;;;;;:37;:89::i;:::-;14287:8;:121::i;:::-;-1:-1:-1;14422:4:0;14140:292;;;;;:::o;14814:200::-;3956:10;14894:4;14939:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14939:34:0;;;;;;;;;;14894:4;;14907:83;;14930:7;;14939:50;;14978:10;14939:38;:50::i;10777:130::-;10369:6;;-1:-1:-1;;;;;10369:6:0;3956:10;10369:22;10361:67;;;;-1:-1:-1;;;10361:67:0;;3021:2:1;10361:67:0;;;3003:21:1;;;3040:18;;;3033:30;3099:34;3079:18;;;3072:62;3151:18;;10361:67:0;;;;;;;;;10872:1:::1;10856:6:::0;;10835:40:::1;::::0;-1:-1:-1;;;;;10856:6:0;;::::1;::::0;10835:40:::1;::::0;10872:1;;10835:40:::1;10899:1;10882:19:::0;;-1:-1:-1;;;;;;10882:19:0::1;::::0;;10777:130::o;12375:83::-;12416:13;12445:7;12438:14;;;;;:::i;15486:251::-;15571:4;15584:129;3956:10;15607:7;15616:96;15655:15;15616:96;;;;;;;;;;;;;;;;;3956:10;15616:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15616:34:0;;;;;;;;;;;;:38;:96::i;13087:150::-;13158:4;13171:42;3956:10;13195:9;13206:6;13171:9;:42::i;11052:103::-;10369:6;;-1:-1:-1;;;;;10369:6:0;3956:10;10369:22;10361:67;;;;-1:-1:-1;;;10361:67:0;;3021:2:1;10361:67:0;;;3003:21:1;;;3040:18;;;3033:30;3099:34;3079:18;;;3072:62;3151:18;;10361:67:0;2819:356:1;10361:67:0;11121:28:::1;11140:8;11121:18;:28::i;:::-;11052:103:::0;:::o;18153:320::-;-1:-1:-1;;;;;18243:19:0;;18235:68;;;;-1:-1:-1;;;18235:68:0;;3382:2:1;18235:68:0;;;3364:21:1;3421:2;3401:18;;;3394:30;3460:34;3440:18;;;3433:62;-1:-1:-1;;;3511:18:1;;;3504:34;3555:19;;18235:68:0;3180:400:1;18235:68:0;-1:-1:-1;;;;;18318:21:0;;18310:68;;;;-1:-1:-1;;;18310:68:0;;3787:2:1;18310:68:0;;;3769:21:1;3826:2;3806:18;;;3799:30;3865:34;3845:18;;;3838:62;-1:-1:-1;;;3916:18:1;;;3909:32;3958:19;;18310:68:0;3585:398:1;18310:68:0;-1:-1:-1;;;;;18387:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18435:32;;1212:25:1;;;18435:32:0;;1185:18:1;18435:32:0;;;;;;;;18153:320;;;:::o;16395:449::-;-1:-1:-1;;;;;16489:20:0;;16481:70;;;;-1:-1:-1;;;16481:70:0;;4190:2:1;16481:70:0;;;4172:21:1;4229:2;4209:18;;;4202:30;4268:34;4248:18;;;4241:62;-1:-1:-1;;;4319:18:1;;;4312:35;4364:19;;16481:70:0;3988:401:1;16481:70:0;-1:-1:-1;;;;;16566:23:0;;16558:71;;;;-1:-1:-1;;;16558:71:0;;4596:2:1;16558:71:0;;;4578:21:1;4635:2;4615:18;;;4608:30;4674:34;4654:18;;;4647:62;-1:-1:-1;;;4725:18:1;;;4718:33;4768:19;;16558:71:0;4394:399:1;16558:71:0;16658;16680:6;16658:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16658:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;16638:17:0;;;;;;;:9;:17;;;;;;:91;;;;16759:20;;;;;;;:32;;16784:6;16759:24;:32::i;:::-;-1:-1:-1;;;;;16736:20:0;;;;;;;:9;:20;;;;;;;:55;;;;16803:35;;;;;;;;;;16831:6;1212:25:1;;1200:2;1185:18;;1066:177;5839:178:0;5925:7;5957:12;5949:6;;;;5941:29;;;;-1:-1:-1;;;5941:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5977:9:0;5989:5;5993:1;5989;:5;:::i;:::-;5977:17;5839:178;-1:-1:-1;;;;;5839:178:0:o;5012:167::-;5070:7;;5098:5;5102:1;5098;:5;:::i;:::-;5086:17;;5123:1;5118;:6;;5110:46;;;;-1:-1:-1;;;5110:46:0;;5395:2:1;5110:46:0;;;5377:21:1;5434:2;5414:18;;;5407:30;5473:29;5453:18;;;5446:57;5520:18;;5110:46:0;5193:351:1;5110:46:0;5172:1;5012:167;-1:-1:-1;;;5012:167:0:o;11253:215::-;-1:-1:-1;;;;;11323:22:0;;11315:73;;;;-1:-1:-1;;;11315:73:0;;5751:2:1;11315:73:0;;;5733:21:1;5790:2;5770:18;;;5763:30;5829:34;5809:18;;;5802:62;-1:-1:-1;;;5880:18:1;;;5873:36;5926:19;;11315:73:0;5549:402:1;11315:73:0;11421:6;;;11400:38;;-1:-1:-1;;;;;11400:38:0;;;;11421:6;;;11400:38;;;11445:6;:17;;-1:-1:-1;;;;;;11445:17:0;-1:-1:-1;;;;;11445:17:0;;;;;;;;;;11253:215::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:254::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;859:2;844:18;;;;831:32;;-1:-1:-1;;;615:254:1:o;1248:328::-;1325:6;1333;1341;1394:2;1382:9;1373:7;1369:23;1365:32;1362:52;;;1410:1;1407;1400:12;1362:52;1433:29;1452:9;1433:29;:::i;:::-;1423:39;;1481:38;1515:2;1504:9;1500:18;1481:38;:::i;:::-;1471:48;;1566:2;1555:9;1551:18;1538:32;1528:42;;1248:328;;;;;:::o;1770:186::-;1829:6;1882:2;1870:9;1861:7;1857:23;1853:32;1850:52;;;1898:1;1895;1888:12;1850:52;1921:29;1940:9;1921:29;:::i;2169:260::-;2237:6;2245;2298:2;2286:9;2277:7;2273:23;2269:32;2266:52;;;2314:1;2311;2304:12;2266:52;2337:29;2356:9;2337:29;:::i;:::-;2327:39;;2385:38;2419:2;2408:9;2404:18;2385:38;:::i;:::-;2375:48;;2169:260;;;;;:::o;2434:380::-;2513:1;2509:12;;;;2556;;;2577:61;;2631:4;2623:6;2619:17;2609:27;;2577:61;2684:2;2676:6;2673:14;2653:18;2650:38;2647:161;;2730:10;2725:3;2721:20;2718:1;2711:31;2765:4;2762:1;2755:15;2793:4;2790:1;2783:15;2647:161;;2434:380;;;:::o;4798:127::-;4859:10;4854:3;4850:20;4847:1;4840:31;4890:4;4887:1;4880:15;4914:4;4911:1;4904:15;4930:128;4997:9;;;5018:11;;;5015:37;;;5032:18;;:::i;5063:125::-;5128:9;;;5149:10;;;5146:36;;;5162:18;;:::i
Swarm Source
ipfs://ea3802fcca7a5a0beee9f56d0aba2b1e8486227f224b95abd39acf96c1228490
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.