ERC-20
Overview
Max Total Supply
1,000,000,000,000,000 CAGE
Holders
325
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CageToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-11 */ // File: @openzeppelin\contracts\token\ERC20\IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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: node_modules\@openzeppelin\contracts\math\SafeMath.sol /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: node_modules\@openzeppelin\contracts\utils\Address.sol /** * @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 in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin\contracts\token\ERC20\SafeERC20.sol /** * @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 SafeMath for uint256; 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' // solhint-disable-next-line max-line-length 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).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _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 // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: node_modules\@openzeppelin\contracts\GSN\Context.sol /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin\contracts\access\Ownable.sol /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin\contracts\utils\Pausable.sol /** * @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. */ 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 () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view 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: contracts\CageToken.sol contract CageToken is IERC20, Ownable, Pausable { using SafeMath for uint256; using Address for address; using SafeERC20 for IERC20; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name = "Cage Token"; string private _symbol = "CAGE"; uint8 private _decimals = 18; uint256 public TOTAL_SUPPLY = 1000000000000000 ether; constructor() public { _totalSupply = TOTAL_SUPPLY; _balances[msg.sender] = TOTAL_SUPPLY; emit Transfer(address(0), msg.sender, _totalSupply); } function name() external view returns (string memory) { return _name; } function symbol() external view returns (string memory) { return _symbol; } function decimals() external view returns (uint8) { return _decimals; } function totalSupply() public override view returns (uint256) { return _totalSupply; } function balanceOf(address account) public override view returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override whenNotPaused returns (bool) { _transfer(msg.sender, recipient, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override whenNotPaused returns (bool) { _transfer(sender, recipient, amount); _approve( sender, msg.sender, _allowances[sender][msg.sender].sub( amount, "CageToken: TRANSFER_AMOUNT_EXCEEDS_ALLOWANCE" ) ); return true; } function allowance(address owner, address spender) public virtual override view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override whenNotPaused returns (bool) { _approve(msg.sender, spender, amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual whenNotPaused returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual whenNotPaused returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][spender].sub( subtractedValue, "CageToken: DECREASED_ALLOWANCE_BELOW_ZERO" ) ); return true; } function withdraw(address token, uint256 amount) public onlyOwner { IERC20(token).safeTransfer(msg.sender, amount); } function pause() public onlyOwner whenNotPaused { _pause(); } function unpause() public onlyOwner whenPaused { _unpause(); } function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require( sender != address(0), "CageToken: TRANSFER_FROM_THE_ZERO_ADDRESS" ); require( recipient != address(0), "CageToken: TRANSFER_TO_THE_ZERO_ADDRESS" ); _balances[sender] = _balances[sender].sub( amount, "CageToken: TRANSFER_AMOUNT_EXCEEDS_BALANCE" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "CageToken: APPROVE_FROM_THE_ZERO_ADDRESS"); require(spender != address(0), "CageToken: APPROVE_TO_THE_ZERO_ADDRESS"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } }
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":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052600a60808190526921b0b3b2902a37b5b2b760b11b60a09081526200002d916004919062000145565b50604080518082019091526004808252634341474560e01b60209092019182526200005b9160059162000145565b506006805460ff191660121790556d314dc6448d9338c15b0a000000006007553480156200008857600080fd5b5060006200009562000141565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b191681556007546003819055338083526001602090815260408085208490558051938452519193927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3620001e1565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018857805160ff1916838001178555620001b8565b82800160010185558215620001b8579182015b82811115620001b85782518255916020019190600101906200019b565b50620001c6929150620001ca565b5090565b5b80821115620001c65760008155600101620001cb565b61142180620001f16000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d7146102f9578063a9059cbb14610325578063dd62ed3e14610351578063f2fde38b1461037f578063f3fef3a3146103a557610121565b8063715018a6146102b55780638456cb59146102bd5780638da5cb5b146102c5578063902d55a5146102e957806395d89b41146102f157610121565b8063313ce567116100f4578063313ce5671461023357806339509351146102515780633f4ba83a1461027d5780635c975abb1461028757806370a082311461028f57610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e6103d1565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b038135169060200135610467565b604080519115158252519081900360200190f35b6101eb6104ce565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b038135811691602081013590911690604001356104d4565b61023b61058e565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b038135169060200135610597565b61028561061f565b005b6101cf6106d6565b6101eb600480360360208110156102a557600080fd5b50356001600160a01b03166106e6565b610285610701565b6102856107a3565b6102cd610855565b604080516001600160a01b039092168252519081900360200190f35b6101eb610864565b61012e61086a565b6101cf6004803603604081101561030f57600080fd5b506001600160a01b0381351690602001356108cb565b6101cf6004803603604081101561033b57600080fd5b506001600160a01b03813516906020013561096b565b6101eb6004803603604081101561036757600080fd5b506001600160a01b03813581169160200135166109c9565b6102856004803603602081101561039557600080fd5b50356001600160a01b03166109f4565b610285600480360360408110156103bb57600080fd5b506001600160a01b038135169060200135610aec565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b60008054600160a01b900460ff16156104ba576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104c5338484610b5c565b50600192915050565b60035490565b60008054600160a01b900460ff1615610527576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610532848484610c48565b610584843361057f856040518060600160405280602c815260200161125f602c91396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610d9a565b610b5c565b5060019392505050565b60065460ff1690565b60008054600160a01b900460ff16156105ea576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526002602090815260408083206001600160a01b03881684529091529020546104c59190859061057f9086610e31565b610627610e92565b6000546001600160a01b03908116911614610677576040805162461bcd60e51b8152602060048201819052602482015260008051602061134f833981519152604482015290519081900360640190fd5b600054600160a01b900460ff166106cc576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6106d4610e96565b565b600054600160a01b900460ff1690565b6001600160a01b031660009081526001602052604090205490565b610709610e92565b6000546001600160a01b03908116911614610759576040805162461bcd60e51b8152602060048201819052602482015260008051602061134f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6107ab610e92565b6000546001600160a01b039081169116146107fb576040805162461bcd60e51b8152602060048201819052602482015260008051602061134f833981519152604482015290519081900360640190fd5b600054600160a01b900460ff161561084d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106d4610f3e565b6000546001600160a01b031690565b60075481565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045d5780601f106104325761010080835404028352916020019161045d565b60008054600160a01b900460ff161561091e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104c5338461057f856040518060600160405280602981526020016112b1602991393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610d9a565b60008054600160a01b900460ff16156109be576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104c5338484610c48565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6109fc610e92565b6000546001600160a01b03908116911614610a4c576040805162461bcd60e51b8152602060048201819052602482015260008051602061134f833981519152604482015290519081900360640190fd5b6001600160a01b038116610a915760405162461bcd60e51b815260040180806020018281038252602681526020018061128b6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610af4610e92565b6000546001600160a01b03908116911614610b44576040805162461bcd60e51b8152602060048201819052602482015260008051602061134f833981519152604482015290519081900360640190fd5b610b586001600160a01b0383163383610fcc565b5050565b6001600160a01b038316610ba15760405162461bcd60e51b81526004018080602001828103825260288152602001806112da6028913960400191505060405180910390fd5b6001600160a01b038216610be65760405162461bcd60e51b81526004018080602001828103825260268152602001806113296026913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610c8d5760405162461bcd60e51b81526004018080602001828103825260298152602001806113c36029913960400191505060405180910390fd5b6001600160a01b038216610cd25760405162461bcd60e51b81526004018080602001828103825260278152602001806113026027913960400191505060405180910390fd5b610d0f816040518060600160405280602a815260200161136f602a91396001600160a01b0386166000908152600160205260409020549190610d9a565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610d3e9082610e31565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610e295760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610dee578181015183820152602001610dd6565b50505050905090810190601f168015610e1b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610e8b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b600054600160a01b900460ff16610eeb576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610f21610e92565b604080516001600160a01b039092168252519081900360200190a1565b600054600160a01b900460ff1615610f90576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f21610e92565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261101e908490611023565b505050565b6060611078826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110d49092919063ffffffff16565b80519091501561101e5780806020019051602081101561109757600080fd5b505161101e5760405162461bcd60e51b815260040180806020018281038252602a815260200180611399602a913960400191505060405180910390fd5b60606110e384846000856110eb565b949350505050565b60606110f685611258565b611147576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106111865780518252601f199092019160209182019101611167565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146111e8576040519150601f19603f3d011682016040523d82523d6000602084013e6111ed565b606091505b509150915081156112015791506110e39050565b8051156112115780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315610dee578181015183820152602001610dd6565b3b15159056fe43616765546f6b656e3a205452414e534645525f414d4f554e545f455843454544535f414c4c4f57414e43454f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737343616765546f6b656e3a204445435245415345445f414c4c4f57414e43455f42454c4f575f5a45524f43616765546f6b656e3a20415050524f56455f46524f4d5f5448455f5a45524f5f4144445245535343616765546f6b656e3a205452414e534645525f544f5f5448455f5a45524f5f4144445245535343616765546f6b656e3a20415050524f56455f544f5f5448455f5a45524f5f414444524553534f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657243616765546f6b656e3a205452414e534645525f414d4f554e545f455843454544535f42414c414e43455361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656443616765546f6b656e3a205452414e534645525f46524f4d5f5448455f5a45524f5f41444452455353a26469706673582212207eb53ac3bd4d2a6337ad0906469514606dd946c747c19d72f74609c0bf46d4a664736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d7146102f9578063a9059cbb14610325578063dd62ed3e14610351578063f2fde38b1461037f578063f3fef3a3146103a557610121565b8063715018a6146102b55780638456cb59146102bd5780638da5cb5b146102c5578063902d55a5146102e957806395d89b41146102f157610121565b8063313ce567116100f4578063313ce5671461023357806339509351146102515780633f4ba83a1461027d5780635c975abb1461028757806370a082311461028f57610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e6103d1565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b038135169060200135610467565b604080519115158252519081900360200190f35b6101eb6104ce565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b038135811691602081013590911690604001356104d4565b61023b61058e565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b038135169060200135610597565b61028561061f565b005b6101cf6106d6565b6101eb600480360360208110156102a557600080fd5b50356001600160a01b03166106e6565b610285610701565b6102856107a3565b6102cd610855565b604080516001600160a01b039092168252519081900360200190f35b6101eb610864565b61012e61086a565b6101cf6004803603604081101561030f57600080fd5b506001600160a01b0381351690602001356108cb565b6101cf6004803603604081101561033b57600080fd5b506001600160a01b03813516906020013561096b565b6101eb6004803603604081101561036757600080fd5b506001600160a01b03813581169160200135166109c9565b6102856004803603602081101561039557600080fd5b50356001600160a01b03166109f4565b610285600480360360408110156103bb57600080fd5b506001600160a01b038135169060200135610aec565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b60008054600160a01b900460ff16156104ba576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104c5338484610b5c565b50600192915050565b60035490565b60008054600160a01b900460ff1615610527576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610532848484610c48565b610584843361057f856040518060600160405280602c815260200161125f602c91396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610d9a565b610b5c565b5060019392505050565b60065460ff1690565b60008054600160a01b900460ff16156105ea576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526002602090815260408083206001600160a01b03881684529091529020546104c59190859061057f9086610e31565b610627610e92565b6000546001600160a01b03908116911614610677576040805162461bcd60e51b8152602060048201819052602482015260008051602061134f833981519152604482015290519081900360640190fd5b600054600160a01b900460ff166106cc576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6106d4610e96565b565b600054600160a01b900460ff1690565b6001600160a01b031660009081526001602052604090205490565b610709610e92565b6000546001600160a01b03908116911614610759576040805162461bcd60e51b8152602060048201819052602482015260008051602061134f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6107ab610e92565b6000546001600160a01b039081169116146107fb576040805162461bcd60e51b8152602060048201819052602482015260008051602061134f833981519152604482015290519081900360640190fd5b600054600160a01b900460ff161561084d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106d4610f3e565b6000546001600160a01b031690565b60075481565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045d5780601f106104325761010080835404028352916020019161045d565b60008054600160a01b900460ff161561091e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104c5338461057f856040518060600160405280602981526020016112b1602991393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610d9a565b60008054600160a01b900460ff16156109be576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104c5338484610c48565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6109fc610e92565b6000546001600160a01b03908116911614610a4c576040805162461bcd60e51b8152602060048201819052602482015260008051602061134f833981519152604482015290519081900360640190fd5b6001600160a01b038116610a915760405162461bcd60e51b815260040180806020018281038252602681526020018061128b6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610af4610e92565b6000546001600160a01b03908116911614610b44576040805162461bcd60e51b8152602060048201819052602482015260008051602061134f833981519152604482015290519081900360640190fd5b610b586001600160a01b0383163383610fcc565b5050565b6001600160a01b038316610ba15760405162461bcd60e51b81526004018080602001828103825260288152602001806112da6028913960400191505060405180910390fd5b6001600160a01b038216610be65760405162461bcd60e51b81526004018080602001828103825260268152602001806113296026913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610c8d5760405162461bcd60e51b81526004018080602001828103825260298152602001806113c36029913960400191505060405180910390fd5b6001600160a01b038216610cd25760405162461bcd60e51b81526004018080602001828103825260278152602001806113026027913960400191505060405180910390fd5b610d0f816040518060600160405280602a815260200161136f602a91396001600160a01b0386166000908152600160205260409020549190610d9a565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610d3e9082610e31565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610e295760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610dee578181015183820152602001610dd6565b50505050905090810190601f168015610e1b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610e8b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b600054600160a01b900460ff16610eeb576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610f21610e92565b604080516001600160a01b039092168252519081900360200190a1565b600054600160a01b900460ff1615610f90576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f21610e92565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261101e908490611023565b505050565b6060611078826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110d49092919063ffffffff16565b80519091501561101e5780806020019051602081101561109757600080fd5b505161101e5760405162461bcd60e51b815260040180806020018281038252602a815260200180611399602a913960400191505060405180910390fd5b60606110e384846000856110eb565b949350505050565b60606110f685611258565b611147576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106111865780518252601f199092019160209182019101611167565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146111e8576040519150601f19603f3d011682016040523d82523d6000602084013e6111ed565b606091505b509150915081156112015791506110e39050565b8051156112115780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315610dee578181015183820152602001610dd6565b3b15159056fe43616765546f6b656e3a205452414e534645525f414d4f554e545f455843454544535f414c4c4f57414e43454f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737343616765546f6b656e3a204445435245415345445f414c4c4f57414e43455f42454c4f575f5a45524f43616765546f6b656e3a20415050524f56455f46524f4d5f5448455f5a45524f5f4144445245535343616765546f6b656e3a205452414e534645525f544f5f5448455f5a45524f5f4144445245535343616765546f6b656e3a20415050524f56455f544f5f5448455f5a45524f5f414444524553534f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657243616765546f6b656e3a205452414e534645525f414d4f554e545f455843454544535f42414c414e43455361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656443616765546f6b656e3a205452414e534645525f46524f4d5f5448455f5a45524f5f41444452455353a26469706673582212207eb53ac3bd4d2a6337ad0906469514606dd946c747c19d72f74609c0bf46d4a664736f6c634300060c0033
Deployed Bytecode Sourcemap
23416:4469:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24099:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25547:231;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25547:231:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;24382:100;;;:::i;:::-;;;;;;;;;;;;;;;;24862:468;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24862:468:0;;;;;;;;;;;;;;;;;:::i;24289:85::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25786:319;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25786:319:0;;;;;;;;:::i;26766:76::-;;;:::i;:::-;;22202:78;;;:::i;24490:119::-;;;;;;;;;;;;;;;;-1:-1:-1;24490:119:0;-1:-1:-1;;;;;24490:119:0;;:::i;20607:148::-;;;:::i;26683:75::-;;;:::i;19965:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;19965:79:0;;;;;;;;;;;;;;23853:52;;;:::i;24192:89::-;;;:::i;26113:423::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26113:423:0;;;;;;;;:::i;24617:237::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24617:237:0;;;;;;;;:::i;25338:201::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25338:201:0;;;;;;;;;;:::i;20910:244::-;;;;;;;;;;;;;;;;-1:-1:-1;20910:244:0;-1:-1:-1;;;;;20910:244:0;;:::i;26544:131::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26544:131:0;;;;;;;;:::i;24099:85::-;24171:5;24164:12;;;;;;;;-1:-1:-1;;24164:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24138:13;;24164:12;;24171:5;;24164:12;;24171:5;24164:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24099:85;:::o;25547:231::-;25689:4;22520:7;;-1:-1:-1;;;22520:7:0;;;;22519:8;22511:37;;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;;;;25711::::1;25720:10;25732:7;25741:6;25711:8;:37::i;:::-;-1:-1:-1::0;25766:4:0::1;25547:231:::0;;;;:::o;24382:100::-;24462:12;;24382:100;:::o;24862:468::-;25016:4;22520:7;;-1:-1:-1;;;22520:7:0;;;;22519:8;22511:37;;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;;;;25033:36:::1;25043:6;25051:9;25062:6;25033:9;:36::i;:::-;25080:220;25103:6;25124:10;25149:140;25203:6;25149:140;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;25149:19:0;::::1;;::::0;;;:11:::1;:19;::::0;;;;;;;25169:10:::1;25149:31:::0;;;;;;;;;:140;:35:::1;:140::i;:::-;25080:8;:220::i;:::-;-1:-1:-1::0;25318:4:0::1;24862:468:::0;;;;;:::o;24289:85::-;24357:9;;;;24289:85;:::o;25786:319::-;25924:4;22520:7;;-1:-1:-1;;;22520:7:0;;;;22519:8;22511:37;;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;;;;25969:10:::1;26016:23;::::0;;;:11:::1;:23;::::0;;;;;;;-1:-1:-1;;;;;26016:32:0;::::1;::::0;;;;;;;;25946:129:::1;::::0;25969:10;25994:7;;26016:48:::1;::::0;26053:10;26016:36:::1;:48::i;26766:76::-:0;20187:12;:10;:12::i;:::-;20177:6;;-1:-1:-1;;;;;20177:6:0;;;:22;;;20169:67;;;;;-1:-1:-1;;;20169:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20169:67:0;;;;;;;;;;;;;;;22796:7:::1;::::0;-1:-1:-1;;;22796:7:0;::::1;;;22788:40;;;::::0;;-1:-1:-1;;;22788:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;22788:40:0;;;;;;;;;;;;;::::1;;26824:10:::2;:8;:10::i;:::-;26766:76::o:0;22202:78::-;22241:4;22265:7;-1:-1:-1;;;22265:7:0;;;;;22202:78::o;24490:119::-;-1:-1:-1;;;;;24583:18:0;24556:7;24583:18;;;:9;:18;;;;;;;24490:119::o;20607:148::-;20187:12;:10;:12::i;:::-;20177:6;;-1:-1:-1;;;;;20177:6:0;;;:22;;;20169:67;;;;;-1:-1:-1;;;20169:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20169:67:0;;;;;;;;;;;;;;;20714:1:::1;20698:6:::0;;20677:40:::1;::::0;-1:-1:-1;;;;;20698:6:0;;::::1;::::0;20677:40:::1;::::0;20714:1;;20677:40:::1;20745:1;20728:19:::0;;-1:-1:-1;;;;;;20728:19:0::1;::::0;;20607:148::o;26683:75::-;20187:12;:10;:12::i;:::-;20177:6;;-1:-1:-1;;;;;20177:6:0;;;:22;;;20169:67;;;;;-1:-1:-1;;;20169:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20169:67:0;;;;;;;;;;;;;;;22520:7:::1;::::0;-1:-1:-1;;;22520:7:0;::::1;;;22519:8;22511:37;;;::::0;;-1:-1:-1;;;22511:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;;::::1;;26742:8:::2;:6;:8::i;19965:79::-:0;20003:7;20030:6;-1:-1:-1;;;;;20030:6:0;19965:79;:::o;23853:52::-;;;;:::o;24192:89::-;24266:7;24259:14;;;;;;;;-1:-1:-1;;24259:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24233:13;;24259:14;;24266:7;;24259:14;;24266:7;24259:14;;;;;;;;;;;;;;;;;;;;;;;;26113:423;26256:4;22520:7;;-1:-1:-1;;;22520:7:0;;;;22519:8;22511:37;;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;;;;26278:228:::1;26301:10;26326:7;26348:147;26403:15;26348:147;;;;;;;;;;;;;;;;;26360:10;26348:23;::::0;;;:11:::1;:23;::::0;;;;;;;-1:-1:-1;;;;;26348:32:0;::::1;::::0;;;;;;;;;:147;:36:::1;:147::i;24617:237::-:0;24762:4;22520:7;;-1:-1:-1;;;22520:7:0;;;;22519:8;22511:37;;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;;;;24784:40:::1;24794:10;24806:9;24817:6;24784:9;:40::i;25338:201::-:0;-1:-1:-1;;;;;25504:18:0;;;25472:7;25504:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25338:201::o;20910:244::-;20187:12;:10;:12::i;:::-;20177:6;;-1:-1:-1;;;;;20177:6:0;;;:22;;;20169:67;;;;;-1:-1:-1;;;20169:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20169:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20999:22:0;::::1;20991:73;;;;-1:-1:-1::0;;;20991:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21101:6;::::0;;21080:38:::1;::::0;-1:-1:-1;;;;;21080:38:0;;::::1;::::0;21101:6;::::1;::::0;21080:38:::1;::::0;::::1;21129:6;:17:::0;;-1:-1:-1;;;;;;21129:17:0::1;-1:-1:-1::0;;;;;21129:17:0;;;::::1;::::0;;;::::1;::::0;;20910:244::o;26544:131::-;20187:12;:10;:12::i;:::-;20177:6;;-1:-1:-1;;;;;20177:6:0;;;:22;;;20169:67;;;;;-1:-1:-1;;;20169:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20169:67:0;;;;;;;;;;;;;;;26621:46:::1;-1:-1:-1::0;;;;;26621:26:0;::::1;26648:10;26660:6:::0;26621:26:::1;:46::i;:::-;26544:131:::0;;:::o;27494:388::-;-1:-1:-1;;;;;27630:19:0;;27622:72;;;;-1:-1:-1;;;27622:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27713:21:0;;27705:72;;;;-1:-1:-1;;;27705:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27790:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27842:32;;;;;;;;;;;;;;;;;27494:388;;;:::o;26850:636::-;-1:-1:-1;;;;;27004:20:0;;26982:111;;;;-1:-1:-1;;;26982:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27126:23:0;;27104:112;;;;-1:-1:-1;;;27104:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27249;27285:6;27249:112;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27249:17:0;;;;;;:9;:17;;;;;;;:112;:21;:112::i;:::-;-1:-1:-1;;;;;27229:17:0;;;;;;;:9;:17;;;;;;:132;;;;27395:20;;;;;;;:32;;27420:6;27395:24;:32::i;:::-;-1:-1:-1;;;;;27372:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;27443:35;;;;;;;27372:20;;27443:35;;;;;;;;;;;;;26850:636;;;:::o;4648:192::-;4734:7;4770:12;4762:6;;;;4754:29;;;;-1:-1:-1;;;4754:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4806:5:0;;;4648:192::o;3745:181::-;3803:7;3835:5;;;3859:6;;;;3851:46;;;;;-1:-1:-1;;;3851:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3917:1;3745:181;-1:-1:-1;;;3745:181:0:o;18548:106::-;18636:10;18548:106;:::o;23251:120::-;22796:7;;-1:-1:-1;;;22796:7:0;;;;22788:40;;;;;-1:-1:-1;;;22788:40:0;;;;;;;;;;;;-1:-1:-1;;;22788:40:0;;;;;;;;;;;;;;;23320:5:::1;23310:15:::0;;-1:-1:-1;;;;23310:15:0::1;::::0;;23341:22:::1;23350:12;:10;:12::i;:::-;23341:22;::::0;;-1:-1:-1;;;;;23341:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;23251:120::o:0;22992:118::-;22520:7;;-1:-1:-1;;;22520:7:0;;;;22519:8;22511:37;;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;-1:-1:-1;;;22511:37:0;;;;;;;;;;;;;;;23052:7:::1;:14:::0;;-1:-1:-1;;;;23052:14:0::1;-1:-1:-1::0;;;23052:14:0::1;::::0;;23082:20:::1;23089:12;:10;:12::i;14861:177::-:0;14971:58;;;-1:-1:-1;;;;;14971:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14971:58:0;-1:-1:-1;;;14971:58:0;;;14944:86;;14964:5;;14944:19;:86::i;:::-;14861:177;;;:::o;17166:761::-;17590:23;17616:69;17644:4;17616:69;;;;;;;;;;;;;;;;;17624:5;-1:-1:-1;;;;;17616:27:0;;;:69;;;;;:::i;:::-;17700:17;;17590:95;;-1:-1:-1;17700:21:0;17696:224;;17842:10;17831:30;;;;;;;;;;;;;;;-1:-1:-1;17831:30:0;17823:85;;;;-1:-1:-1;;;17823:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11873:196;11976:12;12008:53;12031:6;12039:4;12045:1;12048:12;12008:22;:53::i;:::-;12001:60;11873:196;-1:-1:-1;;;;11873:196:0:o;13250:979::-;13380:12;13413:18;13424:6;13413:10;:18::i;:::-;13405:60;;;;;-1:-1:-1;;;13405:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13539:12;13553:23;13580:6;-1:-1:-1;;;;;13580:11:0;13600:8;13611:4;13580:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;13580:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13538:78;;;;13631:7;13627:595;;;13662:10;-1:-1:-1;13655:17:0;;-1:-1:-1;13655:17:0;13627:595;13776:17;;:21;13772:439;;14039:10;14033:17;14100:15;14087:10;14083:2;14079:19;14072:44;13987:148;14175:20;;-1:-1:-1;;;14175:20:0;;;;;;;;;;;;;;;;;14182:12;;14175:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8955:422;9322:20;9361:8;;;8955:422::o
Swarm Source
ipfs://7eb53ac3bd4d2a6337ad0906469514606dd946c747c19d72f74609c0bf46d4a6
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.