Latest 25 from a total of 5,060 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 43265260 | 10 hrs ago | IN | 0 ETH | 0.00000063 | ||||
| Transfer | 43238899 | 25 hrs ago | IN | 0 ETH | 0.00000047 | ||||
| Approve | 43232168 | 28 hrs ago | IN | 0 ETH | 0.00000029 | ||||
| Approve | 43231990 | 29 hrs ago | IN | 0 ETH | 0.00000032 | ||||
| Approve | 43231910 | 29 hrs ago | IN | 0 ETH | 0.00000025 | ||||
| Transfer | 43220414 | 35 hrs ago | IN | 0 ETH | 0.00000093 | ||||
| Approve | 43220339 | 35 hrs ago | IN | 0 ETH | 0.00000057 | ||||
| Approve | 43215069 | 38 hrs ago | IN | 0 ETH | 0.00000018 | ||||
| Transfer | 43214952 | 38 hrs ago | IN | 0 ETH | 0.00000044 | ||||
| Transfer | 43200474 | 46 hrs ago | IN | 0 ETH | 0.00000081 | ||||
| Transfer | 43199274 | 47 hrs ago | IN | 0 ETH | 0.00000063 | ||||
| Approve | 43191781 | 2 days ago | IN | 0 ETH | 0.00000033 | ||||
| Transfer | 43181060 | 2 days ago | IN | 0 ETH | 0.00000538 | ||||
| Transfer | 43177394 | 2 days ago | IN | 0 ETH | 0.00000061 | ||||
| Transfer | 43174701 | 2 days ago | IN | 0 ETH | 0.00000111 | ||||
| Approve | 43169770 | 2 days ago | IN | 0 ETH | 0.00000165 | ||||
| Transfer | 43167494 | 2 days ago | IN | 0 ETH | 0.00000074 | ||||
| Transfer | 43156535 | 2 days ago | IN | 0 ETH | 0.00000071 | ||||
| Transfer | 43156531 | 2 days ago | IN | 0 ETH | 0.00000071 | ||||
| Transfer | 43156528 | 2 days ago | IN | 0 ETH | 0.00000059 | ||||
| Transfer | 43156524 | 2 days ago | IN | 0 ETH | 0.00000059 | ||||
| Transfer | 43156520 | 2 days ago | IN | 0 ETH | 0.00000059 | ||||
| Transfer | 43156516 | 2 days ago | IN | 0 ETH | 0.00000059 | ||||
| Transfer | 43156512 | 2 days ago | IN | 0 ETH | 0.00000059 | ||||
| Transfer | 43156509 | 2 days ago | IN | 0 ETH | 0.00000059 |
Latest 1 internal transaction
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 34526253 | 202 days ago | Contract Creation | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BitbondTokenToolAdvancedTokenFixedSupply
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.17;
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { LibCommon } from "./lib/LibCommon.sol";
import { ReflectiveV3ERC20 } from "./ReflectiveV3ERC20.sol";
/// @title A Defi Token implementation with extended functionalities
/// @notice Implements ERC20 standards with additional features like tax and deflation
contract BitbondTokenToolAdvancedTokenFixedSupply is ReflectiveV3ERC20, Ownable {
// Constants
uint256 private constant MAX_BPS_AMOUNT = 10_000;
uint256 private constant MAX_ALLOWED_BPS = 2_000;
uint256 public constant MAX_EXCLUSION_LIMIT = 100;
string public constant VERSION = "defi_v_1_fixed_supply";
string public constant CONTRACT_NAME = "BitbondTokenToolAdvancedTokenFixedSupply";
bytes32 public constant CONTRACT_HASH = 0x8074ef1aa879a0e08e84e516b9a71dd7644235b858b6f72da1054d7351652e26;
// State Variables
string public initialDocumentUri;
string public documentUri;
uint256 public immutable initialSupply;
uint256 public immutable initialMaxTokenAmountPerAddress;
uint256 public maxTokenAmountPerAddress;
mapping(address => bool) public isFeesAndLimitsExcluded;
address[] public feesAndLimitsExcluded;
/// @notice Configuration properties for the ERC20 token
struct ERC20ConfigProps {
bool _isBurnable;
bool _isDocumentAllowed;
bool _isMaxAmountOfTokensSet;
bool _isTaxable;
bool _isDeflationary;
bool _isReflective;
}
ERC20ConfigProps private configProps;
address public immutable initialTokenOwner;
uint8 private immutable _decimals;
address public taxAddress;
uint256 public taxBPS;
uint256 public deflationBPS;
// Events
event DocumentUriSet(string newDocUri);
event MaxTokenAmountPerSet(uint256 newMaxTokenAmount);
event TaxConfigSet(address indexed _taxAddress, uint256 indexed _taxBPS);
event DeflationConfigSet(uint256 indexed _deflationBPS);
event ReflectionConfigSet(uint256 indexed _feeBPS);
event ExcludeFromFeesAndLimits(address indexed account);
event IncludedInFeesAndLimits(address indexed account);
// Custom Errors
error InvalidMaxTokenAmount(uint256 maxTokenAmount);
error InvalidDecimals(uint8 decimals);
error MaxTokenAmountPerAddrLtPrevious();
error DestBalanceExceedsMaxAllowed(address addr);
error DocumentUriNotAllowed();
error MaxTokenAmountNotAllowed();
error TokenIsNotTaxable();
error TokenIsNotDeflationary();
error InvalidTotalBPS(uint256 bps);
error InvalidReflectiveConfig();
error AlreadyExcludedFromFeesAndLimits();
error AlreadyIncludedInFeesAndLimits();
error ReachedMaxExclusionLimit();
/// @notice Constructor to initialize the DeFi token
/// @param name_ Name of the token
/// @param symbol_ Symbol of the token
/// @param initialSupplyToSet Initial supply of tokens
/// @param decimalsToSet Number of decimals for the token
/// @param tokenOwner Address of the initial token owner
/// @param customConfigProps Configuration properties for the token
/// @param newDocumentUri URI for the document associated with the token
/// @param _taxAddress Address where tax will be sent
/// @param bpsParams array of BPS values in this order:
/// taxBPS = bpsParams[0],
/// deflationBPS = bpsParams[1],
/// rewardFeeBPS = bpsParams[2],
/// @param amountParams array of amounts for amount specific config:
/// maxTokenAmount = amountParams[0], Maximum token amount per address
constructor(
string memory name_,
string memory symbol_,
uint256 initialSupplyToSet,
uint8 decimalsToSet,
address tokenOwner,
ERC20ConfigProps memory customConfigProps,
string memory newDocumentUri,
address _taxAddress,
uint256[3] memory bpsParams,
uint256[1] memory amountParams
)
ReflectiveV3ERC20(
name_,
symbol_,
tokenOwner,
initialSupplyToSet,
decimalsToSet,
initialSupplyToSet != 0 ? bpsParams[2] : 0,
customConfigProps._isReflective
)
{
// reflection feature can't be used in combination with burning/deflation
// or reflection config is invalid if no reflection BPS amount is provided
if (
(customConfigProps._isReflective &&
(customConfigProps._isBurnable ||
customConfigProps._isDeflationary)) ||
(!customConfigProps._isReflective && bpsParams[2] != 0)
) {
revert InvalidReflectiveConfig();
}
if (customConfigProps._isMaxAmountOfTokensSet) {
if (amountParams[0] == 0) {
revert InvalidMaxTokenAmount(amountParams[0]);
}
}
if (decimalsToSet > 18) {
revert InvalidDecimals(decimalsToSet);
}
bpsInitChecks(customConfigProps, bpsParams, _taxAddress);
LibCommon.validateAddress(tokenOwner);
taxAddress = _taxAddress;
taxBPS = bpsParams[0];
deflationBPS = bpsParams[1];
initialSupply = initialSupplyToSet;
initialMaxTokenAmountPerAddress = amountParams[0];
initialDocumentUri = newDocumentUri;
initialTokenOwner = tokenOwner;
_decimals = decimalsToSet;
configProps = customConfigProps;
documentUri = newDocumentUri;
maxTokenAmountPerAddress = amountParams[0];
if (tokenOwner != msg.sender) {
transferOwnership(tokenOwner);
}
}
function bpsInitChecks(
ERC20ConfigProps memory customConfigProps,
uint256[3] memory bpsParams,
address _taxAddress
) private pure {
uint256 totalBPS = 0;
if (customConfigProps._isTaxable) {
LibCommon.validateAddress(_taxAddress);
totalBPS += bpsParams[0];
}
if (customConfigProps._isDeflationary) {
totalBPS += bpsParams[1];
}
if (customConfigProps._isReflective) {
totalBPS += bpsParams[2];
}
if (totalBPS > MAX_ALLOWED_BPS) {
revert InvalidTotalBPS(totalBPS);
}
}
// Public and External Functions
function getFeesAndLimitsExclusionList() external view returns (address[] memory) {
return feesAndLimitsExcluded;
}
/// @notice Checks if the token is burnable
/// @return True if the token can be burned
function isBurnable() public view returns (bool) {
return configProps._isBurnable;
}
function getRewardsExclusionList() public view returns (address[] memory) {
return rewardsExcluded;
}
/// @notice Checks if the maximum amount of tokens per address is set
/// @return True if there is a maximum limit for token amount per address
function isMaxAmountOfTokensSet() public view returns (bool) {
return configProps._isMaxAmountOfTokensSet;
}
/// @notice Checks if setting a document URI is allowed
/// @return True if setting a document URI is allowed
function isDocumentUriAllowed() public view returns (bool) {
return configProps._isDocumentAllowed;
}
/// @notice Returns the number of decimals used for the token
/// @return The number of decimals
function decimals() public view virtual override returns (uint8) {
return _decimals;
}
/// @notice Checks if the token is taxable
/// @return True if the token has tax applied on transfers
function isTaxable() public view returns (bool) {
return configProps._isTaxable;
}
/// @notice Checks if the token is deflationary
/// @return True if the token has deflation applied on transfers
function isDeflationary() public view returns (bool) {
return configProps._isDeflationary;
}
/// @notice Checks if the token is reflective
/// @return True if the token has reflection (ie. holder rewards) applied on transfers
function isReflective() public view returns (bool) {
return configProps._isReflective;
}
/// @notice Sets a new document URI
/// @dev Can only be called by the contract owner
/// @param newDocumentUri The new URI to be set
function setDocumentUri(string memory newDocumentUri) external onlyOwner {
if (!isDocumentUriAllowed()) {
revert DocumentUriNotAllowed();
}
documentUri = newDocumentUri;
emit DocumentUriSet(newDocumentUri);
}
/// @notice Sets a new maximum token amount per address
/// @dev Can only be called by the contract owner
/// @param newMaxTokenAmount The new maximum token amount per address
function setMaxTokenAmountPerAddress(
uint256 newMaxTokenAmount
) external onlyOwner {
if (!isMaxAmountOfTokensSet()) {
revert MaxTokenAmountNotAllowed();
}
if (newMaxTokenAmount <= maxTokenAmountPerAddress) {
revert MaxTokenAmountPerAddrLtPrevious();
}
maxTokenAmountPerAddress = newMaxTokenAmount;
emit MaxTokenAmountPerSet(newMaxTokenAmount);
}
/// @notice Sets a new reflection fee
/// @dev Can only be called by the contract owner
/// @param _feeBPS The reflection fee in basis points
function setReflectionConfig(uint256 _feeBPS) external onlyOwner {
if (!isReflective()) {
revert TokenIsNotReflective();
}
super._setReflectionFee(_feeBPS);
emit ReflectionConfigSet(_feeBPS);
}
/// @notice Sets a new tax configuration
/// @dev Can only be called by the contract owner
/// @param _taxAddress The address where tax will be sent
/// @param _taxBPS The tax rate in basis points
function setTaxConfig(
address _taxAddress,
uint256 _taxBPS
) external onlyOwner {
if (!isTaxable()) {
revert TokenIsNotTaxable();
}
uint256 totalBPS = deflationBPS + tFeeBPS + _taxBPS;
if (totalBPS > MAX_ALLOWED_BPS) {
revert InvalidTotalBPS(totalBPS);
}
LibCommon.validateAddress(_taxAddress);
taxAddress = _taxAddress;
taxBPS = _taxBPS;
emit TaxConfigSet(_taxAddress, _taxBPS);
}
/// @notice Sets a new deflation configuration
/// @dev Can only be called by the contract owner
/// @param _deflationBPS The deflation rate in basis points
function setDeflationConfig(uint256 _deflationBPS) external onlyOwner {
if (!isDeflationary()) {
revert TokenIsNotDeflationary();
}
uint256 totalBPS = deflationBPS + tFeeBPS + _deflationBPS;
if (totalBPS > MAX_ALLOWED_BPS) {
revert InvalidTotalBPS(totalBPS);
}
deflationBPS = _deflationBPS;
emit DeflationConfigSet(_deflationBPS);
}
/// @notice Transfers tokens to a specified address
/// @dev Overrides the ERC20 transfer function with added tax and deflation logic
/// @param to The address to transfer tokens to
/// @param amount The amount of tokens to be transferred
/// @return True if the transfer was successful
function transfer(
address to,
uint256 amount
) public virtual override returns (bool) {
uint256 taxAmount = _taxAmount(msg.sender, to, amount);
uint256 deflationAmount = _deflationAmount(msg.sender, to, amount);
uint256 amountToTransfer = amount - taxAmount - deflationAmount;
if (isMaxAmountOfTokensSet() && !isFeesAndLimitsExcluded[to]) {
if (balanceOf(to) + amountToTransfer > maxTokenAmountPerAddress) {
revert DestBalanceExceedsMaxAllowed(to);
}
}
if (taxAmount != 0) {
_transferNonReflectedTax(msg.sender, taxAddress, taxAmount);
}
if (deflationAmount != 0) {
_burn(msg.sender, deflationAmount);
}
return super.transfer(to, amountToTransfer);
}
/// @notice Transfers tokens from one address to another
/// @dev Overrides the ERC20 transferFrom function with added tax and deflation logic
/// @param from The address which you want to send tokens from
/// @param to The address which you want to transfer to
/// @param amount The amount of tokens to be transferred
/// @return True if the transfer was successful
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
uint256 taxAmount = _taxAmount(from, to, amount);
uint256 deflationAmount = _deflationAmount(from, to, amount);
uint256 amountToTransfer = amount - taxAmount - deflationAmount;
if (isMaxAmountOfTokensSet() && !isFeesAndLimitsExcluded[to]) {
if (balanceOf(to) + amountToTransfer > maxTokenAmountPerAddress) {
revert DestBalanceExceedsMaxAllowed(to);
}
}
if (taxAmount != 0) {
_transferNonReflectedTax(from, taxAddress, taxAmount);
}
if (deflationAmount != 0) {
_burn(from, deflationAmount);
}
return super.transferFrom(from, to, amountToTransfer);
}
/// @notice Burns a specific amount of tokens
/// @dev Can only be called by the contract owner and if burning is enabled
/// @param amount The amount of tokens to be burned
function burn(uint256 amount) external onlyOwner {
if (!isBurnable()) {
revert BurningNotEnabled();
}
_burn(msg.sender, amount);
}
/// @notice Renounces ownership of the contract
/// @dev Leaves the contract without an owner, disabling any functions that require the owner's authorization
function renounceOwnership() public override onlyOwner {
super.renounceOwnership();
}
/// @notice Transfers ownership of the contract to a new account
/// @dev Can only be called by the current owner
/// @param newOwner The address of the new owner
function transferOwnership(address newOwner) public override onlyOwner {
super.transferOwnership(newOwner);
}
/// @notice method for adding a new account to the exclusion list
/// @param account account to add to the exclusion list
/// @dev only callable by owner
function excludeFromFeesAndLimits(
address account
) external onlyOwner {
if (isFeesAndLimitsExcluded[account]) {
revert AlreadyExcludedFromFeesAndLimits();
}
if (feesAndLimitsExcluded.length >= MAX_EXCLUSION_LIMIT) {
revert ReachedMaxExclusionLimit();
}
isFeesAndLimitsExcluded[account] = true;
feesAndLimitsExcluded.push(account);
emit ExcludeFromFeesAndLimits(account);
}
/// @notice method for adding a new account to the reflection exclusion list
/// @param account account to add to the exclusion list
/// @dev only callable by owner
function excludeFromRewards(address account) external onlyOwner {
super._excludeFromRewards(account);
}
/// @notice method for removing an account from the fees exclusion list
/// @param account account to remove from the exclusion list
/// @dev only callable by owner
function includeInFeesAndLimits(address account) external onlyOwner() {
if (!isFeesAndLimitsExcluded[account]) {
revert AlreadyIncludedInFeesAndLimits();
}
for (uint256 i = 0; i < feesAndLimitsExcluded.length; i++) {
if (feesAndLimitsExcluded[i] == account) {
feesAndLimitsExcluded[i] = feesAndLimitsExcluded[feesAndLimitsExcluded.length - 1];
isFeesAndLimitsExcluded[account] = false;
feesAndLimitsExcluded.pop();
emit IncludedInFeesAndLimits(account);
break;
}
}
}
/// @notice method for removing an account from the reflection exclusion list
/// @param account account to remove from the exclusion list
/// @dev only callable by owner
function includeInRewards(address account) external onlyOwner() {
super._includeInRewards(account);
}
// Internal Functions
/// @notice Calculates the tax amount for a transfer
/// @param sender The address initiating the transfer
/// @param recipient The address receiving the transfer
/// @param amount The amount of tokens being transferred
/// @return taxAmount The calculated tax amount
function _taxAmount(
address sender,
address recipient,
uint256 amount
) internal view returns (uint256 taxAmount) {
taxAmount = 0;
if (taxBPS != 0 && sender != taxAddress && !isFeesAndLimitsExcluded[sender] && !isFeesAndLimitsExcluded[recipient]) {
taxAmount = (amount * taxBPS) / MAX_BPS_AMOUNT;
}
}
/// @notice Calculates the deflation amount for a transfer
/// @param sender The address initiating the transfer
/// @param recipient The address receiving the transfer
/// @param amount The amount of tokens being transferred
/// @return deflationAmount The calculated deflation amount
function _deflationAmount(
address sender,
address recipient,
uint256 amount
) internal view returns (uint256 deflationAmount) {
deflationAmount = 0;
if (deflationBPS != 0 && !isFeesAndLimitsExcluded[sender] && !isFeesAndLimitsExcluded[recipient]) {
deflationAmount = (amount * deflationBPS) / MAX_BPS_AMOUNT;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @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;
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
library LibCommon {
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* CUSTOM ERRORS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
/// @dev The ETH transfer has failed.
error ETHTransferFailed();
/// @dev The address is the zero address.
error ZeroAddress();
/// @notice raised when an ERC20 transfer fails
error TransferFailed();
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* ETH OPERATIONS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
/// @notice Taken from Solady (https://github.com/vectorized/solady/blob/main/src/utils/SafeTransferLib.sol)
/// @dev Sends `amount` (in wei) ETH to `to`.
/// Reverts upon failure.
function safeTransferETH(address to, uint256 amount) internal {
// solhint-disable-next-line no-inline-assembly
assembly {
// Transfer the ETH and check if it succeeded or not.
if iszero(call(gas(), to, amount, 0, 0, 0, 0)) {
// Store the function selector of `ETHTransferFailed()`.
// bytes4(keccak256(bytes("ETHTransferFailed()"))) = 0xb12d13eb
mstore(0x00, 0xb12d13eb)
// Revert with (offset, size).
revert(0x1c, 0x04)
}
}
}
/// @notice Validates that the address is not the zero address using assembly.
/// @dev Reverts if the address is the zero address.
function validateAddress(address addr) internal pure {
// solhint-disable-next-line no-inline-assembly
assembly {
if iszero(shl(96, addr)) {
// Store the function selector of `ZeroAddress()`.
// bytes4(keccak256(bytes("ZeroAddress()"))) = 0xd92e233d
mstore(0x00, 0xd92e233d)
// Revert with (offset, size).
revert(0x1c, 0x04)
}
}
}
/// @notice Helper function to transfer ERC20 tokens without the need for SafeERC20.
/// @dev Reverts if the ERC20 transfer fails.
/// @param tokenAddress The address of the ERC20 token.
/// @param from The address to transfer the tokens from.
/// @param to The address to transfer the tokens to.
/// @param amount The amount of tokens to transfer.
function safeTransferFrom(
address tokenAddress,
address from,
address to,
uint256 amount
) internal returns (bool) {
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory data) = tokenAddress.call(
abi.encodeWithSignature(
"transferFrom(address,address,uint256)",
from,
to,
amount
)
);
if (!success) {
if (data.length != 0) {
// bubble up error
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(data)
revert(add(32, data), returndata_size)
}
} else {
revert TransferFailed();
}
}
return true;
}
/// @notice Helper function to transfer ERC20 tokens without the need for SafeERC20.
/// @dev Reverts if the ERC20 transfer fails.
/// @param tokenAddress The address of the ERC20 token.
/// @param to The address to transfer the tokens to.
/// @param amount The amount of tokens to transfer.
function safeTransfer(
address tokenAddress,
address to,
uint256 amount
) internal returns (bool) {
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory data) = tokenAddress.call(
abi.encodeWithSignature("transfer(address,uint256)", to, amount)
);
if (!success) {
if (data.length != 0) {
// bubble up error
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(data)
revert(add(32, data), returndata_size)
}
} else {
revert TransferFailed();
}
}
return true;
}
}// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.17;
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { LibCommon } from "./lib/LibCommon.sol";
/// @title ERC20 Token with Extended Reflection Mechanism
/// @notice This contract implements ERC20 standards along with an additional reward feature for token holders
abstract contract ReflectiveV3ERC20 is ERC20 {
// Constants
uint256 private constant BPS_DIVISOR = 10_000;
uint256 public constant MAX_REWARDS_EXCLUSION_LIMIT = 100;
mapping(address => uint256) private _rOwned;
mapping(address => uint256) private _tOwned;
uint256 private constant UINT_256_MAX = type(uint256).max;
uint256 private _rTotal;
uint256 private _tFeeTotal;
uint256 public tFeeBPS;
bool private immutable isReflective;
mapping (address => bool) private _isRewardsExcluded;
address[] public rewardsExcluded;
// events
event ExcludedFromRewards(address indexed account);
event IncludedInRewards(address indexed account);
// custom errors
error TokenIsNotReflective();
error TotalReflectionTooSmall();
error ZeroTransferError();
error BurningNotEnabled();
error ERC20InsufficientBalance(
address recipient,
uint256 fromBalance,
uint256 balance
);
error AlreadyExcludedFromRewards();
error AlreadyIncludedInRewards();
error ReachedMaxRewardExclusionLimit();
/// @notice Returns the total supply of the token
/// @return The total supply of the token
function _tTotal() public view virtual returns (uint256) {
return totalSupply();
}
/// @notice Constructor to initialize the ReflectiveV2ERC20 token
/// @param name_ The name of the token
/// @param symbol_ The symbol of the token
/// @param tokenOwner The address of the token owner
/// @param totalSupply_ The initial total supply of the token
/// @param decimalsToSet The number of decimal places for the token
/// @param tFeeBPS_ The reflection fee in basis points
/// @param isReflective_ Indicates if the token is reflective
constructor(
string memory name_,
string memory symbol_,
address tokenOwner,
uint256 totalSupply_,
uint8 decimalsToSet,
uint256 tFeeBPS_,
bool isReflective_
) ERC20(name_, symbol_) {
if (totalSupply_ != 0) {
super._mint(tokenOwner, totalSupply_ * 10 ** decimalsToSet);
_rTotal = (UINT_256_MAX - (UINT_256_MAX % totalSupply_));
}
_rOwned[tokenOwner] = _rTotal;
tFeeBPS = tFeeBPS_;
isReflective = isReflective_;
}
/// @notice Returns the balance of tokens for a specific address
/// @param account The address to query the balance of
/// @return The balance of tokens
function balanceOf(address account) public view override returns (uint256) {
if (isReflective) {
if (_isRewardsExcluded[account]) return _tOwned[account];
return tokenFromReflection(_rOwned[account]);
} else {
return super.balanceOf(account);
}
}
/// @notice Transfers tokens from one account to another
/// @param from The address to transfer tokens from
/// @param to The address to transfer tokens to
/// @param value The amount of tokens to transfer
/// @return A boolean indicating success
function transferFrom(
address from,
address to,
uint256 value
) public virtual override returns (bool) {
address spender = super._msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/// @notice Transfers tokens to a specified address
/// @param to The address to transfer tokens to
/// @param value The amount of tokens to transfer
/// @return A boolean indicating success
function transfer(
address to,
uint256 value
) public virtual override returns (bool) {
address owner = super._msgSender();
_transfer(owner, to, value);
return true;
}
// override internal OZ standard ERC20 functions related to transfer
/// @notice Internal function to transfer tokens from one account to another
/// @param from The address to transfer tokens from
/// @param to The address to transfer tokens to
/// @param amount The amount of tokens to transfer
function _transfer(
address from,
address to,
uint256 amount
) internal override {
if (isReflective) {
LibCommon.validateAddress(from);
LibCommon.validateAddress(to);
if (amount == 0) {
revert ZeroTransferError();
}
if (_isRewardsExcluded[from] && !_isRewardsExcluded[to]) {
_transferFromExcluded(from, to, amount);
} else if (!_isRewardsExcluded[from] && _isRewardsExcluded[to]) {
_transferToExcluded(from, to, amount);
} else if (!_isRewardsExcluded[from] && !_isRewardsExcluded[to]) {
_transferStandard(from, to, amount);
} else if (_isRewardsExcluded[from] && _isRewardsExcluded[to]) {
_transferBothExcluded(from, to, amount);
} else {
_transferStandard(from, to, amount);
}
} else {
super._transfer(from, to, amount);
}
}
/// @notice Internal function to burn tokens, disallowed if reflection mechanism is used
/// @param account The account to burn tokens from
/// @param value The amount of tokens to burn
function _burn(address account, uint256 value) internal override {
if (isReflective) {
revert BurningNotEnabled();
} else {
super._burn(account, value);
}
}
/// @notice Sets a new reflection fee
/// @dev Should only be called by the contract owner
/// @param _tFeeBPS The reflection fee in basis points
function _setReflectionFee(uint256 _tFeeBPS) internal {
if (!isReflective) {
revert TokenIsNotReflective();
}
tFeeBPS = _tFeeBPS;
}
/// @notice Calculates the number of tokens from a reflection amount
/// @param rAmount The reflection amount
/// @return The number of tokens corresponding to the reflection amount
function tokenFromReflection(uint256 rAmount) public view returns (uint256) {
if (rAmount > _rTotal) {
revert TotalReflectionTooSmall();
}
uint256 currentRate = _getRate();
return rAmount / currentRate;
}
/// @notice Excludes an account from receiving rewards
/// @param account The account to exclude from rewards
function _excludeFromRewards(
address account
) internal {
if (!isReflective) {
revert TokenIsNotReflective();
}
if (_isRewardsExcluded[account]) {
revert AlreadyExcludedFromRewards();
}
if (rewardsExcluded.length >= MAX_REWARDS_EXCLUSION_LIMIT) {
revert ReachedMaxRewardExclusionLimit();
}
if(_rOwned[account] > 0) {
_tOwned[account] = tokenFromReflection(_rOwned[account]);
}
_isRewardsExcluded[account] = true;
rewardsExcluded.push(account);
emit ExcludedFromRewards(account);
}
/// @notice Includes an account to receive rewards
/// @param account The account to include for rewards
function _includeInRewards(address account) internal {
if (!isReflective) {
revert TokenIsNotReflective();
}
if (!_isRewardsExcluded[account]) {
revert AlreadyIncludedInRewards();
}
for (uint256 i = 0; i < rewardsExcluded.length; i++) {
if (rewardsExcluded[i] == account) {
rewardsExcluded[i] = rewardsExcluded[rewardsExcluded.length - 1];
_isRewardsExcluded[account] = false;
_tOwned[account] = 0;
rewardsExcluded.pop();
emit IncludedInRewards(account);
break;
}
}
}
/// @notice Transfers a standard amount of tokens with reflection applied
/// @param sender The address sending the tokens
/// @param recipient The address receiving the tokens
/// @param tAmount The total token amount to transfer
function _transferStandard(
address sender,
address recipient,
uint256 tAmount
) private {
uint256 tFee = calculateFee(tAmount, sender, recipient);
uint256 tTransferAmount = tAmount - tFee;
(uint256 rAmount, uint256 rFee, uint256 rTransferAmount) = _getRValues(
tAmount,
tFee,
tTransferAmount
);
if (tAmount != 0) {
_rUpdate(sender, recipient, rAmount, rTransferAmount);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tAmount);
}
}
/// @notice Transfers a token amount from an excluded account
/// @param sender The address sending the tokens
/// @param recipient The address receiving the tokens
/// @param tAmount The total token amount to transfer
function _transferFromExcluded(
address sender,
address recipient,
uint256 tAmount
) private {
uint256 tFee = calculateFee(tAmount, sender, recipient);
uint256 tTransferAmount = tAmount - tFee;
(uint256 rAmount, uint256 rFee, uint256 rTransferAmount) = _getRValues(
tAmount,
tFee,
tTransferAmount
);
if (tAmount != 0) {
_rUpdate(sender, recipient, rAmount, rTransferAmount);
_tOwned[sender] = _tOwned[sender] - (tAmount);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tAmount);
}
}
/// @notice Transfers a token amount to an excluded account
/// @param sender The address sending the tokens
/// @param recipient The address receiving the tokens
/// @param tAmount The total token amount to transfer
function _transferToExcluded(
address sender,
address recipient,
uint256 tAmount
) private {
uint256 tFee = calculateFee(tAmount, sender, recipient);
uint256 tTransferAmount = tAmount - tFee;
(uint256 rAmount, uint256 rFee, uint256 rTransferAmount) = _getRValues(
tAmount,
tFee,
tTransferAmount
);
if (tAmount != 0) {
_rUpdate(sender, recipient, rAmount, rTransferAmount);
_tOwned[recipient] = _tOwned[recipient] + (tTransferAmount);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tAmount);
}
}
/// @notice Transfers a token amount between two excluded accounts
/// @param sender The address sending the tokens
/// @param recipient The address receiving the tokens
/// @param tAmount The total token amount to transfer
function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
uint256 tFee = calculateFee(tAmount, sender, recipient);
uint256 tTransferAmount = tAmount - tFee;
(uint256 rAmount, uint256 rFee, uint256 rTransferAmount) = _getRValues(
tAmount,
tFee,
tTransferAmount
);
if (tAmount != 0) {
_rUpdate(sender, recipient, rAmount, rTransferAmount);
_tOwned[sender] = _tOwned[sender] - (tAmount);
_tOwned[recipient] = _tOwned[recipient] + (tTransferAmount);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tAmount);
}
}
/// @notice Reflects the fee to all holders by deducting it from the total reflections
/// @param rFee The reflection fee amount
/// @param tFee The token fee amount
function _reflectFee(uint256 rFee, uint256 tFee) private {
_rTotal = _rTotal - rFee;
_tFeeTotal = _tFeeTotal + tFee;
}
/// @notice Calculates the reflection fee from a token amount
/// @param amount The token amount to calculate the fee from
/// @param sender The address of the sender
/// @param recipient The address of the recipient
/// @return The calculated fee amount
function calculateFee(uint256 amount, address sender, address recipient) private view returns (uint256) {
if (_isRewardsExcluded[sender] || _isRewardsExcluded[recipient]) {
return 0;
} else {
return (amount * tFeeBPS) / BPS_DIVISOR;
}
}
/// @notice Transfers tokens without applying reflection fees
/// @param from The address to transfer tokens from
/// @param to The address to transfer tokens to
/// @param tAmount The total token amount to transfer
function _transferNonReflectedTax(
address from,
address to,
uint256 tAmount
) internal {
if (isReflective) {
if (tAmount != 0) {
uint256 currentRate = _getRate();
uint256 rAmount = tAmount * currentRate;
_rUpdate(from, to, rAmount, rAmount);
emit Transfer(from, to, tAmount);
}
} else {
super._transfer(from, to, tAmount);
}
}
/// @notice Retrieves the reflection values from token values
/// @param tAmount The token amount
/// @param tFee The token fee amount
/// @param tTransferAmount The transfer amount
/// @return The reflection values (rAmount, rFee, rTransferAmount)
function _getRValues(
uint256 tAmount,
uint256 tFee,
uint256 tTransferAmount
) private view returns (uint256, uint256, uint256) {
uint256 currentRate = _getRate();
uint256 rAmount = tAmount * currentRate;
uint256 rFee = tFee * currentRate;
uint256 rTransferAmount = tTransferAmount * currentRate;
return (rAmount, rFee, rTransferAmount);
}
/// @notice Retrieves the current reflection rate
/// @return The current reflection rate
function _getRate() private view returns (uint256) {
(uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
return rSupply / tSupply;
}
/// @notice Retrieves the current reflection and token supplies
/// @return The current reflection and token supplies
function _getCurrentSupply() private view returns (uint256, uint256) {
return (_rTotal, _tTotal());
}
/// @notice Updates the reflection balances for a transfer
/// @param sender The address sending the tokens
/// @param recipient The address receiving the tokens
/// @param rSubAmount The amount to be deducted from the sender
/// @param rTransferAmount The amount to be added to the recipient
function _rUpdate(
address sender,
address recipient,
uint256 rSubAmount,
uint256 rTransferAmount
) private {
uint256 fromBalance = _rOwned[sender];
if (fromBalance < rSubAmount) {
revert ERC20InsufficientBalance(recipient, fromBalance, rSubAmount);
}
_rOwned[sender] = _rOwned[sender] - rSubAmount;
_rOwned[recipient] = _rOwned[recipient] + rTransferAmount;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* 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 ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these 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 override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override 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 override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override 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 `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` 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 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* 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 `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `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.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` 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.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
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 amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
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);
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"viaIR": false,
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialSupplyToSet","type":"uint256"},{"internalType":"uint8","name":"decimalsToSet","type":"uint8"},{"internalType":"address","name":"tokenOwner","type":"address"},{"components":[{"internalType":"bool","name":"_isBurnable","type":"bool"},{"internalType":"bool","name":"_isDocumentAllowed","type":"bool"},{"internalType":"bool","name":"_isMaxAmountOfTokensSet","type":"bool"},{"internalType":"bool","name":"_isTaxable","type":"bool"},{"internalType":"bool","name":"_isDeflationary","type":"bool"},{"internalType":"bool","name":"_isReflective","type":"bool"}],"internalType":"struct BitbondTokenToolAdvancedTokenFixedSupply.ERC20ConfigProps","name":"customConfigProps","type":"tuple"},{"internalType":"string","name":"newDocumentUri","type":"string"},{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"uint256[3]","name":"bpsParams","type":"uint256[3]"},{"internalType":"uint256[1]","name":"amountParams","type":"uint256[1]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExcludedFromFeesAndLimits","type":"error"},{"inputs":[],"name":"AlreadyExcludedFromRewards","type":"error"},{"inputs":[],"name":"AlreadyIncludedInFeesAndLimits","type":"error"},{"inputs":[],"name":"AlreadyIncludedInRewards","type":"error"},{"inputs":[],"name":"BurningNotEnabled","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"DestBalanceExceedsMaxAllowed","type":"error"},{"inputs":[],"name":"DocumentUriNotAllowed","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"fromBalance","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"InvalidDecimals","type":"error"},{"inputs":[{"internalType":"uint256","name":"maxTokenAmount","type":"uint256"}],"name":"InvalidMaxTokenAmount","type":"error"},{"inputs":[],"name":"InvalidReflectiveConfig","type":"error"},{"inputs":[{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"InvalidTotalBPS","type":"error"},{"inputs":[],"name":"MaxTokenAmountNotAllowed","type":"error"},{"inputs":[],"name":"MaxTokenAmountPerAddrLtPrevious","type":"error"},{"inputs":[],"name":"ReachedMaxExclusionLimit","type":"error"},{"inputs":[],"name":"ReachedMaxRewardExclusionLimit","type":"error"},{"inputs":[],"name":"TokenIsNotDeflationary","type":"error"},{"inputs":[],"name":"TokenIsNotReflective","type":"error"},{"inputs":[],"name":"TokenIsNotTaxable","type":"error"},{"inputs":[],"name":"TotalReflectionTooSmall","type":"error"},{"inputs":[],"name":"ZeroTransferError","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_deflationBPS","type":"uint256"}],"name":"DeflationConfigSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newDocUri","type":"string"}],"name":"DocumentUriSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludeFromFeesAndLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludedFromRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"IncludedInFeesAndLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"IncludedInRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxTokenAmount","type":"uint256"}],"name":"MaxTokenAmountPerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_feeBPS","type":"uint256"}],"name":"ReflectionConfigSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_taxAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"_taxBPS","type":"uint256"}],"name":"TaxConfigSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_EXCLUSION_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_REWARDS_EXCLUSION_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deflationBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"documentUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFeesAndLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"feesAndLimitsExcluded","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFeesAndLimitsExclusionList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRewardsExclusionList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFeesAndLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialDocumentUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialMaxTokenAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialTokenOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDeflationary","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDocumentUriAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeesAndLimitsExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMaxAmountOfTokensSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isReflective","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardsExcluded","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deflationBPS","type":"uint256"}],"name":"setDeflationConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newDocumentUri","type":"string"}],"name":"setDocumentUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTokenAmount","type":"uint256"}],"name":"setMaxTokenAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeBPS","type":"uint256"}],"name":"setReflectionConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"uint256","name":"_taxBPS","type":"uint256"}],"name":"setTaxConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6101206040523480156200001257600080fd5b5060405162006a0e38038062006a0e833981810160405281019062000038919062000f6f565b8989878a8a60008d036200004e5760006200006b565b86600260038110620000655762000064620010c4565b5b60200201515b8a60a001518686816003908162000083919062001334565b50806004908162000095919062001334565b505050600084146200013557620000d38584600a620000b591906200159e565b86620000c29190620015ef565b6200059860201b62001e981760201c565b837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000101919062001669565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200012e9190620016a1565b6007819055505b600754600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160098190555080151560808115158152505050505050505050620001b5620001a96200070560201b60201c565b6200070d60201b60201c565b8460a001518015620001d55750846000015180620001d4575084608001515b5b806200020c57508460a001511580156200020b5750600082600260038110620002035762000202620010c4565b5b602002015114155b5b1562000244576040517f30a870cc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846040015115620002ce57600081600060018110620002685762000267620010c4565b5b602002015103620002cd57806000600181106200028a5762000289620010c4565b5b60200201516040517f64824b8d000000000000000000000000000000000000000000000000000000008152600401620002c49190620016ed565b60405180910390fd5b5b60128760ff1611156200031a57866040517fca9503910000000000000000000000000000000000000000000000000000000081526004016200031191906200171b565b60405180910390fd5b6200032d858385620007d360201b60201c565b6200034386620008e060201b62001fee1760201c565b82601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816000600381106200039b576200039a620010c4565b5b602002015160148190555081600160038110620003bd57620003bc620010c4565b5b60200201516015819055508760a0818152505080600060018110620003e757620003e6620010c4565b5b602002015160c0818152505083600d908162000404919062001334565b508573ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff16815250508660ff166101008160ff168152505084601260008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff02191690831515021790555060608201518160000160036101000a81548160ff02191690831515021790555060808201518160000160046101000a81548160ff02191690831515021790555060a08201518160000160056101000a81548160ff02191690831515021790555090505083600e90816200051f919062001334565b5080600060018110620005375762000536620010c4565b5b6020020151600f819055503373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161462000588576200058786620008fa60201b60201c565b5b5050505050505050505062001900565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200060a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006019062001799565b60405180910390fd5b6200061e600083836200092360201b60201c565b8060026000828254620006329190620017bb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006e59190620016ed565b60405180910390a362000701600083836200092860201b60201c565b5050565b600033905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008360600151156200082257620007f682620008e060201b62001fee1760201c565b826000600381106200080d576200080c620010c4565b5b6020020151816200081f9190620017bb565b90505b836080015115620008595782600160038110620008445762000843620010c4565b5b602002015181620008569190620017bb565b90505b8360a00151156200089057826002600381106200087b576200087a620010c4565b5b6020020151816200088d9190620017bb565b90505b6107d0811115620008da57806040517f3e474e0d000000000000000000000000000000000000000000000000000000008152600401620008d19190620016ed565b60405180910390fd5b50505050565b8060601b620008f75763d92e233d6000526004601cfd5b50565b6200090a6200092d60201b60201c565b6200092081620009be60201b620020071760201c565b50565b505050565b505050565b6200093d6200070560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200096362000a5460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b39062001846565b60405180910390fd5b565b620009ce6200092d60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3790620018de565b60405180910390fd5b62000a51816200070d60201b60201c565b50565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000ae78262000a9c565b810181811067ffffffffffffffff8211171562000b095762000b0862000aad565b5b80604052505050565b600062000b1e62000a7e565b905062000b2c828262000adc565b919050565b600067ffffffffffffffff82111562000b4f5762000b4e62000aad565b5b62000b5a8262000a9c565b9050602081019050919050565b60005b8381101562000b8757808201518184015260208101905062000b6a565b60008484015250505050565b600062000baa62000ba48462000b31565b62000b12565b90508281526020810184848401111562000bc95762000bc862000a97565b5b62000bd684828562000b67565b509392505050565b600082601f83011262000bf65762000bf562000a92565b5b815162000c0884826020860162000b93565b91505092915050565b6000819050919050565b62000c268162000c11565b811462000c3257600080fd5b50565b60008151905062000c468162000c1b565b92915050565b600060ff82169050919050565b62000c648162000c4c565b811462000c7057600080fd5b50565b60008151905062000c848162000c59565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cb78262000c8a565b9050919050565b62000cc98162000caa565b811462000cd557600080fd5b50565b60008151905062000ce98162000cbe565b92915050565b600080fd5b60008115159050919050565b62000d0b8162000cf4565b811462000d1757600080fd5b50565b60008151905062000d2b8162000d00565b92915050565b600060c0828403121562000d4a5762000d4962000cef565b5b62000d5660c062000b12565b9050600062000d688482850162000d1a565b600083015250602062000d7e8482850162000d1a565b602083015250604062000d948482850162000d1a565b604083015250606062000daa8482850162000d1a565b606083015250608062000dc08482850162000d1a565b60808301525060a062000dd68482850162000d1a565b60a08301525092915050565b600067ffffffffffffffff82111562000e005762000dff62000aad565b5b602082029050919050565b600080fd5b600062000e2762000e218462000de2565b62000b12565b9050806020840283018581111562000e445762000e4362000e0b565b5b835b8181101562000e71578062000e5c888262000c35565b84526020840193505060208101905062000e46565b5050509392505050565b600082601f83011262000e935762000e9262000a92565b5b600362000ea284828562000e10565b91505092915050565b600067ffffffffffffffff82111562000ec95762000ec862000aad565b5b602082029050919050565b600062000eeb62000ee58462000eab565b62000b12565b9050806020840283018581111562000f085762000f0762000e0b565b5b835b8181101562000f35578062000f20888262000c35565b84526020840193505060208101905062000f0a565b5050509392505050565b600082601f83011262000f575762000f5662000a92565b5b600162000f6684828562000ed4565b91505092915050565b6000806000806000806000806000806102208b8d03121562000f965762000f9562000a88565b5b60008b015167ffffffffffffffff81111562000fb75762000fb662000a8d565b5b62000fc58d828e0162000bde565b9a505060208b015167ffffffffffffffff81111562000fe95762000fe862000a8d565b5b62000ff78d828e0162000bde565b99505060406200100a8d828e0162000c35565b98505060606200101d8d828e0162000c73565b9750506080620010308d828e0162000cd8565b96505060a0620010438d828e0162000d31565b9550506101608b015167ffffffffffffffff81111562001068576200106762000a8d565b5b620010768d828e0162000bde565b9450506101806200108a8d828e0162000cd8565b9350506101a06200109e8d828e0162000e7b565b925050610200620010b28d828e0162000f3f565b9150509295989b9194979a5092959850565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200114657607f821691505b6020821081036200115c576200115b620010fe565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620011c67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001187565b620011d2868362001187565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620012156200120f620012098462000c11565b620011ea565b62000c11565b9050919050565b6000819050919050565b6200123183620011f4565b6200124962001240826200121c565b84845462001194565b825550505050565b600090565b6200126062001251565b6200126d81848462001226565b505050565b5b8181101562001295576200128960008262001256565b60018101905062001273565b5050565b601f821115620012e457620012ae8162001162565b620012b98462001177565b81016020851015620012c9578190505b620012e1620012d88562001177565b83018262001272565b50505b505050565b600082821c905092915050565b60006200130960001984600802620012e9565b1980831691505092915050565b6000620013248383620012f6565b9150826002028217905092915050565b6200133f82620010f3565b67ffffffffffffffff8111156200135b576200135a62000aad565b5b6200136782546200112d565b6200137482828562001299565b600060209050601f831160018114620013ac576000841562001397578287015190505b620013a3858262001316565b86555062001413565b601f198416620013bc8662001162565b60005b82811015620013e657848901518255600182019150602085019450602081019050620013bf565b8683101562001406578489015162001402601f891682620012f6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620014a9578086048111156200148157620014806200141b565b5b6001851615620014915780820291505b8081029050620014a1856200144a565b945062001461565b94509492505050565b600082620014c4576001905062001597565b81620014d4576000905062001597565b8160018114620014ed5760028114620014f8576200152e565b600191505062001597565b60ff8411156200150d576200150c6200141b565b5b8360020a9150848211156200152757620015266200141b565b5b5062001597565b5060208310610133831016604e8410600b8410161715620015685782820a9050838111156200156257620015616200141b565b5b62001597565b62001577848484600162001457565b925090508184048111156200159157620015906200141b565b5b81810290505b9392505050565b6000620015ab8262000c11565b9150620015b88362000c4c565b9250620015e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620014b2565b905092915050565b6000620015fc8262000c11565b9150620016098362000c11565b9250828202620016198162000c11565b915082820484148315176200163357620016326200141b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620016768262000c11565b9150620016838362000c11565b9250826200169657620016956200163a565b5b828206905092915050565b6000620016ae8262000c11565b9150620016bb8362000c11565b9250828203905081811115620016d657620016d56200141b565b5b92915050565b620016e78162000c11565b82525050565b6000602082019050620017046000830184620016dc565b92915050565b620017158162000c4c565b82525050565b60006020820190506200173260008301846200170a565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001781601f8362001738565b91506200178e8262001749565b602082019050919050565b60006020820190508181036000830152620017b48162001772565b9050919050565b6000620017c88262000c11565b9150620017d58362000c11565b9250828201905080821115620017f057620017ef6200141b565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200182e60208362001738565b91506200183b82620017f6565b602082019050919050565b6000602082019050818103600083015262001861816200181f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000620018c660268362001738565b9150620018d38262001868565b604082019050919050565b60006020820190508181036000830152620018f981620018b7565b9050919050565b60805160a05160c05160e0516101005161509f6200196f60003960006111830152600061144e015260006115b2015260006111a90152600081816112d9015281816122db015281816127e0015281816128b4015281816129ec01528181612d3601526134e6015261509f6000f3fe608060405234801561001057600080fd5b506004361061030b5760003560e01c8063715018a61161019d578063af465a27116100e9578063dd62ed3e116100a2578063f820f5671161007c578063f820f56714610950578063f8afaba51461096e578063f91f825d1461098a578063ffa1ad74146109a65761030b565b8063dd62ed3e146108e8578063f19c4e3b14610918578063f2fde38b146109345761030b565b8063af465a2714610838578063b609995e14610856578063b7bda68f14610872578063bfcf735514610890578063d48e4127146108ae578063d8f67851146108cc5761030b565b806395d89b4111610156578063a457c2d711610130578063a457c2d71461079e578063a476df61146107ce578063a9059cbb146107ea578063a9d866851461081a5761030b565b806395d89b41146107445780639703a19d14610762578063a32f6976146107805761030b565b8063715018a6146106a4578063883356d9146106ae5780638da5cb5b146106cc5780638dac7191146106ea5780638e8c10a21461070857806393fbda99146107265761030b565b80632fa782eb1161025c5780634a88266c116102155780635514c832116101ef5780635514c8321461061a5780635a3990ce14610638578063614d08f81461065657806370a08231146106745761030b565b80634a88266c146105ae5780634ac0bc32146105de578063542e9667146105fc5761030b565b80632fa782eb146104ea578063313ce56714610508578063378dc3dc14610526578063395093511461054457806342966c681461057457806349a602db146105905761030b565b8063111e0376116102c957806323b872dd116102a357806323b872dd1461043c57806323bbbd6a1461046c5780632d8381191461049c5780632e0ee48e146104cc5761030b565b8063111e0376146103e4578063154af8e71461040057806318160ddd1461041e5761030b565b8062af2d9d1461031057806302252c4d14610340578063044ab74e1461035c57806306fdde031461037a578063095ea7b3146103985780630bd92756146103c8575b600080fd5b61032a60048036038101906103259190613f57565b6109c4565b6040516103379190613fc5565b60405180910390f35b61035a60048036038101906103559190613f57565b610a03565b005b610364610ac5565b6040516103719190614070565b60405180910390f35b610382610b53565b60405161038f9190614070565b60405180910390f35b6103b260048036038101906103ad91906140be565b610be5565b6040516103bf9190614119565b60405180910390f35b6103e260048036038101906103dd9190614134565b610c08565b005b6103fe60048036038101906103f99190614134565b610ebe565b005b610408610ed2565b604051610415919061421f565b60405180910390f35b610426610f60565b6040516104339190614250565b60405180910390f35b6104566004803603810190610451919061426b565b610f6a565b6040516104639190614119565b60405180910390f35b61048660048036038101906104819190613f57565b6110c2565b6040516104939190613fc5565b60405180910390f35b6104b660048036038101906104b19190613f57565b611101565b6040516104c39190614250565b60405180910390f35b6104d461115f565b6040516104e19190614119565b60405180910390f35b6104f2611179565b6040516104ff9190614250565b60405180910390f35b61051061117f565b60405161051d91906142da565b60405180910390f35b61052e6111a7565b60405161053b9190614250565b60405180910390f35b61055e600480360381019061055991906140be565b6111cb565b60405161056b9190614119565b60405180910390f35b61058e60048036038101906105899190613f57565b611202565b005b610598611255565b6040516105a59190614250565b60405180910390f35b6105c860048036038101906105c39190614134565b61125a565b6040516105d59190614119565b60405180910390f35b6105e661127a565b6040516105f39190614119565b60405180910390f35b610604611294565b6040516106119190614250565b60405180910390f35b61062261129a565b60405161062f9190614250565b60405180910390f35b61064061129f565b60405161064d9190614119565b60405180910390f35b61065e6112b9565b60405161066b9190614070565b60405180910390f35b61068e60048036038101906106899190614134565b6112d5565b60405161069b9190614250565b60405180910390f35b6106ac6113f6565b005b6106b6611408565b6040516106c39190614119565b60405180910390f35b6106d4611422565b6040516106e19190613fc5565b60405180910390f35b6106f261144c565b6040516106ff9190613fc5565b60405180910390f35b610710611470565b60405161071d9190614119565b60405180910390f35b61072e61148a565b60405161073b919061421f565b60405180910390f35b61074c611518565b6040516107599190614070565b60405180910390f35b61076a6115aa565b6040516107779190614250565b60405180910390f35b6107886115b0565b6040516107959190614250565b60405180910390f35b6107b860048036038101906107b391906140be565b6115d4565b6040516107c59190614119565b60405180910390f35b6107e860048036038101906107e3919061442a565b61164b565b005b61080460048036038101906107ff91906140be565b6116db565b6040516108119190614119565b60405180910390f35b610822611831565b60405161082f9190614070565b60405180910390f35b6108406118bf565b60405161084d9190614250565b60405180910390f35b610870600480360381019061086b9190614134565b6118ce565b005b61087a6118e2565b6040516108879190613fc5565b60405180910390f35b610898611908565b6040516108a5919061448c565b60405180910390f35b6108b661192f565b6040516108c39190614250565b60405180910390f35b6108e660048036038101906108e19190613f57565b611935565b005b61090260048036038101906108fd91906144a7565b611a19565b60405161090f9190614250565b60405180910390f35b610932600480360381019061092d91906140be565b611aa0565b005b61094e60048036038101906109499190614134565b611be6565b005b610958611bfa565b6040516109659190614119565b60405180910390f35b61098860048036038101906109839190614134565b611c14565b005b6109a4600480360381019061099f9190613f57565b611de0565b005b6109ae611e5f565b6040516109bb9190614070565b60405180910390f35b601181815481106109d457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a0b61208a565b610a1361129f565b610a49576040517f6273340f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f548111610a84576040517fa43d2d7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f819055507f2905481c6fd1a037492016c4760435a52203d82a6f34dc3de40f464c1bf42d5981604051610aba9190614250565b60405180910390a150565b600e8054610ad290614516565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90614516565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505081565b606060038054610b6290614516565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8e90614516565b8015610bdb5780601f10610bb057610100808354040283529160200191610bdb565b820191906000526020600020905b815481529060010190602001808311610bbe57829003601f168201915b5050505050905090565b600080610bf0612108565b9050610bfd818585612110565b600191505092915050565b610c1061208a565b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c93576040517fed68fdd600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b601180549050811015610eba578173ffffffffffffffffffffffffffffffffffffffff1660118281548110610cce57610ccd614547565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ea75760116001601180549050610d2891906145a5565b81548110610d3957610d38614547565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660118281548110610d7857610d77614547565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506011805480610e2a57610e296145d9565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558173ffffffffffffffffffffffffffffffffffffffff167f98bab529cae32acf2e47348750c372f438f475b15be0136f55544297ef96bd2c60405160405180910390a2610eba565b8080610eb290614608565b915050610c96565b5050565b610ec661208a565b610ecf816122d9565b50565b6060600b805480602002602001604051908101604052809291908181526020018280548015610f5657602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610f0c575b5050505050905090565b6000600254905090565b600080610f788585856125c8565b90506000610f87868686612700565b90506000818386610f9891906145a5565b610fa291906145a5565b9050610fac61129f565b80156110025750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561106257600f5481611014886112d5565b61101e9190614650565b111561106157856040517ff6202a8f0000000000000000000000000000000000000000000000000000000081526004016110589190613fc5565b60405180910390fd5b5b600083146110985761109787601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856127de565b5b600082146110ab576110aa87836128b2565b5b6110b6878783612918565b93505050509392505050565b600b81815481106110d257600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060075482111561113f576040517fc91fa8bc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611149612947565b9050808361115791906146b3565b915050919050565b6000601260000160059054906101000a900460ff16905090565b60145481565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806111d6612108565b90506111f78185856111e88589611a19565b6111f29190614650565b612110565b600191505092915050565b61120a61208a565b611212611408565b611248576040517f6cb5913900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125233826128b2565b50565b606481565b60106020528060005260406000206000915054906101000a900460ff1681565b6000601260000160039054906101000a900460ff16905090565b60155481565b606481565b6000601260000160029054906101000a900460ff16905090565b6040518060600160405280602881526020016150426028913981565b60007f0000000000000000000000000000000000000000000000000000000000000000156113e557600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561139657600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506113f1565b6113de600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611101565b90506113f1565b6113ee8261296b565b90505b919050565b6113fe61208a565b6114066129b3565b565b6000601260000160009054906101000a900460ff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601260000160049054906101000a900460ff16905090565b6060601180548060200260200160405190810160405280929190818152602001828054801561150e57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116114c4575b5050505050905090565b60606004805461152790614516565b80601f016020809104026020016040519081016040528092919081815260200182805461155390614516565b80156115a05780601f10611575576101008083540402835291602001916115a0565b820191906000526020600020905b81548152906001019060200180831161158357829003601f168201915b5050505050905090565b60095481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806115df612108565b905060006115ed8286611a19565b905083811015611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990614756565b60405180910390fd5b61163f8286868403612110565b60019250505092915050565b61165361208a565b61165b611bfa565b611691576040517f70a43fce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e90816116a09190614922565b507f4456a0b562609d67398ddb488f136db285cd3c92343e0a7ba684925669237ade816040516116d09190614070565b60405180910390a150565b6000806116e93385856125c8565b905060006116f8338686612700565b9050600081838661170991906145a5565b61171391906145a5565b905061171d61129f565b80156117735750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117d357600f5481611785886112d5565b61178f9190614650565b11156117d257856040517ff6202a8f0000000000000000000000000000000000000000000000000000000081526004016117c99190613fc5565b60405180910390fd5b5b600083146118095761180833601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856127de565b5b6000821461181c5761181b33836128b2565b5b61182686826129c7565b935050505092915050565b600d805461183e90614516565b80601f016020809104026020016040519081016040528092919081815260200182805461186a90614516565b80156118b75780601f1061188c576101008083540402835291602001916118b7565b820191906000526020600020905b81548152906001019060200180831161189a57829003601f168201915b505050505081565b60006118c9610f60565b905090565b6118d661208a565b6118df816129ea565b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f8074ef1aa879a0e08e84e516b9a71dd7644235b858b6f72da1054d7351652e2660001b81565b600f5481565b61193d61208a565b611945611470565b61197b576040517fcd9e529800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008160095460155461198e9190614650565b6119989190614650565b90506107d08111156119e157806040517f3e474e0d0000000000000000000000000000000000000000000000000000000081526004016119d89190614250565b60405180910390fd5b81601581905550817fc1ff65ee907dc079b64ed9913d53f4bd593bd6ebd9b2a2708db2916d49e17ec360405160405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611aa861208a565b611ab061127a565b611ae6576040517fc8a478a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081600954601554611af99190614650565b611b039190614650565b90506107d0811115611b4c57806040517f3e474e0d000000000000000000000000000000000000000000000000000000008152600401611b439190614250565b60405180910390fd5b611b5583611fee565b82601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601481905550818373ffffffffffffffffffffffffffffffffffffffff167facc44e32fd5ca4240f6dbe6e8cf4eb49349c17c5ce5f80f1919a9c97b50d398a60405160405180910390a3505050565b611bee61208a565b611bf781612007565b50565b6000601260000160019054906101000a900460ff16905090565b611c1c61208a565b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ca0576040517ff20d03d600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606460118054905010611cdf576040517fc92787fc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506011819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f94f5dc0e322a0a7c5af09958609aeb2384692e22922827ff9595db226c01dfa560405160405180910390a250565b611de861208a565b611df061115f565b611e26576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e2f81612d34565b807f76e1296412dac7b50002658bf9aab02d0cfe366f373222d5c14d0168ee8199e360405160405180910390a250565b6040518060400160405280601581526020017f646566695f765f315f66697865645f737570706c79000000000000000000000081525081565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90614a40565b60405180910390fd5b611f1360008383612d95565b8060026000828254611f259190614650565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611fd69190614250565b60405180910390a3611fea60008383612d9a565b5050565b8060601b6120045763d92e233d6000526004601cfd5b50565b61200f61208a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361207e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207590614ad2565b60405180910390fd5b61208781612d9f565b50565b612092612108565b73ffffffffffffffffffffffffffffffffffffffff166120b0611422565b73ffffffffffffffffffffffffffffffffffffffff1614612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90614b3e565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361217f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217690614bd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e590614c62565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122cc9190614250565b60405180910390a3505050565b7f0000000000000000000000000000000000000000000000000000000000000000612330576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123b4576040517fe2f18de900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064600b80549050106123f3576040517ff266e36200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156124c757612483600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611101565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f743dcd4a012534912a3350f3ed8937d3b4f0771c62892ed15e4373dc2c5f584a60405160405180910390a250565b6000806014541415801561262a5750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156126805750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126d65750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126f957612710601454836126ec9190614c82565b6126f691906146b3565b90505b9392505050565b6000806015541415801561275e5750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127b45750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127d757612710601554836127ca9190614c82565b6127d491906146b3565b90505b9392505050565b7f0000000000000000000000000000000000000000000000000000000000000000156128a1576000811461289c576000612816612947565b9050600081836128269190614c82565b905061283485858384612e65565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516128919190614250565b60405180910390a350505b6128ad565b6128ac838383613015565b5b505050565b7f00000000000000000000000000000000000000000000000000000000000000001561290a576040517f6cb5913900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612914828261328b565b5050565b600080612923612108565b9050612930858285613458565b61293b8585856134e4565b60019150509392505050565b600080600061295461385b565b91509150808261296491906146b3565b9250505090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6129bb61208a565b6129c56000612d9f565b565b6000806129d2612108565b90506129df8185856134e4565b600191505092915050565b7f0000000000000000000000000000000000000000000000000000000000000000612a41576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ac4576040517f1214f5e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b600b80549050811015612d30578173ffffffffffffffffffffffffffffffffffffffff16600b8281548110612aff57612afe614547565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612d1d57600b6001600b80549050612b5991906145a5565b81548110612b6a57612b69614547565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b8281548110612ba957612ba8614547565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b805480612ca057612c9f6145d9565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558173ffffffffffffffffffffffffffffffffffffffff167f9ccbe1146da67d2d78acc466156a4860eecd4209be8b75a9370e8bf3e949ed1f60405160405180910390a2612d30565b8080612d2890614608565b915050612ac7565b5050565b7f0000000000000000000000000000000000000000000000000000000000000000612d8b576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060098190555050565b505050565b505050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612ef2578381846040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401612ee993929190614cc4565b60405180910390fd5b82600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f3d91906145a5565b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fcb9190614650565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307b90614d6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ea90614dff565b60405180910390fd5b6130fe838383612d95565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317b90614e91565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516132729190614250565b60405180910390a3613285848484612d9a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f190614f23565b60405180910390fd5b61330682600083612d95565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561338c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338390614fb5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161343f9190614250565b60405180910390a361345383600084612d9a565b505050565b60006134648484611a19565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146134de57818110156134d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c790615021565b60405180910390fd5b6134dd8484848403612110565b5b50505050565b7f00000000000000000000000000000000000000000000000000000000000000001561384a5761351383611fee565b61351c82611fee565b60008103613556576040517f76c4f5b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135f95750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561360e57613609838383613871565b613845565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136b15750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156136c6576136c18383836139c2565b613844565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561376a5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561377f5761377a838383613b13565b613843565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138215750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561383657613831838383613bd6565b613842565b613841838383613b13565b5b5b5b5b613856565b613855838383613015565b5b505050565b6000806007546138696118bf565b915091509091565b600061387e828585613db5565b90506000818361388e91906145a5565b905060008060006138a0868686613e8b565b925092509250600086146139b8576138ba88888584612e65565b85600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461390591906145a5565b600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139528286613ee1565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef886040516139af9190614250565b60405180910390a35b5050505050505050565b60006139cf828585613db5565b9050600081836139df91906145a5565b905060008060006139f1868686613e8b565b92509250925060008614613b0957613a0b88888584612e65565b83600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a569190614650565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613aa38286613ee1565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051613b009190614250565b60405180910390a35b5050505050505050565b6000613b20828585613db5565b905060008183613b3091906145a5565b90506000806000613b42868686613e8b565b92509250925060008614613bcc57613b5c88888584612e65565b613b668286613ee1565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051613bc39190614250565b60405180910390a35b5050505050505050565b6000613be3828585613db5565b905060008183613bf391906145a5565b90506000806000613c05868686613e8b565b92509250925060008614613dab57613c1f88888584612e65565b85600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c6a91906145a5565b600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cf89190614650565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613d458286613ee1565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051613da29190614250565b60405180910390a35b5050505050505050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613e585750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613e665760009050613e84565b61271060095485613e779190614c82565b613e8191906146b3565b90505b9392505050565b600080600080613e99612947565b905060008188613ea99190614c82565b905060008288613eb99190614c82565b905060008388613ec99190614c82565b90508282829650965096505050505093509350939050565b81600754613eef91906145a5565b60078190555080600854613f039190614650565b6008819055505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613f3481613f21565b8114613f3f57600080fd5b50565b600081359050613f5181613f2b565b92915050565b600060208284031215613f6d57613f6c613f17565b5b6000613f7b84828501613f42565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613faf82613f84565b9050919050565b613fbf81613fa4565b82525050565b6000602082019050613fda6000830184613fb6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561401a578082015181840152602081019050613fff565b60008484015250505050565b6000601f19601f8301169050919050565b600061404282613fe0565b61404c8185613feb565b935061405c818560208601613ffc565b61406581614026565b840191505092915050565b6000602082019050818103600083015261408a8184614037565b905092915050565b61409b81613fa4565b81146140a657600080fd5b50565b6000813590506140b881614092565b92915050565b600080604083850312156140d5576140d4613f17565b5b60006140e3858286016140a9565b92505060206140f485828601613f42565b9150509250929050565b60008115159050919050565b614113816140fe565b82525050565b600060208201905061412e600083018461410a565b92915050565b60006020828403121561414a57614149613f17565b5b6000614158848285016140a9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61419681613fa4565b82525050565b60006141a8838361418d565b60208301905092915050565b6000602082019050919050565b60006141cc82614161565b6141d6818561416c565b93506141e18361417d565b8060005b838110156142125781516141f9888261419c565b9750614204836141b4565b9250506001810190506141e5565b5085935050505092915050565b6000602082019050818103600083015261423981846141c1565b905092915050565b61424a81613f21565b82525050565b60006020820190506142656000830184614241565b92915050565b60008060006060848603121561428457614283613f17565b5b6000614292868287016140a9565b93505060206142a3868287016140a9565b92505060406142b486828701613f42565b9150509250925092565b600060ff82169050919050565b6142d4816142be565b82525050565b60006020820190506142ef60008301846142cb565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61433782614026565b810181811067ffffffffffffffff82111715614356576143556142ff565b5b80604052505050565b6000614369613f0d565b9050614375828261432e565b919050565b600067ffffffffffffffff821115614395576143946142ff565b5b61439e82614026565b9050602081019050919050565b82818337600083830152505050565b60006143cd6143c88461437a565b61435f565b9050828152602081018484840111156143e9576143e86142fa565b5b6143f48482856143ab565b509392505050565b600082601f830112614411576144106142f5565b5b81356144218482602086016143ba565b91505092915050565b6000602082840312156144405761443f613f17565b5b600082013567ffffffffffffffff81111561445e5761445d613f1c565b5b61446a848285016143fc565b91505092915050565b6000819050919050565b61448681614473565b82525050565b60006020820190506144a1600083018461447d565b92915050565b600080604083850312156144be576144bd613f17565b5b60006144cc858286016140a9565b92505060206144dd858286016140a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061452e57607f821691505b602082108103614541576145406144e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145b082613f21565b91506145bb83613f21565b92508282039050818111156145d3576145d2614576565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600061461382613f21565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361464557614644614576565b5b600182019050919050565b600061465b82613f21565b915061466683613f21565b925082820190508082111561467e5761467d614576565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146be82613f21565b91506146c983613f21565b9250826146d9576146d8614684565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614740602583613feb565b915061474b826146e4565b604082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147d87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261479b565b6147e2868361479b565b95508019841693508086168417925050509392505050565b6000819050919050565b600061481f61481a61481584613f21565b6147fa565b613f21565b9050919050565b6000819050919050565b61483983614804565b61484d61484582614826565b8484546147a8565b825550505050565b600090565b614862614855565b61486d818484614830565b505050565b5b818110156148915761488660008261485a565b600181019050614873565b5050565b601f8211156148d6576148a781614776565b6148b08461478b565b810160208510156148bf578190505b6148d36148cb8561478b565b830182614872565b50505b505050565b600082821c905092915050565b60006148f9600019846008026148db565b1980831691505092915050565b600061491283836148e8565b9150826002028217905092915050565b61492b82613fe0565b67ffffffffffffffff811115614944576149436142ff565b5b61494e8254614516565b614959828285614895565b600060209050601f83116001811461498c576000841561497a578287015190505b6149848582614906565b8655506149ec565b601f19841661499a86614776565b60005b828110156149c25784890151825560018201915060208501945060208101905061499d565b868310156149df57848901516149db601f8916826148e8565b8355505b6001600288020188555050505b505050505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000614a2a601f83613feb565b9150614a35826149f4565b602082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614abc602683613feb565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b28602083613feb565b9150614b3382614af2565b602082019050919050565b60006020820190508181036000830152614b5781614b1b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614bba602483613feb565b9150614bc582614b5e565b604082019050919050565b60006020820190508181036000830152614be981614bad565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c4c602283613feb565b9150614c5782614bf0565b604082019050919050565b60006020820190508181036000830152614c7b81614c3f565b9050919050565b6000614c8d82613f21565b9150614c9883613f21565b9250828202614ca681613f21565b91508282048414831517614cbd57614cbc614576565b5b5092915050565b6000606082019050614cd96000830186613fb6565b614ce66020830185614241565b614cf36040830184614241565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d57602583613feb565b9150614d6282614cfb565b604082019050919050565b60006020820190508181036000830152614d8681614d4a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614de9602383613feb565b9150614df482614d8d565b604082019050919050565b60006020820190508181036000830152614e1881614ddc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e7b602683613feb565b9150614e8682614e1f565b604082019050919050565b60006020820190508181036000830152614eaa81614e6e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f0d602183613feb565b9150614f1882614eb1565b604082019050919050565b60006020820190508181036000830152614f3c81614f00565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f9f602283613feb565b9150614faa82614f43565b604082019050919050565b60006020820190508181036000830152614fce81614f92565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061500b601d83613feb565b915061501682614fd5565b602082019050919050565b6000602082019050818103600083015261503a81614ffe565b905091905056fe426974626f6e64546f6b656e546f6f6c416476616e636564546f6b656e4669786564537570706c79a2646970667358221220733df85125bfbbc19c26c1b26a9d3b6bc1352bc9fbb50d0b8da25476c15622f164736f6c6343000811003300000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000003b5d51ff000000000000000000000000000000000000000000000000000000000000001200000000000000000000000091041d881ed55a225e3497ea298026465ce65fe800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000a65ec64aa512d959d27ceae6e7d4fdcb889090fa00000000000000000000000000000000000000000000000000000000000001720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b4d6573737920566972676f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d455353590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061030b5760003560e01c8063715018a61161019d578063af465a27116100e9578063dd62ed3e116100a2578063f820f5671161007c578063f820f56714610950578063f8afaba51461096e578063f91f825d1461098a578063ffa1ad74146109a65761030b565b8063dd62ed3e146108e8578063f19c4e3b14610918578063f2fde38b146109345761030b565b8063af465a2714610838578063b609995e14610856578063b7bda68f14610872578063bfcf735514610890578063d48e4127146108ae578063d8f67851146108cc5761030b565b806395d89b4111610156578063a457c2d711610130578063a457c2d71461079e578063a476df61146107ce578063a9059cbb146107ea578063a9d866851461081a5761030b565b806395d89b41146107445780639703a19d14610762578063a32f6976146107805761030b565b8063715018a6146106a4578063883356d9146106ae5780638da5cb5b146106cc5780638dac7191146106ea5780638e8c10a21461070857806393fbda99146107265761030b565b80632fa782eb1161025c5780634a88266c116102155780635514c832116101ef5780635514c8321461061a5780635a3990ce14610638578063614d08f81461065657806370a08231146106745761030b565b80634a88266c146105ae5780634ac0bc32146105de578063542e9667146105fc5761030b565b80632fa782eb146104ea578063313ce56714610508578063378dc3dc14610526578063395093511461054457806342966c681461057457806349a602db146105905761030b565b8063111e0376116102c957806323b872dd116102a357806323b872dd1461043c57806323bbbd6a1461046c5780632d8381191461049c5780632e0ee48e146104cc5761030b565b8063111e0376146103e4578063154af8e71461040057806318160ddd1461041e5761030b565b8062af2d9d1461031057806302252c4d14610340578063044ab74e1461035c57806306fdde031461037a578063095ea7b3146103985780630bd92756146103c8575b600080fd5b61032a60048036038101906103259190613f57565b6109c4565b6040516103379190613fc5565b60405180910390f35b61035a60048036038101906103559190613f57565b610a03565b005b610364610ac5565b6040516103719190614070565b60405180910390f35b610382610b53565b60405161038f9190614070565b60405180910390f35b6103b260048036038101906103ad91906140be565b610be5565b6040516103bf9190614119565b60405180910390f35b6103e260048036038101906103dd9190614134565b610c08565b005b6103fe60048036038101906103f99190614134565b610ebe565b005b610408610ed2565b604051610415919061421f565b60405180910390f35b610426610f60565b6040516104339190614250565b60405180910390f35b6104566004803603810190610451919061426b565b610f6a565b6040516104639190614119565b60405180910390f35b61048660048036038101906104819190613f57565b6110c2565b6040516104939190613fc5565b60405180910390f35b6104b660048036038101906104b19190613f57565b611101565b6040516104c39190614250565b60405180910390f35b6104d461115f565b6040516104e19190614119565b60405180910390f35b6104f2611179565b6040516104ff9190614250565b60405180910390f35b61051061117f565b60405161051d91906142da565b60405180910390f35b61052e6111a7565b60405161053b9190614250565b60405180910390f35b61055e600480360381019061055991906140be565b6111cb565b60405161056b9190614119565b60405180910390f35b61058e60048036038101906105899190613f57565b611202565b005b610598611255565b6040516105a59190614250565b60405180910390f35b6105c860048036038101906105c39190614134565b61125a565b6040516105d59190614119565b60405180910390f35b6105e661127a565b6040516105f39190614119565b60405180910390f35b610604611294565b6040516106119190614250565b60405180910390f35b61062261129a565b60405161062f9190614250565b60405180910390f35b61064061129f565b60405161064d9190614119565b60405180910390f35b61065e6112b9565b60405161066b9190614070565b60405180910390f35b61068e60048036038101906106899190614134565b6112d5565b60405161069b9190614250565b60405180910390f35b6106ac6113f6565b005b6106b6611408565b6040516106c39190614119565b60405180910390f35b6106d4611422565b6040516106e19190613fc5565b60405180910390f35b6106f261144c565b6040516106ff9190613fc5565b60405180910390f35b610710611470565b60405161071d9190614119565b60405180910390f35b61072e61148a565b60405161073b919061421f565b60405180910390f35b61074c611518565b6040516107599190614070565b60405180910390f35b61076a6115aa565b6040516107779190614250565b60405180910390f35b6107886115b0565b6040516107959190614250565b60405180910390f35b6107b860048036038101906107b391906140be565b6115d4565b6040516107c59190614119565b60405180910390f35b6107e860048036038101906107e3919061442a565b61164b565b005b61080460048036038101906107ff91906140be565b6116db565b6040516108119190614119565b60405180910390f35b610822611831565b60405161082f9190614070565b60405180910390f35b6108406118bf565b60405161084d9190614250565b60405180910390f35b610870600480360381019061086b9190614134565b6118ce565b005b61087a6118e2565b6040516108879190613fc5565b60405180910390f35b610898611908565b6040516108a5919061448c565b60405180910390f35b6108b661192f565b6040516108c39190614250565b60405180910390f35b6108e660048036038101906108e19190613f57565b611935565b005b61090260048036038101906108fd91906144a7565b611a19565b60405161090f9190614250565b60405180910390f35b610932600480360381019061092d91906140be565b611aa0565b005b61094e60048036038101906109499190614134565b611be6565b005b610958611bfa565b6040516109659190614119565b60405180910390f35b61098860048036038101906109839190614134565b611c14565b005b6109a4600480360381019061099f9190613f57565b611de0565b005b6109ae611e5f565b6040516109bb9190614070565b60405180910390f35b601181815481106109d457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a0b61208a565b610a1361129f565b610a49576040517f6273340f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f548111610a84576040517fa43d2d7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f819055507f2905481c6fd1a037492016c4760435a52203d82a6f34dc3de40f464c1bf42d5981604051610aba9190614250565b60405180910390a150565b600e8054610ad290614516565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90614516565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505081565b606060038054610b6290614516565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8e90614516565b8015610bdb5780601f10610bb057610100808354040283529160200191610bdb565b820191906000526020600020905b815481529060010190602001808311610bbe57829003601f168201915b5050505050905090565b600080610bf0612108565b9050610bfd818585612110565b600191505092915050565b610c1061208a565b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c93576040517fed68fdd600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b601180549050811015610eba578173ffffffffffffffffffffffffffffffffffffffff1660118281548110610cce57610ccd614547565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ea75760116001601180549050610d2891906145a5565b81548110610d3957610d38614547565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660118281548110610d7857610d77614547565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506011805480610e2a57610e296145d9565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558173ffffffffffffffffffffffffffffffffffffffff167f98bab529cae32acf2e47348750c372f438f475b15be0136f55544297ef96bd2c60405160405180910390a2610eba565b8080610eb290614608565b915050610c96565b5050565b610ec661208a565b610ecf816122d9565b50565b6060600b805480602002602001604051908101604052809291908181526020018280548015610f5657602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610f0c575b5050505050905090565b6000600254905090565b600080610f788585856125c8565b90506000610f87868686612700565b90506000818386610f9891906145a5565b610fa291906145a5565b9050610fac61129f565b80156110025750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561106257600f5481611014886112d5565b61101e9190614650565b111561106157856040517ff6202a8f0000000000000000000000000000000000000000000000000000000081526004016110589190613fc5565b60405180910390fd5b5b600083146110985761109787601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856127de565b5b600082146110ab576110aa87836128b2565b5b6110b6878783612918565b93505050509392505050565b600b81815481106110d257600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060075482111561113f576040517fc91fa8bc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611149612947565b9050808361115791906146b3565b915050919050565b6000601260000160059054906101000a900460ff16905090565b60145481565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b7f000000000000000000000000000000000000000000000000000000003b5d51ff81565b6000806111d6612108565b90506111f78185856111e88589611a19565b6111f29190614650565b612110565b600191505092915050565b61120a61208a565b611212611408565b611248576040517f6cb5913900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125233826128b2565b50565b606481565b60106020528060005260406000206000915054906101000a900460ff1681565b6000601260000160039054906101000a900460ff16905090565b60155481565b606481565b6000601260000160029054906101000a900460ff16905090565b6040518060600160405280602881526020016150426028913981565b60007f0000000000000000000000000000000000000000000000000000000000000001156113e557600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561139657600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506113f1565b6113de600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611101565b90506113f1565b6113ee8261296b565b90505b919050565b6113fe61208a565b6114066129b3565b565b6000601260000160009054906101000a900460ff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f00000000000000000000000091041d881ed55a225e3497ea298026465ce65fe881565b6000601260000160049054906101000a900460ff16905090565b6060601180548060200260200160405190810160405280929190818152602001828054801561150e57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116114c4575b5050505050905090565b60606004805461152790614516565b80601f016020809104026020016040519081016040528092919081815260200182805461155390614516565b80156115a05780601f10611575576101008083540402835291602001916115a0565b820191906000526020600020905b81548152906001019060200180831161158357829003601f168201915b5050505050905090565b60095481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806115df612108565b905060006115ed8286611a19565b905083811015611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990614756565b60405180910390fd5b61163f8286868403612110565b60019250505092915050565b61165361208a565b61165b611bfa565b611691576040517f70a43fce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e90816116a09190614922565b507f4456a0b562609d67398ddb488f136db285cd3c92343e0a7ba684925669237ade816040516116d09190614070565b60405180910390a150565b6000806116e93385856125c8565b905060006116f8338686612700565b9050600081838661170991906145a5565b61171391906145a5565b905061171d61129f565b80156117735750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117d357600f5481611785886112d5565b61178f9190614650565b11156117d257856040517ff6202a8f0000000000000000000000000000000000000000000000000000000081526004016117c99190613fc5565b60405180910390fd5b5b600083146118095761180833601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856127de565b5b6000821461181c5761181b33836128b2565b5b61182686826129c7565b935050505092915050565b600d805461183e90614516565b80601f016020809104026020016040519081016040528092919081815260200182805461186a90614516565b80156118b75780601f1061188c576101008083540402835291602001916118b7565b820191906000526020600020905b81548152906001019060200180831161189a57829003601f168201915b505050505081565b60006118c9610f60565b905090565b6118d661208a565b6118df816129ea565b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f8074ef1aa879a0e08e84e516b9a71dd7644235b858b6f72da1054d7351652e2660001b81565b600f5481565b61193d61208a565b611945611470565b61197b576040517fcd9e529800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008160095460155461198e9190614650565b6119989190614650565b90506107d08111156119e157806040517f3e474e0d0000000000000000000000000000000000000000000000000000000081526004016119d89190614250565b60405180910390fd5b81601581905550817fc1ff65ee907dc079b64ed9913d53f4bd593bd6ebd9b2a2708db2916d49e17ec360405160405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611aa861208a565b611ab061127a565b611ae6576040517fc8a478a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081600954601554611af99190614650565b611b039190614650565b90506107d0811115611b4c57806040517f3e474e0d000000000000000000000000000000000000000000000000000000008152600401611b439190614250565b60405180910390fd5b611b5583611fee565b82601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601481905550818373ffffffffffffffffffffffffffffffffffffffff167facc44e32fd5ca4240f6dbe6e8cf4eb49349c17c5ce5f80f1919a9c97b50d398a60405160405180910390a3505050565b611bee61208a565b611bf781612007565b50565b6000601260000160019054906101000a900460ff16905090565b611c1c61208a565b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ca0576040517ff20d03d600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606460118054905010611cdf576040517fc92787fc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506011819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f94f5dc0e322a0a7c5af09958609aeb2384692e22922827ff9595db226c01dfa560405160405180910390a250565b611de861208a565b611df061115f565b611e26576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e2f81612d34565b807f76e1296412dac7b50002658bf9aab02d0cfe366f373222d5c14d0168ee8199e360405160405180910390a250565b6040518060400160405280601581526020017f646566695f765f315f66697865645f737570706c79000000000000000000000081525081565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90614a40565b60405180910390fd5b611f1360008383612d95565b8060026000828254611f259190614650565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611fd69190614250565b60405180910390a3611fea60008383612d9a565b5050565b8060601b6120045763d92e233d6000526004601cfd5b50565b61200f61208a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361207e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207590614ad2565b60405180910390fd5b61208781612d9f565b50565b612092612108565b73ffffffffffffffffffffffffffffffffffffffff166120b0611422565b73ffffffffffffffffffffffffffffffffffffffff1614612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90614b3e565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361217f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217690614bd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e590614c62565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122cc9190614250565b60405180910390a3505050565b7f0000000000000000000000000000000000000000000000000000000000000001612330576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123b4576040517fe2f18de900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064600b80549050106123f3576040517ff266e36200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156124c757612483600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611101565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f743dcd4a012534912a3350f3ed8937d3b4f0771c62892ed15e4373dc2c5f584a60405160405180910390a250565b6000806014541415801561262a5750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156126805750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126d65750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126f957612710601454836126ec9190614c82565b6126f691906146b3565b90505b9392505050565b6000806015541415801561275e5750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127b45750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127d757612710601554836127ca9190614c82565b6127d491906146b3565b90505b9392505050565b7f0000000000000000000000000000000000000000000000000000000000000001156128a1576000811461289c576000612816612947565b9050600081836128269190614c82565b905061283485858384612e65565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516128919190614250565b60405180910390a350505b6128ad565b6128ac838383613015565b5b505050565b7f00000000000000000000000000000000000000000000000000000000000000011561290a576040517f6cb5913900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612914828261328b565b5050565b600080612923612108565b9050612930858285613458565b61293b8585856134e4565b60019150509392505050565b600080600061295461385b565b91509150808261296491906146b3565b9250505090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6129bb61208a565b6129c56000612d9f565b565b6000806129d2612108565b90506129df8185856134e4565b600191505092915050565b7f0000000000000000000000000000000000000000000000000000000000000001612a41576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ac4576040517f1214f5e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b600b80549050811015612d30578173ffffffffffffffffffffffffffffffffffffffff16600b8281548110612aff57612afe614547565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612d1d57600b6001600b80549050612b5991906145a5565b81548110612b6a57612b69614547565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b8281548110612ba957612ba8614547565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b805480612ca057612c9f6145d9565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558173ffffffffffffffffffffffffffffffffffffffff167f9ccbe1146da67d2d78acc466156a4860eecd4209be8b75a9370e8bf3e949ed1f60405160405180910390a2612d30565b8080612d2890614608565b915050612ac7565b5050565b7f0000000000000000000000000000000000000000000000000000000000000001612d8b576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060098190555050565b505050565b505050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612ef2578381846040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401612ee993929190614cc4565b60405180910390fd5b82600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f3d91906145a5565b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fcb9190614650565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307b90614d6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ea90614dff565b60405180910390fd5b6130fe838383612d95565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317b90614e91565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516132729190614250565b60405180910390a3613285848484612d9a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f190614f23565b60405180910390fd5b61330682600083612d95565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561338c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338390614fb5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161343f9190614250565b60405180910390a361345383600084612d9a565b505050565b60006134648484611a19565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146134de57818110156134d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c790615021565b60405180910390fd5b6134dd8484848403612110565b5b50505050565b7f00000000000000000000000000000000000000000000000000000000000000011561384a5761351383611fee565b61351c82611fee565b60008103613556576040517f76c4f5b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135f95750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561360e57613609838383613871565b613845565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136b15750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156136c6576136c18383836139c2565b613844565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561376a5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561377f5761377a838383613b13565b613843565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138215750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561383657613831838383613bd6565b613842565b613841838383613b13565b5b5b5b5b613856565b613855838383613015565b5b505050565b6000806007546138696118bf565b915091509091565b600061387e828585613db5565b90506000818361388e91906145a5565b905060008060006138a0868686613e8b565b925092509250600086146139b8576138ba88888584612e65565b85600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461390591906145a5565b600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139528286613ee1565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef886040516139af9190614250565b60405180910390a35b5050505050505050565b60006139cf828585613db5565b9050600081836139df91906145a5565b905060008060006139f1868686613e8b565b92509250925060008614613b0957613a0b88888584612e65565b83600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a569190614650565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613aa38286613ee1565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051613b009190614250565b60405180910390a35b5050505050505050565b6000613b20828585613db5565b905060008183613b3091906145a5565b90506000806000613b42868686613e8b565b92509250925060008614613bcc57613b5c88888584612e65565b613b668286613ee1565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051613bc39190614250565b60405180910390a35b5050505050505050565b6000613be3828585613db5565b905060008183613bf391906145a5565b90506000806000613c05868686613e8b565b92509250925060008614613dab57613c1f88888584612e65565b85600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c6a91906145a5565b600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cf89190614650565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613d458286613ee1565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051613da29190614250565b60405180910390a35b5050505050505050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613e585750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613e665760009050613e84565b61271060095485613e779190614c82565b613e8191906146b3565b90505b9392505050565b600080600080613e99612947565b905060008188613ea99190614c82565b905060008288613eb99190614c82565b905060008388613ec99190614c82565b90508282829650965096505050505093509350939050565b81600754613eef91906145a5565b60078190555080600854613f039190614650565b6008819055505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613f3481613f21565b8114613f3f57600080fd5b50565b600081359050613f5181613f2b565b92915050565b600060208284031215613f6d57613f6c613f17565b5b6000613f7b84828501613f42565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613faf82613f84565b9050919050565b613fbf81613fa4565b82525050565b6000602082019050613fda6000830184613fb6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561401a578082015181840152602081019050613fff565b60008484015250505050565b6000601f19601f8301169050919050565b600061404282613fe0565b61404c8185613feb565b935061405c818560208601613ffc565b61406581614026565b840191505092915050565b6000602082019050818103600083015261408a8184614037565b905092915050565b61409b81613fa4565b81146140a657600080fd5b50565b6000813590506140b881614092565b92915050565b600080604083850312156140d5576140d4613f17565b5b60006140e3858286016140a9565b92505060206140f485828601613f42565b9150509250929050565b60008115159050919050565b614113816140fe565b82525050565b600060208201905061412e600083018461410a565b92915050565b60006020828403121561414a57614149613f17565b5b6000614158848285016140a9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61419681613fa4565b82525050565b60006141a8838361418d565b60208301905092915050565b6000602082019050919050565b60006141cc82614161565b6141d6818561416c565b93506141e18361417d565b8060005b838110156142125781516141f9888261419c565b9750614204836141b4565b9250506001810190506141e5565b5085935050505092915050565b6000602082019050818103600083015261423981846141c1565b905092915050565b61424a81613f21565b82525050565b60006020820190506142656000830184614241565b92915050565b60008060006060848603121561428457614283613f17565b5b6000614292868287016140a9565b93505060206142a3868287016140a9565b92505060406142b486828701613f42565b9150509250925092565b600060ff82169050919050565b6142d4816142be565b82525050565b60006020820190506142ef60008301846142cb565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61433782614026565b810181811067ffffffffffffffff82111715614356576143556142ff565b5b80604052505050565b6000614369613f0d565b9050614375828261432e565b919050565b600067ffffffffffffffff821115614395576143946142ff565b5b61439e82614026565b9050602081019050919050565b82818337600083830152505050565b60006143cd6143c88461437a565b61435f565b9050828152602081018484840111156143e9576143e86142fa565b5b6143f48482856143ab565b509392505050565b600082601f830112614411576144106142f5565b5b81356144218482602086016143ba565b91505092915050565b6000602082840312156144405761443f613f17565b5b600082013567ffffffffffffffff81111561445e5761445d613f1c565b5b61446a848285016143fc565b91505092915050565b6000819050919050565b61448681614473565b82525050565b60006020820190506144a1600083018461447d565b92915050565b600080604083850312156144be576144bd613f17565b5b60006144cc858286016140a9565b92505060206144dd858286016140a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061452e57607f821691505b602082108103614541576145406144e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145b082613f21565b91506145bb83613f21565b92508282039050818111156145d3576145d2614576565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600061461382613f21565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361464557614644614576565b5b600182019050919050565b600061465b82613f21565b915061466683613f21565b925082820190508082111561467e5761467d614576565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146be82613f21565b91506146c983613f21565b9250826146d9576146d8614684565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614740602583613feb565b915061474b826146e4565b604082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147d87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261479b565b6147e2868361479b565b95508019841693508086168417925050509392505050565b6000819050919050565b600061481f61481a61481584613f21565b6147fa565b613f21565b9050919050565b6000819050919050565b61483983614804565b61484d61484582614826565b8484546147a8565b825550505050565b600090565b614862614855565b61486d818484614830565b505050565b5b818110156148915761488660008261485a565b600181019050614873565b5050565b601f8211156148d6576148a781614776565b6148b08461478b565b810160208510156148bf578190505b6148d36148cb8561478b565b830182614872565b50505b505050565b600082821c905092915050565b60006148f9600019846008026148db565b1980831691505092915050565b600061491283836148e8565b9150826002028217905092915050565b61492b82613fe0565b67ffffffffffffffff811115614944576149436142ff565b5b61494e8254614516565b614959828285614895565b600060209050601f83116001811461498c576000841561497a578287015190505b6149848582614906565b8655506149ec565b601f19841661499a86614776565b60005b828110156149c25784890151825560018201915060208501945060208101905061499d565b868310156149df57848901516149db601f8916826148e8565b8355505b6001600288020188555050505b505050505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000614a2a601f83613feb565b9150614a35826149f4565b602082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614abc602683613feb565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b28602083613feb565b9150614b3382614af2565b602082019050919050565b60006020820190508181036000830152614b5781614b1b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614bba602483613feb565b9150614bc582614b5e565b604082019050919050565b60006020820190508181036000830152614be981614bad565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c4c602283613feb565b9150614c5782614bf0565b604082019050919050565b60006020820190508181036000830152614c7b81614c3f565b9050919050565b6000614c8d82613f21565b9150614c9883613f21565b9250828202614ca681613f21565b91508282048414831517614cbd57614cbc614576565b5b5092915050565b6000606082019050614cd96000830186613fb6565b614ce66020830185614241565b614cf36040830184614241565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d57602583613feb565b9150614d6282614cfb565b604082019050919050565b60006020820190508181036000830152614d8681614d4a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614de9602383613feb565b9150614df482614d8d565b604082019050919050565b60006020820190508181036000830152614e1881614ddc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e7b602683613feb565b9150614e8682614e1f565b604082019050919050565b60006020820190508181036000830152614eaa81614e6e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f0d602183613feb565b9150614f1882614eb1565b604082019050919050565b60006020820190508181036000830152614f3c81614f00565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f9f602283613feb565b9150614faa82614f43565b604082019050919050565b60006020820190508181036000830152614fce81614f92565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061500b601d83613feb565b915061501682614fd5565b602082019050919050565b6000602082019050818103600083015261503a81614ffe565b905091905056fe426974626f6e64546f6b656e546f6f6c416476616e636564546f6b656e4669786564537570706c79a2646970667358221220733df85125bfbbc19c26c1b26a9d3b6bc1352bc9fbb50d0b8da25476c15622f164736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000003b5d51ff000000000000000000000000000000000000000000000000000000000000001200000000000000000000000091041d881ed55a225e3497ea298026465ce65fe800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000a65ec64aa512d959d27ceae6e7d4fdcb889090fa00000000000000000000000000000000000000000000000000000000000001720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b4d6573737920566972676f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d455353590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Messy Virgo
Arg [1] : symbol_ (string): MESSY
Arg [2] : initialSupplyToSet (uint256): 995971583
Arg [3] : decimalsToSet (uint8): 18
Arg [4] : tokenOwner (address): 0x91041D881eD55A225e3497ea298026465ce65fE8
Arg [5] : customConfigProps (tuple):
Arg [1] : _isBurnable (bool): False
Arg [2] : _isDocumentAllowed (bool): False
Arg [3] : _isMaxAmountOfTokensSet (bool): False
Arg [4] : _isTaxable (bool): True
Arg [5] : _isDeflationary (bool): False
Arg [6] : _isReflective (bool): True
Arg [6] : newDocumentUri (string):
Arg [7] : _taxAddress (address): 0xA65ec64AA512D959D27CEaE6e7D4FdCB889090Fa
Arg [8] : bpsParams (uint256[3]): 370,0,125
Arg [9] : amountParams (uint256[1]): 0
-----Encoded View---------------
22 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [2] : 000000000000000000000000000000000000000000000000000000003b5d51ff
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 00000000000000000000000091041d881ed55a225e3497ea298026465ce65fe8
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [11] : 00000000000000000000000000000000000000000000000000000000000002a0
Arg [12] : 000000000000000000000000a65ec64aa512d959d27ceae6e7d4fdcb889090fa
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000172
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [15] : 000000000000000000000000000000000000000000000000000000000000007d
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [17] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [18] : 4d6573737920566972676f000000000000000000000000000000000000000000
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [20] : 4d45535359000000000000000000000000000000000000000000000000000000
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.92
Net Worth in ETH
0.000442
Token Allocations
MESSY
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| BASE | 100.00% | $0.000365 | 2,520.9167 | $0.9203 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.