ETH Price: $1,975.25 (+0.34%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

Transaction Hash
Method
Block
From
To
Approve244805932026-02-18 2:00:234 days ago1771380023IN
Ooki: OOKI Token
0 ETH0.000039161.14612573
Transfer244672002026-02-16 5:10:236 days ago1771218623IN
Ooki: OOKI Token
0 ETH0.000014940.26388744
Approve244665902026-02-16 3:07:596 days ago1771211279IN
Ooki: OOKI Token
0 ETH0.000053551.03859607
Transfer244564962026-02-14 17:22:237 days ago1771089743IN
Ooki: OOKI Token
0 ETH0.000031040.54789668
Approve244400682026-02-12 10:21:479 days ago1770891707IN
Ooki: OOKI Token
0 ETH0.000009850.19106083
Approve244352712026-02-11 18:18:2310 days ago1770833903IN
Ooki: OOKI Token
0 ETH0.000022520.4368745
Approve244304032026-02-11 2:00:2311 days ago1770775223IN
Ooki: OOKI Token
0 ETH0.00000520.1524101
Approve244282912026-02-10 18:54:1111 days ago1770749651IN
Ooki: OOKI Token
0 ETH0.000062272.12692431
Approve243803642026-02-04 2:00:3518 days ago1770170435IN
Ooki: OOKI Token
0 ETH0.000041031.20055793
Approve243655732026-02-02 0:24:1120 days ago1769991851IN
Ooki: OOKI Token
0 ETH0.000014740.28591152
Transfer243631592026-02-01 16:18:2320 days ago1769962703IN
Ooki: OOKI Token
0 ETH0.000033650.96705373
Approve243629112026-02-01 15:28:4720 days ago1769959727IN
Ooki: OOKI Token
0 ETH0.000204623.9682923
Transfer243627992026-02-01 15:06:1120 days ago1769958371IN
Ooki: OOKI Token
0 ETH0.000056411.08722629
Transfer243526022026-01-31 4:56:1122 days ago1769835371IN
Ooki: OOKI Token
0 ETH0.000106461.87878018
Transfer243493492026-01-30 18:02:2322 days ago1769796143IN
Ooki: OOKI Token
0 ETH0.000061671.1888458
Transfer243433932026-01-29 22:07:1123 days ago1769724431IN
Ooki: OOKI Token
0 ETH0.000045070.79554549
Transfer243395422026-01-29 9:14:1123 days ago1769678051IN
Ooki: OOKI Token
0 ETH0.000059781.05592251
Approve243357822026-01-28 20:38:2324 days ago1769632703IN
Ooki: OOKI Token
0 ETH0.000008010.15560466
Transfer243330522026-01-28 11:30:4724 days ago1769599847IN
Ooki: OOKI Token
0 ETH0.000003190.09187149
Transfer243323602026-01-28 9:10:5924 days ago1769591459IN
Ooki: OOKI Token
0 ETH0.000043111.08975876
Approve243302132026-01-28 2:00:3525 days ago1769565635IN
Ooki: OOKI Token
0 ETH0.000005670.16595633
Transfer242830722026-01-21 12:09:5931 days ago1768997399IN
Ooki: OOKI Token
0 ETH0.000008720.15394221
Approve242800372026-01-21 2:00:4732 days ago1768960847IN
Ooki: OOKI Token
0 ETH0.000008140.23838307
Approve242766182026-01-20 14:34:4732 days ago1768919687IN
Ooki: OOKI Token
0 ETH0.000015170.29465074
Approve242689332026-01-19 12:50:5933 days ago1768827059IN
Ooki: OOKI Token
0 ETH0.000053791.04482179
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
OokiTokenProxy

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license
/**
 *Submitted for verification at Etherscan.io on 2021-10-18
*/

/**
 * Copyright 2017-2021, OokiDao. All Rights Reserved.
 * Licensed under the Apache License, Version 2.0.
 */
// SPDX-License-Identifier: MIT

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);
            }
        }
    }
}

/**
 * @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;
    }
}

/**
 * @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);
    }
}

contract Upgradeable_0_8 is Ownable {
    address public implementation;
}

contract OokiTokenProxy is Upgradeable_0_8 {
    constructor(address _impl) public {
        replaceImplementation(_impl);
    }

    fallback() external {
        address impl = implementation;
        assembly {
            calldatacopy(0, 0, calldatasize())
            let result := delegatecall(gas(), impl, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            switch result
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    function replaceImplementation(address impl) public onlyOwner {
        require(Address.isContract(impl), "not a contract");
        implementation = impl;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_impl","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"stateMutability":"nonpayable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"impl","type":"address"}],"name":"replaceImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b506040516104fa3803806104fa83398101604081905261002f9161016e565b61003833610047565b61004181610097565b5061019e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b031633146100f65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6101098161016860201b61025c1760201c565b6101465760405162461bcd60e51b815260206004820152600e60248201526d1b9bdd08184818dbdb9d1c9858dd60921b60448201526064016100ed565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b3b151590565b60006020828403121561018057600080fd5b81516001600160a01b038116811461019757600080fd5b9392505050565b61034d806101ad6000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80635c60da1b14610087578063715018a6146100b65780638da5cb5b146100c0578063d69efdc5146100d1578063f2fde38b146100e4575b6001546001600160a01b03163660008037600080366000845af43d6000803e808015610082573d6000f35b3d6000fd5b60015461009a906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b6100be6100f7565b005b6000546001600160a01b031661009a565b6100be6100df3660046102b2565b610136565b6100be6100f23660046102b2565b6101c1565b6000546001600160a01b0316331461012a5760405162461bcd60e51b8152600401610121906102e2565b60405180910390fd5b6101346000610262565b565b6000546001600160a01b031633146101605760405162461bcd60e51b8152600401610121906102e2565b803b61019f5760405162461bcd60e51b815260206004820152600e60248201526d1b9bdd08184818dbdb9d1c9858dd60921b6044820152606401610121565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146101eb5760405162461bcd60e51b8152600401610121906102e2565b6001600160a01b0381166102505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610121565b61025981610262565b50565b3b151590565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156102c457600080fd5b81356001600160a01b03811681146102db57600080fd5b9392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220757e7ec6ce5df149aa288328f60b1df7ae1ec5a524255b756926fecf253b94ad64736f6c634300080900330000000000000000000000005a06e8b21c8362720f6fc5587b22c07c957718e3

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100575760003560e01c80635c60da1b14610087578063715018a6146100b65780638da5cb5b146100c0578063d69efdc5146100d1578063f2fde38b146100e4575b6001546001600160a01b03163660008037600080366000845af43d6000803e808015610082573d6000f35b3d6000fd5b60015461009a906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b6100be6100f7565b005b6000546001600160a01b031661009a565b6100be6100df3660046102b2565b610136565b6100be6100f23660046102b2565b6101c1565b6000546001600160a01b0316331461012a5760405162461bcd60e51b8152600401610121906102e2565b60405180910390fd5b6101346000610262565b565b6000546001600160a01b031633146101605760405162461bcd60e51b8152600401610121906102e2565b803b61019f5760405162461bcd60e51b815260206004820152600e60248201526d1b9bdd08184818dbdb9d1c9858dd60921b6044820152606401610121565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146101eb5760405162461bcd60e51b8152600401610121906102e2565b6001600160a01b0381166102505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610121565b61025981610262565b50565b3b151590565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156102c457600080fd5b81356001600160a01b03811681146102db57600080fd5b9392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220757e7ec6ce5df149aa288328f60b1df7ae1ec5a524255b756926fecf253b94ad64736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000005a06e8b21c8362720f6fc5587b22c07c957718e3

-----Decoded View---------------
Arg [0] : _impl (address): 0x5A06e8b21c8362720f6fC5587B22C07c957718E3

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005a06e8b21c8362720f6fc5587b22c07c957718e3


Deployed Bytecode Sourcemap

11217:783:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11402:14;;-1:-1:-1;;;;;11402:14:0;11470;11387:12;;11451:34;11561:1;11558;11542:14;11539:1;11533:4;11526:5;11513:50;11598:16;11595:1;11592;11577:38;11636:6;11656:68;;;;11775:16;11772:1;11765:27;11656:68;11692:16;11689:1;11682:27;11180:29;;;;;-1:-1:-1;;;;;11180:29:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;11180:29:0;;;;;;;10508:94;;;:::i;:::-;;9857:87;9903:7;9930:6;-1:-1:-1;;;;;9930:6:0;9857:87;;11833:164;;;;;;:::i;:::-;;:::i;10757:192::-;;;;;;:::i;:::-;;:::i;10508:94::-;9903:7;9930:6;-1:-1:-1;;;;;9930:6:0;8813:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;;;;;;;;;10573:21:::1;10591:1;10573:9;:21::i;:::-;10508:94::o:0;11833:164::-;9903:7;9930:6;-1:-1:-1;;;;;9930:6:0;8813:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;1185:20;;11906:51:::1;;;::::0;-1:-1:-1;;;11906:51:0;;1076:2:1;11906:51:0::1;::::0;::::1;1058:21:1::0;1115:2;1095:18;;;1088:30;-1:-1:-1;;;1134:18:1;;;1127:44;1188:18;;11906:51:0::1;874:338:1::0;11906:51:0::1;11968:14;:21:::0;;-1:-1:-1;;;;;;11968:21:0::1;-1:-1:-1::0;;;;;11968:21:0;;;::::1;::::0;;;::::1;::::0;;11833:164::o;10757:192::-;9903:7;9930:6;-1:-1:-1;;;;;9930:6:0;8813:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10846:22:0;::::1;10838:73;;;::::0;-1:-1:-1;;;10838:73:0;;1419:2:1;10838:73:0::1;::::0;::::1;1401:21:1::0;1458:2;1438:18;;;1431:30;1497:34;1477:18;;;1470:62;-1:-1:-1;;;1548:18:1;;;1541:36;1594:19;;10838:73:0::1;1217:402:1::0;10838:73:0::1;10922:19;10932:8;10922:9;:19::i;:::-;10757:192:::0;:::o;862:387::-;1185:20;1233:8;;;862:387::o;10957:173::-;11013:16;11032:6;;-1:-1:-1;;;;;11049:17:0;;;-1:-1:-1;;;;;;11049:17:0;;;;;;11082:40;;11032:6;;;;;;;11082:40;;11013:16;11082:40;11002:128;10957:173;:::o;222:286:1:-;281:6;334:2;322:9;313:7;309:23;305:32;302:52;;;350:1;347;340:12;302:52;376:23;;-1:-1:-1;;;;;428:31:1;;418:42;;408:70;;474:1;471;464:12;408:70;497:5;222:286;-1:-1:-1;;;222:286:1:o;513:356::-;715:2;697:21;;;734:18;;;727:30;793:34;788:2;773:18;;766:62;860:2;845:18;;513:356::o

Swarm Source

ipfs://757e7ec6ce5df149aa288328f60b1df7ae1ec5a524255b756926fecf253b94ad

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Ooki is a powerful and fully decentralized margin trading, borrowing, and lending platform with a ton of features.

Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.