ERC-20
Gaming
Overview
Max Total Supply
500,000,000 CBX
Holders
8,531 (0.00%)
Market
Price
$0.00 @ 0.000002 ETH (+2.08%)
Onchain Market Cap
$1,818,785.00
Circulating Supply Market Cap
$1,041,318.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
21.7 CBXValue
$0.08 ( ~3.30415818015353E-05 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | Bybit | CBX-USDT | $0.0036 0.0000015 Eth | $9,115.70 2,500,637.180 CBX | 86.7129% |
2 | Coins.ph | CBX-PHP | $0.0035 0.0000015 Eth | $1,097.83 310,024.000 CBX | 10.7505% |
3 | Coins.ph | CBX-USDT | $0.0036 0.0000015 Eth | $197.74 55,648.000 CBX | 1.9297% |
4 | MEXC | CBX-USDT | $0.0035 0.0000014 Eth | $56.13 16,126.580 CBX | 0.5592% |
5 | Uniswap V3 (Ethereum) | 0X37FC4B48CE93469DBEA9918468993C735049642A-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.0036 0.0000015 Eth | $4.94 1,378.046 0X37FC4B48CE93469DBEA9918468993C735049642A | 0.0478% |
Contract Name:
CropBytes
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-07 */ // File: openzeppelin-solidity/contracts/utils/math/SafeMath.sol pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: openzeppelin-solidity/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: openzeppelin-solidity/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: openzeppelin-solidity/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: openzeppelin-solidity/contracts/security/Pausable.sol pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: openzeppelin-solidity/contracts/token/ERC20/utils/SafeERC20.sol pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: openzeppelin-solidity/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: openzeppelin-solidity/contracts/token/ERC20/extensions/ERC20Pausable.sol pragma solidity ^0.8.0; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } } // File: github/CropBytes/cropbytes-contracts/contracts/CropBytes.sol pragma solidity 0.8.0; contract CropBytes is Ownable, ERC20Pausable { // IEO Swap Foundation Product Marketing Team Advisor Mining /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor () ERC20("CropBytes", "CBX") { _mint(msg.sender, 500000000 * (10 ** uint256(decimals()))); } function pause() public virtual onlyOwner { _pause(); } /** * @dev Unpauses all token transfers. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual onlyOwner { _unpause(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600981526020017f43726f70427974657300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43425800000000000000000000000000000000000000000000000000000000008152506200009e620000926200013660201b60201c565b6200013e60201b60201c565b8160049080519060200190620000b692919062000416565b508060059080519060200190620000cf92919062000416565b5050506000600660006101000a81548160ff0219169083151502179055506200013033620001026200020260201b60201c565b60ff16600a620001139190620006ab565b631dcd6500620001249190620007e8565b6200020b60201b60201c565b620008f4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200027e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002759062000581565b60405180910390fd5b62000292600083836200038560201b60201c565b8060036000828254620002a69190620005f3565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002fe9190620005f3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003659190620005c5565b60405180910390a36200038160008383620003f560201b60201c565b5050565b6200039d838383620003fa60201b62000aec1760201c565b620003ad620003ff60201b60201c565b15620003f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e790620005a3565b60405180910390fd5b505050565b505050565b505050565b6000600660009054906101000a900460ff16905090565b828054620004249062000853565b90600052602060002090601f01602090048101928262000448576000855562000494565b82601f106200046357805160ff191683800117855562000494565b8280016001018555821562000494579182015b828111156200049357825182559160200191906001019062000476565b5b509050620004a39190620004a7565b5090565b5b80821115620004c2576000816000905550600101620004a8565b5090565b6000620004d5601f83620005e2565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b600062000517602a83620005e2565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6200057b8162000849565b82525050565b600060208201905081810360008301526200059c81620004c6565b9050919050565b60006020820190508181036000830152620005be8162000508565b9050919050565b6000602082019050620005dc600083018462000570565b92915050565b600082825260208201905092915050565b6000620006008262000849565b91506200060d8362000849565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000645576200064462000889565b5b828201905092915050565b6000808291508390505b6001851115620006a2578086048111156200067a576200067962000889565b5b60018516156200068a5780820291505b80810290506200069a85620008e7565b94506200065a565b94509492505050565b6000620006b88262000849565b9150620006c58362000849565b9250620006f47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006fc565b905092915050565b6000826200070e5760019050620007e1565b816200071e5760009050620007e1565b8160018114620007375760028114620007425762000778565b6001915050620007e1565b60ff84111562000757576200075662000889565b5b8360020a91508482111562000771576200077062000889565b5b50620007e1565b5060208310610133831016604e8410600b8410161715620007b25782820a905083811115620007ac57620007ab62000889565b5b620007e1565b620007c1848484600162000650565b92509050818404811115620007db57620007da62000889565b5b81810290505b9392505050565b6000620007f58262000849565b9150620008028362000849565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200083e576200083d62000889565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200086c57607f821691505b60208210811415620008835762000882620008b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611ba080620009046000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610284578063a457c2d7146102a2578063a9059cbb146102d2578063dd62ed3e14610302578063f2fde38b146103325761010b565b806370a0823114610222578063715018a6146102525780638456cb591461025c5780638da5cb5b146102665761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa5780635c975abb146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861034e565b60405161012591906117c9565b60405180910390f35b6101486004803603810190610143919061128c565b6103e0565b60405161015591906117ae565b60405180910390f35b6101666103fe565b604051610173919061196b565b60405180910390f35b6101966004803603810190610191919061123d565b610408565b6040516101a391906117ae565b60405180910390f35b6101b4610500565b6040516101c19190611986565b60405180910390f35b6101e460048036038101906101df919061128c565b610509565b6040516101f191906117ae565b60405180910390f35b6102026105b5565b005b61020c61063b565b60405161021991906117ae565b60405180910390f35b61023c600480360381019061023791906111d8565b610652565b604051610249919061196b565b60405180910390f35b61025a61069b565b005b610264610723565b005b61026e6107a9565b60405161027b9190611793565b60405180910390f35b61028c6107d2565b60405161029991906117c9565b60405180910390f35b6102bc60048036038101906102b7919061128c565b610864565b6040516102c991906117ae565b60405180910390f35b6102ec60048036038101906102e7919061128c565b61094f565b6040516102f991906117ae565b60405180910390f35b61031c60048036038101906103179190611201565b61096d565b604051610329919061196b565b60405180910390f35b61034c600480360381019061034791906111d8565b6109f4565b005b60606004805461035d90611a9b565b80601f016020809104026020016040519081016040528092919081815260200182805461038990611a9b565b80156103d65780601f106103ab576101008083540402835291602001916103d6565b820191906000526020600020905b8154815290600101906020018083116103b957829003601f168201915b5050505050905090565b60006103f46103ed610af1565b8484610af9565b6001905092915050565b6000600354905090565b6000610415848484610cc4565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610460610af1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d7906118ab565b60405180910390fd5b6104f4856104ec610af1565b858403610af9565b60019150509392505050565b60006012905090565b60006105ab610516610af1565b848460026000610524610af1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105a691906119bd565b610af9565b6001905092915050565b6105bd610af1565b73ffffffffffffffffffffffffffffffffffffffff166105db6107a9565b73ffffffffffffffffffffffffffffffffffffffff1614610631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610628906118cb565b60405180910390fd5b610639610f48565b565b6000600660009054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106a3610af1565b73ffffffffffffffffffffffffffffffffffffffff166106c16107a9565b73ffffffffffffffffffffffffffffffffffffffff1614610717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070e906118cb565b60405180910390fd5b6107216000610fea565b565b61072b610af1565b73ffffffffffffffffffffffffffffffffffffffff166107496107a9565b73ffffffffffffffffffffffffffffffffffffffff161461079f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610796906118cb565b60405180910390fd5b6107a76110ae565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107e190611a9b565b80601f016020809104026020016040519081016040528092919081815260200182805461080d90611a9b565b801561085a5780601f1061082f5761010080835404028352916020019161085a565b820191906000526020600020905b81548152906001019060200180831161083d57829003601f168201915b5050505050905090565b60008060026000610873610af1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610930576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109279061192b565b60405180910390fd5b61094461093b610af1565b85858403610af9565b600191505092915050565b600061096361095c610af1565b8484610cc4565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109fc610af1565b73ffffffffffffffffffffffffffffffffffffffff16610a1a6107a9565b73ffffffffffffffffffffffffffffffffffffffff1614610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a67906118cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad79061182b565b60405180910390fd5b610ae981610fea565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b609061190b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd09061184b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb7919061196b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b906118eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b906117eb565b60405180910390fd5b610daf838383611151565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d9061186b565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ecb91906119bd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f2f919061196b565b60405180910390a3610f428484846111a9565b50505050565b610f5061063b565b610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f869061180b565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610fd3610af1565b604051610fe09190611793565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6110b661063b565b156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed9061188b565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861113a610af1565b6040516111479190611793565b60405180910390a1565b61115c838383610aec565b61116461063b565b156111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b9061194b565b60405180910390fd5b505050565b505050565b6000813590506111bd81611b3c565b92915050565b6000813590506111d281611b53565b92915050565b6000602082840312156111ea57600080fd5b60006111f8848285016111ae565b91505092915050565b6000806040838503121561121457600080fd5b6000611222858286016111ae565b9250506020611233858286016111ae565b9150509250929050565b60008060006060848603121561125257600080fd5b6000611260868287016111ae565b9350506020611271868287016111ae565b9250506040611282868287016111c3565b9150509250925092565b6000806040838503121561129f57600080fd5b60006112ad858286016111ae565b92505060206112be858286016111c3565b9150509250929050565b6112d181611a13565b82525050565b6112e081611a25565b82525050565b60006112f1826119a1565b6112fb81856119ac565b935061130b818560208601611a68565b61131481611b2b565b840191505092915050565b600061132c6023836119ac565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113926014836119ac565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006113d26026836119ac565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114386022836119ac565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061149e6026836119ac565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115046010836119ac565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006115446028836119ac565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115aa6020836119ac565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006115ea6025836119ac565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116506024836119ac565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116b66025836119ac565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061171c602a836119ac565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b61177e81611a51565b82525050565b61178d81611a5b565b82525050565b60006020820190506117a860008301846112c8565b92915050565b60006020820190506117c360008301846112d7565b92915050565b600060208201905081810360008301526117e381846112e6565b905092915050565b600060208201905081810360008301526118048161131f565b9050919050565b6000602082019050818103600083015261182481611385565b9050919050565b60006020820190508181036000830152611844816113c5565b9050919050565b600060208201905081810360008301526118648161142b565b9050919050565b6000602082019050818103600083015261188481611491565b9050919050565b600060208201905081810360008301526118a4816114f7565b9050919050565b600060208201905081810360008301526118c481611537565b9050919050565b600060208201905081810360008301526118e48161159d565b9050919050565b60006020820190508181036000830152611904816115dd565b9050919050565b6000602082019050818103600083015261192481611643565b9050919050565b60006020820190508181036000830152611944816116a9565b9050919050565b600060208201905081810360008301526119648161170f565b9050919050565b60006020820190506119806000830184611775565b92915050565b600060208201905061199b6000830184611784565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119c882611a51565b91506119d383611a51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a0857611a07611acd565b5b828201905092915050565b6000611a1e82611a31565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a86578082015181840152602081019050611a6b565b83811115611a95576000848401525b50505050565b60006002820490506001821680611ab357607f821691505b60208210811415611ac757611ac6611afc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611b4581611a13565b8114611b5057600080fd5b50565b611b5c81611a51565b8114611b6757600080fd5b5056fea26469706673582212203b6d5f0505848ef061f2e6bc32d0893b401fff7b9298c1459e83090489209e9664736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610284578063a457c2d7146102a2578063a9059cbb146102d2578063dd62ed3e14610302578063f2fde38b146103325761010b565b806370a0823114610222578063715018a6146102525780638456cb591461025c5780638da5cb5b146102665761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa5780635c975abb146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861034e565b60405161012591906117c9565b60405180910390f35b6101486004803603810190610143919061128c565b6103e0565b60405161015591906117ae565b60405180910390f35b6101666103fe565b604051610173919061196b565b60405180910390f35b6101966004803603810190610191919061123d565b610408565b6040516101a391906117ae565b60405180910390f35b6101b4610500565b6040516101c19190611986565b60405180910390f35b6101e460048036038101906101df919061128c565b610509565b6040516101f191906117ae565b60405180910390f35b6102026105b5565b005b61020c61063b565b60405161021991906117ae565b60405180910390f35b61023c600480360381019061023791906111d8565b610652565b604051610249919061196b565b60405180910390f35b61025a61069b565b005b610264610723565b005b61026e6107a9565b60405161027b9190611793565b60405180910390f35b61028c6107d2565b60405161029991906117c9565b60405180910390f35b6102bc60048036038101906102b7919061128c565b610864565b6040516102c991906117ae565b60405180910390f35b6102ec60048036038101906102e7919061128c565b61094f565b6040516102f991906117ae565b60405180910390f35b61031c60048036038101906103179190611201565b61096d565b604051610329919061196b565b60405180910390f35b61034c600480360381019061034791906111d8565b6109f4565b005b60606004805461035d90611a9b565b80601f016020809104026020016040519081016040528092919081815260200182805461038990611a9b565b80156103d65780601f106103ab576101008083540402835291602001916103d6565b820191906000526020600020905b8154815290600101906020018083116103b957829003601f168201915b5050505050905090565b60006103f46103ed610af1565b8484610af9565b6001905092915050565b6000600354905090565b6000610415848484610cc4565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610460610af1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d7906118ab565b60405180910390fd5b6104f4856104ec610af1565b858403610af9565b60019150509392505050565b60006012905090565b60006105ab610516610af1565b848460026000610524610af1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105a691906119bd565b610af9565b6001905092915050565b6105bd610af1565b73ffffffffffffffffffffffffffffffffffffffff166105db6107a9565b73ffffffffffffffffffffffffffffffffffffffff1614610631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610628906118cb565b60405180910390fd5b610639610f48565b565b6000600660009054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106a3610af1565b73ffffffffffffffffffffffffffffffffffffffff166106c16107a9565b73ffffffffffffffffffffffffffffffffffffffff1614610717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070e906118cb565b60405180910390fd5b6107216000610fea565b565b61072b610af1565b73ffffffffffffffffffffffffffffffffffffffff166107496107a9565b73ffffffffffffffffffffffffffffffffffffffff161461079f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610796906118cb565b60405180910390fd5b6107a76110ae565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107e190611a9b565b80601f016020809104026020016040519081016040528092919081815260200182805461080d90611a9b565b801561085a5780601f1061082f5761010080835404028352916020019161085a565b820191906000526020600020905b81548152906001019060200180831161083d57829003601f168201915b5050505050905090565b60008060026000610873610af1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610930576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109279061192b565b60405180910390fd5b61094461093b610af1565b85858403610af9565b600191505092915050565b600061096361095c610af1565b8484610cc4565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109fc610af1565b73ffffffffffffffffffffffffffffffffffffffff16610a1a6107a9565b73ffffffffffffffffffffffffffffffffffffffff1614610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a67906118cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad79061182b565b60405180910390fd5b610ae981610fea565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b609061190b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd09061184b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb7919061196b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b906118eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b906117eb565b60405180910390fd5b610daf838383611151565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d9061186b565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ecb91906119bd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f2f919061196b565b60405180910390a3610f428484846111a9565b50505050565b610f5061063b565b610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f869061180b565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610fd3610af1565b604051610fe09190611793565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6110b661063b565b156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed9061188b565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861113a610af1565b6040516111479190611793565b60405180910390a1565b61115c838383610aec565b61116461063b565b156111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b9061194b565b60405180910390fd5b505050565b505050565b6000813590506111bd81611b3c565b92915050565b6000813590506111d281611b53565b92915050565b6000602082840312156111ea57600080fd5b60006111f8848285016111ae565b91505092915050565b6000806040838503121561121457600080fd5b6000611222858286016111ae565b9250506020611233858286016111ae565b9150509250929050565b60008060006060848603121561125257600080fd5b6000611260868287016111ae565b9350506020611271868287016111ae565b9250506040611282868287016111c3565b9150509250925092565b6000806040838503121561129f57600080fd5b60006112ad858286016111ae565b92505060206112be858286016111c3565b9150509250929050565b6112d181611a13565b82525050565b6112e081611a25565b82525050565b60006112f1826119a1565b6112fb81856119ac565b935061130b818560208601611a68565b61131481611b2b565b840191505092915050565b600061132c6023836119ac565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113926014836119ac565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006113d26026836119ac565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114386022836119ac565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061149e6026836119ac565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115046010836119ac565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006115446028836119ac565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115aa6020836119ac565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006115ea6025836119ac565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116506024836119ac565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116b66025836119ac565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061171c602a836119ac565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b61177e81611a51565b82525050565b61178d81611a5b565b82525050565b60006020820190506117a860008301846112c8565b92915050565b60006020820190506117c360008301846112d7565b92915050565b600060208201905081810360008301526117e381846112e6565b905092915050565b600060208201905081810360008301526118048161131f565b9050919050565b6000602082019050818103600083015261182481611385565b9050919050565b60006020820190508181036000830152611844816113c5565b9050919050565b600060208201905081810360008301526118648161142b565b9050919050565b6000602082019050818103600083015261188481611491565b9050919050565b600060208201905081810360008301526118a4816114f7565b9050919050565b600060208201905081810360008301526118c481611537565b9050919050565b600060208201905081810360008301526118e48161159d565b9050919050565b60006020820190508181036000830152611904816115dd565b9050919050565b6000602082019050818103600083015261192481611643565b9050919050565b60006020820190508181036000830152611944816116a9565b9050919050565b600060208201905081810360008301526119648161170f565b9050919050565b60006020820190506119806000830184611775565b92915050565b600060208201905061199b6000830184611784565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119c882611a51565b91506119d383611a51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a0857611a07611acd565b5b828201905092915050565b6000611a1e82611a31565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a86578082015181840152602081019050611a6b565b83811115611a95576000848401525b50505050565b60006002820490506001821680611ab357607f821691505b60208210811415611ac757611ac6611afc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611b4581611a13565b8114611b5057600080fd5b50565b611b5c81611a51565b8114611b6757600080fd5b5056fea26469706673582212203b6d5f0505848ef061f2e6bc32d0893b401fff7b9298c1459e83090489209e9664736f6c63430008000033
Deployed Bytecode Sourcemap
40955:637:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29995:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32162:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31115:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32813:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30957:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33714:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41514:73;;;:::i;:::-;;19285:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31286:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17574:94;;;:::i;:::-;;41278:79;;;:::i;:::-;;16923:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30214:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34432:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31626:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31864:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17823:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29995:100;30049:13;30082:5;30075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29995:100;:::o;32162:169::-;32245:4;32262:39;32271:12;:10;:12::i;:::-;32285:7;32294:6;32262:8;:39::i;:::-;32319:4;32312:11;;32162:169;;;;:::o;31115:108::-;31176:7;31203:12;;31196:19;;31115:108;:::o;32813:492::-;32953:4;32970:36;32980:6;32988:9;32999:6;32970:9;:36::i;:::-;33019:24;33046:11;:19;33058:6;33046:19;;;;;;;;;;;;;;;:33;33066:12;:10;:12::i;:::-;33046:33;;;;;;;;;;;;;;;;33019:60;;33118:6;33098:16;:26;;33090:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;33205:57;33214:6;33222:12;:10;:12::i;:::-;33255:6;33236:16;:25;33205:8;:57::i;:::-;33293:4;33286:11;;;32813:492;;;;;:::o;30957:93::-;31015:5;31040:2;31033:9;;30957:93;:::o;33714:215::-;33802:4;33819:80;33828:12;:10;:12::i;:::-;33842:7;33888:10;33851:11;:25;33863:12;:10;:12::i;:::-;33851:25;;;;;;;;;;;;;;;:34;33877:7;33851:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;33819:8;:80::i;:::-;33917:4;33910:11;;33714:215;;;;:::o;41514:73::-;17154:12;:10;:12::i;:::-;17143:23;;:7;:5;:7::i;:::-;:23;;;17135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41569:10:::1;:8;:10::i;:::-;41514:73::o:0;19285:86::-;19332:4;19356:7;;;;;;;;;;;19349:14;;19285:86;:::o;31286:127::-;31360:7;31387:9;:18;31397:7;31387:18;;;;;;;;;;;;;;;;31380:25;;31286:127;;;:::o;17574:94::-;17154:12;:10;:12::i;:::-;17143:23;;:7;:5;:7::i;:::-;:23;;;17135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17639:21:::1;17657:1;17639:9;:21::i;:::-;17574:94::o:0;41278:79::-;17154:12;:10;:12::i;:::-;17143:23;;:7;:5;:7::i;:::-;:23;;;17135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41341:8:::1;:6;:8::i;:::-;41278:79::o:0;16923:87::-;16969:7;16996:6;;;;;;;;;;;16989:13;;16923:87;:::o;30214:104::-;30270:13;30303:7;30296:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30214:104;:::o;34432:413::-;34525:4;34542:24;34569:11;:25;34581:12;:10;:12::i;:::-;34569:25;;;;;;;;;;;;;;;:34;34595:7;34569:34;;;;;;;;;;;;;;;;34542:61;;34642:15;34622:16;:35;;34614:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34735:67;34744:12;:10;:12::i;:::-;34758:7;34786:15;34767:16;:34;34735:8;:67::i;:::-;34833:4;34826:11;;;34432:413;;;;:::o;31626:175::-;31712:4;31729:42;31739:12;:10;:12::i;:::-;31753:9;31764:6;31729:9;:42::i;:::-;31789:4;31782:11;;31626:175;;;;:::o;31864:151::-;31953:7;31980:11;:18;31992:5;31980:18;;;;;;;;;;;;;;;:27;31999:7;31980:27;;;;;;;;;;;;;;;;31973:34;;31864:151;;;;:::o;17823:192::-;17154:12;:10;:12::i;:::-;17143:23;;:7;:5;:7::i;:::-;:23;;;17135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17932:1:::1;17912:22;;:8;:22;;;;17904:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17988:19;17998:8;17988:9;:19::i;:::-;17823:192:::0;:::o;39096:125::-;;;;:::o;15703:98::-;15756:7;15783:10;15776:17;;15703:98;:::o;38116:380::-;38269:1;38252:19;;:5;:19;;;;38244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38350:1;38331:21;;:7;:21;;;;38323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38434:6;38404:11;:18;38416:5;38404:18;;;;;;;;;;;;;;;:27;38423:7;38404:27;;;;;;;;;;;;;;;:36;;;;38472:7;38456:32;;38465:5;38456:32;;;38481:6;38456:32;;;;;;:::i;:::-;;;;;;;;38116:380;;;:::o;35335:733::-;35493:1;35475:20;;:6;:20;;;;35467:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;35577:1;35556:23;;:9;:23;;;;35548:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35632:47;35653:6;35661:9;35672:6;35632:20;:47::i;:::-;35692:21;35716:9;:17;35726:6;35716:17;;;;;;;;;;;;;;;;35692:41;;35769:6;35752:13;:23;;35744:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;35890:6;35874:13;:22;35854:9;:17;35864:6;35854:17;;;;;;;;;;;;;;;:42;;;;35942:6;35918:9;:20;35928:9;35918:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;35983:9;35966:35;;35975:6;35966:35;;;35994:6;35966:35;;;;;;:::i;:::-;;;;;;;;36014:46;36034:6;36042:9;36053:6;36014:19;:46::i;:::-;35335:733;;;;:::o;20344:120::-;19888:8;:6;:8::i;:::-;19880:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;20413:5:::1;20403:7;;:15;;;;;;;;;;;;;;;;;;20434:22;20443:12;:10;:12::i;:::-;20434:22;;;;;;:::i;:::-;;;;;;;;20344:120::o:0;18023:173::-;18079:16;18098:6;;;;;;;;;;;18079:25;;18124:8;18115:6;;:17;;;;;;;;;;;;;;;;;;18179:8;18148:40;;18169:8;18148:40;;;;;;;;;;;;18023:173;;:::o;20085:118::-;19611:8;:6;:8::i;:::-;19610:9;19602:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;20155:4:::1;20145:7;;:14;;;;;;;;;;;;;;;;;;20175:20;20182:12;:10;:12::i;:::-;20175:20;;;;;;:::i;:::-;;;;;;;;20085:118::o:0;40557:272::-;40700:44;40727:4;40733:2;40737:6;40700:26;:44::i;:::-;40766:8;:6;:8::i;:::-;40765:9;40757:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40557:272;;;:::o;39825:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:318::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:22;3187:1;3182:3;3178:11;3171:43;3240:2;3235:3;3231:12;3224:19;;3077:172;;;:::o;3255:370::-;;3418:67;3482:2;3477:3;3418:67;:::i;:::-;3411:74;;3515:34;3511:1;3506:3;3502:11;3495:55;3581:8;3576:2;3571:3;3567:12;3560:30;3616:2;3611:3;3607:12;3600:19;;3401:224;;;:::o;3631:366::-;;3794:67;3858:2;3853:3;3794:67;:::i;:::-;3787:74;;3891:34;3887:1;3882:3;3878:11;3871:55;3957:4;3952:2;3947:3;3943:12;3936:26;3988:2;3983:3;3979:12;3972:19;;3777:220;;;:::o;4003:370::-;;4166:67;4230:2;4225:3;4166:67;:::i;:::-;4159:74;;4263:34;4259:1;4254:3;4250:11;4243:55;4329:8;4324:2;4319:3;4315:12;4308:30;4364:2;4359:3;4355:12;4348:19;;4149:224;;;:::o;4379:314::-;;4542:67;4606:2;4601:3;4542:67;:::i;:::-;4535:74;;4639:18;4635:1;4630:3;4626:11;4619:39;4684:2;4679:3;4675:12;4668:19;;4525:168;;;:::o;4699:372::-;;4862:67;4926:2;4921:3;4862:67;:::i;:::-;4855:74;;4959:34;4955:1;4950:3;4946:11;4939:55;5025:10;5020:2;5015:3;5011:12;5004:32;5062:2;5057:3;5053:12;5046:19;;4845:226;;;:::o;5077:330::-;;5240:67;5304:2;5299:3;5240:67;:::i;:::-;5233:74;;5337:34;5333:1;5328:3;5324:11;5317:55;5398:2;5393:3;5389:12;5382:19;;5223:184;;;:::o;5413:369::-;;5576:67;5640:2;5635:3;5576:67;:::i;:::-;5569:74;;5673:34;5669:1;5664:3;5660:11;5653:55;5739:7;5734:2;5729:3;5725:12;5718:29;5773:2;5768:3;5764:12;5757:19;;5559:223;;;:::o;5788:368::-;;5951:67;6015:2;6010:3;5951:67;:::i;:::-;5944:74;;6048:34;6044:1;6039:3;6035:11;6028:55;6114:6;6109:2;6104:3;6100:12;6093:28;6147:2;6142:3;6138:12;6131:19;;5934:222;;;:::o;6162:369::-;;6325:67;6389:2;6384:3;6325:67;:::i;:::-;6318:74;;6422:34;6418:1;6413:3;6409:11;6402:55;6488:7;6483:2;6478:3;6474:12;6467:29;6522:2;6517:3;6513:12;6506:19;;6308:223;;;:::o;6537:374::-;;6700:67;6764:2;6759:3;6700:67;:::i;:::-;6693:74;;6797:34;6793:1;6788:3;6784:11;6777:55;6863:12;6858:2;6853:3;6849:12;6842:34;6902:2;6897:3;6893:12;6886:19;;6683:228;;;:::o;6917:118::-;7004:24;7022:5;7004:24;:::i;:::-;6999:3;6992:37;6982:53;;:::o;7041:112::-;7124:22;7140:5;7124:22;:::i;:::-;7119:3;7112:35;7102:51;;:::o;7159:222::-;;7290:2;7279:9;7275:18;7267:26;;7303:71;7371:1;7360:9;7356:17;7347:6;7303:71;:::i;:::-;7257:124;;;;:::o;7387:210::-;;7512:2;7501:9;7497:18;7489:26;;7525:65;7587:1;7576:9;7572:17;7563:6;7525:65;:::i;:::-;7479:118;;;;:::o;7603:313::-;;7754:2;7743:9;7739:18;7731:26;;7803:9;7797:4;7793:20;7789:1;7778:9;7774:17;7767:47;7831:78;7904:4;7895:6;7831:78;:::i;:::-;7823:86;;7721:195;;;;:::o;7922:419::-;;8126:2;8115:9;8111:18;8103:26;;8175:9;8169:4;8165:20;8161:1;8150:9;8146:17;8139:47;8203:131;8329:4;8203:131;:::i;:::-;8195:139;;8093:248;;;:::o;8347:419::-;;8551:2;8540:9;8536:18;8528:26;;8600:9;8594:4;8590:20;8586:1;8575:9;8571:17;8564:47;8628:131;8754:4;8628:131;:::i;:::-;8620:139;;8518:248;;;:::o;8772:419::-;;8976:2;8965:9;8961:18;8953:26;;9025:9;9019:4;9015:20;9011:1;9000:9;8996:17;8989:47;9053:131;9179:4;9053:131;:::i;:::-;9045:139;;8943:248;;;:::o;9197:419::-;;9401:2;9390:9;9386:18;9378:26;;9450:9;9444:4;9440:20;9436:1;9425:9;9421:17;9414:47;9478:131;9604:4;9478:131;:::i;:::-;9470:139;;9368:248;;;:::o;9622:419::-;;9826:2;9815:9;9811:18;9803:26;;9875:9;9869:4;9865:20;9861:1;9850:9;9846:17;9839:47;9903:131;10029:4;9903:131;:::i;:::-;9895:139;;9793:248;;;:::o;10047:419::-;;10251:2;10240:9;10236:18;10228:26;;10300:9;10294:4;10290:20;10286:1;10275:9;10271:17;10264:47;10328:131;10454:4;10328:131;:::i;:::-;10320:139;;10218:248;;;:::o;10472:419::-;;10676:2;10665:9;10661:18;10653:26;;10725:9;10719:4;10715:20;10711:1;10700:9;10696:17;10689:47;10753:131;10879:4;10753:131;:::i;:::-;10745:139;;10643:248;;;:::o;10897:419::-;;11101:2;11090:9;11086:18;11078:26;;11150:9;11144:4;11140:20;11136:1;11125:9;11121:17;11114:47;11178:131;11304:4;11178:131;:::i;:::-;11170:139;;11068:248;;;:::o;11322:419::-;;11526:2;11515:9;11511:18;11503:26;;11575:9;11569:4;11565:20;11561:1;11550:9;11546:17;11539:47;11603:131;11729:4;11603:131;:::i;:::-;11595:139;;11493:248;;;:::o;11747:419::-;;11951:2;11940:9;11936:18;11928:26;;12000:9;11994:4;11990:20;11986:1;11975:9;11971:17;11964:47;12028:131;12154:4;12028:131;:::i;:::-;12020:139;;11918:248;;;:::o;12172:419::-;;12376:2;12365:9;12361:18;12353:26;;12425:9;12419:4;12415:20;12411:1;12400:9;12396:17;12389:47;12453:131;12579:4;12453:131;:::i;:::-;12445:139;;12343:248;;;:::o;12597:419::-;;12801:2;12790:9;12786:18;12778:26;;12850:9;12844:4;12840:20;12836:1;12825:9;12821:17;12814:47;12878:131;13004:4;12878:131;:::i;:::-;12870:139;;12768:248;;;:::o;13022:222::-;;13153:2;13142:9;13138:18;13130:26;;13166:71;13234:1;13223:9;13219:17;13210:6;13166:71;:::i;:::-;13120:124;;;;:::o;13250:214::-;;13377:2;13366:9;13362:18;13354:26;;13390:67;13454:1;13443:9;13439:17;13430:6;13390:67;:::i;:::-;13344:120;;;;:::o;13470:99::-;;13556:5;13550:12;13540:22;;13529:40;;;:::o;13575:169::-;;13693:6;13688:3;13681:19;13733:4;13728:3;13724:14;13709:29;;13671:73;;;;:::o;13750:305::-;;13809:20;13827:1;13809:20;:::i;:::-;13804:25;;13843:20;13861:1;13843:20;:::i;:::-;13838:25;;13997:1;13929:66;13925:74;13922:1;13919:81;13916:2;;;14003:18;;:::i;:::-;13916:2;14047:1;14044;14040:9;14033:16;;13794:261;;;;:::o;14061:96::-;;14127:24;14145:5;14127:24;:::i;:::-;14116:35;;14106:51;;;:::o;14163:90::-;;14240:5;14233:13;14226:21;14215:32;;14205:48;;;:::o;14259:126::-;;14336:42;14329:5;14325:54;14314:65;;14304:81;;;:::o;14391:77::-;;14457:5;14446:16;;14436:32;;;:::o;14474:86::-;;14549:4;14542:5;14538:16;14527:27;;14517:43;;;:::o;14566:307::-;14634:1;14644:113;14658:6;14655:1;14652:13;14644:113;;;14743:1;14738:3;14734:11;14728:18;14724:1;14719:3;14715:11;14708:39;14680:2;14677:1;14673:10;14668:15;;14644:113;;;14775:6;14772:1;14769:13;14766:2;;;14855:1;14846:6;14841:3;14837:16;14830:27;14766:2;14615:258;;;;:::o;14879:320::-;;14960:1;14954:4;14950:12;14940:22;;15007:1;15001:4;14997:12;15028:18;15018:2;;15084:4;15076:6;15072:17;15062:27;;15018:2;15146;15138:6;15135:14;15115:18;15112:38;15109:2;;;15165:18;;:::i;:::-;15109:2;14930:269;;;;:::o;15205:180::-;15253:77;15250:1;15243:88;15350:4;15347:1;15340:15;15374:4;15371:1;15364:15;15391:180;15439:77;15436:1;15429:88;15536:4;15533:1;15526:15;15560:4;15557:1;15550:15;15577:102;;15669:2;15665:7;15660:2;15653:5;15649:14;15645:28;15635:38;;15625:54;;;:::o;15685:122::-;15758:24;15776:5;15758:24;:::i;:::-;15751:5;15748:35;15738:2;;15797:1;15794;15787:12;15738:2;15728:79;:::o;15813:122::-;15886:24;15904:5;15886:24;:::i;:::-;15879:5;15876:35;15866:2;;15925:1;15922;15915:12;15866:2;15856:79;:::o
Swarm Source
ipfs://3b6d5f0505848ef061f2e6bc32d0893b401fff7b9298c1459e83090489209e96
Loading...
Loading
Loading...
Loading
[ 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.