Source Code
Latest 16 from a total of 16 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Deposit For Burn | 144488721 | 13 days ago | IN | 0 ETH | 0.000000004791 | ||||
| Deposit For Burn | 144293462 | 18 days ago | IN | 0 ETH | 0.000000017236 | ||||
| Deposit For Burn | 144161309 | 21 days ago | IN | 0 ETH | 0.00000001746 | ||||
| Deposit For Burn | 144064898 | 23 days ago | IN | 0 ETH | 0.000000097586 | ||||
| Transfer Ownersh... | 144004477 | 25 days ago | IN | 0 ETH | 0.000000004535 | ||||
| Deposit For Burn | 143975760 | 25 days ago | IN | 0 ETH | 0.000000018229 | ||||
| Deposit For Burn | 143972436 | 25 days ago | IN | 0 ETH | 0.000000018405 | ||||
| Deposit For Burn | 143971783 | 25 days ago | IN | 0 ETH | 0.000000018075 | ||||
| Deposit For Burn | 143971744 | 25 days ago | IN | 0 ETH | 0.000000017833 | ||||
| Deposit For Burn | 143971737 | 25 days ago | IN | 0 ETH | 0.000000017889 | ||||
| Deposit For Burn | 143971715 | 25 days ago | IN | 0 ETH | 0.000000017835 | ||||
| Deposit For Burn | 143971705 | 25 days ago | IN | 0 ETH | 0.000000017823 | ||||
| Deposit For Burn | 143970660 | 25 days ago | IN | 0 ETH | 0.000000017942 | ||||
| Deposit For Burn | 143970653 | 25 days ago | IN | 0 ETH | 0.000000019579 | ||||
| Set Tx Fee | 143749973 | 31 days ago | IN | 0 ETH | 0.000000023659 | ||||
| Set Chid To Doma... | 143749958 | 31 days ago | IN | 0 ETH | 0.000000023944 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CircleBridgeProxyV2
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./FeeOperator.sol";
import "../interfaces/ICircleBridge.sol";
import "../safeguard/Governor.sol";
import "../safeguard/Pauser.sol";
contract CircleBridgeProxyV2 is FeeOperator, Governor, Pauser, ReentrancyGuard {
using SafeERC20 for IERC20;
address public immutable circleBridge;
uint32 public feePercGlobal; //in 1e6
// chainId => feePercOverride, support override fee perc by dst chain
mapping(uint64 => uint32) public feePercOverride;
/// per dest chain id executor fee in this chain's USDC token
mapping(uint64 => uint256) public dstTxFee;
// 0 is regarded as not registered. Set to a negative value if target domain is actually 0.
mapping(uint64 => int32) public chidToDomain;
event FeePercUpdated(uint64[] chainIds, uint32[] feePercs);
event TxFeeUpdated(uint64[] chainIds, uint256[] fees);
event ChidToDomainUpdated(uint64[] chainIds, int32[] domains);
event Deposited(
address sender,
bytes32 recipient,
uint64 dstChid,
uint256 amount,
uint256 txFee,
uint256 percFee,
uint32 minFinalityThreshold
);
constructor(address _circleBridge, address _feeCollector) FeeOperator(_feeCollector) {
circleBridge = _circleBridge;
}
function depositForBurn(
uint256 _amount,
uint64 _dstChid,
bytes32 _mintRecipient,
address _burnToken,
uint256 _maxFee,
uint32 _minFinalityThreshold
) external nonReentrant whenNotPaused {
int32 dstDomain = chidToDomain[_dstChid];
require(dstDomain != 0, "dst domain not registered");
if (dstDomain < 0) {
dstDomain = 0; // a negative value indicates the target domain is 0 actually.
}
(uint256 fee, uint256 txFee, uint256 percFee) = totalFee(_amount, _dstChid);
require(_amount > fee, "fee not covered");
IERC20(_burnToken).safeTransferFrom(msg.sender, address(this), _amount);
uint256 bridgeAmt = _amount - fee;
IERC20(_burnToken).safeIncreaseAllowance(circleBridge, bridgeAmt);
ICircleBridge(circleBridge).depositForBurn(bridgeAmt, uint32(dstDomain), _mintRecipient, _burnToken, bytes32(0), _maxFee, _minFinalityThreshold);
IERC20(_burnToken).safeApprove(circleBridge, 0);
emit Deposited(msg.sender, _mintRecipient, _dstChid, _amount, txFee, percFee, _minFinalityThreshold);
}
function totalFee(uint256 _amount, uint64 _dstChid)
public
view
returns (
uint256 _fee,
uint256 _txFee,
uint256 _percFee
)
{
uint32 feePerc = feePercOverride[_dstChid];
if (feePerc == 0) {
feePerc = feePercGlobal;
}
_txFee = dstTxFee[_dstChid];
_percFee = (_amount * feePerc) / 1e6;
_fee = _txFee + _percFee;
}
function setFeePerc(uint64[] calldata _chainIds, uint32[] calldata _feePercs) external onlyGovernor {
require(_chainIds.length == _feePercs.length, "length mismatch");
for (uint256 i = 0; i < _chainIds.length; i++) {
require(_feePercs[i] < 1e6, "fee percentage too large");
if (_chainIds[i] == 0) {
feePercGlobal = _feePercs[i];
} else {
feePercOverride[_chainIds[i]] = _feePercs[i];
}
}
emit FeePercUpdated(_chainIds, _feePercs);
}
function setTxFee(uint64[] calldata _chainIds, uint256[] calldata _fees) external onlyGovernor {
require(_chainIds.length == _fees.length, "length mismatch");
for (uint256 i = 0; i < _chainIds.length; i++) {
dstTxFee[_chainIds[i]] = _fees[i];
}
emit TxFeeUpdated(_chainIds, _fees);
}
function setChidToDomain(uint64[] calldata _chainIds, int32[] calldata _domains) external onlyGovernor {
require(_chainIds.length == _domains.length, "length mismatch");
for (uint256 i = 0; i < _chainIds.length; i++) {
chidToDomain[_chainIds[i]] = _domains[i];
}
emit ChidToDomainUpdated(_chainIds, _domains);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.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.
*/
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());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
/**
* @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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../../../utils/Address.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 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");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://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);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./FeeOperator.sol";
import "../interfaces/ICircleBridge.sol";
import "../safeguard/Governor.sol";
import "../safeguard/Pauser.sol";
contract CircleBridgeProxy is FeeOperator, Governor, Pauser, ReentrancyGuard {
using SafeERC20 for IERC20;
address public immutable circleBridge;
uint32 public feePercGlobal; //in 1e6
// chainId => feePercOverride, support override fee perc by dst chain
mapping(uint64 => uint32) public feePercOverride;
/// per dest chain id executor fee in this chain's USDC token
mapping(uint64 => uint256) public dstTxFee;
// 0 is regarded as not registered. Set to a negative value if target domain is actually 0.
mapping(uint64 => int32) public chidToDomain;
event FeePercUpdated(uint64[] chainIds, uint32[] feePercs);
event TxFeeUpdated(uint64[] chainIds, uint256[] fees);
event ChidToDomainUpdated(uint64[] chainIds, int32[] domains);
event Deposited(
address sender,
bytes32 recipient,
uint64 dstChid,
uint256 amount,
uint256 txFee,
uint256 percFee,
uint64 nonce
);
constructor(address _circleBridge, address _feeCollector) FeeOperator(_feeCollector) {
circleBridge = _circleBridge;
}
function depositForBurn(
uint256 _amount,
uint64 _dstChid,
bytes32 _mintRecipient,
address _burnToken
) external nonReentrant whenNotPaused returns (uint64 _nonce) {
int32 dstDomain = chidToDomain[_dstChid];
require(dstDomain != 0, "dst domain not registered");
if (dstDomain < 0) {
dstDomain = 0; // a negative value indicates the target domain is 0 actually.
}
(uint256 fee, uint256 txFee, uint256 percFee) = totalFee(_amount, _dstChid);
require(_amount > fee, "fee not covered");
IERC20(_burnToken).safeTransferFrom(msg.sender, address(this), _amount);
uint256 bridgeAmt = _amount - fee;
IERC20(_burnToken).safeIncreaseAllowance(circleBridge, bridgeAmt);
_nonce = ICircleBridge(circleBridge).depositForBurn(bridgeAmt, uint32(dstDomain), _mintRecipient, _burnToken);
IERC20(_burnToken).safeApprove(circleBridge, 0);
emit Deposited(msg.sender, _mintRecipient, _dstChid, _amount, txFee, percFee, _nonce);
}
function totalFee(uint256 _amount, uint64 _dstChid)
public
view
returns (
uint256 _fee,
uint256 _txFee,
uint256 _percFee
)
{
uint32 feePerc = feePercOverride[_dstChid];
if (feePerc == 0) {
feePerc = feePercGlobal;
}
_txFee = dstTxFee[_dstChid];
_percFee = (_amount * feePerc) / 1e6;
_fee = _txFee + _percFee;
}
function setFeePerc(uint64[] calldata _chainIds, uint32[] calldata _feePercs) external onlyGovernor {
require(_chainIds.length == _feePercs.length, "length mismatch");
for (uint256 i = 0; i < _chainIds.length; i++) {
require(_feePercs[i] < 1e6, "fee percentage too large");
if (_chainIds[i] == 0) {
feePercGlobal = _feePercs[i];
} else {
feePercOverride[_chainIds[i]] = _feePercs[i];
}
}
emit FeePercUpdated(_chainIds, _feePercs);
}
function setTxFee(uint64[] calldata _chainIds, uint256[] calldata _fees) external onlyGovernor {
require(_chainIds.length == _fees.length, "length mismatch");
for (uint256 i = 0; i < _chainIds.length; i++) {
dstTxFee[_chainIds[i]] = _fees[i];
}
emit TxFeeUpdated(_chainIds, _fees);
}
function setChidToDomain(uint64[] calldata _chainIds, int32[] calldata _domains) external onlyGovernor {
require(_chainIds.length == _domains.length, "length mismatch");
for (uint256 i = 0; i < _chainIds.length; i++) {
chidToDomain[_chainIds[i]] = _domains[i];
}
emit ChidToDomainUpdated(_chainIds, _domains);
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "../safeguard/Ownable.sol";
abstract contract FeeOperator is Ownable {
using SafeERC20 for IERC20;
address public feeCollector;
event FeeCollectorUpdated(address from, address to);
modifier onlyFeeCollector() {
require(msg.sender == feeCollector, "not fee collector");
_;
}
constructor(address _feeCollector) {
feeCollector = _feeCollector;
}
function collectFee(address[] calldata _tokens, address _to) external onlyFeeCollector {
for (uint256 i = 0; i < _tokens.length; i++) {
// use zero address to denote native token
if (_tokens[i] == address(0)) {
uint256 bal = address(this).balance;
(bool sent, ) = _to.call{value: bal, gas: 50000}("");
require(sent, "send native failed");
} else {
uint256 balance = IERC20(_tokens[i]).balanceOf(address(this));
IERC20(_tokens[i]).safeTransfer(_to, balance);
}
}
}
function setFeeCollector(address _feeCollector) external onlyOwner {
address oldFeeCollector = feeCollector;
feeCollector = _feeCollector;
emit FeeCollectorUpdated(oldFeeCollector, _feeCollector);
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity >=0.8.0;
interface ICircleBridge {
/**
* @notice Deposits and burns tokens from sender to be minted on destination domain.
* Emits a `DepositForBurn` event.
* @dev reverts if:
* - given burnToken is not supported
* - given destinationDomain has no CircleBridge registered
* - transferFrom() reverts. For example, if sender's burnToken balance or approved allowance
* to this contract is less than `amount`.
* - burn() reverts. For example, if `amount` is 0.
* - MessageTransmitter returns false or reverts.
* @param _amount amount of tokens to burn
* @param _destinationDomain destination domain (ETH = 0, AVAX = 1)
* @param _mintRecipient address of mint recipient on destination domain
* @param _burnToken address of contract to burn deposited tokens, on local domain
* @return _nonce unique nonce reserved by message
*/
function depositForBurn(
uint256 _amount,
uint32 _destinationDomain,
bytes32 _mintRecipient,
address _burnToken
) external returns (uint64 _nonce);
/**
* @notice Deposits and burns tokens from sender to be minted on destination domain.
* Emits a `DepositForBurn` event.
* @dev reverts if:
* - given burnToken is not supported
* - given destinationDomain has no TokenMessenger registered
* - transferFrom() reverts. For example, if sender's burnToken balance or approved allowance
* to this contract is less than `amount`.
* - burn() reverts. For example, if `amount` is 0.
* - maxFee is greater than or equal to `amount`.
* - MessageTransmitterV2#sendMessage reverts.
* @param amount amount of tokens to burn
* @param destinationDomain destination domain to receive message on
* @param mintRecipient address of mint recipient on destination domain
* @param burnToken token to burn `amount` of, on local domain
* @param destinationCaller authorized caller on the destination domain, as bytes32. If equal to bytes32(0),
* any address can broadcast the message.
* @param maxFee maximum fee to pay on the destination domain, specified in units of burnToken
* @param minFinalityThreshold the minimum finality at which a burn message will be attested to.
*/
function depositForBurn(
uint256 amount,
uint32 destinationDomain,
bytes32 mintRecipient,
address burnToken,
bytes32 destinationCaller,
uint256 maxFee,
uint32 minFinalityThreshold
) external;
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.17;
import "./Ownable.sol";
abstract contract Governor is Ownable {
mapping(address => bool) public governors;
event GovernorAdded(address account);
event GovernorRemoved(address account);
modifier onlyGovernor() {
require(isGovernor(msg.sender), "Caller is not governor");
_;
}
constructor() {
_addGovernor(msg.sender);
}
function isGovernor(address _account) public view returns (bool) {
return governors[_account];
}
function addGovernor(address _account) public onlyOwner {
_addGovernor(_account);
}
function removeGovernor(address _account) public onlyOwner {
_removeGovernor(_account);
}
function renounceGovernor() public {
_removeGovernor(msg.sender);
}
function _addGovernor(address _account) private {
require(!isGovernor(_account), "Account is already governor");
governors[_account] = true;
emit GovernorAdded(_account);
}
function _removeGovernor(address _account) private {
require(isGovernor(_account), "Account is not governor");
governors[_account] = false;
emit GovernorRemoved(_account);
}
}// SPDX-License-Identifier: GPL-3.0-only
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.
*
* This adds a normal func that setOwner if _owner is address(0). So we can't allow
* renounceOwnership. So we can support Proxy based upgradable contract
*/
abstract contract Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(msg.sender);
}
/**
* @dev Only to be called by inherit contracts, in their init func called by Proxy
* we require _owner == address(0), which is only possible when it's a delegateCall
* because constructor sets _owner in contract state.
*/
function initOwner() internal {
require(_owner == address(0), "owner already set");
_setOwner(msg.sender);
}
/**
* @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() == msg.sender, "Ownable: caller is not the owner");
_;
}
/**
* @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);
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.17;
import "@openzeppelin/contracts/security/Pausable.sol";
import "./Ownable.sol";
abstract contract Pauser is Ownable, Pausable {
mapping(address => bool) public pausers;
event PauserAdded(address account);
event PauserRemoved(address account);
constructor() {
_addPauser(msg.sender);
}
modifier onlyPauser() {
require(isPauser(msg.sender), "Caller is not pauser");
_;
}
function pause() public onlyPauser {
_pause();
}
function unpause() public onlyPauser {
_unpause();
}
function isPauser(address account) public view returns (bool) {
return pausers[account];
}
function addPauser(address account) public onlyOwner {
_addPauser(account);
}
function removePauser(address account) public onlyOwner {
_removePauser(account);
}
function renouncePauser() public {
_removePauser(msg.sender);
}
function _addPauser(address account) private {
require(!isPauser(account), "Account is already pauser");
pausers[account] = true;
emit PauserAdded(account);
}
function _removePauser(address account) private {
require(isPauser(account), "Account is not pauser");
pausers[account] = false;
emit PauserRemoved(account);
}
}{
"optimizer": {
"enabled": true,
"runs": 800
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_circleBridge","type":"address"},{"internalType":"address","name":"_feeCollector","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64[]","name":"chainIds","type":"uint64[]"},{"indexed":false,"internalType":"int32[]","name":"domains","type":"int32[]"}],"name":"ChidToDomainUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"bytes32","name":"recipient","type":"bytes32"},{"indexed":false,"internalType":"uint64","name":"dstChid","type":"uint64"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"txFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"percFee","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"minFinalityThreshold","type":"uint32"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"FeeCollectorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64[]","name":"chainIds","type":"uint64[]"},{"indexed":false,"internalType":"uint32[]","name":"feePercs","type":"uint32[]"}],"name":"FeePercUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"GovernorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"GovernorRemoved","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":false,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64[]","name":"chainIds","type":"uint64[]"},{"indexed":false,"internalType":"uint256[]","name":"fees","type":"uint256[]"}],"name":"TxFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"addGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"","type":"uint64"}],"name":"chidToDomain","outputs":[{"internalType":"int32","name":"","type":"int32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circleBridge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"address","name":"_to","type":"address"}],"name":"collectFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint64","name":"_dstChid","type":"uint64"},{"internalType":"bytes32","name":"_mintRecipient","type":"bytes32"},{"internalType":"address","name":"_burnToken","type":"address"},{"internalType":"uint256","name":"_maxFee","type":"uint256"},{"internalType":"uint32","name":"_minFinalityThreshold","type":"uint32"}],"name":"depositForBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"","type":"uint64"}],"name":"dstTxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercGlobal","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"","type":"uint64"}],"name":"feePercOverride","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"governors","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isGovernor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"pausers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removePauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renouncePauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"_chainIds","type":"uint64[]"},{"internalType":"int32[]","name":"_domains","type":"int32[]"}],"name":"setChidToDomain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeCollector","type":"address"}],"name":"setFeeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"_chainIds","type":"uint64[]"},{"internalType":"uint32[]","name":"_feePercs","type":"uint32[]"}],"name":"setFeePerc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"_chainIds","type":"uint64[]"},{"internalType":"uint256[]","name":"_fees","type":"uint256[]"}],"name":"setTxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint64","name":"_dstChid","type":"uint64"}],"name":"totalFee","outputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_percFee","type":"uint256"}],"stateMutability":"view","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
60a06040523480156200001157600080fd5b506040516200262c3803806200262c83398101604081905262000034916200028f565b80620000403362000098565b600180546001600160a01b0319166001600160a01b03929092169190911790556200006b33620000e8565b6003805460ff191690556200008033620001b2565b5060016005556001600160a01b0316608052620002c7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811660009081526002602052604090205460ff1615620001575760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920676f7665726e6f72000000000060448201526064015b60405180910390fd5b6001600160a01b038116600081815260026020908152604091829020805460ff1916600117905590519182527fdc5a48d79e2e147530ff63ecdbed5a5a66adb9d5cf339384d5d076da197c40b591015b60405180910390a150565b6001600160a01b03811660009081526004602052604090205460ff16156200021d5760405162461bcd60e51b815260206004820152601960248201527f4163636f756e7420697320616c7265616479207061757365720000000000000060448201526064016200014e565b6001600160a01b038116600081815260046020908152604091829020805460ff1916600117905590519182527f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f89101620001a7565b80516001600160a01b03811681146200028a57600080fd5b919050565b60008060408385031215620002a357600080fd5b620002ae8362000272565b9150620002be6020840162000272565b90509250929050565b608051612334620002f8600039600081816101ce01528181610a9f01528181610b140152610b8001526123346000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806380f51c12116100f9578063e026049c11610097578063ee90fc4011610071578063ee90fc4014610453578063eecdac8814610481578063efcfd8f514610494578063f2fde38b146104a757600080fd5b8063e026049c146103fc578063e3eece2614610404578063e43581b81461042757600080fd5b80638da5cb5b116100d35780638da5cb5b146103b2578063a42dce80146103c3578063ab9341fd146103d6578063c415b95c146103e957600080fd5b806380f51c121461037457806382dc1ec4146103975780638456cb59146103aa57600080fd5b806343530a81116101665780635c975abb116101405780635c975abb1461033b5780636b2c0f55146103465780636ef8d66d146103595780637f975b141461036157600080fd5b806343530a81146102d957806346fbf68e146102ec5780634c9825971461032857600080fd5b80631b286896116101a25780631b286896146102685780633c4a25d0146102965780633e07d172146102ab5780633f4ba83a146102d157600080fd5b806301a67b6b146101c9578063027bcb871461020d5780630bd930b414610243575b600080fd5b6101f07f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b61023061021b366004611e09565b60096020526000908152604090205460030b81565b60405160039190910b8152602001610204565b6006546102539063ffffffff1681565b60405163ffffffff9091168152602001610204565b610288610276366004611e09565b60086020526000908152604090205481565b604051908152602001610204565b6102a96102a4366004611e3b565b6104ba565b005b6102536102b9366004611e09565b60076020526000908152604090205463ffffffff1681565b6102a9610534565b6102a96102e7366004611ea2565b61059d565b6103186102fa366004611e3b565b6001600160a01b031660009081526004602052604090205460ff1690565b6040519015158152602001610204565b6102a9610336366004611ea2565b6106fd565b60035460ff16610318565b6102a9610354366004611e3b565b610874565b6102a96108e6565b6102a961036f366004611f22565b6108ef565b610318610382366004611e3b565b60046020526000908152604090205460ff1681565b6102a96103a5366004611e3b565b610c22565b6102a9610c94565b6000546001600160a01b03166101f0565b6102a96103d1366004611e3b565b610cfb565b6102a96103e4366004611ea2565b610dd2565b6001546101f0906001600160a01b031681565b6102a9611046565b610318610412366004611e3b565b60026020526000908152604090205460ff1681565b610318610435366004611e3b565b6001600160a01b031660009081526002602052604090205460ff1690565b610466610461366004611f81565b61104f565b60408051938452602084019290925290820152606001610204565b6102a961048f366004611e3b565b6110d5565b6102a96104a2366004611fad565b611147565b6102a96104b5366004611e3b565b61137d565b336104cd6000546001600160a01b031690565b6001600160a01b0316146105285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6105318161146b565b50565b3360009081526004602052604090205460ff166105935760405162461bcd60e51b815260206004820152601460248201527f43616c6c6572206973206e6f7420706175736572000000000000000000000000604482015260640161051f565b61059b61152f565b565b3360009081526002602052604090205460ff166105fc5760405162461bcd60e51b815260206004820152601660248201527f43616c6c6572206973206e6f7420676f7665726e6f7200000000000000000000604482015260640161051f565b82811461063d5760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b604482015260640161051f565b60005b838110156106b95782828281811061065a5761065a612001565b905060200201356008600087878581811061067757610677612001565b905060200201602081019061068c9190611e09565b67ffffffffffffffff168152602081019190915260400160002055806106b18161202d565b915050610640565b507f3a331334e3690640b58b9d6889de0e68c9fec44c8e586b0f69eaa013f530e40c848484846040516106ef949392919061208e565b60405180910390a150505050565b3360009081526002602052604090205460ff1661075c5760405162461bcd60e51b815260206004820152601660248201527f43616c6c6572206973206e6f7420676f7665726e6f7200000000000000000000604482015260640161051f565b82811461079d5760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b604482015260640161051f565b60005b8381101561083e578282828181106107ba576107ba612001565b90506020020160208101906107cf9190612105565b600960008787858181106107e5576107e5612001565b90506020020160208101906107fa9190611e09565b67ffffffffffffffff1681526020810191909152604001600020805463ffffffff191663ffffffff92909216919091179055806108368161202d565b9150506107a0565b507f99a427604fce28915eae6edfacfd125c0ed4393b0d54e90002f2ef13f120e4f8848484846040516106ef9493929190612120565b336108876000546001600160a01b031690565b6001600160a01b0316146108dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161051f565b610531816115cb565b61059b336115cb565b6002600554036109415760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161051f565b600260055560035460ff161561098c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161051f565b67ffffffffffffffff851660009081526009602052604081205460030b908190036109f95760405162461bcd60e51b815260206004820152601960248201527f64737420646f6d61696e206e6f74207265676973746572656400000000000000604482015260640161051f565b60008160030b1215610a09575060005b6000806000610a188a8a61104f565b925092509250828a11610a6d5760405162461bcd60e51b815260206004820152600f60248201527f666565206e6f7420636f76657265640000000000000000000000000000000000604482015260640161051f565b610a826001600160a01b03881633308d611684565b6000610a8e848c61217d565b9050610ac46001600160a01b0389167f00000000000000000000000000000000000000000000000000000000000000008361171c565b604051634701287760e11b81526004810182905263ffffffff8087166024830152604482018b90526001600160a01b038a811660648401526000608484015260a483018a905290881660c48301527f00000000000000000000000000000000000000000000000000000000000000001690638e0250ee9060e401600060405180830381600087803b158015610b5857600080fd5b505af1158015610b6c573d6000803e3d6000fd5b50610ba6925050506001600160a01b0389167f000000000000000000000000000000000000000000000000000000000000000060006117ce565b60408051338152602081018b905267ffffffffffffffff8c1681830152606081018d90526080810185905260a0810184905263ffffffff881660c082015290517fc06c6ba014c9a1c360ea913df27641cff38ce7a180c57e2817bc5693a53b1f0c9181900360e00190a150506001600555505050505050505050565b33610c356000546001600160a01b031690565b6001600160a01b031614610c8b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161051f565b610531816118ef565b3360009081526004602052604090205460ff16610cf35760405162461bcd60e51b815260206004820152601460248201527f43616c6c6572206973206e6f7420706175736572000000000000000000000000604482015260640161051f565b61059b6119ac565b33610d0e6000546001600160a01b031690565b6001600160a01b031614610d645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161051f565b600180546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff1983168117909355604080519190921680825260208201939093527f5d16ad41baeb009cd23eb8f6c7cde5c2e0cd5acf4a33926ab488875c37c37f38910160405180910390a15050565b3360009081526002602052604090205460ff16610e315760405162461bcd60e51b815260206004820152601660248201527f43616c6c6572206973206e6f7420676f7665726e6f7200000000000000000000604482015260640161051f565b828114610e725760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b604482015260640161051f565b60005b8381101561101057620f4240838383818110610e9357610e93612001565b9050602002016020810190610ea89190612196565b63ffffffff1610610efb5760405162461bcd60e51b815260206004820152601860248201527f6665652070657263656e7461676520746f6f206c617267650000000000000000604482015260640161051f565b848482818110610f0d57610f0d612001565b9050602002016020810190610f229190611e09565b67ffffffffffffffff16600003610f7957828282818110610f4557610f45612001565b9050602002016020810190610f5a9190612196565b6006805463ffffffff191663ffffffff92909216919091179055610ffe565b828282818110610f8b57610f8b612001565b9050602002016020810190610fa09190612196565b60076000878785818110610fb657610fb6612001565b9050602002016020810190610fcb9190611e09565b67ffffffffffffffff1681526020810191909152604001600020805463ffffffff191663ffffffff929092169190911790555b806110088161202d565b915050610e75565b507f541df5e570cf10ffe04899eebd9eebebd1c54e2bd4af9f24b23fb4a40c6ea00b848484846040516106ef94939291906121b1565b61059b33611a27565b67ffffffffffffffff81166000908152600760205260408120548190819063ffffffff16808203611085575060065463ffffffff165b67ffffffffffffffff85166000908152600860205260409020549250620f42406110b563ffffffff831688612204565b6110bf919061221b565b91506110cb828461223d565b9350509250925092565b336110e86000546001600160a01b031690565b6001600160a01b03161461113e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161051f565b61053181611a27565b6001546001600160a01b031633146111a15760405162461bcd60e51b815260206004820152601160248201527f6e6f742066656520636f6c6c6563746f72000000000000000000000000000000604482015260640161051f565b60005b828110156113775760008484838181106111c0576111c0612001565b90506020020160208101906111d59190611e3b565b6001600160a01b0316036112925760405147906000906001600160a01b0385169061c35090849084818181858888f193505050503d8060008114611235576040519150601f19603f3d011682016040523d82523d6000602084013e61123a565b606091505b505090508061128b5760405162461bcd60e51b815260206004820152601260248201527f73656e64206e6174697665206661696c65640000000000000000000000000000604482015260640161051f565b5050611365565b60008484838181106112a6576112a6612001565b90506020020160208101906112bb9190611e3b565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015611301573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113259190612250565b9050611363838287878681811061133e5761133e612001565b90506020020160208101906113539190611e3b565b6001600160a01b03169190611ae0565b505b8061136f8161202d565b9150506111a4565b50505050565b336113906000546001600160a01b031690565b6001600160a01b0316146113e65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161051f565b6001600160a01b0381166114625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161051f565b61053181611b10565b6001600160a01b03811660009081526002602052604090205460ff16156114d45760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920676f7665726e6f720000000000604482015260640161051f565b6001600160a01b038116600081815260026020908152604091829020805460ff1916600117905590519182527fdc5a48d79e2e147530ff63ecdbed5a5a66adb9d5cf339384d5d076da197c40b591015b60405180910390a150565b60035460ff166115815760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161051f565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b03811660009081526004602052604090205460ff166116335760405162461bcd60e51b815260206004820152601560248201527f4163636f756e74206973206e6f74207061757365720000000000000000000000604482015260640161051f565b6001600160a01b038116600081815260046020908152604091829020805460ff1916905590519182527fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e9101611524565b6040516001600160a01b03808516602483015283166044820152606481018290526113779085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611b6d565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e90604401602060405180830381865afa15801561176d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117919190612250565b61179b919061223d565b6040516001600160a01b03851660248201526044810182905290915061137790859063095ea7b360e01b906064016116b8565b8015806118485750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015611822573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118469190612250565b155b6118ba5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000606482015260840161051f565b6040516001600160a01b0383166024820152604481018290526118ea90849063095ea7b360e01b906064016116b8565b505050565b6001600160a01b03811660009081526004602052604090205460ff16156119585760405162461bcd60e51b815260206004820152601960248201527f4163636f756e7420697320616c72656164792070617573657200000000000000604482015260640161051f565b6001600160a01b038116600081815260046020908152604091829020805460ff1916600117905590519182527f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f89101611524565b60035460ff16156119f25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161051f565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115ae3390565b6001600160a01b03811660009081526002602052604090205460ff16611a8f5760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f7420676f7665726e6f72000000000000000000604482015260640161051f565b6001600160a01b038116600081815260026020908152604091829020805460ff1916905590519182527f1ebe834e73d60a5fec822c1e1727d34bc79f2ad977ed504581cc1822fe20fb5b9101611524565b6040516001600160a01b0383166024820152604481018290526118ea90849063a9059cbb60e01b906064016116b8565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611bc2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c529092919063ffffffff16565b8051909150156118ea5780806020019051810190611be09190612269565b6118ea5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161051f565b6060611c618484600085611c6b565b90505b9392505050565b606082471015611ce35760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161051f565b6001600160a01b0385163b611d3a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161051f565b600080866001600160a01b03168587604051611d5691906122af565b60006040518083038185875af1925050503d8060008114611d93576040519150601f19603f3d011682016040523d82523d6000602084013e611d98565b606091505b5091509150611da8828286611db3565b979650505050505050565b60608315611dc2575081611c64565b825115611dd25782518084602001fd5b8160405162461bcd60e51b815260040161051f91906122cb565b803567ffffffffffffffff81168114611e0457600080fd5b919050565b600060208284031215611e1b57600080fd5b611c6482611dec565b80356001600160a01b0381168114611e0457600080fd5b600060208284031215611e4d57600080fd5b611c6482611e24565b60008083601f840112611e6857600080fd5b50813567ffffffffffffffff811115611e8057600080fd5b6020830191508360208260051b8501011115611e9b57600080fd5b9250929050565b60008060008060408587031215611eb857600080fd5b843567ffffffffffffffff80821115611ed057600080fd5b611edc88838901611e56565b90965094506020870135915080821115611ef557600080fd5b50611f0287828801611e56565b95989497509550505050565b803563ffffffff81168114611e0457600080fd5b60008060008060008060c08789031215611f3b57600080fd5b86359550611f4b60208801611dec565b945060408701359350611f6060608801611e24565b925060808701359150611f7560a08801611f0e565b90509295509295509295565b60008060408385031215611f9457600080fd5b82359150611fa460208401611dec565b90509250929050565b600080600060408486031215611fc257600080fd5b833567ffffffffffffffff811115611fd957600080fd5b611fe586828701611e56565b9094509250611ff8905060208501611e24565b90509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161203f5761203f612017565b5060010190565b8183526000602080850194508260005b858110156120835767ffffffffffffffff61207083611dec565b1687529582019590820190600101612056565b509495945050505050565b6040815260006120a2604083018688612046565b82810360208401528381527f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8411156120da57600080fd5b8360051b80866020840137016020019695505050505050565b8035600381900b8114611e0457600080fd5b60006020828403121561211757600080fd5b611c64826120f3565b604081526000612134604083018688612046565b8281036020848101919091528482528591810160005b868110156121705761215b846120f3565b60030b8252928201929082019060010161214a565b5098975050505050505050565b8181038181111561219057612190612017565b92915050565b6000602082840312156121a857600080fd5b611c6482611f0e565b6040815260006121c5604083018688612046565b8281036020848101919091528482528591810160005b868110156121705763ffffffff6121f185611f0e565b16825292820192908201906001016121db565b808202811582820484141761219057612190612017565b60008261223857634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561219057612190612017565b60006020828403121561226257600080fd5b5051919050565b60006020828403121561227b57600080fd5b81518015158114611c6457600080fd5b60005b838110156122a657818101518382015260200161228e565b50506000910152565b600082516122c181846020870161228b565b9190910192915050565b60208152600082518060208401526122ea81604085016020870161228b565b601f01601f1916919091016040019291505056fea26469706673582212203cbbe91b10ea2397a5c9becf83ca1d093bc4507f3fe1fd27e577f110fa6b3c4b64736f6c6343000811003300000000000000000000000028b5a0e9c621a5badaa536219b3a228c8168cf5d0000000000000000000000004c1806e28cf5a1b364c28344828cb0610d167189
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806380f51c12116100f9578063e026049c11610097578063ee90fc4011610071578063ee90fc4014610453578063eecdac8814610481578063efcfd8f514610494578063f2fde38b146104a757600080fd5b8063e026049c146103fc578063e3eece2614610404578063e43581b81461042757600080fd5b80638da5cb5b116100d35780638da5cb5b146103b2578063a42dce80146103c3578063ab9341fd146103d6578063c415b95c146103e957600080fd5b806380f51c121461037457806382dc1ec4146103975780638456cb59146103aa57600080fd5b806343530a81116101665780635c975abb116101405780635c975abb1461033b5780636b2c0f55146103465780636ef8d66d146103595780637f975b141461036157600080fd5b806343530a81146102d957806346fbf68e146102ec5780634c9825971461032857600080fd5b80631b286896116101a25780631b286896146102685780633c4a25d0146102965780633e07d172146102ab5780633f4ba83a146102d157600080fd5b806301a67b6b146101c9578063027bcb871461020d5780630bd930b414610243575b600080fd5b6101f07f00000000000000000000000028b5a0e9c621a5badaa536219b3a228c8168cf5d81565b6040516001600160a01b0390911681526020015b60405180910390f35b61023061021b366004611e09565b60096020526000908152604090205460030b81565b60405160039190910b8152602001610204565b6006546102539063ffffffff1681565b60405163ffffffff9091168152602001610204565b610288610276366004611e09565b60086020526000908152604090205481565b604051908152602001610204565b6102a96102a4366004611e3b565b6104ba565b005b6102536102b9366004611e09565b60076020526000908152604090205463ffffffff1681565b6102a9610534565b6102a96102e7366004611ea2565b61059d565b6103186102fa366004611e3b565b6001600160a01b031660009081526004602052604090205460ff1690565b6040519015158152602001610204565b6102a9610336366004611ea2565b6106fd565b60035460ff16610318565b6102a9610354366004611e3b565b610874565b6102a96108e6565b6102a961036f366004611f22565b6108ef565b610318610382366004611e3b565b60046020526000908152604090205460ff1681565b6102a96103a5366004611e3b565b610c22565b6102a9610c94565b6000546001600160a01b03166101f0565b6102a96103d1366004611e3b565b610cfb565b6102a96103e4366004611ea2565b610dd2565b6001546101f0906001600160a01b031681565b6102a9611046565b610318610412366004611e3b565b60026020526000908152604090205460ff1681565b610318610435366004611e3b565b6001600160a01b031660009081526002602052604090205460ff1690565b610466610461366004611f81565b61104f565b60408051938452602084019290925290820152606001610204565b6102a961048f366004611e3b565b6110d5565b6102a96104a2366004611fad565b611147565b6102a96104b5366004611e3b565b61137d565b336104cd6000546001600160a01b031690565b6001600160a01b0316146105285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6105318161146b565b50565b3360009081526004602052604090205460ff166105935760405162461bcd60e51b815260206004820152601460248201527f43616c6c6572206973206e6f7420706175736572000000000000000000000000604482015260640161051f565b61059b61152f565b565b3360009081526002602052604090205460ff166105fc5760405162461bcd60e51b815260206004820152601660248201527f43616c6c6572206973206e6f7420676f7665726e6f7200000000000000000000604482015260640161051f565b82811461063d5760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b604482015260640161051f565b60005b838110156106b95782828281811061065a5761065a612001565b905060200201356008600087878581811061067757610677612001565b905060200201602081019061068c9190611e09565b67ffffffffffffffff168152602081019190915260400160002055806106b18161202d565b915050610640565b507f3a331334e3690640b58b9d6889de0e68c9fec44c8e586b0f69eaa013f530e40c848484846040516106ef949392919061208e565b60405180910390a150505050565b3360009081526002602052604090205460ff1661075c5760405162461bcd60e51b815260206004820152601660248201527f43616c6c6572206973206e6f7420676f7665726e6f7200000000000000000000604482015260640161051f565b82811461079d5760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b604482015260640161051f565b60005b8381101561083e578282828181106107ba576107ba612001565b90506020020160208101906107cf9190612105565b600960008787858181106107e5576107e5612001565b90506020020160208101906107fa9190611e09565b67ffffffffffffffff1681526020810191909152604001600020805463ffffffff191663ffffffff92909216919091179055806108368161202d565b9150506107a0565b507f99a427604fce28915eae6edfacfd125c0ed4393b0d54e90002f2ef13f120e4f8848484846040516106ef9493929190612120565b336108876000546001600160a01b031690565b6001600160a01b0316146108dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161051f565b610531816115cb565b61059b336115cb565b6002600554036109415760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161051f565b600260055560035460ff161561098c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161051f565b67ffffffffffffffff851660009081526009602052604081205460030b908190036109f95760405162461bcd60e51b815260206004820152601960248201527f64737420646f6d61696e206e6f74207265676973746572656400000000000000604482015260640161051f565b60008160030b1215610a09575060005b6000806000610a188a8a61104f565b925092509250828a11610a6d5760405162461bcd60e51b815260206004820152600f60248201527f666565206e6f7420636f76657265640000000000000000000000000000000000604482015260640161051f565b610a826001600160a01b03881633308d611684565b6000610a8e848c61217d565b9050610ac46001600160a01b0389167f00000000000000000000000028b5a0e9c621a5badaa536219b3a228c8168cf5d8361171c565b604051634701287760e11b81526004810182905263ffffffff8087166024830152604482018b90526001600160a01b038a811660648401526000608484015260a483018a905290881660c48301527f00000000000000000000000028b5a0e9c621a5badaa536219b3a228c8168cf5d1690638e0250ee9060e401600060405180830381600087803b158015610b5857600080fd5b505af1158015610b6c573d6000803e3d6000fd5b50610ba6925050506001600160a01b0389167f00000000000000000000000028b5a0e9c621a5badaa536219b3a228c8168cf5d60006117ce565b60408051338152602081018b905267ffffffffffffffff8c1681830152606081018d90526080810185905260a0810184905263ffffffff881660c082015290517fc06c6ba014c9a1c360ea913df27641cff38ce7a180c57e2817bc5693a53b1f0c9181900360e00190a150506001600555505050505050505050565b33610c356000546001600160a01b031690565b6001600160a01b031614610c8b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161051f565b610531816118ef565b3360009081526004602052604090205460ff16610cf35760405162461bcd60e51b815260206004820152601460248201527f43616c6c6572206973206e6f7420706175736572000000000000000000000000604482015260640161051f565b61059b6119ac565b33610d0e6000546001600160a01b031690565b6001600160a01b031614610d645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161051f565b600180546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff1983168117909355604080519190921680825260208201939093527f5d16ad41baeb009cd23eb8f6c7cde5c2e0cd5acf4a33926ab488875c37c37f38910160405180910390a15050565b3360009081526002602052604090205460ff16610e315760405162461bcd60e51b815260206004820152601660248201527f43616c6c6572206973206e6f7420676f7665726e6f7200000000000000000000604482015260640161051f565b828114610e725760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b604482015260640161051f565b60005b8381101561101057620f4240838383818110610e9357610e93612001565b9050602002016020810190610ea89190612196565b63ffffffff1610610efb5760405162461bcd60e51b815260206004820152601860248201527f6665652070657263656e7461676520746f6f206c617267650000000000000000604482015260640161051f565b848482818110610f0d57610f0d612001565b9050602002016020810190610f229190611e09565b67ffffffffffffffff16600003610f7957828282818110610f4557610f45612001565b9050602002016020810190610f5a9190612196565b6006805463ffffffff191663ffffffff92909216919091179055610ffe565b828282818110610f8b57610f8b612001565b9050602002016020810190610fa09190612196565b60076000878785818110610fb657610fb6612001565b9050602002016020810190610fcb9190611e09565b67ffffffffffffffff1681526020810191909152604001600020805463ffffffff191663ffffffff929092169190911790555b806110088161202d565b915050610e75565b507f541df5e570cf10ffe04899eebd9eebebd1c54e2bd4af9f24b23fb4a40c6ea00b848484846040516106ef94939291906121b1565b61059b33611a27565b67ffffffffffffffff81166000908152600760205260408120548190819063ffffffff16808203611085575060065463ffffffff165b67ffffffffffffffff85166000908152600860205260409020549250620f42406110b563ffffffff831688612204565b6110bf919061221b565b91506110cb828461223d565b9350509250925092565b336110e86000546001600160a01b031690565b6001600160a01b03161461113e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161051f565b61053181611a27565b6001546001600160a01b031633146111a15760405162461bcd60e51b815260206004820152601160248201527f6e6f742066656520636f6c6c6563746f72000000000000000000000000000000604482015260640161051f565b60005b828110156113775760008484838181106111c0576111c0612001565b90506020020160208101906111d59190611e3b565b6001600160a01b0316036112925760405147906000906001600160a01b0385169061c35090849084818181858888f193505050503d8060008114611235576040519150601f19603f3d011682016040523d82523d6000602084013e61123a565b606091505b505090508061128b5760405162461bcd60e51b815260206004820152601260248201527f73656e64206e6174697665206661696c65640000000000000000000000000000604482015260640161051f565b5050611365565b60008484838181106112a6576112a6612001565b90506020020160208101906112bb9190611e3b565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015611301573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113259190612250565b9050611363838287878681811061133e5761133e612001565b90506020020160208101906113539190611e3b565b6001600160a01b03169190611ae0565b505b8061136f8161202d565b9150506111a4565b50505050565b336113906000546001600160a01b031690565b6001600160a01b0316146113e65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161051f565b6001600160a01b0381166114625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161051f565b61053181611b10565b6001600160a01b03811660009081526002602052604090205460ff16156114d45760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920676f7665726e6f720000000000604482015260640161051f565b6001600160a01b038116600081815260026020908152604091829020805460ff1916600117905590519182527fdc5a48d79e2e147530ff63ecdbed5a5a66adb9d5cf339384d5d076da197c40b591015b60405180910390a150565b60035460ff166115815760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161051f565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b03811660009081526004602052604090205460ff166116335760405162461bcd60e51b815260206004820152601560248201527f4163636f756e74206973206e6f74207061757365720000000000000000000000604482015260640161051f565b6001600160a01b038116600081815260046020908152604091829020805460ff1916905590519182527fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e9101611524565b6040516001600160a01b03808516602483015283166044820152606481018290526113779085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611b6d565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e90604401602060405180830381865afa15801561176d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117919190612250565b61179b919061223d565b6040516001600160a01b03851660248201526044810182905290915061137790859063095ea7b360e01b906064016116b8565b8015806118485750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015611822573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118469190612250565b155b6118ba5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000606482015260840161051f565b6040516001600160a01b0383166024820152604481018290526118ea90849063095ea7b360e01b906064016116b8565b505050565b6001600160a01b03811660009081526004602052604090205460ff16156119585760405162461bcd60e51b815260206004820152601960248201527f4163636f756e7420697320616c72656164792070617573657200000000000000604482015260640161051f565b6001600160a01b038116600081815260046020908152604091829020805460ff1916600117905590519182527f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f89101611524565b60035460ff16156119f25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161051f565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115ae3390565b6001600160a01b03811660009081526002602052604090205460ff16611a8f5760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f7420676f7665726e6f72000000000000000000604482015260640161051f565b6001600160a01b038116600081815260026020908152604091829020805460ff1916905590519182527f1ebe834e73d60a5fec822c1e1727d34bc79f2ad977ed504581cc1822fe20fb5b9101611524565b6040516001600160a01b0383166024820152604481018290526118ea90849063a9059cbb60e01b906064016116b8565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611bc2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c529092919063ffffffff16565b8051909150156118ea5780806020019051810190611be09190612269565b6118ea5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161051f565b6060611c618484600085611c6b565b90505b9392505050565b606082471015611ce35760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161051f565b6001600160a01b0385163b611d3a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161051f565b600080866001600160a01b03168587604051611d5691906122af565b60006040518083038185875af1925050503d8060008114611d93576040519150601f19603f3d011682016040523d82523d6000602084013e611d98565b606091505b5091509150611da8828286611db3565b979650505050505050565b60608315611dc2575081611c64565b825115611dd25782518084602001fd5b8160405162461bcd60e51b815260040161051f91906122cb565b803567ffffffffffffffff81168114611e0457600080fd5b919050565b600060208284031215611e1b57600080fd5b611c6482611dec565b80356001600160a01b0381168114611e0457600080fd5b600060208284031215611e4d57600080fd5b611c6482611e24565b60008083601f840112611e6857600080fd5b50813567ffffffffffffffff811115611e8057600080fd5b6020830191508360208260051b8501011115611e9b57600080fd5b9250929050565b60008060008060408587031215611eb857600080fd5b843567ffffffffffffffff80821115611ed057600080fd5b611edc88838901611e56565b90965094506020870135915080821115611ef557600080fd5b50611f0287828801611e56565b95989497509550505050565b803563ffffffff81168114611e0457600080fd5b60008060008060008060c08789031215611f3b57600080fd5b86359550611f4b60208801611dec565b945060408701359350611f6060608801611e24565b925060808701359150611f7560a08801611f0e565b90509295509295509295565b60008060408385031215611f9457600080fd5b82359150611fa460208401611dec565b90509250929050565b600080600060408486031215611fc257600080fd5b833567ffffffffffffffff811115611fd957600080fd5b611fe586828701611e56565b9094509250611ff8905060208501611e24565b90509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161203f5761203f612017565b5060010190565b8183526000602080850194508260005b858110156120835767ffffffffffffffff61207083611dec565b1687529582019590820190600101612056565b509495945050505050565b6040815260006120a2604083018688612046565b82810360208401528381527f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8411156120da57600080fd5b8360051b80866020840137016020019695505050505050565b8035600381900b8114611e0457600080fd5b60006020828403121561211757600080fd5b611c64826120f3565b604081526000612134604083018688612046565b8281036020848101919091528482528591810160005b868110156121705761215b846120f3565b60030b8252928201929082019060010161214a565b5098975050505050505050565b8181038181111561219057612190612017565b92915050565b6000602082840312156121a857600080fd5b611c6482611f0e565b6040815260006121c5604083018688612046565b8281036020848101919091528482528591810160005b868110156121705763ffffffff6121f185611f0e565b16825292820192908201906001016121db565b808202811582820484141761219057612190612017565b60008261223857634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561219057612190612017565b60006020828403121561226257600080fd5b5051919050565b60006020828403121561227b57600080fd5b81518015158114611c6457600080fd5b60005b838110156122a657818101518382015260200161228e565b50506000910152565b600082516122c181846020870161228b565b9190910192915050565b60208152600082518060208401526122ea81604085016020870161228b565b601f01601f1916919091016040019291505056fea26469706673582212203cbbe91b10ea2397a5c9becf83ca1d093bc4507f3fe1fd27e577f110fa6b3c4b64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000028b5a0e9c621a5badaa536219b3a228c8168cf5d0000000000000000000000004c1806e28cf5a1b364c28344828cb0610d167189
-----Decoded View---------------
Arg [0] : _circleBridge (address): 0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d
Arg [1] : _feeCollector (address): 0x4c1806E28cf5A1B364C28344828cb0610d167189
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000028b5a0e9c621a5badaa536219b3a228c8168cf5d
Arg [1] : 0000000000000000000000004c1806e28cf5a1b364c28344828cb0610d167189
Deployed Bytecode Sourcemap
395:3986:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;513:37;;;;;;;;-1:-1:-1;;;;;178:55:13;;;160:74;;148:2;133:18;513:37:7;;;;;;;;938:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;781:1:13;770:21;;;;752:40;;740:2;725:18;938:44:7;610:188:13;557:27:7;;;;;;;;;;;;977:10:13;965:23;;;947:42;;935:2;920:18;557:27:7;803:192:13;793:42:7;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1146:25:13;;;1134:2;1119:18;793:42:7;1000:177:13;561:95:10;;;;;;:::i;:::-;;:::i;:::-;;673:48:7;;;;;;:::i;:::-;;;;;;;;;;;;;;;;563:64:12;;;:::i;3683:331:7:-;;;;;;:::i;:::-;;:::i;633:102:12:-;;;;;;:::i;:::-;-1:-1:-1;;;;;712:16:12;689:4;712:16;;;:7;:16;;;;;;;;;633:102;;;;2885:14:13;;2878:22;2860:41;;2848:2;2833:18;633:102:12;2720:187:13;4020:359:7;;;;;;:::i;:::-;;:::i;1098:84:0:-;1168:7;;;;1098:84;;836:95:12;;;;;;:::i;:::-;;:::i;937:75::-;;;:::i;1527:1144:7:-;;;;;;:::i;:::-;;:::i;200:39:12:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;741:89;;;;;;:::i;:::-;;:::i;497:60::-;;;:::i;1479:85:11:-;1525:7;1551:6;-1:-1:-1;;;;;1551:6:11;1479:85;;1220:226:8;;;;;;:::i;:::-;;:::i;3129:548:7:-;;;;;;:::i;:::-;;:::i;307:27:8:-;;;;;-1:-1:-1;;;;;307:27:8;;;769:79:10;;;:::i;136:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;447:108;;;;;;:::i;:::-;-1:-1:-1;;;;;529:19:10;506:4;529:19;;;:9;:19;;;;;;;;;447:108;2677:446:7;;;;;;:::i;:::-;;:::i;:::-;;;;5628:25:13;;;5684:2;5669:18;;5662:34;;;;5712:18;;;5705:34;5616:2;5601:18;2677:446:7;5426:319:13;662:101:10;;;;;;:::i;:::-;;:::i;603:611:8:-;;;;;;:::i;:::-;;:::i;1916:189:11:-;;;;;;:::i;:::-;;:::i;561:95:10:-;1702:10:11;1691:7;1525;1551:6;-1:-1:-1;;;;;1551:6:11;;1479:85;1691:7;-1:-1:-1;;;;;1691:21:11;;1683:66;;;;-1:-1:-1;;;1683:66:11;;6467:2:13;1683:66:11;;;6449:21:13;;;6486:18;;;6479:30;6545:34;6525:18;;;6518:62;6597:18;;1683:66:11;;;;;;;;;627:22:10::1;640:8;627:12;:22::i;:::-;561:95:::0;:::o;563:64:12:-;437:10;689:4;712:16;;;:7;:16;;;;;;;;420:53;;;;-1:-1:-1;;;420:53:12;;6828:2:13;420:53:12;;;6810:21:13;6867:2;6847:18;;;6840:30;6906:22;6886:18;;;6879:50;6946:18;;420:53:12;6626:344:13;420:53:12;610:10:::1;:8;:10::i;:::-;563:64::o:0;3683:331:7:-;324:10:10;506:4;529:19;;;:9;:19;;;;;;;;305:57;;;;-1:-1:-1;;;305:57:10;;7177:2:13;305:57:10;;;7159:21:13;7216:2;7196:18;;;7189:30;7255:24;7235:18;;;7228:52;7297:18;;305:57:10;6975:346:13;305:57:10;3796:32:7;;::::1;3788:60;;;::::0;-1:-1:-1;;;3788:60:7;;7528:2:13;3788:60:7::1;::::0;::::1;7510:21:13::0;7567:2;7547:18;;;7540:30;-1:-1:-1;;;7586:18:13;;;7579:45;7641:18;;3788:60:7::1;7326:339:13::0;3788:60:7::1;3863:9;3858:105;3878:20:::0;;::::1;3858:105;;;3944:5;;3950:1;3944:8;;;;;;;:::i;:::-;;;;;;;3919;:22;3928:9;;3938:1;3928:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3919:22;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3919:22:7;:33;3900:3;::::1;::::0;::::1;:::i;:::-;;;;3858:105;;;;3977:30;3990:9;;4001:5;;3977:30;;;;;;;;;:::i;:::-;;;;;;;;3683:331:::0;;;;:::o;4020:359::-;324:10:10;506:4;529:19;;;:9;:19;;;;;;;;305:57;;;;-1:-1:-1;;;305:57:10;;7177:2:13;305:57:10;;;7159:21:13;7216:2;7196:18;;;7189:30;7255:24;7235:18;;;7228:52;7297:18;;305:57:10;6975:346:13;305:57:10;4141:35:7;;::::1;4133:63;;;::::0;-1:-1:-1;;;4133:63:7;;7528:2:13;4133:63:7::1;::::0;::::1;7510:21:13::0;7567:2;7547:18;;;7540:30;-1:-1:-1;;;7586:18:13;;;7579:45;7641:18;;4133:63:7::1;7326:339:13::0;4133:63:7::1;4211:9;4206:112;4226:20:::0;;::::1;4206:112;;;4296:8;;4305:1;4296:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4267:12;:26;4280:9;;4290:1;4280:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4267:26;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;4267:26:7;:40;;-1:-1:-1;;4267:40:7::1;;::::0;;;;;;;::::1;::::0;;4248:3;::::1;::::0;::::1;:::i;:::-;;;;4206:112;;;;4332:40;4352:9;;4363:8;;4332:40;;;;;;;;;:::i;836:95:12:-:0;1702:10:11;1691:7;1525;1551:6;-1:-1:-1;;;;;1551:6:11;;1479:85;1691:7;-1:-1:-1;;;;;1691:21:11;;1683:66;;;;-1:-1:-1;;;1683:66:11;;6467:2:13;1683:66:11;;;6449:21:13;;;6486:18;;;6479:30;6545:34;6525:18;;;6518:62;6597:18;;1683:66:11;6265:356:13;1683:66:11;902:22:12::1;916:7;902:13;:22::i;937:75::-:0;980:25;994:10;980:13;:25::i;1527:1144:7:-;1744:1:1;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:1;;10614:2:13;2317:63:1;;;10596:21:13;10653:2;10633:18;;;10626:30;10692:33;10672:18;;;10665:61;10743:18;;2317:63:1;10412:355:13;2317:63:1;1744:1;2455:7;:18;1168:7:0;;;;1411:9:::1;1403:38;;;::::0;-1:-1:-1;;;1403:38:0;;10974:2:13;1403:38:0::1;::::0;::::1;10956:21:13::0;11013:2;10993:18;;;10986:30;-1:-1:-1;;;11032:18:13;;;11025:46;11088:18;;1403:38:0::1;10772:340:13::0;1403:38:0::1;1794:22:7::2;::::0;::::2;1776:15;1794:22:::0;;;:12:::2;:22;::::0;;;;;::::2;;::::0;1834:14;;;1826:52:::2;;;::::0;-1:-1:-1;;;1826:52:7;;11319:2:13;1826:52:7::2;::::0;::::2;11301:21:13::0;11358:2;11338:18;;;11331:30;11397:27;11377:18;;;11370:55;11442:18;;1826:52:7::2;11117:349:13::0;1826:52:7::2;1904:1;1892:9;:13;;;1888:120;;;-1:-1:-1::0;1933:1:7::2;1888:120;2018:11;2031:13:::0;2046:15:::2;2065:27;2074:7;2083:8;2065;:27::i;:::-;2017:75;;;;;;2120:3;2110:7;:13;2102:41;;;::::0;-1:-1:-1;;;2102:41:7;;11673:2:13;2102:41:7::2;::::0;::::2;11655:21:13::0;11712:2;11692:18;;;11685:30;11751:17;11731:18;;;11724:45;11786:18;;2102:41:7::2;11471:339:13::0;2102:41:7::2;2154:71;-1:-1:-1::0;;;;;2154:35:7;::::2;2190:10;2210:4;2217:7:::0;2154:35:::2;:71::i;:::-;2235:17;2255:13;2265:3:::0;2255:7;:13:::2;:::i;:::-;2235:33:::0;-1:-1:-1;2278:65:7::2;-1:-1:-1::0;;;;;2278:40:7;::::2;2319:12;2235:33:::0;2278:40:::2;:65::i;:::-;2353:144;::::0;-1:-1:-1;;;2353:144:7;;::::2;::::0;::::2;12259:25:13::0;;;12303:10;12349:15;;;12329:18;;;12322:43;12381:18;;;12374:34;;;-1:-1:-1;;;;;12444:55:13;;;12424:18;;;12417:83;2462:1:7::2;12516:19:13::0;;;12509:35;12560:19;;;12553:35;;;12625:15;;;12604:19;;;12597:44;2367:12:7::2;2353:42;::::0;::::2;::::0;12231:19:13;;2353:144:7::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;2507:47:7::2;::::0;-1:-1:-1;;;;;;;;2507:30:7;::::2;2538:12;2552:1;2507:30;:47::i;:::-;2569:95;::::0;;2579:10:::2;12963:74:13::0;;13068:2;13053:18;;13046:34;;;13128:18;13116:31;;13096:18;;;13089:59;13179:2;13164:18;;13157:34;;;13222:3;13207:19;;13200:35;;;13266:3;13251:19;;13244:35;;;13328:10;13316:23;;13310:3;13295:19;;13288:52;2569:95:7;;::::2;::::0;;;;12950:3:13;2569:95:7;;::::2;-1:-1:-1::0;;1701:1:1;2628:7;:22;-1:-1:-1;;;;;;;;;1527:1144:7:o;741:89:12:-;1702:10:11;1691:7;1525;1551:6;-1:-1:-1;;;;;1551:6:11;;1479:85;1691:7;-1:-1:-1;;;;;1691:21:11;;1683:66;;;;-1:-1:-1;;;1683:66:11;;6467:2:13;1683:66:11;;;6449:21:13;;;6486:18;;;6479:30;6545:34;6525:18;;;6518:62;6597:18;;1683:66:11;6265:356:13;1683:66:11;804:19:12::1;815:7;804:10;:19::i;497:60::-:0;437:10;689:4;712:16;;;:7;:16;;;;;;;;420:53;;;;-1:-1:-1;;;420:53:12;;6828:2:13;420:53:12;;;6810:21:13;6867:2;6847:18;;;6840:30;6906:22;6886:18;;;6879:50;6946:18;;420:53:12;6626:344:13;420:53:12;542:8:::1;:6;:8::i;1220:226:8:-:0;1702:10:11;1691:7;1525;1551:6;-1:-1:-1;;;;;1551:6:11;;1479:85;1691:7;-1:-1:-1;;;;;1691:21:11;;1683:66;;;;-1:-1:-1;;;1683:66:11;;6467:2:13;1683:66:11;;;6449:21:13;;;6486:18;;;6479:30;6545:34;6525:18;;;6518:62;6597:18;;1683:66:11;6265:356:13;1683:66:11;1323:12:8::1;::::0;;-1:-1:-1;;;;;1345:28:8;;::::1;-1:-1:-1::0;;1345:28:8;::::1;::::0;::::1;::::0;;;1388:51:::1;::::0;;1323:12;;;::::1;13586:34:13::0;;;13651:2;13636:18;;13629:43;;;;1388:51:8::1;::::0;13498:18:13;1388:51:8::1;;;;;;;1287:159;1220:226:::0;:::o;3129:548:7:-;324:10:10;506:4;529:19;;;:9;:19;;;;;;;;305:57;;;;-1:-1:-1;;;305:57:10;;7177:2:13;305:57:10;;;7159:21:13;7216:2;7196:18;;;7189:30;7255:24;7235:18;;;7228:52;7297:18;;305:57:10;6975:346:13;305:57:10;3247:36:7;;::::1;3239:64;;;::::0;-1:-1:-1;;;3239:64:7;;7528:2:13;3239:64:7::1;::::0;::::1;7510:21:13::0;7567:2;7547:18;;;7540:30;-1:-1:-1;;;7586:18:13;;;7579:45;7641:18;;3239:64:7::1;7326:339:13::0;3239:64:7::1;3318:9;3313:307;3333:20:::0;;::::1;3313:307;;;3397:3;3382:9;;3392:1;3382:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;:18;;;3374:55;;;::::0;-1:-1:-1;;;3374:55:7;;14074:2:13;3374:55:7::1;::::0;::::1;14056:21:13::0;14113:2;14093:18;;;14086:30;14152:26;14132:18;;;14125:54;14196:18;;3374:55:7::1;13872:348:13::0;3374:55:7::1;3447:9;;3457:1;3447:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;:17;;3463:1;3447:17:::0;3443:167:::1;;3500:9;;3510:1;3500:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3484:13;:28:::0;;-1:-1:-1;;3484:28:7::1;;::::0;;;::::1;::::0;;;::::1;::::0;;3443:167:::1;;;3583:9;;3593:1;3583:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3551:15;:29;3567:9;;3577:1;3567:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3551:29;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3551:29:7;:44;;-1:-1:-1;;3551:44:7::1;;::::0;;;::::1;::::0;;;::::1;::::0;;3443:167:::1;3355:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3313:307;;;;3634:36;3649:9;;3660;;3634:36;;;;;;;;;:::i;769:79:10:-:0;814:27;830:10;814:15;:27::i;2677:446:7:-;2899:25;;;2787:12;2899:25;;;:15;:25;;;;;;2787:12;;;;2899:25;;2938:12;;;2934:66;;-1:-1:-1;2976:13:7;;;;2934:66;3018:18;;;;;;;:8;:18;;;;;;;-1:-1:-1;3079:3:7;3058:17;;;;:7;:17;:::i;:::-;3057:25;;;;:::i;:::-;3046:36;-1:-1:-1;3099:17:7;3046:36;3099:6;:17;:::i;:::-;3092:24;;2872:251;2677:446;;;;;:::o;662:101:10:-;1702:10:11;1691:7;1525;1551:6;-1:-1:-1;;;;;1551:6:11;;1479:85;1691:7;-1:-1:-1;;;;;1691:21:11;;1683:66;;;;-1:-1:-1;;;1683:66:11;;6467:2:13;1683:66:11;;;6449:21:13;;;6486:18;;;6479:30;6545:34;6525:18;;;6518:62;6597:18;;1683:66:11;6265:356:13;1683:66:11;731:25:10::1;747:8;731:15;:25::i;603:611:8:-:0;459:12;;-1:-1:-1;;;;;459:12:8;445:10;:26;437:56;;;;-1:-1:-1;;;437:56:8;;15777:2:13;437:56:8;;;15759:21:13;15816:2;15796:18;;;15789:30;15855:19;15835:18;;;15828:47;15892:18;;437:56:8;15575:341:13;437:56:8;705:9:::1;700:508;720:18:::0;;::::1;700:508;;;840:1;818:7:::0;;826:1;818:10;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;818:24:8::1;::::0;814:384:::1;;931:36;::::0;876:21:::1;::::0;862:11:::1;::::0;-1:-1:-1;;;;;931:8:8;::::1;::::0;957:5:::1;::::0;876:21;;862:11;931:36;862:11;931:36;876:21;931:8;957:5;931:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;915:52;;;993:4;985:35;;;::::0;-1:-1:-1;;;985:35:8;;16333:2:13;985:35:8::1;::::0;::::1;16315:21:13::0;16372:2;16352:18;;;16345:30;16411:20;16391:18;;;16384:48;16449:18;;985:35:8::1;16131:342:13::0;985:35:8::1;844:191;;814:384;;;1059:15;1084:7;;1092:1;1084:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1077:43;::::0;-1:-1:-1;;;1077:43:8;;1114:4:::1;1077:43;::::0;::::1;160:74:13::0;-1:-1:-1;;;;;1077:28:8;;;::::1;::::0;::::1;::::0;133:18:13;;1077:43:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1059:61;;1138:45;1170:3;1175:7;1145;;1153:1;1145:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1138:31:8::1;::::0;:45;:31:::1;:45::i;:::-;1041:157;814:384;740:3:::0;::::1;::::0;::::1;:::i;:::-;;;;700:508;;;;603:611:::0;;;:::o;1916:189:11:-;1702:10;1691:7;1525;1551:6;-1:-1:-1;;;;;1551:6:11;;1479:85;1691:7;-1:-1:-1;;;;;1691:21:11;;1683:66;;;;-1:-1:-1;;;1683:66:11;;6467:2:13;1683:66:11;;;6449:21:13;;;6486:18;;;6479:30;6545:34;6525:18;;;6518:62;6597:18;;1683:66:11;6265:356:13;1683:66:11;-1:-1:-1;;;;;2004:22:11;::::1;1996:73;;;::::0;-1:-1:-1;;;1996:73:11;;16869:2:13;1996:73:11::1;::::0;::::1;16851:21:13::0;16908:2;16888:18;;;16881:30;16947:34;16927:18;;;16920:62;17018:8;16998:18;;;16991:36;17044:19;;1996:73:11::1;16667:402:13::0;1996:73:11::1;2079:19;2089:8;2079:9;:19::i;854:200:10:-:0;-1:-1:-1;;;;;529:19:10;;506:4;529:19;;;:9;:19;;;;;;;;920:21;912:61;;;;-1:-1:-1;;;912:61:10;;17276:2:13;912:61:10;;;17258:21:13;17315:2;17295:18;;;17288:30;17354:29;17334:18;;;17327:57;17401:18;;912:61:10;17074:351:13;912:61:10;-1:-1:-1;;;;;983:19:10;;;;;;:9;:19;;;;;;;;;:26;;-1:-1:-1;;983:26:10;1005:4;983:26;;;1024:23;;160:74:13;;;1024:23:10;;133:18:13;1024:23:10;;;;;;;;854:200;:::o;2110:117:0:-;1168:7;;;;1669:41;;;;-1:-1:-1;;;1669:41:0;;17632:2:13;1669:41:0;;;17614:21:13;17671:2;17651:18;;;17644:30;17710:22;17690:18;;;17683:50;17750:18;;1669:41:0;17430:344:13;1669:41:0;2168:7:::1;:15:::0;;-1:-1:-1;;2168:15:0::1;::::0;;2198:22:::1;719:10:5::0;2207:12:0::1;2198:22;::::0;-1:-1:-1;;;;;178:55:13;;;160:74;;148:2;133:18;2198:22:0::1;;;;;;;2110:117::o:0;1210:187:12:-;-1:-1:-1;;;;;712:16:12;;689:4;712:16;;;:7;:16;;;;;;;;1268:51;;;;-1:-1:-1;;;1268:51:12;;17981:2:13;1268:51:12;;;17963:21:13;18020:2;18000:18;;;17993:30;18059:23;18039:18;;;18032:51;18100:18;;1268:51:12;17779:345:13;1268:51:12;-1:-1:-1;;;;;1329:16:12;;1348:5;1329:16;;;:7;:16;;;;;;;;;:24;;-1:-1:-1;;1329:24:12;;;1368:22;;160:74:13;;;1368:22:12;;133:18:13;1368:22:12;14:226:13;912:241:3;1077:68;;-1:-1:-1;;;;;18410:15:13;;;1077:68:3;;;18392:34:13;18462:15;;18442:18;;;18435:43;18494:18;;;18487:34;;;1050:96:3;;1070:5;;-1:-1:-1;;;1100:27:3;18304:18:13;;1077:68:3;;;;-1:-1:-1;;1077:68:3;;;;;;;;;;;;;;;;;;;;;;;;;;;1050:19;:96::i;2022:310::-;2171:39;;-1:-1:-1;;;2171:39:3;;2195:4;2171:39;;;13586:34:13;-1:-1:-1;;;;;13656:15:13;;;13636:18;;;13629:43;2148:20:3;;2213:5;;2171:15;;;;;13498:18:13;;2171:39:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;2255:69;;-1:-1:-1;;;;;18724:55:13;;2255:69:3;;;18706:74:13;18796:18;;;18789:34;;;2148:70:3;;-1:-1:-1;2228:97:3;;2248:5;;-1:-1:-1;;;2278:22:3;18679:18:13;;2255:69:3;18532:297:13;1413:603:3;1768:10;;;1767:62;;-1:-1:-1;1784:39:3;;-1:-1:-1;;;1784:39:3;;1808:4;1784:39;;;13586:34:13;-1:-1:-1;;;;;13656:15:13;;;13636:18;;;13629:43;1784:15:3;;;;;13498:18:13;;1784:39:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;1767:62;1746:163;;;;-1:-1:-1;;;1746:163:3;;19036:2:13;1746:163:3;;;19018:21:13;19075:2;19055:18;;;19048:30;19114:34;19094:18;;;19087:62;19185:24;19165:18;;;19158:52;19227:19;;1746:163:3;18834:418:13;1746:163:3;1946:62;;-1:-1:-1;;;;;18724:55:13;;1946:62:3;;;18706:74:13;18796:18;;;18789:34;;;1919:90:3;;1939:5;;-1:-1:-1;;;1969:22:3;18679:18:13;;1946:62:3;18532:297:13;1919:90:3;1413:603;;;:::o;1018:186:12:-;-1:-1:-1;;;;;712:16:12;;689:4;712:16;;;:7;:16;;;;;;;;1081:18;1073:56;;;;-1:-1:-1;;;1073:56:12;;19459:2:13;1073:56:12;;;19441:21:13;19498:2;19478:18;;;19471:30;19537:27;19517:18;;;19510:55;19582:18;;1073:56:12;19257:349:13;1073:56:12;-1:-1:-1;;;;;1139:16:12;;;;;;:7;:16;;;;;;;;;:23;;-1:-1:-1;;1139:23:12;1158:4;1139:23;;;1177:20;;160:74:13;;;1177:20:12;;133:18:13;1177:20:12;14:226:13;1863:115:0;1168:7;;;;1411:9;1403:38;;;;-1:-1:-1;;;1403:38:0;;10974:2:13;1403:38:0;;;10956:21:13;11013:2;10993:18;;;10986:30;-1:-1:-1;;;11032:18:13;;;11025:46;11088:18;;1403:38:0;10772:340:13;1403:38:0;1922:7:::1;:14:::0;;-1:-1:-1;;1922:14:0::1;1932:4;1922:14;::::0;;1951:20:::1;1958:12;719:10:5::0;;640:96;1060:201:10;-1:-1:-1;;;;;529:19:10;;506:4;529:19;;;:9;:19;;;;;;;;1121:56;;;;-1:-1:-1;;;1121:56:10;;19813:2:13;1121:56:10;;;19795:21:13;19852:2;19832:18;;;19825:30;19891:25;19871:18;;;19864:53;19934:18;;1121:56:10;19611:347:13;1121:56:10;-1:-1:-1;;;;;1187:19:10;;1209:5;1187:19;;;:9;:19;;;;;;;;;:27;;-1:-1:-1;;1187:27:10;;;1229:25;;160:74:13;;;1229:25:10;;133:18:13;1229:25:10;14:226:13;701:205:3;840:58;;-1:-1:-1;;;;;18724:55:13;;840:58:3;;;18706:74:13;18796:18;;;18789:34;;;813:86:3;;833:5;;-1:-1:-1;;;863:23:3;18679:18:13;;840:58:3;18532:297:13;2111:169:11;2166:16;2185:6;;-1:-1:-1;;;;;2201:17:11;;;-1:-1:-1;;2201:17:11;;;;;;2233:40;;2185:6;;;;;;;2233:40;;2166:16;2233:40;2156:124;2111:169;:::o;3207:706:3:-;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:3;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:3;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:3;;20447:2:13;3811:85:3;;;20429:21:13;20486:2;20466:18;;;20459:30;20525:34;20505:18;;;20498:62;20596:12;20576:18;;;20569:40;20626:19;;3811:85:3;20245:406:13;3861:223:4;3994:12;4025:52;4047:6;4055:4;4061:1;4064:12;4025:21;:52::i;:::-;4018:59;;3861:223;;;;;;:::o;4948:499::-;5113:12;5170:5;5145:21;:30;;5137:81;;;;-1:-1:-1;;;5137:81:4;;20858:2:13;5137:81:4;;;20840:21:13;20897:2;20877:18;;;20870:30;20936:34;20916:18;;;20909:62;21007:8;20987:18;;;20980:36;21033:19;;5137:81:4;20656:402:13;5137:81:4;-1:-1:-1;;;;;1465:19:4;;;5228:60;;;;-1:-1:-1;;;5228:60:4;;21265:2:13;5228:60:4;;;21247:21:13;21304:2;21284:18;;;21277:30;21343:31;21323:18;;;21316:59;21392:18;;5228:60:4;21063:353:13;5228:60:4;5300:12;5314:23;5341:6;-1:-1:-1;;;;;5341:11:4;5360:5;5367:4;5341:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5299:73;;;;5389:51;5406:7;5415:10;5427:12;5389:16;:51::i;:::-;5382:58;4948:499;-1:-1:-1;;;;;;;4948:499:4:o;7561:692::-;7707:12;7735:7;7731:516;;;-1:-1:-1;7765:10:4;7758:17;;7731:516;7876:17;;:21;7872:365;;8070:10;8064:17;8130:15;8117:10;8113:2;8109:19;8102:44;7872:365;8209:12;8202:20;;-1:-1:-1;;;8202:20:4;;;;;;;;:::i;245:171:13:-;312:20;;372:18;361:30;;351:41;;341:69;;406:1;403;396:12;341:69;245:171;;;:::o;421:184::-;479:6;532:2;520:9;511:7;507:23;503:32;500:52;;;548:1;545;538:12;500:52;571:28;589:9;571:28;:::i;1182:196::-;1250:20;;-1:-1:-1;;;;;1299:54:13;;1289:65;;1279:93;;1368:1;1365;1358:12;1383:186;1442:6;1495:2;1483:9;1474:7;1470:23;1466:32;1463:52;;;1511:1;1508;1501:12;1463:52;1534:29;1553:9;1534:29;:::i;1574:366::-;1636:8;1646:6;1700:3;1693:4;1685:6;1681:17;1677:27;1667:55;;1718:1;1715;1708:12;1667:55;-1:-1:-1;1741:20:13;;1784:18;1773:30;;1770:50;;;1816:1;1813;1806:12;1770:50;1853:4;1845:6;1841:17;1829:29;;1913:3;1906:4;1896:6;1893:1;1889:14;1881:6;1877:27;1873:38;1870:47;1867:67;;;1930:1;1927;1920:12;1867:67;1574:366;;;;;:::o;1945:770::-;2066:6;2074;2082;2090;2143:2;2131:9;2122:7;2118:23;2114:32;2111:52;;;2159:1;2156;2149:12;2111:52;2199:9;2186:23;2228:18;2269:2;2261:6;2258:14;2255:34;;;2285:1;2282;2275:12;2255:34;2324:69;2385:7;2376:6;2365:9;2361:22;2324:69;:::i;:::-;2412:8;;-1:-1:-1;2298:95:13;-1:-1:-1;2500:2:13;2485:18;;2472:32;;-1:-1:-1;2516:16:13;;;2513:36;;;2545:1;2542;2535:12;2513:36;;2584:71;2647:7;2636:8;2625:9;2621:24;2584:71;:::i;:::-;1945:770;;;;-1:-1:-1;2674:8:13;-1:-1:-1;;;;1945:770:13:o;3685:163::-;3752:20;;3812:10;3801:22;;3791:33;;3781:61;;3838:1;3835;3828:12;3853:537;3955:6;3963;3971;3979;3987;3995;4048:3;4036:9;4027:7;4023:23;4019:33;4016:53;;;4065:1;4062;4055:12;4016:53;4101:9;4088:23;4078:33;;4130:37;4163:2;4152:9;4148:18;4130:37;:::i;:::-;4120:47;;4214:2;4203:9;4199:18;4186:32;4176:42;;4237:38;4271:2;4260:9;4256:18;4237:38;:::i;:::-;4227:48;;4322:3;4311:9;4307:19;4294:33;4284:43;;4346:38;4379:3;4368:9;4364:19;4346:38;:::i;:::-;4336:48;;3853:537;;;;;;;;:::o;5169:252::-;5236:6;5244;5297:2;5285:9;5276:7;5272:23;5268:32;5265:52;;;5313:1;5310;5303:12;5265:52;5349:9;5336:23;5326:33;;5378:37;5411:2;5400:9;5396:18;5378:37;:::i;:::-;5368:47;;5169:252;;;;;:::o;5750:510::-;5845:6;5853;5861;5914:2;5902:9;5893:7;5889:23;5885:32;5882:52;;;5930:1;5927;5920:12;5882:52;5970:9;5957:23;6003:18;5995:6;5992:30;5989:50;;;6035:1;6032;6025:12;5989:50;6074:69;6135:7;6126:6;6115:9;6111:22;6074:69;:::i;:::-;6162:8;;-1:-1:-1;6048:95:13;-1:-1:-1;6216:38:13;;-1:-1:-1;6250:2:13;6235:18;;6216:38;:::i;:::-;6206:48;;5750:510;;;;;:::o;7670:127::-;7731:10;7726:3;7722:20;7719:1;7712:31;7762:4;7759:1;7752:15;7786:4;7783:1;7776:15;7802:127;7863:10;7858:3;7854:20;7851:1;7844:31;7894:4;7891:1;7884:15;7918:4;7915:1;7908:15;7934:135;7973:3;7994:17;;;7991:43;;8014:18;;:::i;:::-;-1:-1:-1;8061:1:13;8050:13;;7934:135::o;8074:444::-;8173:6;8168:3;8161:19;8143:3;8199:4;8228:2;8223:3;8219:12;8212:19;;8254:5;8277:1;8287:206;8301:6;8298:1;8295:13;8287:206;;;8393:18;8366:25;8384:6;8366:25;:::i;:::-;8362:50;8350:63;;8433:12;;;;8468:15;;;;8323:1;8316:9;8287:206;;;-1:-1:-1;8509:3:13;;8074:444;-1:-1:-1;;;;;8074:444:13:o;8523:712::-;8798:2;8787:9;8780:21;8761:4;8824:72;8892:2;8881:9;8877:18;8869:6;8861;8824:72;:::i;:::-;8944:9;8936:6;8932:22;8927:2;8916:9;8912:18;8905:50;8979:6;8971;8964:22;9009:66;9001:6;8998:78;8995:98;;;9089:1;9086;9079:12;8995:98;9123:6;9120:1;9116:14;9177:6;9169;9164:2;9156:6;9152:15;9139:45;9205:19;9226:2;9201:28;;8523:712;-1:-1:-1;;;;;;8523:712:13:o;9240:160::-;9306:20;;9366:1;9355:20;;;9345:31;;9335:59;;9390:1;9387;9380:12;9405:182;9462:6;9515:2;9503:9;9494:7;9490:23;9486:32;9483:52;;;9531:1;9528;9521:12;9483:52;9554:27;9571:9;9554:27;:::i;9592:815::-;9863:2;9852:9;9845:21;9826:4;9889:72;9957:2;9946:9;9942:18;9934:6;9926;9889:72;:::i;:::-;10018:22;;;9980:2;9998:18;;;9991:50;;;;10076:22;;;10152:6;;10114:15;;10176:1;10186:195;10200:6;10197:1;10194:13;10186:195;;;10275:24;10292:6;10275:24;:::i;:::-;10272:1;10261:39;10249:52;;10356:15;;;;10321:12;;;;10222:1;10215:9;10186:195;;;-1:-1:-1;10398:3:13;9592:815;-1:-1:-1;;;;;;;;9592:815:13:o;11815:128::-;11882:9;;;11903:11;;;11900:37;;;11917:18;;:::i;:::-;11815:128;;;;:::o;13683:184::-;13741:6;13794:2;13782:9;13773:7;13769:23;13765:32;13762:52;;;13810:1;13807;13800:12;13762:52;13833:28;13851:9;13833:28;:::i;14225:820::-;14498:2;14487:9;14480:21;14461:4;14524:72;14592:2;14581:9;14577:18;14569:6;14561;14524:72;:::i;:::-;14653:22;;;14615:2;14633:18;;;14626:50;;;;14711:22;;;14787:6;;14749:15;;14811:1;14821:198;14835:6;14832:1;14829:13;14821:198;;;14927:10;14900:25;14918:6;14900:25;:::i;:::-;14896:42;14884:55;;14994:15;;;;14959:12;;;;14857:1;14850:9;14821:198;;15050:168;15123:9;;;15154;;15171:15;;;15165:22;;15151:37;15141:71;;15192:18;;:::i;15223:217::-;15263:1;15289;15279:132;;15333:10;15328:3;15324:20;15321:1;15314:31;15368:4;15365:1;15358:15;15396:4;15393:1;15386:15;15279:132;-1:-1:-1;15425:9:13;;15223:217::o;15445:125::-;15510:9;;;15531:10;;;15528:36;;;15544:18;;:::i;16478:184::-;16548:6;16601:2;16589:9;16580:7;16576:23;16572:32;16569:52;;;16617:1;16614;16607:12;16569:52;-1:-1:-1;16640:16:13;;16478:184;-1:-1:-1;16478:184:13:o;19963:277::-;20030:6;20083:2;20071:9;20062:7;20058:23;20054:32;20051:52;;;20099:1;20096;20089:12;20051:52;20131:9;20125:16;20184:5;20177:13;20170:21;20163:5;20160:32;20150:60;;20206:1;20203;20196:12;21421:250;21506:1;21516:113;21530:6;21527:1;21524:13;21516:113;;;21606:11;;;21600:18;21587:11;;;21580:39;21552:2;21545:10;21516:113;;;-1:-1:-1;;21663:1:13;21645:16;;21638:27;21421:250::o;21676:287::-;21805:3;21843:6;21837:13;21859:66;21918:6;21913:3;21906:4;21898:6;21894:17;21859:66;:::i;:::-;21941:16;;;;;21676:287;-1:-1:-1;;21676:287:13:o;21968:396::-;22117:2;22106:9;22099:21;22080:4;22149:6;22143:13;22192:6;22187:2;22176:9;22172:18;22165:34;22208:79;22280:6;22275:2;22264:9;22260:18;22255:2;22247:6;22243:15;22208:79;:::i;:::-;22348:2;22327:15;-1:-1:-1;;22323:29:13;22308:45;;;;22355:2;22304:54;;21968:396;-1:-1:-1;;21968:396:13:o
Swarm Source
ipfs://3cbbe91b10ea2397a5c9becf83ca1d093bc4507f3fe1fd27e577f110fa6b3c4b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| OP | 100.00% | $0.999959 | 26.4 | $26.4 |
Loading...
Loading
Loading...
Loading
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.