Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- BBACoin
- Optimization enabled
- false
- Compiler version
- v0.8.20+commit.a1b79de6
- EVM Version
- Verified at
- 2026-09-14T19:05:22.944375Z
Constructor Arguments
000000000000000000000000dae9dd3d1a52cfce9d5f2fac7fde164d500e50f7
Arg [0] (address) : 0xdae9dd3d1a52cfce9d5f2fac7fde164d500e50f7
contracts/core/BBACoin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import {IUniswapV2Router02} from "../interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "../interfaces/IUniswapV2Factory.sol";
/// @title BBACoin
/// @notice Blockbid's exchange token. Takes 5% on AMM buys/sells, accumulates it,
/// then swaps to PLS and ships it off to the YieldVault once there's enough.
contract BBACoin is ERC20, ERC20Burnable, AccessControl, ReentrancyGuard {
// --- Roles ---
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); // BidToken mints from here
bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); // QuarterlyBurner
bytes32 public constant TAX_EXEMPT_ROLE = keccak256("TAX_EXEMPT_ROLE"); // vault, routers, treasury, etc
// --- State ---
IUniswapV2Router02 public dexRouter;
address public wrappedNative; // WPLS on PulseChain, WETH elsewhere
address public dexPair; // BBA/WPLS pool
address public yieldVault; // where the swapped PLS goes
address public treasuryWallet; // burns come out of here
uint256 public constant TAX_RATE = 500; // 5% in bps
uint256 private constant BPS_DENOMINATOR = 10000;
// lifetime mint ceiling, enforced in mint(). decimals() is 18 (OZ default).
uint256 public constant MAX_SUPPLY = 500_000_000 * 10 ** 18;
// cumulative amount ever minted; never decreases on burn, so burned supply
// is gone for good and can't be re-minted.
uint256 public totalMinted;
// how much BBA the contract needs to be holding before it bothers swapping
uint256 public swapTokensAtAmount;
bool private swapping; // guard so the swap doesn't tax/re-trigger itself
mapping(address => bool) public automatedMarketMakerPairs;
// --- Events ---
event YieldVaultUpdated(address indexed previousVault, address indexed newVault);
event TreasuryWalletUpdated(address indexed previousTreasury, address indexed newTreasury);
event SwapTokensAtAmountUpdated(uint256 amount);
event AutomatedMarketMakerPairSet(address indexed pair, bool value);
event TaxSwapped(uint256 tokensSwapped, address indexed yieldVault);
// _routerAddress is the PulseX (uni v2) router
constructor(address _routerAddress)
ERC20("Blockbid Auction Coin", "BBA")
{
require(_routerAddress != address(0), "BBA: router is zero");
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
dexRouter = IUniswapV2Router02(_routerAddress);
wrappedNative = _resolveWrappedNative();
// spin up the BBA/WPLS pair via the factory
dexPair = IUniswapV2Factory(dexRouter.factory()).createPair(
address(this),
wrappedNative
);
_setAutomatedMarketMakerPair(dexPair, true);
swapTokensAtAmount = 10_000 * 10 ** decimals(); // sane default
// contract + deployer don't pay tax
_grantRole(TAX_EXEMPT_ROLE, address(this));
_grantRole(TAX_EXEMPT_ROLE, msg.sender);
}
/// @dev PulseX forked Uniswap V2 but renamed WETH() to WPLS(), and the live
/// router has no WETH() at all - calling it reverts. Probe for the
/// standard name first and fall back, so the same bytecode deploys on
/// PulseChain and on any ordinary Uniswap V2 fork. Called once, in the
/// constructor; the result is cached because dexRouter never changes.
function _resolveWrappedNative() private view returns (address) {
try dexRouter.WETH() returns (address weth) {
require(weth != address(0), "BBA: wrapped native is zero");
return weth;
} catch {
address wpls = dexRouter.WPLS();
require(wpls != address(0), "BBA: wrapped native is zero");
return wpls;
}
}
// --- Admin ---
/// @notice Set the wallet that receives swapped PLS.
function setYieldVault(address _vault)
external
onlyRole(DEFAULT_ADMIN_ROLE)
{
require(_vault != address(0), "BBA: vault is zero");
address previous = yieldVault;
// pull the old vault's exemption when we rotate, but never touch our own
if (
previous != address(0) &&
previous != _vault &&
previous != address(this)
) {
_revokeRole(TAX_EXEMPT_ROLE, previous);
}
yieldVault = _vault;
_grantRole(TAX_EXEMPT_ROLE, _vault);
emit YieldVaultUpdated(previous, _vault);
}
/// @notice Set the treasury that burnSupply pulls from. Same rotation logic as the vault.
function setTreasuryWallet(address _treasury)
external
onlyRole(DEFAULT_ADMIN_ROLE)
{
require(_treasury != address(0), "BBA: treasury is zero");
address previous = treasuryWallet;
if (
previous != address(0) &&
previous != _treasury &&
previous != address(this)
) {
_revokeRole(TAX_EXEMPT_ROLE, previous);
}
treasuryWallet = _treasury;
_grantRole(TAX_EXEMPT_ROLE, _treasury);
emit TreasuryWalletUpdated(previous, _treasury);
}
// flip an address in/out of the AMM set. true => trades against it get taxed.
function setAutomatedMarketMakerPair(address _pair, bool _value)
public
onlyRole(DEFAULT_ADMIN_ROLE)
{
_setAutomatedMarketMakerPair(_pair, _value);
}
function setSwapTokensAtAmount(uint256 _amount)
external
onlyRole(DEFAULT_ADMIN_ROLE)
{
require(_amount > 0, "BBA: amount is zero");
swapTokensAtAmount = _amount;
emit SwapTokensAtAmountUpdated(_amount);
}
function _setAutomatedMarketMakerPair(address _pair, bool _value) private {
require(_pair != address(0), "BBA: pair is zero");
automatedMarketMakerPairs[_pair] = _value;
emit AutomatedMarketMakerPairSet(_pair, _value);
}
// --- External integrations ---
function mint(address to, uint256 amount) external onlyRole(MINTER_ROLE) {
require(totalMinted + amount <= MAX_SUPPLY, "BBA: max supply exceeded");
totalMinted += amount;
_mint(to, amount);
}
/// @notice Burn BBA out of the treasury, dropping total supply.
/// @dev BURNER_ROLE only, and the treasury has to approve(this, amount) first.
/// So you need the role AND an allowance - belt and suspenders.
function burnSupply(uint256 amount) external onlyRole(BURNER_ROLE) {
require(treasuryWallet != address(0), "BBA: treasury not set");
_spendAllowance(treasuryWallet, address(this), amount);
_burn(treasuryWallet, amount);
}
// router sends us PLS during the swap
receive() external payable {}
// --- Tax engine ---
// OZ 5.x transfer hook. Skims the tax and kicks off the swap when we've got enough.
function _update(address from, address to, uint256 value)
internal
override
{
// mid-swap: just move the tokens, don't tax, don't recurse
if (swapping) {
super._update(from, to, value);
return;
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
// only swap on sells (not buys), not when we're the sender, and once the
// vault is actually set - otherwise we'd be burning PLS into the void
if (
canSwap &&
!automatedMarketMakerPairs[from] &&
from != address(this) &&
yieldVault != address(0)
) {
swapTokensForNative(contractTokenBalance);
}
// tax only hits AMM trades, and only if neither side is exempt
bool isAmmTrade =
automatedMarketMakerPairs[from] || automatedMarketMakerPairs[to];
bool isExempt =
hasRole(TAX_EXEMPT_ROLE, from) || hasRole(TAX_EXEMPT_ROLE, to);
uint256 taxAmount;
if (isAmmTrade && !isExempt) {
taxAmount = (value * TAX_RATE) / BPS_DENOMINATOR;
}
if (taxAmount > 0) {
super._update(from, address(this), taxAmount);
}
super._update(from, to, value - taxAmount);
}
// --- Auto-swap ---
function swapTokensForNative(uint256 tokenAmount) private nonReentrant {
// never swap more than one threshold at a time. keeps price impact (and
// sandwich risk on thin PulseX pools) down; the rest waits for next time.
if (tokenAmount > swapTokensAtAmount) {
tokenAmount = swapTokensAtAmount;
}
swapping = true;
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = wrappedNative;
_approve(address(this), address(dexRouter), tokenAmount);
// IMPORTANT: this try/catch is load-bearing. If the pool is dry or the
// router pukes for whatever reason, we must NOT let it revert the user's
// transfer. Worst case the tax just sits here and we retry next trigger.
// swapping is reset after the try/catch so both paths clear it.
try
dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // take whatever PLS we get
path,
yieldVault,
block.timestamp
)
{
emit TaxSwapped(tokenAmount, yieldVault);
} catch {
// swap failed, leave the tokens here and move on
}
swapping = false;
}
}
@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.20;
import {ERC20} from "../ERC20.sol";
import {Context} from "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys a `value` amount of tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 value) public virtual {
_burn(_msgSender(), value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, deducting from
* the caller's allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `value`.
*/
function burnFrom(address account, uint256 value) public virtual {
_spendAllowance(account, _msgSender(), value);
_burn(account, value);
}
}
@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity >=0.6.2;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
@openzeppelin/contracts/access/IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (access/IAccessControl.sol)
pragma solidity >=0.8.4;
/**
* @dev External interface of AccessControl declared to support ERC-165 detection.
*/
interface IAccessControl {
/**
* @dev The `account` is missing a role.
*/
error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);
/**
* @dev The caller of a function is not the expected one.
*
* NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
*/
error AccessControlBadConfirmation();
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted to signal this.
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).
* Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `callerConfirmation`.
*/
function renounceRole(bytes32 role, address callerConfirmation) external;
}
@openzeppelin/contracts/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/IERC165.sol)
pragma solidity >=0.4.16;
/**
* @dev Interface of the ERC-165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[ERC].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
contracts/interfaces/IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/// @title IUniswapV2Router02
/// @notice Minimal interface for the PulseX (Uniswap V2 fork) router.
/// @dev The wrapped-native getter is spelled two ways in the wild: Uniswap and
/// most forks expose `WETH()`, but the live PulseX router only has
/// `WPLS()`. Both are declared here; BBACoin probes for whichever exists.
interface IUniswapV2Router02 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function WPLS() external pure returns (address);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function getAmountsOut(uint256 amountIn, address[] calldata path)
external
view
returns (uint256[] memory amounts);
}
@openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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 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.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
@openzeppelin/contracts/utils/StorageSlot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.20;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC-1967 implementation slot:
* ```solidity
* contract ERC1967 {
* // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(newImplementation.code.length > 0);
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*
* TIP: Consider using this library along with {SlotDerivation}.
*/
library StorageSlot {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct Int256Slot {
int256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes value;
}
/**
* @dev Returns an `AddressSlot` with member `value` located at `slot`.
*/
function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `Int256Slot` with member `value` located at `slot`.
*/
function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
assembly ("memory-safe") {
r.slot := store.slot
}
}
/**
* @dev Returns a `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
assembly ("memory-safe") {
r.slot := store.slot
}
}
}
@openzeppelin/contracts/token/ERC20/ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC-20
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* Both values are immutable: they can only be set once during construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/// @inheritdoc IERC20
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/// @inheritdoc IERC20
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/// @inheritdoc IERC20
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner`'s tokens.
*
* This 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.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation sets the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the `transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner`'s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance < type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
@openzeppelin/contracts/utils/ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.5.0) (utils/ReentrancyGuard.sol)
pragma solidity ^0.8.20;
import {StorageSlot} from "./StorageSlot.sol";
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,
* consider using {ReentrancyGuardTransient} instead.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*
* IMPORTANT: Deprecated. This storage-based reentrancy guard will be removed and replaced
* by the {ReentrancyGuardTransient} variant in v6.0.
*
* @custom:stateless
*/
abstract contract ReentrancyGuard {
using StorageSlot for bytes32;
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ReentrancyGuard")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant REENTRANCY_GUARD_STORAGE =
0x9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00;
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant NOT_ENTERED = 1;
uint256 private constant ENTERED = 2;
/**
* @dev Unauthorized reentrant call.
*/
error ReentrancyGuardReentrantCall();
constructor() {
_reentrancyGuardStorageSlot().getUint256Slot().value = NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
/**
* @dev A `view` only version of {nonReentrant}. Use to block view functions
* from being called, preventing reading from inconsistent contract state.
*
* CAUTION: This is a "view" modifier and does not change the reentrancy
* status. Use it only on view functions. For payable or non-payable functions,
* use the standard {nonReentrant} modifier instead.
*/
modifier nonReentrantView() {
_nonReentrantBeforeView();
_;
}
function _nonReentrantBeforeView() private view {
if (_reentrancyGuardEntered()) {
revert ReentrancyGuardReentrantCall();
}
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be NOT_ENTERED
_nonReentrantBeforeView();
// Any calls to nonReentrant after this point will fail
_reentrancyGuardStorageSlot().getUint256Slot().value = ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_reentrancyGuardStorageSlot().getUint256Slot().value = NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _reentrancyGuardStorageSlot().getUint256Slot().value == ENTERED;
}
function _reentrancyGuardStorageSlot() internal pure virtual returns (bytes32) {
return REENTRANCY_GUARD_STORAGE;
}
}
contracts/interfaces/IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/// @title IUniswapV2Factory
/// @notice Minimal interface for the PulseX (Uniswap V2 fork) factory.
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256 allPairsLength
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB)
external
view
returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
function createPair(address tokenA, address tokenB)
external
returns (address pair);
}
@openzeppelin/contracts/interfaces/draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.5.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-721.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
@openzeppelin/contracts/utils/introspection/ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*/
abstract contract ERC165 is IERC165 {
/// @inheritdoc IERC165
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
@openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)
pragma solidity >=0.4.16;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
interface IERC20 {
/**
* @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 Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
@openzeppelin/contracts/access/AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.6.0) (access/AccessControl.sol)
pragma solidity ^0.8.20;
import {IAccessControl} from "./IAccessControl.sol";
import {Context} from "../utils/Context.sol";
import {ERC165} from "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```solidity
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```solidity
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
* to enforce additional security measures for this role.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address account => bool) hasRole;
bytes32 adminRole;
}
mapping(bytes32 role => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with an {AccessControlUnauthorizedAccount} error including the required role.
*/
modifier onlyRole(bytes32 role) {
_checkRole(role);
_;
}
/// @inheritdoc ERC165
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view virtual returns (bool) {
return _roles[role].hasRole[account];
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
* is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
* is missing `role`.
*/
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert AccessControlUnauthorizedAccount(account, role);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleGranted} event.
*/
function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleRevoked} event.
*/
function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `callerConfirmation`.
*
* May emit a {RoleRevoked} event.
*/
function renounceRole(bytes32 role, address callerConfirmation) public virtual {
if (callerConfirmation != _msgSender()) {
revert AccessControlBadConfirmation();
}
_revokeRole(role, callerConfirmation);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
*
* Internal function without access restriction.
*
* May emit a {RoleGranted} event.
*/
function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
if (!hasRole(role, account)) {
_roles[role].hasRole[account] = true;
emit RoleGranted(role, account, _msgSender());
return true;
} else {
return false;
}
}
/**
* @dev Attempts to revoke `role` from `account` and returns a boolean indicating if `role` was revoked.
*
* Internal function without access restriction.
*
* May emit a {RoleRevoked} event.
*/
function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
if (hasRole(role, account)) {
_roles[role].hasRole[account] = false;
emit RoleRevoked(role, account, _msgSender());
return true;
} else {
return false;
}
}
}
Compiler Settings
{"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}},"optimizer":{"runs":200,"enabled":true},"libraries":{},"evmVersion":"paris"}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_routerAddress","internalType":"address"}]},{"type":"error","name":"AccessControlBadConfirmation","inputs":[]},{"type":"error","name":"AccessControlUnauthorizedAccount","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"bytes32","name":"neededRole","internalType":"bytes32"}]},{"type":"error","name":"ERC20InsufficientAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"allowance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InsufficientBalance","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"uint256","name":"balance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InvalidApprover","inputs":[{"type":"address","name":"approver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidReceiver","inputs":[{"type":"address","name":"receiver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSender","inputs":[{"type":"address","name":"sender","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSpender","inputs":[{"type":"address","name":"spender","internalType":"address"}]},{"type":"error","name":"ReentrancyGuardReentrantCall","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"AutomatedMarketMakerPairSet","inputs":[{"type":"address","name":"pair","internalType":"address","indexed":true},{"type":"bool","name":"value","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"RoleAdminChanged","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"previousAdminRole","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"newAdminRole","internalType":"bytes32","indexed":true}],"anonymous":false},{"type":"event","name":"RoleGranted","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"RoleRevoked","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SwapTokensAtAmountUpdated","inputs":[{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TaxSwapped","inputs":[{"type":"uint256","name":"tokensSwapped","internalType":"uint256","indexed":false},{"type":"address","name":"yieldVault","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TreasuryWalletUpdated","inputs":[{"type":"address","name":"previousTreasury","internalType":"address","indexed":true},{"type":"address","name":"newTreasury","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"YieldVaultUpdated","inputs":[{"type":"address","name":"previousVault","internalType":"address","indexed":true},{"type":"address","name":"newVault","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"BURNER_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DEFAULT_ADMIN_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_SUPPLY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"MINTER_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"TAX_EXEMPT_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"TAX_RATE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"automatedMarketMakerPairs","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnSupply","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"dexPair","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IUniswapV2Router02"}],"name":"dexRouter","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"getRoleAdmin","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"grantRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"hasRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"callerConfirmation","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"revokeRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setAutomatedMarketMakerPair","inputs":[{"type":"address","name":"_pair","internalType":"address"},{"type":"bool","name":"_value","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSwapTokensAtAmount","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTreasuryWallet","inputs":[{"type":"address","name":"_treasury","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setYieldVault","inputs":[{"type":"address","name":"_vault","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"swapTokensAtAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalMinted","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"treasuryWallet","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"wrappedNative","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"yieldVault","inputs":[]},{"type":"receive","stateMutability":"payable"}]
Contract Creation Code
0x60806040523480156200001157600080fd5b50604051620022a5380380620022a58339810160408190526200003491620005f1565b6040518060400160405280601581526020017f426c6f636b6269642041756374696f6e20436f696e00000000000000000000008152506040518060400160405280600381526020016242424160e81b8152508160039081620000979190620006c8565b506004620000a68282620006c8565b5050506001620000c2620000bf620002d960201b60201c565b90565b556001600160a01b0381166200011f5760405162461bcd60e51b815260206004820152601360248201527f4242413a20726f75746572206973207a65726f0000000000000000000000000060448201526064015b60405180910390fd5b6200012c600033620002fd565b50600680546001600160a01b0319166001600160a01b03831617905562000152620003b0565b600780546001600160a01b0319166001600160a01b039283161790556006546040805163c45a015560e01b81529051919092169163c45a01559160048083019260209291908290030181865afa158015620001b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d79190620005f1565b6007546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af115801562000229573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024f9190620005f1565b600880546001600160a01b0319166001600160a01b039290921691821790556200027b90600162000546565b620002896012600a620008a7565b6200029790612710620008b8565b600c55620002b56000805160206200228583398151915230620002fd565b50620002d16000805160206200228583398151915233620002fd565b5050620008d2565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0090565b60008281526005602090815260408083206001600160a01b038516845290915281205460ff16620003a65760008381526005602090815260408083206001600160a01b03861684529091529020805460ff191660011790556200035d3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001620003aa565b5060005b92915050565b600654604080516315ab88c960e31b815290516000926001600160a01b03169163ad5c46489160048083019260209291908290030181865afa92505050801562000419575060408051601f3d908101601f191682019092526200041691810190620005f1565b60015b620004ee576006546040805163ef8ef56f60e01b815290516000926001600160a01b03169163ef8ef56f9160048083019260209291908290030181865afa15801562000469573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200048f9190620005f1565b90506001600160a01b038116620004e95760405162461bcd60e51b815260206004820152601b60248201527f4242413a2077726170706564206e6174697665206973207a65726f0000000000604482015260640162000116565b919050565b6001600160a01b038116620004e95760405162461bcd60e51b815260206004820152601b60248201527f4242413a2077726170706564206e6174697665206973207a65726f0000000000604482015260640162000116565b6001600160a01b038216620005925760405162461bcd60e51b81526020600482015260116024820152704242413a2070616972206973207a65726f60781b604482015260640162000116565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f167fec55059eb0be5a803ca151d74e2f1df0223b4482c9eb80a57be642be0bf5910160405180910390a25050565b6000602082840312156200060457600080fd5b81516001600160a01b03811681146200061c57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200064e57607f821691505b6020821081036200066f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006c357600081815260208120601f850160051c810160208610156200069e5750805b601f850160051c820191505b81811015620006bf57828155600101620006aa565b5050505b505050565b81516001600160401b03811115620006e457620006e462000623565b620006fc81620006f5845462000639565b8462000675565b602080601f8311600181146200073457600084156200071b5750858301515b600019600386901b1c1916600185901b178555620006bf565b600085815260208120601f198616915b82811015620007655788860151825594840194600190910190840162000744565b5085821015620007845787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007eb578160001904821115620007cf57620007cf62000794565b80851615620007dd57918102915b93841c9390800290620007af565b509250929050565b6000826200080457506001620003aa565b816200081357506000620003aa565b81600181146200082c5760028114620008375762000857565b6001915050620003aa565b60ff8411156200084b576200084b62000794565b50506001821b620003aa565b5060208310610133831016604e8410600b84101617156200087c575081810a620003aa565b620008888383620007aa565b80600019048211156200089f576200089f62000794565b029392505050565b60006200061c60ff841683620007f3565b8082028115828204841417620003aa57620003aa62000794565b6119a380620008e26000396000f3fe60806040526004361061021e5760003560e01c806379cc679011610123578063a9059cbb116100ab578063d595c3311161006f578063d595c3311461068c578063dd62ed3e146106ac578063e2f45605146106f2578063eb6d3a1114610708578063f242ab411461072857600080fd5b8063a9059cbb146105c8578063afa4f3b2146105e8578063b62496f514610608578063d539139314610638578063d547741f1461066c57600080fd5b80639a7a23d6116100f25780639a7a23d61461053d578063a217fddf1461055d578063a2309ff814610572578063a7f8a5e214610588578063a8602fea146105a857600080fd5b806379cc6790146104d257806383f170be146104f257806391d148541461050857806395d89b411461052857600080fd5b80632f2ff15d116101a657806340c10f191161017557806340c10f191461041a57806342966c681461043a5780634626402b1461045a57806367426fd61461047a57806370a082311461049c57600080fd5b80632f2ff15d1461039e578063313ce567146103be57806332cb6b0c146103da57806336568abe146103fa57600080fd5b8063137c3f69116101ed578063137c3f69146102d957806318160ddd146102fb57806323b872dd1461031a578063248a9ca31461033a578063282c51f31461036a57600080fd5b806301ffc9a71461022a57806306fdde031461025f5780630758d92414610281578063095ea7b3146102b957600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061024a610245366004611650565b610748565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461077f565b6040516102569190611681565b34801561028d57600080fd5b506006546102a1906001600160a01b031681565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b5061024a6102d43660046116eb565b610811565b3480156102e557600080fd5b506102f96102f4366004611715565b610829565b005b34801561030757600080fd5b506002545b604051908152602001610256565b34801561032657600080fd5b5061024a610335366004611730565b61095e565b34801561034657600080fd5b5061030c61035536600461176c565b60009081526005602052604090206001015490565b34801561037657600080fd5b5061030c7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b3480156103aa57600080fd5b506102f96103b9366004611785565b610982565b3480156103ca57600080fd5b5060405160128152602001610256565b3480156103e657600080fd5b5061030c6b019d971e4fe8401e7400000081565b34801561040657600080fd5b506102f9610415366004611785565b6109ad565b34801561042657600080fd5b506102f96104353660046116eb565b6109e5565b34801561044657600080fd5b506102f961045536600461176c565b610a9a565b34801561046657600080fd5b50600a546102a1906001600160a01b031681565b34801561048657600080fd5b5061030c60008051602061194e83398151915281565b3480156104a857600080fd5b5061030c6104b7366004611715565b6001600160a01b031660009081526020819052604090205490565b3480156104de57600080fd5b506102f96104ed3660046116eb565b610aa7565b3480156104fe57600080fd5b5061030c6101f481565b34801561051457600080fd5b5061024a610523366004611785565b610ac0565b34801561053457600080fd5b50610274610aeb565b34801561054957600080fd5b506102f96105583660046117b1565b610afa565b34801561056957600080fd5b5061030c600081565b34801561057e57600080fd5b5061030c600b5481565b34801561059457600080fd5b506009546102a1906001600160a01b031681565b3480156105b457600080fd5b506102f96105c3366004611715565b610b0f565b3480156105d457600080fd5b5061024a6105e33660046116eb565b610c42565b3480156105f457600080fd5b506102f961060336600461176c565b610c50565b34801561061457600080fd5b5061024a610623366004611715565b600e6020526000908152604090205460ff1681565b34801561064457600080fd5b5061030c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561067857600080fd5b506102f9610687366004611785565b610cdd565b34801561069857600080fd5b506102f96106a736600461176c565b610d02565b3480156106b857600080fd5b5061030c6106c73660046117ed565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106fe57600080fd5b5061030c600c5481565b34801561071457600080fd5b506007546102a1906001600160a01b031681565b34801561073457600080fd5b506008546102a1906001600160a01b031681565b60006001600160e01b03198216637965db0b60e01b148061077957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461078e90611817565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba90611817565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b60003361081f818585610da9565b5060019392505050565b600061083481610db6565b6001600160a01b0382166108845760405162461bcd60e51b81526020600482015260126024820152714242413a207661756c74206973207a65726f60701b60448201526064015b60405180910390fd5b6009546001600160a01b031680158015906108b15750826001600160a01b0316816001600160a01b031614155b80156108c657506001600160a01b0381163014155b156108e5576108e360008051602061194e83398151915282610dc0565b505b600980546001600160a01b0319166001600160a01b03851617905561091860008051602061194e83398151915284610e35565b50826001600160a01b0316816001600160a01b03167fea88e2f62ca6134a502bfb6825275b091370f785812000b14ec97ad0513304b060405160405180910390a3505050565b60003361096c858285610ec1565b610977858585610f3a565b506001949350505050565b60008281526005602052604090206001015461099d81610db6565b6109a78383610e35565b50505050565b6001600160a01b03811633146109d65760405163334bd91960e11b815260040160405180910390fd5b6109e08282610dc0565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a0f81610db6565b6b019d971e4fe8401e7400000082600b54610a2a9190611867565b1115610a785760405162461bcd60e51b815260206004820152601860248201527f4242413a206d617820737570706c792065786365656465640000000000000000604482015260640161087b565b81600b6000828254610a8a9190611867565b909155506109e090508383610f99565b610aa43382610fcf565b50565b610ab2823383610ec1565b610abc8282610fcf565b5050565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461078e90611817565b6000610b0581610db6565b6109e08383611005565b6000610b1a81610db6565b6001600160a01b038216610b685760405162461bcd60e51b81526020600482015260156024820152744242413a207472656173757279206973207a65726f60581b604482015260640161087b565b600a546001600160a01b03168015801590610b955750826001600160a01b0316816001600160a01b031614155b8015610baa57506001600160a01b0381163014155b15610bc957610bc760008051602061194e83398151915282610dc0565b505b600a80546001600160a01b0319166001600160a01b038516179055610bfc60008051602061194e83398151915284610e35565b50826001600160a01b0316816001600160a01b03167fa982575859d7ad2f390dc12b23f7dab8bbda047f9d0140ac68344b27bf34bfb460405160405180910390a3505050565b60003361081f818585610f3a565b6000610c5b81610db6565b60008211610ca15760405162461bcd60e51b81526020600482015260136024820152724242413a20616d6f756e74206973207a65726f60681b604482015260640161087b565b600c8290556040518281527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b1459060200160405180910390a15050565b600082815260056020526040902060010154610cf881610db6565b6109a78383610dc0565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848610d2c81610db6565b600a546001600160a01b0316610d7c5760405162461bcd60e51b81526020600482015260156024820152741090904e881d1c99585cdd5c9e481b9bdd081cd95d605a1b604482015260640161087b565b600a54610d93906001600160a01b03163084610ec1565b600a54610abc906001600160a01b031683610fcf565b6109e083838360016110ae565b610aa48133611183565b6000610dcc8383610ac0565b15610e2d5760008381526005602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610779565b506000610779565b6000610e418383610ac0565b610e2d5760008381526005602090815260408083206001600160a01b03861684529091529020805460ff19166001179055610e793390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610779565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198110156109a75781811015610f2b57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161087b565b6109a7848484840360006110ae565b6001600160a01b038316610f6457604051634b637e8f60e11b81526000600482015260240161087b565b6001600160a01b038216610f8e5760405163ec442f0560e01b81526000600482015260240161087b565b6109e08383836111bc565b6001600160a01b038216610fc35760405163ec442f0560e01b81526000600482015260240161087b565b610abc600083836111bc565b6001600160a01b038216610ff957604051634b637e8f60e11b81526000600482015260240161087b565b610abc826000836111bc565b6001600160a01b03821661104f5760405162461bcd60e51b81526020600482015260116024820152704242413a2070616972206973207a65726f60781b604482015260640161087b565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f167fec55059eb0be5a803ca151d74e2f1df0223b4482c9eb80a57be642be0bf5910160405180910390a25050565b6001600160a01b0384166110d85760405163e602df0560e01b81526000600482015260240161087b565b6001600160a01b03831661110257604051634a1406b160e11b81526000600482015260240161087b565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156109a757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161117591815260200190565b60405180910390a350505050565b61118d8282610ac0565b610abc5760405163e2517d3f60e01b81526001600160a01b03821660048201526024810183905260440161087b565b600d5460ff16156111d2576109e0838383611320565b30600090815260208190526040902054600c548110801590819061120f57506001600160a01b0385166000908152600e602052604090205460ff16155b801561122457506001600160a01b0385163014155b801561123a57506009546001600160a01b031615155b15611248576112488261144a565b6001600160a01b0385166000908152600e602052604081205460ff168061128757506001600160a01b0385166000908152600e602052604090205460ff165b905060006112a360008051602061194e83398151915288610ac0565b806112c157506112c160008051602061194e83398151915287610ac0565b905060008280156112d0575081155b156112f1576127106112e46101f48861187a565b6112ee9190611891565b90505b801561130257611302883083611320565b6113168888611311848a6118b3565b611320565b5050505050505050565b6001600160a01b03831661134b5780600260008282546113409190611867565b909155506113bd9050565b6001600160a01b0383166000908152602081905260409020548181101561139e5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161087b565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166113d9576002805482900390556113f8565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161143d91815260200190565b60405180910390a3505050565b6114526115de565b600c548111156114615750600c545b600d805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106114a3576114a36118c6565b6001600160a01b0392831660209182029290920101526007548251911690829060019081106114d4576114d46118c6565b6001600160a01b0392831660209182029290920101526006546114fa9130911684610da9565b60065460095460405163791ac94760e01b81526001600160a01b039283169263791ac94792611537928792600092889291169042906004016118dc565b600060405180830381600087803b15801561155157600080fd5b505af1925050508015611562575060015b156115aa576009546040518381526001600160a01b03909116907f4472359ffe65df553df8fa6ab4effe6837df6178534aece2781b4be7cd0d03dc9060200160405180910390a25b50600d805460ff19169055610aa460017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b6115e661160c565b60027f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f005460020361164e57604051633ee5aeb560e01b815260040160405180910390fd5b565b60006020828403121561166257600080fd5b81356001600160e01b03198116811461167a57600080fd5b9392505050565b600060208083528351808285015260005b818110156116ae57858101830151858201604001528201611692565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146116e657600080fd5b919050565b600080604083850312156116fe57600080fd5b611707836116cf565b946020939093013593505050565b60006020828403121561172757600080fd5b61167a826116cf565b60008060006060848603121561174557600080fd5b61174e846116cf565b925061175c602085016116cf565b9150604084013590509250925092565b60006020828403121561177e57600080fd5b5035919050565b6000806040838503121561179857600080fd5b823591506117a8602084016116cf565b90509250929050565b600080604083850312156117c457600080fd5b6117cd836116cf565b9150602083013580151581146117e257600080fd5b809150509250929050565b6000806040838503121561180057600080fd5b611809836116cf565b91506117a8602084016116cf565b600181811c9082168061182b57607f821691505b60208210810361184b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077957610779611851565b808202811582820484141761077957610779611851565b6000826118ae57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561077957610779611851565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561192c5784516001600160a01b031683529383019391830191600101611907565b50506001600160a01b0396909616606085015250505060800152939250505056fe41a2855d8e49beabd7f17e6cb471eda795ca6fcd5bcdf6c0bbaedd81db22a9d7a2646970667358221220d86b23d6a077c6ea9b914fc75d440da009377b1e82522afcb1688de97d69381164736f6c6343000814003341a2855d8e49beabd7f17e6cb471eda795ca6fcd5bcdf6c0bbaedd81db22a9d7000000000000000000000000dae9dd3d1a52cfce9d5f2fac7fde164d500e50f7
Deployed ByteCode
0x60806040526004361061021e5760003560e01c806379cc679011610123578063a9059cbb116100ab578063d595c3311161006f578063d595c3311461068c578063dd62ed3e146106ac578063e2f45605146106f2578063eb6d3a1114610708578063f242ab411461072857600080fd5b8063a9059cbb146105c8578063afa4f3b2146105e8578063b62496f514610608578063d539139314610638578063d547741f1461066c57600080fd5b80639a7a23d6116100f25780639a7a23d61461053d578063a217fddf1461055d578063a2309ff814610572578063a7f8a5e214610588578063a8602fea146105a857600080fd5b806379cc6790146104d257806383f170be146104f257806391d148541461050857806395d89b411461052857600080fd5b80632f2ff15d116101a657806340c10f191161017557806340c10f191461041a57806342966c681461043a5780634626402b1461045a57806367426fd61461047a57806370a082311461049c57600080fd5b80632f2ff15d1461039e578063313ce567146103be57806332cb6b0c146103da57806336568abe146103fa57600080fd5b8063137c3f69116101ed578063137c3f69146102d957806318160ddd146102fb57806323b872dd1461031a578063248a9ca31461033a578063282c51f31461036a57600080fd5b806301ffc9a71461022a57806306fdde031461025f5780630758d92414610281578063095ea7b3146102b957600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061024a610245366004611650565b610748565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461077f565b6040516102569190611681565b34801561028d57600080fd5b506006546102a1906001600160a01b031681565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b5061024a6102d43660046116eb565b610811565b3480156102e557600080fd5b506102f96102f4366004611715565b610829565b005b34801561030757600080fd5b506002545b604051908152602001610256565b34801561032657600080fd5b5061024a610335366004611730565b61095e565b34801561034657600080fd5b5061030c61035536600461176c565b60009081526005602052604090206001015490565b34801561037657600080fd5b5061030c7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b3480156103aa57600080fd5b506102f96103b9366004611785565b610982565b3480156103ca57600080fd5b5060405160128152602001610256565b3480156103e657600080fd5b5061030c6b019d971e4fe8401e7400000081565b34801561040657600080fd5b506102f9610415366004611785565b6109ad565b34801561042657600080fd5b506102f96104353660046116eb565b6109e5565b34801561044657600080fd5b506102f961045536600461176c565b610a9a565b34801561046657600080fd5b50600a546102a1906001600160a01b031681565b34801561048657600080fd5b5061030c60008051602061194e83398151915281565b3480156104a857600080fd5b5061030c6104b7366004611715565b6001600160a01b031660009081526020819052604090205490565b3480156104de57600080fd5b506102f96104ed3660046116eb565b610aa7565b3480156104fe57600080fd5b5061030c6101f481565b34801561051457600080fd5b5061024a610523366004611785565b610ac0565b34801561053457600080fd5b50610274610aeb565b34801561054957600080fd5b506102f96105583660046117b1565b610afa565b34801561056957600080fd5b5061030c600081565b34801561057e57600080fd5b5061030c600b5481565b34801561059457600080fd5b506009546102a1906001600160a01b031681565b3480156105b457600080fd5b506102f96105c3366004611715565b610b0f565b3480156105d457600080fd5b5061024a6105e33660046116eb565b610c42565b3480156105f457600080fd5b506102f961060336600461176c565b610c50565b34801561061457600080fd5b5061024a610623366004611715565b600e6020526000908152604090205460ff1681565b34801561064457600080fd5b5061030c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561067857600080fd5b506102f9610687366004611785565b610cdd565b34801561069857600080fd5b506102f96106a736600461176c565b610d02565b3480156106b857600080fd5b5061030c6106c73660046117ed565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106fe57600080fd5b5061030c600c5481565b34801561071457600080fd5b506007546102a1906001600160a01b031681565b34801561073457600080fd5b506008546102a1906001600160a01b031681565b60006001600160e01b03198216637965db0b60e01b148061077957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461078e90611817565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba90611817565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b60003361081f818585610da9565b5060019392505050565b600061083481610db6565b6001600160a01b0382166108845760405162461bcd60e51b81526020600482015260126024820152714242413a207661756c74206973207a65726f60701b60448201526064015b60405180910390fd5b6009546001600160a01b031680158015906108b15750826001600160a01b0316816001600160a01b031614155b80156108c657506001600160a01b0381163014155b156108e5576108e360008051602061194e83398151915282610dc0565b505b600980546001600160a01b0319166001600160a01b03851617905561091860008051602061194e83398151915284610e35565b50826001600160a01b0316816001600160a01b03167fea88e2f62ca6134a502bfb6825275b091370f785812000b14ec97ad0513304b060405160405180910390a3505050565b60003361096c858285610ec1565b610977858585610f3a565b506001949350505050565b60008281526005602052604090206001015461099d81610db6565b6109a78383610e35565b50505050565b6001600160a01b03811633146109d65760405163334bd91960e11b815260040160405180910390fd5b6109e08282610dc0565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a0f81610db6565b6b019d971e4fe8401e7400000082600b54610a2a9190611867565b1115610a785760405162461bcd60e51b815260206004820152601860248201527f4242413a206d617820737570706c792065786365656465640000000000000000604482015260640161087b565b81600b6000828254610a8a9190611867565b909155506109e090508383610f99565b610aa43382610fcf565b50565b610ab2823383610ec1565b610abc8282610fcf565b5050565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461078e90611817565b6000610b0581610db6565b6109e08383611005565b6000610b1a81610db6565b6001600160a01b038216610b685760405162461bcd60e51b81526020600482015260156024820152744242413a207472656173757279206973207a65726f60581b604482015260640161087b565b600a546001600160a01b03168015801590610b955750826001600160a01b0316816001600160a01b031614155b8015610baa57506001600160a01b0381163014155b15610bc957610bc760008051602061194e83398151915282610dc0565b505b600a80546001600160a01b0319166001600160a01b038516179055610bfc60008051602061194e83398151915284610e35565b50826001600160a01b0316816001600160a01b03167fa982575859d7ad2f390dc12b23f7dab8bbda047f9d0140ac68344b27bf34bfb460405160405180910390a3505050565b60003361081f818585610f3a565b6000610c5b81610db6565b60008211610ca15760405162461bcd60e51b81526020600482015260136024820152724242413a20616d6f756e74206973207a65726f60681b604482015260640161087b565b600c8290556040518281527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b1459060200160405180910390a15050565b600082815260056020526040902060010154610cf881610db6565b6109a78383610dc0565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848610d2c81610db6565b600a546001600160a01b0316610d7c5760405162461bcd60e51b81526020600482015260156024820152741090904e881d1c99585cdd5c9e481b9bdd081cd95d605a1b604482015260640161087b565b600a54610d93906001600160a01b03163084610ec1565b600a54610abc906001600160a01b031683610fcf565b6109e083838360016110ae565b610aa48133611183565b6000610dcc8383610ac0565b15610e2d5760008381526005602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610779565b506000610779565b6000610e418383610ac0565b610e2d5760008381526005602090815260408083206001600160a01b03861684529091529020805460ff19166001179055610e793390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610779565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198110156109a75781811015610f2b57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161087b565b6109a7848484840360006110ae565b6001600160a01b038316610f6457604051634b637e8f60e11b81526000600482015260240161087b565b6001600160a01b038216610f8e5760405163ec442f0560e01b81526000600482015260240161087b565b6109e08383836111bc565b6001600160a01b038216610fc35760405163ec442f0560e01b81526000600482015260240161087b565b610abc600083836111bc565b6001600160a01b038216610ff957604051634b637e8f60e11b81526000600482015260240161087b565b610abc826000836111bc565b6001600160a01b03821661104f5760405162461bcd60e51b81526020600482015260116024820152704242413a2070616972206973207a65726f60781b604482015260640161087b565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f167fec55059eb0be5a803ca151d74e2f1df0223b4482c9eb80a57be642be0bf5910160405180910390a25050565b6001600160a01b0384166110d85760405163e602df0560e01b81526000600482015260240161087b565b6001600160a01b03831661110257604051634a1406b160e11b81526000600482015260240161087b565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156109a757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161117591815260200190565b60405180910390a350505050565b61118d8282610ac0565b610abc5760405163e2517d3f60e01b81526001600160a01b03821660048201526024810183905260440161087b565b600d5460ff16156111d2576109e0838383611320565b30600090815260208190526040902054600c548110801590819061120f57506001600160a01b0385166000908152600e602052604090205460ff16155b801561122457506001600160a01b0385163014155b801561123a57506009546001600160a01b031615155b15611248576112488261144a565b6001600160a01b0385166000908152600e602052604081205460ff168061128757506001600160a01b0385166000908152600e602052604090205460ff165b905060006112a360008051602061194e83398151915288610ac0565b806112c157506112c160008051602061194e83398151915287610ac0565b905060008280156112d0575081155b156112f1576127106112e46101f48861187a565b6112ee9190611891565b90505b801561130257611302883083611320565b6113168888611311848a6118b3565b611320565b5050505050505050565b6001600160a01b03831661134b5780600260008282546113409190611867565b909155506113bd9050565b6001600160a01b0383166000908152602081905260409020548181101561139e5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161087b565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166113d9576002805482900390556113f8565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161143d91815260200190565b60405180910390a3505050565b6114526115de565b600c548111156114615750600c545b600d805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106114a3576114a36118c6565b6001600160a01b0392831660209182029290920101526007548251911690829060019081106114d4576114d46118c6565b6001600160a01b0392831660209182029290920101526006546114fa9130911684610da9565b60065460095460405163791ac94760e01b81526001600160a01b039283169263791ac94792611537928792600092889291169042906004016118dc565b600060405180830381600087803b15801561155157600080fd5b505af1925050508015611562575060015b156115aa576009546040518381526001600160a01b03909116907f4472359ffe65df553df8fa6ab4effe6837df6178534aece2781b4be7cd0d03dc9060200160405180910390a25b50600d805460ff19169055610aa460017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b6115e661160c565b60027f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f005460020361164e57604051633ee5aeb560e01b815260040160405180910390fd5b565b60006020828403121561166257600080fd5b81356001600160e01b03198116811461167a57600080fd5b9392505050565b600060208083528351808285015260005b818110156116ae57858101830151858201604001528201611692565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146116e657600080fd5b919050565b600080604083850312156116fe57600080fd5b611707836116cf565b946020939093013593505050565b60006020828403121561172757600080fd5b61167a826116cf565b60008060006060848603121561174557600080fd5b61174e846116cf565b925061175c602085016116cf565b9150604084013590509250925092565b60006020828403121561177e57600080fd5b5035919050565b6000806040838503121561179857600080fd5b823591506117a8602084016116cf565b90509250929050565b600080604083850312156117c457600080fd5b6117cd836116cf565b9150602083013580151581146117e257600080fd5b809150509250929050565b6000806040838503121561180057600080fd5b611809836116cf565b91506117a8602084016116cf565b600181811c9082168061182b57607f821691505b60208210810361184b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077957610779611851565b808202811582820484141761077957610779611851565b6000826118ae57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561077957610779611851565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561192c5784516001600160a01b031683529383019391830191600101611907565b50506001600160a01b0396909616606085015250505060800152939250505056fe41a2855d8e49beabd7f17e6cb471eda795ca6fcd5bcdf6c0bbaedd81db22a9d7a2646970667358221220d86b23d6a077c6ea9b914fc75d440da009377b1e82522afcb1688de97d69381164736f6c63430008140033