ERC-20
Overview
Max Total Supply
10,000,000,000 METH
Holders
49
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
METH
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at blastscan.io on 2024-03-04 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.23; //////////////////////////////////////////////// // // // ███╗ ███╗███████╗████████╗██╗ ██╗ // // ████╗ ████║██╔════╝╚══██╔══╝██║ ██║ // // ██╔████╔██║█████╗ ██║ ███████║ // // ██║╚██╔╝██║██╔══╝ ██║ ██╔══██║ // // ██║ ╚═╝ ██║███████╗ ██║ ██║ ██║ // // ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ // // // //////////////////////////////////////////////// // $METH Token (crystalmeth.xyz) is a Blast Blockchain token where you cannot ever sell // more than 10% of your token bag in any SINGLE TRANSACTION. // For example, if you had 1000 $METH tokens in your wallet, and you attempt to // sell more than 100 tokens to the DEX, then the transaction will either // revert, produce an error, or simply not allow you to proceed. // If you decided to sell 100 tokens (10%), then you'd be left with 900 METH in your // wallet, which means for your next sell, you wouldn't be able to sell more // than 90 METH tokens, and so on. // Benefits: METH massively reduces sell pressure. You would need to generate // multiple transactions to sell large numbers. The mechanism also stops bots // instantly trying to dump tokens after volatile price spikes. ////////////////////// Important notes: ////////////////////////////// // METH is designed to work with all UniswapV2 DEX clones that support "fee-on-transfer". // Note that the transfer (and transferFrom) functions are unable to distinguish // between a "sell" (swap) on a DEX and the process of adding liquidity, as both // processes involve the recipient of tokens being a DEX, therefore the limitation // of sending 10% of your bag to a liquidity pool will also apply. Technically, // there are ways to capture the addLiquidity and addLiquidityETH method calls, // which could be used to differentiate between a swap and just adding liquidity, // however this could then become an attack vector if a function was crafted in another // contract to mimic these Uniswap V2 methods. // Note that the following trnasactions have NO LIMITS: // 1. Wallet-to-Wallet transfers (although you MUST hold back 1 METH!) // 2. BUYING METH tokens from the DEX (Temporary anti-whale will apply for launch) // 3. Removing Liquidity from the DEX // For more information visit https://crystalmeth.xyz // or our Telegram group: https://t.me/crystalmethtoken /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized != type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } } /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } 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; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; } /** * @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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _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); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @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); } /// @title An ERC20 contract named METH /// @author METH Token developer team ([email protected]) /// @notice Serves as a dynamic reflection token /// @dev Inherits multiple OpenZeppelin standards contract METH is Initializable, IERC20Upgradeable, OwnableUpgradeable { string private _name; string private _symbol; uint8 private _decimals; /// array of address which are excluded from rewards address[] public _excluded; /// maps an address to an amount owned in tSpace mapping(address => uint256) private _tOwned; /// maps an address to an amount owned in rSpace mapping(address => uint256) private _rOwned; /** /// maps an owner to a spender, and the amount of tokens that the spender is /// approved to spend on behalf of the owner. Used in the custom _approve function */ mapping(address => mapping(address => uint256)) private _allowances; /// maps addresses to whether they are excluded from Fees/Rewards or not mapping(address => bool) private _isExcluded; /// maps addresses to whether they are excluded from the Max Tx or not mapping(address => bool) private _isExcludedFromMaxTx; /// fixed value representing MAX which is 2**256-1 uint256 private _MAX; /// @notice the total fixed supply of METH tokens uint256 public _tTotal; /** /// rTotal is a calculated value - rTotal = MAX − (MAX mod tTotal) /// (Note: value will go down after each buy/sell transaction) */ uint256 public _rTotal; /// maximum transation amount uint256 public maxTxAmount; bool public antiWhale; ///////////////////////////////////////////////////////////// //// //// //// Initializer - part of upgradeable ERC20 token //// //// //// ///////////////////////////////////////////////////////////// function initialize( // bool initialTestingFunctionsAllowed ) initializer external { /// ownableUpgradeble call __Ownable_init function OwnableUpgradeable.__Ownable_init(); /// sets token details _name = "METH"; _symbol = "METH"; _decimals = 18; /// total token supply is assigned to _tTotal, expressed in wei (10 Billion) _tTotal = 10000000000000000000000000000; // /// used for rSpace _MAX = ~uint256(0); /// rTotal calculated based on tTotal _rTotal = (_MAX - (_MAX % _tTotal)); /// adds the rTotal value to owner array mapping which effectively gives owner initial supply _rOwned[owner()] = _rTotal; maxTxAmount = _tTotal; /// exclude These contracts from fees and rewards _isExcluded[address(0)] = true; _isExcluded[address(0x000000000000000000000000000000000000dEaD)] = true; _isExcluded[address(0x0000000000000000000000000000000000000369)] = true; /// exclude These contracts from maxTxAmount _isExcluded[address(0)] = true; _isExcluded[address(0x000000000000000000000000000000000000dEaD)] = true; _isExcluded[address(0x0000000000000000000000000000000000000369)] = true; antiWhale = true; emit Transfer(address(0), owner(), _tTotal); } //////// ERC20 Token functions //////// /// @notice token name function name() public view returns (string memory) { return _name; } /// @notice token symbol function symbol() public view returns (string memory) { return _symbol; } /// @notice token decimals function decimals() public view returns (uint8) { return _decimals; } /// @notice uses "override" to return value from _tTotal (tSpace) function totalSupply() public view override (IERC20Upgradeable) returns (uint256) { return _tTotal; } /// @notice uses "override" - returns tOwned amounts for excluded addresses and rOwned amounts for all others function balanceOf(address account) public view override (IERC20Upgradeable) returns (uint256) { // if account is excluded, return balance in tSpace if (_isExcluded[account]) { return _tOwned[account]; } else { // if account is NOT excluded, return balance in rSpace return rBalanceOf(account); } } /// @notice uses "override" to call the _transfer function function transfer(address recipient, uint256 amount) public override (IERC20Upgradeable) returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /// @notice uses "override" and calls the _transfer and the _approve functions function transferFrom( address sender, address recipient, uint256 amount ) public override (IERC20Upgradeable) returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount); return true; } /// @notice uses "override" and returns the value from the _allowances function function allowance(address owner, address spender) public view override (IERC20Upgradeable) returns (uint256) { return _allowances[owner][spender]; } /// @notice uses "override" and returns the custom _approve function function approve(address spender, uint256 amount) public override (IERC20Upgradeable) returns (bool) { _approve(_msgSender(), spender, amount); return true; } /// @notice uses "override" and calls the _approve function function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /// @notice uses "override" and calls the _approve function function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue); return true; } ///////////////////////////////////////////////////// //// METH token-specific custom Functions //// ///////////////////////////////////////////////////// function setAntiWhaleStatus(bool _status) external onlyOwner { antiWhale = _status; } /** /// @notice checks if address is DEX-related smart contract */ bytes4 private constant SELECTOR = bytes4(keccak256("factory()")); function isRouter(address _address) internal view returns (bool) { (bool success, bytes memory data) = _address.staticcall(abi.encodeWithSelector(SELECTOR)); return success && data.length > 0; } /** /// @notice as address as being excluded from Max Tx (usually DEX) /// IMPORTANT: once an address is marked excluded it becomes PERMANENTLY excluded */ function excludeFromMaxTx(address account) private { require(!_isExcludedFromMaxTx[account], "Account is already excluded"); _isExcludedFromMaxTx[account] = true; } /** /// @notice marks an address as being excluded from rewards (usually DEX) /// and then adds the address the excluded address array /// IMPORTANT: once an address is marked excluded it becomes PERMANENTLY excluded */ function excludeAddress(address account) private { require(!_isExcluded[account], "Account is already excluded"); /// if address is not a null address.. if (_rOwned[account] > 0) { /// then set tOwned value for account to be value based on /// caling the rBalanceOf() function _tOwned[account] = rBalanceOf(account); } /// also set address as excluded _isExcluded[account] = true; /// also add address to the array of excluded addresses _excluded.push(account); } /** /// @notice Used by the standard ERC20 "balanceOf()" function /// returns the rAmount divided by the current rate value. */ function rBalanceOf(address account) public view returns (uint256) { uint256 rOwned = _rOwned[account]; /// first check that rOwned balance is less than the rTotal require(rOwned <= _rTotal, "Amount must be less than total reflections"); /// set the currentRate value from the _getRate function uint256 currentRate = _getRate(); if (rOwned == 0) { return 0; } else { /// displays the rOwned amount expressed in tSpace return rOwned / currentRate; } } /// @notice function used by the getValues function function _getRate() public view returns (uint256) { /// retrieve values from _getCurrentSupply function (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); /// rsupply divided by tsupply return rSupply / tSupply; } /// @notice used by the _getRate function to return two values: rSupply and tSupply function _getCurrentSupply() public view returns (uint256, uint256) { /// firstly set the values to _rTotal and _tTotal uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; /// loop for each excluded address: for (uint256 i = 0; i < _excluded.length; i++) { /// set rSupply to be rSupply minus excluded _rOwned value rSupply = rSupply - _rOwned[_excluded[i]]; /// set tSupply to be tSupply minus excluded _tOwned value tSupply = tSupply - _tOwned[_excluded[i]]; } return (rSupply, tSupply); } /// @notice CUSTOM approve function to override ERC20 approve function function _approve( address owner, address spender, uint256 amount ) private { /// check that owner and spender are not 0 addresses require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); /// adds the amount to the owner->spender _allowances mapping _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } bool private mutex = false; /// @notice CUSTOM transfer function to override ERC20 transfer function function _transfer( address from, address to, uint256 amount ) private { // re-entrancy protection require(mutex == false); mutex = true; /// checks all inputs are greater than 0 require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); /// checks if the "from" address or the "to" address is a V2 Router /// If it is, and it's not already in the _isExcluded and _isExcludedFromMaxTx arrays, /// then it should be added. if ( isRouter(from) == true && !_isExcludedFromMaxTx[from] && !_isExcluded[from] ) { excludeFromMaxTx(from); excludeAddress(from); } if ( isRouter(to) == true && !_isExcludedFromMaxTx[to] && !_isExcluded[to] ) { excludeFromMaxTx(to); excludeAddress(to); } /// checks if contract owner is either the "from" or the "to" address if (from != owner() && to != owner()) { /** /// assuming neither addresses are owner, /// then if the from AND to addresses are NOT excluded from MAX Tx */ if (!_isExcludedFromMaxTx[from] && !_isExcludedFromMaxTx[to]) { /// check amount is less than maxTxAmount require(amount <= maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } } /// checks if from AND to addresses are NOT owner if (from != owner() && to != owner()) { /** /// assuming neither addresses are owner... /// then if the from and to addresses are not excluded */ if (!_isExcludedFromMaxTx[from] && !_isExcludedFromMaxTx[to]) { /// check amount is less than maxTxAmount require(amount <= maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } } /** /// transfer amount, by calling the _tokenTransfer function. It will also pass in takeFee boolean /// (part of custom "_transfer" function) */ _tokenTransfer(from, to, amount); mutex = false; } /// @notice CUSTOM token transfer function called by _transfer() function _tokenTransfer(address sender, address recipient, uint256 amount) private { /// SENDER EXCLUDED ADDRESS - (Token buy) if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); /////////////////////////////////////////////////////////////////// /// RECEIVER EXCLUDED ADDRESS - (Token sell) } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); /////////////////////////////////////////////////////////////////// /// BOTH SENDER AND RECEIVER ARE EXCLUDED ADDRESSES } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); /// STANDARD TRANSFER (Wallet-to-Wallet) } else { _transferStandard(sender, recipient, amount); } } /// @notice struct used for transfer functions struct TransferData { uint256 tAmountSent; uint256 rAmountSent; uint256 totalBuyTaxBps; uint256 totalSellTaxBps; uint256 tBuyFeeTotal; uint256 rBuyFeeTotal; uint256 tSellFeeTotal; uint256 rSellFeeTotal; uint256 reflectedAmount; } event TransferToExcluded(uint256 amountSent, uint256 amountReceived); /// @notice allow holder to obtain the max value they can sell in a single transaction function getTenPercentOfBalance() public view returns(uint256) { return (balanceOf(msg.sender) / 10); } /// @notice RECIPIENT excluded (usually a token sell) function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { TransferData memory data; // Permanent - require that seller can only ever sell a maximum of 10% of their balance in a single transaction require(tAmount <= rBalanceOf(sender) / 10, "Cannot sell more than 10% of balance in single transaction"); // amount sent from excluded address data.tAmountSent = tAmount; data.rAmountSent = tAmount * _getRate(); data.totalSellTaxBps = 0; // TOTAL fee as token amount expressed in wei data.tSellFeeTotal = (tAmount * data.totalSellTaxBps) / 10000; data.rSellFeeTotal = data.tSellFeeTotal * _getRate(); // fee amount available for reflection, expressed in rSpace if (data.rSellFeeTotal > 0 ) { data.reflectedAmount = data.rSellFeeTotal; } // Now distribute fees and amounts // /// rOwned values reduced for the SENDER by the FULL amount _rOwned[sender] -= data.rAmountSent; /// tOwned and rOwned value updated for the recipient (non-excluded address) increased by the amount minus the fee _tOwned[recipient] += (data.tAmountSent - data.tSellFeeTotal); _rOwned[recipient] += (data.rAmountSent - data.rSellFeeTotal); // now reflect the remainder to token holders by subtracting from rTotal _rTotal -= data.reflectedAmount; // emit Transfer(sender, recipient, tAmountSent); emit Transfer(sender, recipient, (data.tAmountSent - data.tSellFeeTotal)); emit TransferToExcluded( data.tAmountSent, (data.tAmountSent - data.tSellFeeTotal) ); } event TransferFromExcluded(uint256 amountSent, uint256 amountReceived); /// @notice SENDER excluded (usually a token buy) function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { TransferData memory data; // temporary antiwhale measure during initial launch if(antiWhale == true) { require(tAmount <= (_tTotal / 1000), "Cannot purchase more than 10m (0.1%) of supply in single transaction"); } // amount sent from excluded address data.tAmountSent = tAmount; data.rAmountSent = tAmount * _getRate(); // retrieve all values that will be relevant data.totalBuyTaxBps = 0; // TOTAL fee as token amount expressed in wei data.tBuyFeeTotal = (tAmount * data.totalBuyTaxBps) / 10000; data.rBuyFeeTotal = data.tBuyFeeTotal * _getRate(); // fee amount available for reflection, expressed in rSpace if ( data.rBuyFeeTotal > 0) { data.reflectedAmount = data.rBuyFeeTotal; } // Now distribute fees and amounts // /// both tOwned AND rOwned values reduced for the SENDER by the FULL amount _tOwned[sender] -= data.tAmountSent; _rOwned[sender] -= data.rAmountSent; /// rOwned value updated for the recipient (non-excluded address) increased by the amount minus the fee _rOwned[recipient] += (data.rAmountSent - data.rBuyFeeTotal); // now reflect the remainder to token holders by subtracting from rTotal _rTotal -= data.reflectedAmount; // emit Transfer(sender, recipient, tAmountSent); emit Transfer(sender, recipient, (data.tAmountSent - data.tBuyFeeTotal)); emit TransferFromExcluded( data.tAmountSent, (data.tAmountSent - data.tBuyFeeTotal) ); } event TransferBothExcluded(uint256 amountSent, uint256 amountReceived); /// @notice both excluded (token transfer from DEX to DEX) - no fees applied function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { TransferData memory data; // retrieve all values that will be relevant // amount sent from excluded address data.tAmountSent = tAmount; data.rAmountSent = tAmount * _getRate(); /// both tOwned AND rOwned values reduced for the SENDER by the FULL amount _tOwned[sender] -= data.tAmountSent; _rOwned[sender] -= data.rAmountSent; /// both tOwned AND rOwned values are updated for recipient _tOwned[recipient] += data.tAmountSent; _rOwned[recipient] += data.rAmountSent; // emit Transfer(sender, recipient, tAmountSent); emit Transfer(sender, recipient, data.tAmountSent); emit TransferBothExcluded( data.tAmountSent, data.tAmountSent // same as received amount ); } event TransferStandard(uint256 amountSent, uint256 amountReceived); /// @notice standard transfer (wallet to wallet) function _transferStandard(address sender, address recipient, uint256 tAmount) private { TransferData memory data; // retrieve all values that will be relevant // you can never leave METH! require(tAmount <= rBalanceOf(sender) - 1000000000000000000, "You gotta keep 1 METH always!"); // amount sent from excluded address data.tAmountSent = tAmount; data.rAmountSent = tAmount * _getRate(); // distribution // /// rOwned value reduced for the SENDER by the FULL amount _rOwned[sender] -= data.rAmountSent; // rOwned value increased for the RECEIVER, by rAmount minus the grill fee _rOwned[recipient] += data.rAmountSent; emit Transfer(sender, recipient, (data.tAmountSent)); emit TransferStandard( data.tAmountSent, data.tAmountSent ); } /// @notice checks if address is excluded from Max Tx function isExcludedFromMaxTx(address account) public view returns (bool) { return _isExcludedFromMaxTx[account]; } /// @notice checks if address is excluded from reflection rewards function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } ///////////////////////////////////////////////////////////////////////////////////////////////////// // Reflection-related values for potential API /// @notice verify account balance in both tSpace and rSpace function viewTBalanceRBalance(address _address) public view returns (uint256, uint256) { uint256 tBalance = _tOwned[_address]; uint256 rBalance = _rOwned[_address]; return(tBalance, rBalance); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountSent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountReceived","type":"uint256"}],"name":"TransferBothExcluded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountSent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountReceived","type":"uint256"}],"name":"TransferFromExcluded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountSent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountReceived","type":"uint256"}],"name":"TransferStandard","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountSent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountReceived","type":"uint256"}],"name":"TransferToExcluded","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_excluded","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"antiWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTenPercentOfBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","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":[{"internalType":"address","name":"account","type":"address"}],"name":"rBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setAntiWhaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"viewTBalanceRBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526072805461ff001916905534801561001a575f80fd5b50611fce806100285f395ff3fe608060405234801561000f575f80fd5b50600436106101bb575f3560e01c80638129fc1c116100f3578063a457c2d711610093578063af465a271161006e578063af465a27146103ae578063cba0e996146103b7578063dd62ed3e146103e2578063f2fde38b1461041a575f80fd5b8063a457c2d714610380578063a9059cbb14610393578063aae5ddd2146103a6575f80fd5b80638da5cb5b116100ce5780638da5cb5b1461035757806394e107841461036857806395d89b411461037057806397a9d56014610378575f80fd5b80638129fc1c1461033357806383f24c091461033b5780638c0b5e221461034e575f80fd5b80634d09deb31161015e578063658c27a911610139578063658c27a9146102a157806370a08231146102cc578063715018a6146102df57806380da2287146102e9575f80fd5b80634d09deb3146102565780634dacf3f5146102815780635319e78f1461028e575f80fd5b806323b872dd1161019957806323b872dd14610212578063313ce56714610225578063395093511461023a57806345e0b9d41461024d575f80fd5b806306fdde03146101bf578063095ea7b3146101dd57806318160ddd14610200575b5f80fd5b6101c761042d565b6040516101d49190611ba4565b60405180910390f35b6101f06101eb366004611bec565b6104bd565b60405190151581526020016101d4565b606f545b6040519081526020016101d4565b6101f0610220366004611c14565b6104d3565b60675460405160ff90911681526020016101d4565b6101f0610248366004611bec565b610523565b61020460705481565b610269610264366004611c4d565b610559565b6040516001600160a01b0390911681526020016101d4565b6072546101f09060ff1681565b61020461029c366004611c64565b610581565b6101f06102af366004611c64565b6001600160a01b03165f908152606d602052604090205460ff1690565b6102046102da366004611c64565b610630565b6102e7610679565b005b61031e6102f7366004611c64565b6001600160a01b03165f90815260696020908152604080832054606a909252909120549091565b604080519283526020830191909152016101d4565b6102e761068c565b6102e7610349366004611c84565b610949565b61020460715481565b6033546001600160a01b0316610269565b610204610964565b6101c7610985565b61031e610994565b6101f061038e366004611bec565b610a48565b6101f06103a1366004611bec565b610a7e565b610204610a8a565b610204606f5481565b6101f06103c5366004611c64565b6001600160a01b03165f908152606c602052604090205460ff1690565b6102046103f0366004611ca3565b6001600160a01b039182165f908152606b6020908152604080832093909416825291909152205490565b6102e7610428366004611c64565b610aa5565b60606065805461043c90611cd4565b80601f016020809104026020016040519081016040528092919081815260200182805461046890611cd4565b80156104b35780601f1061048a576101008083540402835291602001916104b3565b820191905f5260205f20905b81548152906001019060200180831161049657829003601f168201915b5050505050905090565b5f6104c9338484610b1b565b5060015b92915050565b5f6104df848484610c3e565b6001600160a01b0384165f908152606b6020908152604080832033808552925290912054610519918691610514908690611d20565b610b1b565b5060019392505050565b335f818152606b602090815260408083206001600160a01b038716845290915281205490916104c9918590610514908690611d33565b60688181548110610568575f80fd5b5f918252602090912001546001600160a01b0316905081565b6001600160a01b0381165f908152606a60205260408120546070548111156106035760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b5f61060c610964565b9050815f0361061e57505f9392505050565b6106288183611d5a565b949350505050565b6001600160a01b0381165f908152606c602052604081205460ff161561066b57506001600160a01b03165f9081526069602052604090205490565b6104cd82610581565b919050565b610681610fad565b61068a5f611007565b565b5f54610100900460ff16158080156106aa57505f54600160ff909116105b806106c35750303b1580156106c357505f5460ff166001145b6107265760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016105fa565b5f805460ff191660011790558015610747575f805461ff0019166101001790555b61074f611058565b60408051808201909152600481526309a8aa8960e31b60208201526065906107779082611dcc565b5060408051808201909152600481526309a8aa8960e31b60208201526066906107a09082611dcc565b506067805460ff191660121790556b204fce5e3e25026110000000606f8190555f19606e8190556107d19190611e8c565b606e546107de9190611d20565b6070819055606a5f6107f86033546001600160a01b031690565b6001600160a01b031681526020808201929092526040015f90812092909255606f54607155606c90527f7febd347df14ea35c529e50fb2dd629d4a6226f5ccc893710fb466f8b83823fc805460ff1990811660019081179092557f8c482e007f935c93984ddf7a647e33ef99566883ffae3563aa616dc14d1632f780548216831790557fb6e99d88b536ae7728c4b89ca5a6073cf06fd2059e0aff5b1a4de2c799d9cb968054821683179055610369909252607280549092161790556108c66033546001600160a01b031690565b6001600160a01b03165f6001600160a01b03165f80516020611f79833981519152606f546040516108f991815260200190565b60405180910390a38015610946575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50565b610951610fad565b6072805460ff1916911515919091179055565b5f805f61096f610994565b909250905061097e8183611d5a565b9250505090565b60606066805461043c90611cd4565b607054606f545f918291825b606854811015610a3e57606a5f606883815481106109c0576109c0611e9f565b5f9182526020808320909101546001600160a01b031683528201929092526040019020546109ee9084611d20565b925060695f60688381548110610a0657610a06611e9f565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054610a349083611d20565b91506001016109a0565b5090939092509050565b335f818152606b602090815260408083206001600160a01b038716845290915281205490916104c9918590610514908690611d20565b5f6104c9338484610c3e565b5f600a610a9633610630565b610aa09190611d5a565b905090565b610aad610fad565b6001600160a01b038116610b125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fa565b61094681611007565b6001600160a01b038316610b7d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105fa565b6001600160a01b038216610bde5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105fa565b6001600160a01b038381165f818152606b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b607254610100900460ff1615610c52575f80fd5b6072805461ff0019166101001790556001600160a01b038316610cc55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105fa565b6001600160a01b038216610d275760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105fa565b5f8111610d885760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105fa565b610d9183611086565b15156001148015610dba57506001600160a01b0383165f908152606d602052604090205460ff16155b8015610dde57506001600160a01b0383165f908152606c602052604090205460ff16155b15610df557610dec8361111f565b610df5836111aa565b610dfe82611086565b15156001148015610e2757506001600160a01b0382165f908152606d602052604090205460ff16155b8015610e4b57506001600160a01b0382165f908152606c602052604090205460ff16155b15610e6257610e598261111f565b610e62826111aa565b6033546001600160a01b03848116911614801590610e8e57506033546001600160a01b03838116911614155b15610efa576001600160a01b0383165f908152606d602052604090205460ff16158015610ed357506001600160a01b0382165f908152606d602052604090205460ff16155b15610efa57607154811115610efa5760405162461bcd60e51b81526004016105fa90611eb3565b6033546001600160a01b03848116911614801590610f2657506033546001600160a01b03838116911614155b15610f92576001600160a01b0383165f908152606d602052604090205460ff16158015610f6b57506001600160a01b0382165f908152606d602052604090205460ff16155b15610f9257607154811115610f925760405162461bcd60e51b81526004016105fa90611eb3565b610f9d8383836112b6565b50506072805461ff001916905550565b6033546001600160a01b0316331461068a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105fa565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff1661107e5760405162461bcd60e51b81526004016105fa90611efb565b61068a6113b2565b60408051600481526024810182526020810180516001600160e01b031663c45a015560e01b17905290515f91829182916001600160a01b038616916110cb9190611f46565b5f60405180830381855afa9150503d805f8114611103576040519150601f19603f3d011682016040523d82523d5f602084013e611108565b606091505b509150915081801561062857505115159392505050565b6001600160a01b0381165f908152606d602052604090205460ff16156111875760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016105fa565b6001600160a01b03165f908152606d60205260409020805460ff19166001179055565b6001600160a01b0381165f908152606c602052604090205460ff16156112125760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016105fa565b6001600160a01b0381165f908152606a6020526040902054156112515761123881610581565b6001600160a01b0382165f908152606960205260409020555b6001600160a01b03165f818152606c60205260408120805460ff191660019081179091556068805491820181559091527fa2153420d844928b4421650203c77babc8b33d7f2e7b450e2966db0c220977530180546001600160a01b0319169091179055565b6001600160a01b0383165f908152606c602052604090205460ff1680156112f557506001600160a01b0382165f908152606c602052604090205460ff16155b1561130a576113058383836113e1565b505050565b6001600160a01b0383165f908152606c602052604090205460ff1615801561134957506001600160a01b0382165f908152606c602052604090205460ff165b1561135957611305838383611649565b6001600160a01b0383165f908152606c602052604090205460ff16801561139757506001600160a01b0382165f908152606c602052604090205460ff165b156113a757611305838383611891565b6113058383836119e5565b5f54610100900460ff166113d85760405162461bcd60e51b81526004016105fa90611efb565b61068a33611007565b6113e9611b3f565b60725460ff16151560010361148b576103e8606f546114089190611d5a565b82111561148b5760405162461bcd60e51b8152602060048201526044602482018190527f43616e6e6f74207075726368617365206d6f7265207468616e2031306d202830908201527f2e312529206f6620737570706c7920696e2073696e676c65207472616e7361636064820152633a34b7b760e11b608482015260a4016105fa565b818152611496610964565b6114a09083611f61565b60208201525f60408201819052612710906114bb9084611f61565b6114c59190611d5a565b60808201526114d2610964565b81608001516114e19190611f61565b60a08201819052156114f95760a08101516101008201525b80516001600160a01b0385165f9081526069602052604081208054909190611522908490611d20565b90915550506020808201516001600160a01b0386165f908152606a90925260408220805491929091611555908490611d20565b909155505060a0810151602082015161156e9190611d20565b6001600160a01b0384165f908152606a602052604081208054909190611595908490611d33565b9091555050610100810151607080545f906115b1908490611d20565b9091555050608081015181516001600160a01b0380861692908716915f80516020611f79833981519152916115e591611d20565b60405190815260200160405180910390a3805160808201517fe6ef78c5a1f105fc4b9500eeb7cd09b041367bdee35f1d85761735ee78b3ff2e919061162a9082611d20565b604080519283526020830191909152015b60405180910390a150505050565b611651611b3f565b600a61165c85610581565b6116669190611d5a565b8211156116db5760405162461bcd60e51b815260206004820152603a60248201527f43616e6e6f742073656c6c206d6f7265207468616e20313025206f662062616c60448201527f616e636520696e2073696e676c65207472616e73616374696f6e00000000000060648201526084016105fa565b8181526116e6610964565b6116f09083611f61565b60208201525f606082018190526127109061170b9084611f61565b6117159190611d5a565b60c0820152611722610964565b8160c001516117319190611f61565b60e08201819052156117495760e08101516101008201525b8060200151606a5f866001600160a01b03166001600160a01b031681526020019081526020015f205f82825461177f9190611d20565b909155505060c081015181516117959190611d20565b6001600160a01b0384165f90815260696020526040812080549091906117bc908490611d33565b909155505060e081015160208201516117d59190611d20565b6001600160a01b0384165f908152606a6020526040812080549091906117fc908490611d33565b9091555050610100810151607080545f90611818908490611d20565b909155505060c081015181516001600160a01b0380861692908716915f80516020611f798339815191529161184c91611d20565b60405190815260200160405180910390a3805160c08201517fff000e16c1c0d33b07404c2b2abb9832356b5cfd57566d73c9d09611f030890d919061162a9082611d20565b611899611b3f565b8181526118a4610964565b6118ae9083611f61565b60208083019190915281516001600160a01b0386165f9081526069909252604082208054919290916118e1908490611d20565b90915550506020808201516001600160a01b0386165f908152606a90925260408220805491929091611914908490611d20565b909155505080516001600160a01b0384165f9081526069602052604081208054909190611942908490611d33565b90915550506020808201516001600160a01b0385165f908152606a90925260408220805491929091611975908490611d33565b909155505080516040519081526001600160a01b0384811691908616905f80516020611f798339815191529060200160405180910390a380516040805182815260208101929092527f2541109a23d530c06d62a3bf63d8d03107194870126fddb7170c0daef360cd8a910161163b565b6119ed611b3f565b670de0b6b3a76400006119ff85610581565b611a099190611d20565b821115611a585760405162461bcd60e51b815260206004820152601d60248201527f596f7520676f747461206b6565702031204d45544820616c776179732100000060448201526064016105fa565b818152611a63610964565b611a6d9083611f61565b60208083018290526001600160a01b0386165f908152606a909152604081208054909190611a9c908490611d20565b90915550506020808201516001600160a01b0385165f908152606a90925260408220805491929091611acf908490611d33565b909155505080516040519081526001600160a01b0384811691908616905f80516020611f798339815191529060200160405180910390a380516040805182815260208101929092527fd9923e08d9d88ff7a7e9b8460f3163dc6b887fabe315449da3b5cd16bb5e9340910161163b565b6040518061012001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b5f5b83811015611b9c578181015183820152602001611b84565b50505f910152565b602081525f8251806020840152611bc2816040850160208701611b82565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610674575f80fd5b5f8060408385031215611bfd575f80fd5b611c0683611bd6565b946020939093013593505050565b5f805f60608486031215611c26575f80fd5b611c2f84611bd6565b9250611c3d60208501611bd6565b9150604084013590509250925092565b5f60208284031215611c5d575f80fd5b5035919050565b5f60208284031215611c74575f80fd5b611c7d82611bd6565b9392505050565b5f60208284031215611c94575f80fd5b81358015158114611c7d575f80fd5b5f8060408385031215611cb4575f80fd5b611cbd83611bd6565b9150611ccb60208401611bd6565b90509250929050565b600181811c90821680611ce857607f821691505b602082108103611d0657634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156104cd576104cd611d0c565b808201808211156104cd576104cd611d0c565b634e487b7160e01b5f52601260045260245ffd5b5f82611d6857611d68611d46565b500490565b634e487b7160e01b5f52604160045260245ffd5b601f82111561130557805f5260205f20601f840160051c81016020851015611da65750805b601f840160051c820191505b81811015611dc5575f8155600101611db2565b5050505050565b815167ffffffffffffffff811115611de657611de6611d6d565b611dfa81611df48454611cd4565b84611d81565b602080601f831160018114611e2d575f8415611e165750858301515b5f19600386901b1c1916600185901b178555611e84565b5f85815260208120601f198616915b82811015611e5b57888601518255948401946001909101908401611e3c565b5085821015611e7857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f82611e9a57611e9a611d46565b500690565b634e487b7160e01b5f52603260045260245ffd5b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b5f8251611f57818460208701611b82565b9190910192915050565b80820281158282048414176104cd576104cd611d0c56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122086738a16f4bcec29652210b015a0b1889f30a324dd2a1b53f92632c1fe31255564736f6c63430008180033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101bb575f3560e01c80638129fc1c116100f3578063a457c2d711610093578063af465a271161006e578063af465a27146103ae578063cba0e996146103b7578063dd62ed3e146103e2578063f2fde38b1461041a575f80fd5b8063a457c2d714610380578063a9059cbb14610393578063aae5ddd2146103a6575f80fd5b80638da5cb5b116100ce5780638da5cb5b1461035757806394e107841461036857806395d89b411461037057806397a9d56014610378575f80fd5b80638129fc1c1461033357806383f24c091461033b5780638c0b5e221461034e575f80fd5b80634d09deb31161015e578063658c27a911610139578063658c27a9146102a157806370a08231146102cc578063715018a6146102df57806380da2287146102e9575f80fd5b80634d09deb3146102565780634dacf3f5146102815780635319e78f1461028e575f80fd5b806323b872dd1161019957806323b872dd14610212578063313ce56714610225578063395093511461023a57806345e0b9d41461024d575f80fd5b806306fdde03146101bf578063095ea7b3146101dd57806318160ddd14610200575b5f80fd5b6101c761042d565b6040516101d49190611ba4565b60405180910390f35b6101f06101eb366004611bec565b6104bd565b60405190151581526020016101d4565b606f545b6040519081526020016101d4565b6101f0610220366004611c14565b6104d3565b60675460405160ff90911681526020016101d4565b6101f0610248366004611bec565b610523565b61020460705481565b610269610264366004611c4d565b610559565b6040516001600160a01b0390911681526020016101d4565b6072546101f09060ff1681565b61020461029c366004611c64565b610581565b6101f06102af366004611c64565b6001600160a01b03165f908152606d602052604090205460ff1690565b6102046102da366004611c64565b610630565b6102e7610679565b005b61031e6102f7366004611c64565b6001600160a01b03165f90815260696020908152604080832054606a909252909120549091565b604080519283526020830191909152016101d4565b6102e761068c565b6102e7610349366004611c84565b610949565b61020460715481565b6033546001600160a01b0316610269565b610204610964565b6101c7610985565b61031e610994565b6101f061038e366004611bec565b610a48565b6101f06103a1366004611bec565b610a7e565b610204610a8a565b610204606f5481565b6101f06103c5366004611c64565b6001600160a01b03165f908152606c602052604090205460ff1690565b6102046103f0366004611ca3565b6001600160a01b039182165f908152606b6020908152604080832093909416825291909152205490565b6102e7610428366004611c64565b610aa5565b60606065805461043c90611cd4565b80601f016020809104026020016040519081016040528092919081815260200182805461046890611cd4565b80156104b35780601f1061048a576101008083540402835291602001916104b3565b820191905f5260205f20905b81548152906001019060200180831161049657829003601f168201915b5050505050905090565b5f6104c9338484610b1b565b5060015b92915050565b5f6104df848484610c3e565b6001600160a01b0384165f908152606b6020908152604080832033808552925290912054610519918691610514908690611d20565b610b1b565b5060019392505050565b335f818152606b602090815260408083206001600160a01b038716845290915281205490916104c9918590610514908690611d33565b60688181548110610568575f80fd5b5f918252602090912001546001600160a01b0316905081565b6001600160a01b0381165f908152606a60205260408120546070548111156106035760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b5f61060c610964565b9050815f0361061e57505f9392505050565b6106288183611d5a565b949350505050565b6001600160a01b0381165f908152606c602052604081205460ff161561066b57506001600160a01b03165f9081526069602052604090205490565b6104cd82610581565b919050565b610681610fad565b61068a5f611007565b565b5f54610100900460ff16158080156106aa57505f54600160ff909116105b806106c35750303b1580156106c357505f5460ff166001145b6107265760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016105fa565b5f805460ff191660011790558015610747575f805461ff0019166101001790555b61074f611058565b60408051808201909152600481526309a8aa8960e31b60208201526065906107779082611dcc565b5060408051808201909152600481526309a8aa8960e31b60208201526066906107a09082611dcc565b506067805460ff191660121790556b204fce5e3e25026110000000606f8190555f19606e8190556107d19190611e8c565b606e546107de9190611d20565b6070819055606a5f6107f86033546001600160a01b031690565b6001600160a01b031681526020808201929092526040015f90812092909255606f54607155606c90527f7febd347df14ea35c529e50fb2dd629d4a6226f5ccc893710fb466f8b83823fc805460ff1990811660019081179092557f8c482e007f935c93984ddf7a647e33ef99566883ffae3563aa616dc14d1632f780548216831790557fb6e99d88b536ae7728c4b89ca5a6073cf06fd2059e0aff5b1a4de2c799d9cb968054821683179055610369909252607280549092161790556108c66033546001600160a01b031690565b6001600160a01b03165f6001600160a01b03165f80516020611f79833981519152606f546040516108f991815260200190565b60405180910390a38015610946575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50565b610951610fad565b6072805460ff1916911515919091179055565b5f805f61096f610994565b909250905061097e8183611d5a565b9250505090565b60606066805461043c90611cd4565b607054606f545f918291825b606854811015610a3e57606a5f606883815481106109c0576109c0611e9f565b5f9182526020808320909101546001600160a01b031683528201929092526040019020546109ee9084611d20565b925060695f60688381548110610a0657610a06611e9f565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054610a349083611d20565b91506001016109a0565b5090939092509050565b335f818152606b602090815260408083206001600160a01b038716845290915281205490916104c9918590610514908690611d20565b5f6104c9338484610c3e565b5f600a610a9633610630565b610aa09190611d5a565b905090565b610aad610fad565b6001600160a01b038116610b125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fa565b61094681611007565b6001600160a01b038316610b7d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105fa565b6001600160a01b038216610bde5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105fa565b6001600160a01b038381165f818152606b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b607254610100900460ff1615610c52575f80fd5b6072805461ff0019166101001790556001600160a01b038316610cc55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105fa565b6001600160a01b038216610d275760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105fa565b5f8111610d885760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105fa565b610d9183611086565b15156001148015610dba57506001600160a01b0383165f908152606d602052604090205460ff16155b8015610dde57506001600160a01b0383165f908152606c602052604090205460ff16155b15610df557610dec8361111f565b610df5836111aa565b610dfe82611086565b15156001148015610e2757506001600160a01b0382165f908152606d602052604090205460ff16155b8015610e4b57506001600160a01b0382165f908152606c602052604090205460ff16155b15610e6257610e598261111f565b610e62826111aa565b6033546001600160a01b03848116911614801590610e8e57506033546001600160a01b03838116911614155b15610efa576001600160a01b0383165f908152606d602052604090205460ff16158015610ed357506001600160a01b0382165f908152606d602052604090205460ff16155b15610efa57607154811115610efa5760405162461bcd60e51b81526004016105fa90611eb3565b6033546001600160a01b03848116911614801590610f2657506033546001600160a01b03838116911614155b15610f92576001600160a01b0383165f908152606d602052604090205460ff16158015610f6b57506001600160a01b0382165f908152606d602052604090205460ff16155b15610f9257607154811115610f925760405162461bcd60e51b81526004016105fa90611eb3565b610f9d8383836112b6565b50506072805461ff001916905550565b6033546001600160a01b0316331461068a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105fa565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff1661107e5760405162461bcd60e51b81526004016105fa90611efb565b61068a6113b2565b60408051600481526024810182526020810180516001600160e01b031663c45a015560e01b17905290515f91829182916001600160a01b038616916110cb9190611f46565b5f60405180830381855afa9150503d805f8114611103576040519150601f19603f3d011682016040523d82523d5f602084013e611108565b606091505b509150915081801561062857505115159392505050565b6001600160a01b0381165f908152606d602052604090205460ff16156111875760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016105fa565b6001600160a01b03165f908152606d60205260409020805460ff19166001179055565b6001600160a01b0381165f908152606c602052604090205460ff16156112125760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016105fa565b6001600160a01b0381165f908152606a6020526040902054156112515761123881610581565b6001600160a01b0382165f908152606960205260409020555b6001600160a01b03165f818152606c60205260408120805460ff191660019081179091556068805491820181559091527fa2153420d844928b4421650203c77babc8b33d7f2e7b450e2966db0c220977530180546001600160a01b0319169091179055565b6001600160a01b0383165f908152606c602052604090205460ff1680156112f557506001600160a01b0382165f908152606c602052604090205460ff16155b1561130a576113058383836113e1565b505050565b6001600160a01b0383165f908152606c602052604090205460ff1615801561134957506001600160a01b0382165f908152606c602052604090205460ff165b1561135957611305838383611649565b6001600160a01b0383165f908152606c602052604090205460ff16801561139757506001600160a01b0382165f908152606c602052604090205460ff165b156113a757611305838383611891565b6113058383836119e5565b5f54610100900460ff166113d85760405162461bcd60e51b81526004016105fa90611efb565b61068a33611007565b6113e9611b3f565b60725460ff16151560010361148b576103e8606f546114089190611d5a565b82111561148b5760405162461bcd60e51b8152602060048201526044602482018190527f43616e6e6f74207075726368617365206d6f7265207468616e2031306d202830908201527f2e312529206f6620737570706c7920696e2073696e676c65207472616e7361636064820152633a34b7b760e11b608482015260a4016105fa565b818152611496610964565b6114a09083611f61565b60208201525f60408201819052612710906114bb9084611f61565b6114c59190611d5a565b60808201526114d2610964565b81608001516114e19190611f61565b60a08201819052156114f95760a08101516101008201525b80516001600160a01b0385165f9081526069602052604081208054909190611522908490611d20565b90915550506020808201516001600160a01b0386165f908152606a90925260408220805491929091611555908490611d20565b909155505060a0810151602082015161156e9190611d20565b6001600160a01b0384165f908152606a602052604081208054909190611595908490611d33565b9091555050610100810151607080545f906115b1908490611d20565b9091555050608081015181516001600160a01b0380861692908716915f80516020611f79833981519152916115e591611d20565b60405190815260200160405180910390a3805160808201517fe6ef78c5a1f105fc4b9500eeb7cd09b041367bdee35f1d85761735ee78b3ff2e919061162a9082611d20565b604080519283526020830191909152015b60405180910390a150505050565b611651611b3f565b600a61165c85610581565b6116669190611d5a565b8211156116db5760405162461bcd60e51b815260206004820152603a60248201527f43616e6e6f742073656c6c206d6f7265207468616e20313025206f662062616c60448201527f616e636520696e2073696e676c65207472616e73616374696f6e00000000000060648201526084016105fa565b8181526116e6610964565b6116f09083611f61565b60208201525f606082018190526127109061170b9084611f61565b6117159190611d5a565b60c0820152611722610964565b8160c001516117319190611f61565b60e08201819052156117495760e08101516101008201525b8060200151606a5f866001600160a01b03166001600160a01b031681526020019081526020015f205f82825461177f9190611d20565b909155505060c081015181516117959190611d20565b6001600160a01b0384165f90815260696020526040812080549091906117bc908490611d33565b909155505060e081015160208201516117d59190611d20565b6001600160a01b0384165f908152606a6020526040812080549091906117fc908490611d33565b9091555050610100810151607080545f90611818908490611d20565b909155505060c081015181516001600160a01b0380861692908716915f80516020611f798339815191529161184c91611d20565b60405190815260200160405180910390a3805160c08201517fff000e16c1c0d33b07404c2b2abb9832356b5cfd57566d73c9d09611f030890d919061162a9082611d20565b611899611b3f565b8181526118a4610964565b6118ae9083611f61565b60208083019190915281516001600160a01b0386165f9081526069909252604082208054919290916118e1908490611d20565b90915550506020808201516001600160a01b0386165f908152606a90925260408220805491929091611914908490611d20565b909155505080516001600160a01b0384165f9081526069602052604081208054909190611942908490611d33565b90915550506020808201516001600160a01b0385165f908152606a90925260408220805491929091611975908490611d33565b909155505080516040519081526001600160a01b0384811691908616905f80516020611f798339815191529060200160405180910390a380516040805182815260208101929092527f2541109a23d530c06d62a3bf63d8d03107194870126fddb7170c0daef360cd8a910161163b565b6119ed611b3f565b670de0b6b3a76400006119ff85610581565b611a099190611d20565b821115611a585760405162461bcd60e51b815260206004820152601d60248201527f596f7520676f747461206b6565702031204d45544820616c776179732100000060448201526064016105fa565b818152611a63610964565b611a6d9083611f61565b60208083018290526001600160a01b0386165f908152606a909152604081208054909190611a9c908490611d20565b90915550506020808201516001600160a01b0385165f908152606a90925260408220805491929091611acf908490611d33565b909155505080516040519081526001600160a01b0384811691908616905f80516020611f798339815191529060200160405180910390a380516040805182815260208101929092527fd9923e08d9d88ff7a7e9b8460f3163dc6b887fabe315449da3b5cd16bb5e9340910161163b565b6040518061012001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b5f5b83811015611b9c578181015183820152602001611b84565b50505f910152565b602081525f8251806020840152611bc2816040850160208701611b82565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610674575f80fd5b5f8060408385031215611bfd575f80fd5b611c0683611bd6565b946020939093013593505050565b5f805f60608486031215611c26575f80fd5b611c2f84611bd6565b9250611c3d60208501611bd6565b9150604084013590509250925092565b5f60208284031215611c5d575f80fd5b5035919050565b5f60208284031215611c74575f80fd5b611c7d82611bd6565b9392505050565b5f60208284031215611c94575f80fd5b81358015158114611c7d575f80fd5b5f8060408385031215611cb4575f80fd5b611cbd83611bd6565b9150611ccb60208401611bd6565b90509250929050565b600181811c90821680611ce857607f821691505b602082108103611d0657634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156104cd576104cd611d0c565b808201808211156104cd576104cd611d0c565b634e487b7160e01b5f52601260045260245ffd5b5f82611d6857611d68611d46565b500490565b634e487b7160e01b5f52604160045260245ffd5b601f82111561130557805f5260205f20601f840160051c81016020851015611da65750805b601f840160051c820191505b81811015611dc5575f8155600101611db2565b5050505050565b815167ffffffffffffffff811115611de657611de6611d6d565b611dfa81611df48454611cd4565b84611d81565b602080601f831160018114611e2d575f8415611e165750858301515b5f19600386901b1c1916600185901b178555611e84565b5f85815260208120601f198616915b82811015611e5b57888601518255948401946001909101908401611e3c565b5085821015611e7857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f82611e9a57611e9a611d46565b500690565b634e487b7160e01b5f52603260045260245ffd5b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b5f8251611f57818460208701611b82565b9190910192915050565b80820281158282048414176104cd576104cd611d0c56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122086738a16f4bcec29652210b015a0b1889f30a324dd2a1b53f92632c1fe31255564736f6c63430008180033
Deployed Bytecode Sourcemap
26674:21653:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32052:181;;;;;;:::i;:::-;;:::i;:::-;;;1272:14:1;;1265:22;1247:41;;1235:2;1220:18;32052:181:0;1107:187:1;30410:115:0;30510:7;;30410:115;;;1445:25:1;;;1433:2;1418:18;30410:115:0;1299:177:1;31378:336:0;;;;;;:::i;:::-;;:::i;30248:83::-;30314:9;;30248:83;;30314:9;;;;1956:36:1;;1944:2;1929:18;30248:83:0;1814:184:1;32306:215:0;;;;;;:::i;:::-;;:::i;28014:22::-;;;;;;26899:26;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2352:32:1;;;2334:51;;2322:2;2307:18;26899:26:0;2188:203:1;28115:21:0;;;;;;;;;34855:576;;;;;;:::i;:::-;;:::i;47433:128::-;;;;;;:::i;:::-;-1:-1:-1;;;;;47524:29:0;47500:4;47524:29;;;:20;:29;;;;;;;;;47433:128;30648:378;;;;;;:::i;:::-;;:::i;22656:103::-;;;:::i;:::-;;47987:226;;;;;;:::i;:::-;-1:-1:-1;;;;;48104:17:0;48056:7;48104:17;;;:7;:17;;;;;;;;;48151:7;:17;;;;;;;48104;;47987:226;;;;;2761:25:1;;;2817:2;2802:18;;2795:34;;;;2734:18;47987:226:0;2587:248:1;28482:1429:0;;;:::i;33008:99::-;;;;;;:::i;:::-;;:::i;28080:26::-;;;;;;22015:87;22088:6;;-1:-1:-1;;;;;22088:6:0;22015:87;;35498:261;;;:::i;30121:87::-;;;:::i;35856:639::-;;;:::i;32594:225::-;;;;;;:::i;:::-;;:::i;31098:187::-;;;;;;:::i;:::-;;:::i;41302:117::-;;;:::i;27822:22::-;;;;;;47640:110;;;;;;:::i;:::-;-1:-1:-1;;;;;47722:20:0;47698:4;47722:20;;;:11;:20;;;;;;;;;47640:110;31807:163;;;;;;:::i;:::-;-1:-1:-1;;;;;31935:18:0;;;31908:7;31935:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31807:163;22914:201;;;;;;:::i;:::-;;:::i;30000:83::-;30037:13;30070:5;30063:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000:83;:::o;32052:181::-;32147:4;32164:39;20205:10;32187:7;32196:6;32164:8;:39::i;:::-;-1:-1:-1;32221:4:0;32052:181;;;;;:::o;31378:336::-;31546:4;31563:36;31573:6;31581:9;31592:6;31563:9;:36::i;:::-;-1:-1:-1;;;;;31641:19:0;;;;;;:11;:19;;;;;;;;20205:10;31641:33;;;;;;;;;31610:74;;31619:6;;31641:42;;31677:6;;31641:42;:::i;:::-;31610:8;:74::i;:::-;-1:-1:-1;31702:4:0;31378:336;;;;;:::o;32306:215::-;20205:10;32394:4;32443:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;32443:34:0;;;;;;;;;;32394:4;;32411:80;;32434:7;;32443:47;;32480:10;;32443:47;:::i;26899:26::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26899:26:0;;-1:-1:-1;26899:26:0;:::o;34855:576::-;-1:-1:-1;;;;;34950:16:0;;34913:7;34950:16;;;:7;:16;;;;;;35074:7;;35064:17;;;35056:72;;;;-1:-1:-1;;;35056:72:0;;4365:2:1;35056:72:0;;;4347:21:1;4404:2;4384:18;;;4377:30;4443:34;4423:18;;;4416:62;-1:-1:-1;;;4494:18:1;;;4487:40;4544:19;;35056:72:0;;;;;;;;;35205:19;35227:10;:8;:10::i;:::-;35205:32;;35252:6;35262:1;35252:11;35248:176;;-1:-1:-1;35287:1:0;;34855:576;-1:-1:-1;;;34855:576:0:o;35248:176::-;35392:20;35401:11;35392:6;:20;:::i;:::-;35385:27;34855:576;-1:-1:-1;;;;34855:576:0:o;30648:378::-;-1:-1:-1;;;;;30819:20:0;;30734:7;30819:20;;;:11;:20;;;;;;;;30815:204;;;-1:-1:-1;;;;;;30863:16:0;;;;;:7;:16;;;;;;;30648:378::o;30815:204::-;30988:19;30999:7;30988:10;:19::i;30815:204::-;30648:378;;;:::o;22656:103::-;21901:13;:11;:13::i;:::-;22721:30:::1;22748:1;22721:18;:30::i;:::-;22656:103::o:0;28482:1429::-;15965:19;15988:13;;;;;;15987:14;;16035:34;;;;-1:-1:-1;16053:12:0;;16068:1;16053:12;;;;:16;16035:34;16034:108;;;-1:-1:-1;16114:4:0;4927:19;:23;;;16075:66;;-1:-1:-1;16124:12:0;;;;;:17;16075:66;16012:204;;;;-1:-1:-1;;;16012:204:0;;5033:2:1;16012:204:0;;;5015:21:1;5072:2;5052:18;;;5045:30;5111:34;5091:18;;;5084:62;-1:-1:-1;;;5162:18:1;;;5155:44;5216:19;;16012:204:0;4831:410:1;16012:204:0;16227:12;:16;;-1:-1:-1;;16227:16:0;16242:1;16227:16;;;16254:67;;;;16289:13;:20;;-1:-1:-1;;16289:20:0;;;;;16254:67;28660:35:::1;:33;:35::i;:::-;28740:14;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;28740:14:0::1;::::0;::::1;::::0;:5:::1;::::0;:14:::1;::::0;:5;:14:::1;:::i;:::-;-1:-1:-1::0;28765:16:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;28765:16:0::1;::::0;::::1;::::0;:7:::1;::::0;:16:::1;::::0;:7;:16:::1;:::i;:::-;-1:-1:-1::0;28792:9:0::1;:14:::0;;-1:-1:-1;;28792:14:0::1;28804:2;28792:14;::::0;;28915:29:::1;28905:7;:39:::0;;;-1:-1:-1;;28989:4:0::1;:18:::0;;;29086:14:::1;::::0;28915:29;29086:14:::1;:::i;:::-;29078:4;;:23;;;;:::i;:::-;29067:7;:35:::0;;;29218:7:::1;:16;29226:7;22088:6:::0;;-1:-1:-1;;;;;22088:6:0;;22015:87;29226:7:::1;-1:-1:-1::0;;;;;29218:16:0::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;-1:-1:-1;29218:16:0;;;:26;;;;29272:7:::1;::::0;29258:11:::1;:21:::0;29353:11:::1;:23:::0;;;:30;;-1:-1:-1;;29353:30:0;;::::1;29379:4;29353:30:::0;;::::1;::::0;;;29394:64;:71;;;::::1;::::0;::::1;::::0;;29476:64;:71;;;::::1;::::0;::::1;::::0;;29496:42:::1;29737:64:::0;;;29821:9:::1;:16:::0;;;;::::1;;::::0;;29876:7:::1;22088:6:::0;;-1:-1:-1;;;;;22088:6:0;;22015:87;29876:7:::1;-1:-1:-1::0;;;;;29855:38:0::1;29872:1;-1:-1:-1::0;;;;;29855:38:0::1;-1:-1:-1::0;;;;;;;;;;;29885:7:0::1;;29855:38;;;;1445:25:1::0;;1433:2;1418:18;;1299:177;29855:38:0::1;;;;;;;;16347:14:::0;16343:102;;;16394:5;16378:21;;-1:-1:-1;;16378:21:0;;;16419:14;;-1:-1:-1;1956:36:1;;16419:14:0;;1944:2:1;1929:18;16419:14:0;;;;;;;16343:102;15954:498;28482:1429::o;33008:99::-;21901:13;:11;:13::i;:::-;33080:9:::1;:19:::0;;-1:-1:-1;;33080:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33008:99::o;35498:261::-;35539:7;35621:15;35638;35657:19;:17;:19::i;:::-;35620:56;;-1:-1:-1;35620:56:0;-1:-1:-1;35734:17:0;35620:56;;35734:17;:::i;:::-;35727:24;;;;35498:261;:::o;30121:87::-;30160:13;30193:7;30186:14;;;;;:::i;35856:639::-;36012:7;;36048;;35906;;;;;36123:327;36147:9;:16;36143:20;;36123:327;;;36285:7;:21;36293:9;36303:1;36293:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36293:12:0;36285:21;;;;;;;;;;;;;36275:31;;:7;:31;:::i;:::-;36265:41;;36417:7;:21;36425:9;36435:1;36425:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36425:12:0;36417:21;;;;;;;;;;;;;36407:31;;:7;:31;:::i;:::-;36397:41;-1:-1:-1;36165:3:0;;36123:327;;;-1:-1:-1;36470:7:0;;36479;;-1:-1:-1;35856:639:0;-1:-1:-1;35856:639:0:o;32594:225::-;20205:10;32687:4;32736:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;32736:34:0;;;;;;;;;;32687:4;;32704:85;;32727:7;;32736:52;;32773:15;;32736:52;:::i;31098:187::-;31196:4;31213:42;20205:10;31237:9;31248:6;31213:9;:42::i;41302:117::-;41356:7;41408:2;41384:21;41394:10;41384:9;:21::i;:::-;:26;;;;:::i;:::-;41376:35;;41302:117;:::o;22914:201::-;21901:13;:11;:13::i;:::-;-1:-1:-1;;;;;23003:22:0;::::1;22995:73;;;::::0;-1:-1:-1;;;22995:73:0;;8198:2:1;22995:73:0::1;::::0;::::1;8180:21:1::0;8237:2;8217:18;;;8210:30;8276:34;8256:18;;;8249:62;-1:-1:-1;;;8327:18:1;;;8320:36;8373:19;;22995:73:0::1;7996:402:1::0;22995:73:0::1;23079:28;23098:8;23079:18;:28::i;36579:506::-:0;-1:-1:-1;;;;;36770:19:0;;36762:68;;;;-1:-1:-1;;;36762:68:0;;8605:2:1;36762:68:0;;;8587:21:1;8644:2;8624:18;;;8617:30;8683:34;8663:18;;;8656:62;-1:-1:-1;;;8734:18:1;;;8727:34;8778:19;;36762:68:0;8403:400:1;36762:68:0;-1:-1:-1;;;;;36849:21:0;;36841:68;;;;-1:-1:-1;;;36841:68:0;;9010:2:1;36841:68:0;;;8992:21:1;9049:2;9029:18;;;9022:30;9088:34;9068:18;;;9061:62;-1:-1:-1;;;9139:18:1;;;9132:32;9181:19;;36841:68:0;8808:398:1;36841:68:0;-1:-1:-1;;;;;36993:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;37045:32;;1445:25:1;;;37045:32:0;;1418:18:1;37045:32:0;;;;;;;36579:506;;;:::o;37208:2505::-;37367:5;;;;;;;:14;37359:23;;;;;;37393:5;:12;;-1:-1:-1;;37393:12:0;;;;;-1:-1:-1;;;;;37476:18:0;;37468:68;;;;-1:-1:-1;;;37468:68:0;;9413:2:1;37468:68:0;;;9395:21:1;9452:2;9432:18;;;9425:30;9491:34;9471:18;;;9464:62;-1:-1:-1;;;9542:18:1;;;9535:35;9587:19;;37468:68:0;9211:401:1;37468:68:0;-1:-1:-1;;;;;37555:16:0;;37547:64;;;;-1:-1:-1;;;37547:64:0;;9819:2:1;37547:64:0;;;9801:21:1;9858:2;9838:18;;;9831:30;9897:34;9877:18;;;9870:62;-1:-1:-1;;;9948:18:1;;;9941:33;9991:19;;37547:64:0;9617:399:1;37547:64:0;37639:1;37630:6;:10;37622:64;;;;-1:-1:-1;;;37622:64:0;;10223:2:1;37622:64:0;;;10205:21:1;10262:2;10242:18;;;10235:30;10301:34;10281:18;;;10274:62;-1:-1:-1;;;10352:18:1;;;10345:39;10401:19;;37622:64:0;10021:405:1;37622:64:0;37931:14;37940:4;37931:8;:14::i;:::-;:22;;37949:4;37931:22;:67;;;;-1:-1:-1;;;;;;37972:26:0;;;;;;:20;:26;;;;;;;;37971:27;37931:67;:102;;;;-1:-1:-1;;;;;;38016:17:0;;;;;;:11;:17;;;;;;;;38015:18;37931:102;37913:228;;;38068:22;38085:4;38068:16;:22::i;:::-;38109:20;38124:4;38109:14;:20::i;:::-;38171:12;38180:2;38171:8;:12::i;:::-;:20;;38187:4;38171:20;:63;;;;-1:-1:-1;;;;;;38210:24:0;;;;;;:20;:24;;;;;;;;38209:25;38171:63;:96;;;;-1:-1:-1;;;;;;38252:15:0;;;;;;:11;:15;;;;;;;;38251:16;38171:96;38153:218;;;38302:20;38319:2;38302:16;:20::i;:::-;38341:18;38356:2;38341:14;:18::i;:::-;22088:6;;-1:-1:-1;;;;;38466:15:0;;;22088:6;;38466:15;;;;:32;;-1:-1:-1;22088:6:0;;-1:-1:-1;;;;;38485:13:0;;;22088:6;;38485:13;;38466:32;38462:463;;;-1:-1:-1;;;;;38689:26:0;;;;;;:20;:26;;;;;;;;38688:27;:56;;;;-1:-1:-1;;;;;;38720:24:0;;;;;;:20;:24;;;;;;;;38719:25;38688:56;38684:230;;;38842:11;;38832:6;:21;;38824:74;;;;-1:-1:-1;;;38824:74:0;;;;;;;:::i;:::-;22088:6;;-1:-1:-1;;;;;39000:15:0;;;22088:6;;39000:15;;;;:32;;-1:-1:-1;22088:6:0;;-1:-1:-1;;;;;39019:13:0;;;22088:6;;39019:13;;39000:32;38996:452;;;-1:-1:-1;;;;;39212:26:0;;;;;;:20;:26;;;;;;;;39211:27;:56;;;;-1:-1:-1;;;;;;39243:24:0;;;;;;:20;:24;;;;;;;;39242:25;39211:56;39207:230;;;39365:11;;39355:6;:21;;39347:74;;;;-1:-1:-1;;;39347:74:0;;;;;;;:::i;:::-;39647:32;39662:4;39668:2;39672:6;39647:14;:32::i;:::-;-1:-1:-1;;39692:5:0;:13;;-1:-1:-1;;39692:13:0;;;-1:-1:-1;37208:2505:0:o;22180:132::-;22088:6;;-1:-1:-1;;;;;22088:6:0;20205:10;22244:23;22236:68;;;;-1:-1:-1;;;22236:68:0;;11042:2:1;22236:68:0;;;11024:21:1;;;11061:18;;;11054:30;11120:34;11100:18;;;11093:62;11172:18;;22236:68:0;10840:356:1;23275:191:0;23368:6;;;-1:-1:-1;;;;;23385:17:0;;;-1:-1:-1;;;;;;23385:17:0;;;;;;;23418:40;;23368:6;;;23385:17;23368:6;;23418:40;;23349:16;;23418:40;23338:128;23275:191;:::o;21558:97::-;18108:13;;;;;;;18100:69;;;;-1:-1:-1;;;18100:69:0;;;;;;;:::i;:::-;21621:26:::1;:24;:26::i;33273:217::-:0;33405:32;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33405:32:0;-1:-1:-1;;;33405:32:0;;;33385:53;;33332:4;;;;;;-1:-1:-1;;;;;33385:19:0;;;:53;;33405:32;33385:53;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33349:89;;;;33456:7;:26;;;;-1:-1:-1;33467:11:0;:15;;;33449:33;-1:-1:-1;;;33273:217:0:o;33674:187::-;-1:-1:-1;;;;;33745:29:0;;;;;;:20;:29;;;;;;;;33744:30;33736:70;;;;-1:-1:-1;;;33736:70:0;;12107:2:1;33736:70:0;;;12089:21:1;12146:2;12126:18;;;12119:30;12185:29;12165:18;;;12158:57;12232:18;;33736:70:0;11905:351:1;33736:70:0;-1:-1:-1;;;;;33817:29:0;;;;;:20;:29;;;;;:36;;-1:-1:-1;;33817:36:0;33849:4;33817:36;;;33674:187::o;34114:584::-;-1:-1:-1;;;;;34183:20:0;;;;;;:11;:20;;;;;;;;34182:21;34174:61;;;;-1:-1:-1;;;34174:61:0;;12107:2:1;34174:61:0;;;12089:21:1;12146:2;12126:18;;;12119:30;12185:29;12165:18;;;12158:57;12232:18;;34174:61:0;11905:351:1;34174:61:0;-1:-1:-1;;;;;34300:16:0;;34319:1;34300:16;;;:7;:16;;;;;;:20;34296:214;;34479:19;34490:7;34479:10;:19::i;:::-;-1:-1:-1;;;;;34460:16:0;;;;;;:7;:16;;;;;:38;34296:214;-1:-1:-1;;;;;34564:20:0;;;;;:11;:20;;;;;:27;;-1:-1:-1;;34564:27:0;34587:4;34564:27;;;;;;34667:9;:23;;;;;;;;;;;;;;-1:-1:-1;;;;;;34667:23:0;;;;;;34114:584::o;39793:955::-;-1:-1:-1;;;;;39944:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;39968:22:0;;;;;;:11;:22;;;;;;;;39967:23;39944:46;39940:801;;;40008:48;40030:6;40038:9;40049:6;40008:21;:48::i;:::-;39793:955;;;:::o;39940:801::-;-1:-1:-1;;;;;40214:19:0;;;;;;:11;:19;;;;;;;;40213:20;:46;;;;-1:-1:-1;;;;;;40237:22:0;;;;;;:11;:22;;;;;;;;40213:46;40209:532;;;40276:46;40296:6;40304:9;40315:6;40276:19;:46::i;40209:532::-;-1:-1:-1;;;;;40486:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;40509:22:0;;;;;;:11;:22;;;;;;;;40486:45;40482:259;;;40549:48;40571:6;40579:9;40590:6;40549:21;:48::i;40482:259::-;40685:44;40703:6;40711:9;40722:6;40685:17;:44::i;21663:113::-;18108:13;;;;;;;18100:69;;;;-1:-1:-1;;;18100:69:0;;;;;;;:::i;:::-;21736:32:::1;20205:10:::0;21736:18:::1;:32::i;43390:1797::-:0;43492:24;;:::i;:::-;43594:9;;;;:17;;:9;:17;43591:157;;43658:4;43648:7;;:14;;;;:::i;:::-;43636:7;:27;;43628:108;;;;-1:-1:-1;;;43628:108:0;;12463:2:1;43628:108:0;;;12445:21:1;12502:2;12482:18;;;12475:30;;;12541:34;12521:18;;;12514:62;12612:34;12592:18;;;12585:62;-1:-1:-1;;;12663:19:1;;;12656:35;12708:19;;43628:108:0;12261:472:1;43628:108:0;43806:26;;;43872:10;:8;:10::i;:::-;43862:20;;:7;:20;:::i;:::-;43843:16;;;:39;43972:1;43950:19;;;:23;;;44095:5;;44062:29;;:7;:29;:::i;:::-;44061:39;;;;:::i;:::-;44041:17;;;:59;44151:10;:8;:10::i;:::-;44131:4;:17;;;:30;;;;:::i;:::-;44111:17;;;:50;;;44261:21;44243:108;;44322:17;;;;44299:20;;;:40;44243:108;44516:16;;-1:-1:-1;;;;;44497:15:0;;44516:16;44497:15;;;:7;:15;;;;;:35;;:15;;44516:16;44497:35;;44516:16;;44497:35;:::i;:::-;;;;-1:-1:-1;;44562:16:0;;;;;-1:-1:-1;;;;;44543:15:0;;;;;;:7;:15;;;;;;:35;;44562:16;;44543:15;;:35;;44562:16;;44543:35;:::i;:::-;;;;-1:-1:-1;;44746:17:0;;;;44727:16;;;;:36;;44746:17;44727:36;:::i;:::-;-1:-1:-1;;;;;44704:18:0;;;;;;:7;:18;;;;;:60;;:18;;;:60;;;;;:::i;:::-;;;;-1:-1:-1;;44870:20:0;;;;44859:7;:31;;:7;;:31;;44870:20;;44859:31;:::i;:::-;;;;-1:-1:-1;;45015:17:0;;;;44996:16;;-1:-1:-1;;;;;44967:67:0;;;;;;;;-1:-1:-1;;;;;;;;;;;44967:67:0;44996:36;;;:::i;:::-;44967:67;;1445:25:1;;;1433:2;1418:18;44967:67:0;;;;;;;45095:16;;45146:17;;;;45060:119;;45095:16;45127:36;;45095:16;45127:36;:::i;:::-;45060:119;;;2761:25:1;;;2817:2;2802:18;;2795:34;;;;2734:18;45060:119:0;;;;;;;;43481:1706;43390:1797;;;:::o;41488:1760::-;41588:24;;:::i;:::-;41786:2;41765:18;41776:6;41765:10;:18::i;:::-;:23;;;;:::i;:::-;41754:7;:34;;41746:105;;;;-1:-1:-1;;;41746:105:0;;13113:2:1;41746:105:0;;;13095:21:1;13152:2;13132:18;;;13125:30;13191:34;13171:18;;;13164:62;13262:28;13242:18;;;13235:56;13308:19;;41746:105:0;12911:422:1;41746:105:0;41912:26;;;41978:10;:8;:10::i;:::-;41968:20;;:7;:20;:::i;:::-;41949:16;;;:39;42024:1;42001:20;;;:24;;;42149:5;;42115:30;;:7;:30;:::i;:::-;42114:40;;;;:::i;:::-;42093:18;;;:61;42207:10;:8;:10::i;:::-;42186:4;:18;;;:31;;;;:::i;:::-;42165:18;;;:52;;;42303:22;42299:97;;42366:18;;;;42343:20;;;:41;42299:97;42547:4;:16;;;42528:7;:15;42536:6;-1:-1:-1;;;;;42528:15:0;-1:-1:-1;;;;;42528:15:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;;42742:18:0;;;;42723:16;;:37;;42742:18;42723:37;:::i;:::-;-1:-1:-1;;;;;42700:18:0;;;;;;:7;:18;;;;;:61;;:18;;;:61;;;;;:::i;:::-;;;;-1:-1:-1;;42814:18:0;;;;42795:16;;;;:37;;42814:18;42795:37;:::i;:::-;-1:-1:-1;;;;;42772:18:0;;;;;;:7;:18;;;;;:61;;:18;;;:61;;;;;:::i;:::-;;;;-1:-1:-1;;42939:20:0;;;;42928:7;:31;;:7;;:31;;42939:20;;42928:31;:::i;:::-;;;;-1:-1:-1;;43084:18:0;;;;43065:16;;-1:-1:-1;;;;;43036:68:0;;;;;;;;-1:-1:-1;;;;;;;;;;;43036:68:0;43065:37;;;:::i;:::-;43036:68;;1445:25:1;;;1433:2;1418:18;43036:68:0;;;;;;;43155:16;;43206:18;;;;43122:118;;43155:16;43187:37;;43155:16;43187:37;:::i;45360:936::-;45462:24;;:::i;:::-;45600:26;;;45666:10;:8;:10::i;:::-;45656:20;;:7;:20;:::i;:::-;45637:16;;;;:39;;;;45793:16;;-1:-1:-1;;;;;45774:15:0;;45793:16;45774:15;;;:7;:15;;;;;;:35;;45793:16;;45774:15;;:35;;45793:16;;45774:35;:::i;:::-;;;;-1:-1:-1;;45839:16:0;;;;;-1:-1:-1;;;;;45820:15:0;;;;;;:7;:15;;;;;;:35;;45839:16;;45820:15;;:35;;45839:16;;45820:35;:::i;:::-;;;;-1:-1:-1;;45959:16:0;;-1:-1:-1;;;;;45937:18:0;;45959:16;45937:18;;;:7;:18;;;;;:38;;:18;;45959:16;45937:38;;45959:16;;45937:38;:::i;:::-;;;;-1:-1:-1;;46008:16:0;;;;;-1:-1:-1;;;;;45986:18:0;;;;;;:7;:18;;;;;;:38;;46008:16;;45986:18;;:38;;46008:16;;45986:38;:::i;:::-;;;;-1:-1:-1;;46129:16:0;;46101:45;;1445:25:1;;;-1:-1:-1;;;;;46101:45:0;;;;;;;;-1:-1:-1;;;;;;;;;;;46101:45:0;1433:2:1;1418:18;46101:45:0;;;;;;;46199:16;;46164:124;;;2761:25:1;;;2817:2;2802:18;;2795:34;;;;46164:124:0;;2734:18:1;46164:124:0;2587:248:1;46437:927:0;46535:24;;:::i;:::-;46705:19;46684:18;46695:6;46684:10;:18::i;:::-;:40;;;;:::i;:::-;46673:7;:51;;46665:93;;;;-1:-1:-1;;;46665:93:0;;13540:2:1;46665:93:0;;;13522:21:1;13579:2;13559:18;;;13552:30;13618:31;13598:18;;;13591:59;13667:18;;46665:93:0;13338:353:1;46665:93:0;46817:26;;;46883:10;:8;:10::i;:::-;46873:20;;:7;:20;:::i;:::-;46854:16;;;;:39;;;-1:-1:-1;;;;;47010:15:0;;;;;;:7;:15;;;;;;:35;;:15;;;:35;;46854:39;;47010:35;:::i;:::-;;;;-1:-1:-1;;47164:16:0;;;;;-1:-1:-1;;;;;47142:18:0;;;;;;:7;:18;;;;;;:38;;47164:16;;47142:18;;:38;;47164:16;;47142:38;:::i;:::-;;;;-1:-1:-1;;47227:16:0;;47198:47;;1445:25:1;;;-1:-1:-1;;;;;47198:47:0;;;;;;;;-1:-1:-1;;;;;;;;;;;47198:47:0;1433:2:1;1418:18;47198:47:0;;;;;;;47294:16;;47263:93;;;2761:25:1;;;2817:2;2802:18;;2795:34;;;;47263:93:0;;2734:18:1;47263:93:0;2587:248:1;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:173::-;738:20;;-1:-1:-1;;;;;787:31:1;;777:42;;767:70;;833:1;830;823:12;848:254;916:6;924;977:2;965:9;956:7;952:23;948:32;945:52;;;993:1;990;983:12;945:52;1016:29;1035:9;1016:29;:::i;:::-;1006:39;1092:2;1077:18;;;;1064:32;;-1:-1:-1;;;848:254:1:o;1481:328::-;1558:6;1566;1574;1627:2;1615:9;1606:7;1602:23;1598:32;1595:52;;;1643:1;1640;1633:12;1595:52;1666:29;1685:9;1666:29;:::i;:::-;1656:39;;1714:38;1748:2;1737:9;1733:18;1714:38;:::i;:::-;1704:48;;1799:2;1788:9;1784:18;1771:32;1761:42;;1481:328;;;;;:::o;2003:180::-;2062:6;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;-1:-1:-1;2154:23:1;;2003:180;-1:-1:-1;2003:180:1:o;2396:186::-;2455:6;2508:2;2496:9;2487:7;2483:23;2479:32;2476:52;;;2524:1;2521;2514:12;2476:52;2547:29;2566:9;2547:29;:::i;:::-;2537:39;2396:186;-1:-1:-1;;;2396:186:1:o;2840:273::-;2896:6;2949:2;2937:9;2928:7;2924:23;2920:32;2917:52;;;2965:1;2962;2955:12;2917:52;3004:9;2991:23;3057:5;3050:13;3043:21;3036:5;3033:32;3023:60;;3079:1;3076;3069:12;3118:260;3186:6;3194;3247:2;3235:9;3226:7;3222:23;3218:32;3215:52;;;3263:1;3260;3253:12;3215:52;3286:29;3305:9;3286:29;:::i;:::-;3276:39;;3334:38;3368:2;3357:9;3353:18;3334:38;:::i;:::-;3324:48;;3118:260;;;;;:::o;3383:380::-;3462:1;3458:12;;;;3505;;;3526:61;;3580:4;3572:6;3568:17;3558:27;;3526:61;3633:2;3625:6;3622:14;3602:18;3599:38;3596:161;;3679:10;3674:3;3670:20;3667:1;3660:31;3714:4;3711:1;3704:15;3742:4;3739:1;3732:15;3596:161;;3383:380;;;:::o;3768:127::-;3829:10;3824:3;3820:20;3817:1;3810:31;3860:4;3857:1;3850:15;3884:4;3881:1;3874:15;3900:128;3967:9;;;3988:11;;;3985:37;;;4002:18;;:::i;4033:125::-;4098:9;;;4119:10;;;4116:36;;;4132:18;;:::i;4574:127::-;4635:10;4630:3;4626:20;4623:1;4616:31;4666:4;4663:1;4656:15;4690:4;4687:1;4680:15;4706:120;4746:1;4772;4762:35;;4777:18;;:::i;:::-;-1:-1:-1;4811:9:1;;4706:120::o;5246:127::-;5307:10;5302:3;5298:20;5295:1;5288:31;5338:4;5335:1;5328:15;5362:4;5359:1;5352:15;5504:518;5606:2;5601:3;5598:11;5595:421;;;5642:5;5639:1;5632:16;5686:4;5683:1;5673:18;5756:2;5744:10;5740:19;5737:1;5733:27;5727:4;5723:38;5792:4;5780:10;5777:20;5774:47;;;-1:-1:-1;5815:4:1;5774:47;5870:2;5865:3;5861:12;5858:1;5854:20;5848:4;5844:31;5834:41;;5925:81;5943:2;5936:5;5933:13;5925:81;;;6002:1;5988:16;;5969:1;5958:13;5925:81;;;5929:3;;5504:518;;;:::o;6198:1345::-;6324:3;6318:10;6351:18;6343:6;6340:30;6337:56;;;6373:18;;:::i;:::-;6402:97;6492:6;6452:38;6484:4;6478:11;6452:38;:::i;:::-;6446:4;6402:97;:::i;:::-;6554:4;;6611:2;6600:14;;6628:1;6623:663;;;;7330:1;7347:6;7344:89;;;-1:-1:-1;7399:19:1;;;7393:26;7344:89;-1:-1:-1;;6155:1:1;6151:11;;;6147:24;6143:29;6133:40;6179:1;6175:11;;;6130:57;7446:81;;6593:944;;6623:663;5451:1;5444:14;;;5488:4;5475:18;;-1:-1:-1;;6659:20:1;;;6777:236;6791:7;6788:1;6785:14;6777:236;;;6880:19;;;6874:26;6859:42;;6972:27;;;;6940:1;6928:14;;;;6807:19;;6777:236;;;6781:3;7041:6;7032:7;7029:19;7026:201;;;7102:19;;;7096:26;-1:-1:-1;;7185:1:1;7181:14;;;7197:3;7177:24;7173:37;7169:42;7154:58;7139:74;;7026:201;;;7273:1;7264:6;7261:1;7257:14;7253:22;7247:4;7240:36;6593:944;;;;;6198:1345;;:::o;7548:112::-;7580:1;7606;7596:35;;7611:18;;:::i;:::-;-1:-1:-1;7645:9:1;;7548:112::o;7864:127::-;7925:10;7920:3;7916:20;7913:1;7906:31;7956:4;7953:1;7946:15;7980:4;7977:1;7970:15;10431:404;10633:2;10615:21;;;10672:2;10652:18;;;10645:30;10711:34;10706:2;10691:18;;10684:62;-1:-1:-1;;;10777:2:1;10762:18;;10755:38;10825:3;10810:19;;10431:404::o;11201:407::-;11403:2;11385:21;;;11442:2;11422:18;;;11415:30;11481:34;11476:2;11461:18;;11454:62;-1:-1:-1;;;11547:2:1;11532:18;;11525:41;11598:3;11583:19;;11201:407::o;11613:287::-;11742:3;11780:6;11774:13;11796:66;11855:6;11850:3;11843:4;11835:6;11831:17;11796:66;:::i;:::-;11878:16;;;;;11613:287;-1:-1:-1;;11613:287:1:o;12738:168::-;12811:9;;;12842;;12859:15;;;12853:22;;12839:37;12829:71;;12880:18;;:::i
Swarm Source
ipfs://86738a16f4bcec29652210b015a0b1889f30a324dd2a1b53f92632c1fe312555
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.