Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 3,632 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Settle Aggregate... | 18127254 | 930 days ago | IN | 0 ETH | 0.00430063 | ||||
| Settle Aggregate... | 18126392 | 930 days ago | IN | 0 ETH | 0.00394787 | ||||
| Settle Aggregate... | 18125900 | 930 days ago | IN | 0 ETH | 0.00754423 | ||||
| Settle Aggregate... | 18125804 | 930 days ago | IN | 0 ETH | 0.00361169 | ||||
| Settle Aggregate... | 18125135 | 930 days ago | IN | 0 ETH | 0.00869755 | ||||
| Settle Aggregate... | 18124928 | 930 days ago | IN | 0 ETH | 0.00408364 | ||||
| Settle Aggregate... | 18124736 | 930 days ago | IN | 0 ETH | 0.00461564 | ||||
| Settle Aggregate... | 18123927 | 930 days ago | IN | 0 ETH | 0.00337174 | ||||
| Settle Aggregate... | 18123433 | 930 days ago | IN | 0 ETH | 0.00647719 | ||||
| Settle Aggregate... | 18121361 | 930 days ago | IN | 0 ETH | 0.00541212 | ||||
| Settle Aggregate... | 18120719 | 930 days ago | IN | 0 ETH | 0.00463143 | ||||
| Settle Aggregate... | 18120237 | 931 days ago | IN | 0 ETH | 0.00239807 | ||||
| Settle Aggregate... | 18120112 | 931 days ago | IN | 0 ETH | 0.00204935 | ||||
| Settle Aggregate... | 18119955 | 931 days ago | IN | 0 ETH | 0.00272072 | ||||
| Settle Aggregate... | 18119948 | 931 days ago | IN | 0 ETH | 0.00296719 | ||||
| Settle Aggregate... | 18119852 | 931 days ago | IN | 0 ETH | 0.00312578 | ||||
| Settle Aggregate... | 18119004 | 931 days ago | IN | 0 ETH | 0.00191462 | ||||
| Settle Aggregate... | 18118985 | 931 days ago | IN | 0 ETH | 0.00165571 | ||||
| Settle Aggregate... | 18118347 | 931 days ago | IN | 0 ETH | 0.00161552 | ||||
| Settle Aggregate... | 18118338 | 931 days ago | IN | 0 ETH | 0.0017312 | ||||
| Settle Aggregate... | 18117582 | 931 days ago | IN | 0 ETH | 0.00223366 | ||||
| Settle Aggregate... | 18109494 | 932 days ago | IN | 0 ETH | 0.00150549 | ||||
| Settle Aggregate... | 18109489 | 932 days ago | IN | 0 ETH | 0.00173821 | ||||
| Settle Aggregate... | 18109098 | 932 days ago | IN | 0 ETH | 0.00163456 | ||||
| Settle Aggregate... | 18107707 | 932 days ago | IN | 0 ETH | 0.00242648 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| 0x60806040 | 16677887 | 1133 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BebopAggregationContract
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./token/ERC20/IERC20.sol";
import "./token/Address.sol";
import "./token/ERC20/SafeER20.sol";
import "./interface/bebop_aggregation_contract.sol";
import "@openzeppelin/contracts/interfaces/IERC1271.sol";
contract BebopAggregationContract is IBebopAggregationContract {
bytes4 constant internal EIP1271_MAGICVALUE = bytes4(keccak256("isValidSignature(bytes32,bytes)"));
using SafeERC20 for IERC20;
function getChainID() private view returns (uint256) {
uint256 id;
assembly {
id := chainid()
}
return id;
}
uint256 chainId = getChainID();
address verifyingContract = address(this);
string private constant EIP712_DOMAIN =
"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)";
bytes32 public constant EIP712_DOMAIN_TYPEHASH =
keccak256(abi.encodePacked(EIP712_DOMAIN));
string constant AGGREGATED_ORDER_TYPE =
"AggregateOrder(uint256 expiry,address taker_address,address[] maker_addresses,uint256[] maker_nonces,address[][] taker_tokens,address[][] maker_tokens,uint256[][] taker_amounts,uint256[][] maker_amounts,address receiver)";
bytes32 constant AGGREGATED_ORDER_TYPE_HASH = keccak256(abi.encodePacked(AGGREGATED_ORDER_TYPE));
string constant PARTIAL_AGGREGATED_ORDER_TYPE =
"PartialOrder(uint256 expiry,address taker_address,address maker_address,uint256 maker_nonce,address[] taker_tokens,address[] maker_tokens,uint256[] taker_amounts,uint256[] maker_amounts,address receiver)";
bytes32 constant PARTIAL_AGGREGATED_ORDER_TYPE_HASH = keccak256(abi.encodePacked(PARTIAL_AGGREGATED_ORDER_TYPE));
bytes32 private DOMAIN_SEPARATOR;
uint256 private constant ETH_SIGN_HASH_PREFIX = 0x19457468657265756d205369676e6564204d6573736167653a0a333200000000;
mapping(address => mapping(uint256 => uint256)) private maker_validator;
mapping(address => mapping(address => bool)) orderSignerRegistry;
constructor() {
DOMAIN_SEPARATOR = keccak256(
abi.encode(
EIP712_DOMAIN_TYPEHASH,
keccak256("BebopAggregationContract"),
keccak256("1"),
chainId,
verifyingContract
)
);
}
function getRsv(bytes memory sig) internal pure returns (bytes32, bytes32, uint8)
{
require(sig.length == 65, "Invalid signature length");
bytes32 r;
bytes32 s;
uint8 v;
assembly {
r := mload(add(sig, 32))
s := mload(add(sig, 64))
v := and(mload(add(sig, 65)), 255)
}
require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "Invalid sig value S");
require(v == 27 || v == 28, "Invalid sig value V");
return (r, s, v);
}
function encodeTightlyPackedNestedInt(uint256[][] memory _nested_array) internal pure returns(bytes memory encoded) {
uint nested_array_length = _nested_array.length;
for (uint i = 0; i < nested_array_length; i++) {
encoded = abi.encodePacked(
encoded,
keccak256(abi.encodePacked(_nested_array[i]))
);
}
return encoded;
}
function encodeTightlyPackedNested(address[][] memory _nested_array) internal pure returns(bytes memory encoded) {
uint nested_array_length = _nested_array.length;
for (uint i = 0; i < nested_array_length; i++) {
encoded = abi.encodePacked(
encoded,
keccak256(abi.encodePacked(_nested_array[i]))
);
}
return encoded;
}
function registerAllowedOrderSigner(address signer, bool allowed) external override {
orderSignerRegistry[msg.sender][signer] = allowed;
emit OrderSignerRegistered(msg.sender, signer, allowed);
}
function hashAggregateOrder(AggregateOrder memory order) public view override returns (bytes32) {
return
keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR,
keccak256(
abi.encode(
AGGREGATED_ORDER_TYPE_HASH,
order.expiry,
order.taker_address,
keccak256(abi.encodePacked(order.maker_addresses)),
keccak256(abi.encodePacked(order.maker_nonces)),
keccak256(encodeTightlyPackedNested(order.taker_tokens)),
keccak256(encodeTightlyPackedNested(order.maker_tokens)),
keccak256(encodeTightlyPackedNestedInt(order.taker_amounts)),
keccak256(encodeTightlyPackedNestedInt(order.maker_amounts)),
order.receiver
)
)
)
);
}
function hashPartialOrder(PartialOrder memory order) public view override returns (bytes32) {
return
keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR,
keccak256(
abi.encode(
PARTIAL_AGGREGATED_ORDER_TYPE_HASH,
order.expiry,
order.taker_address,
order.maker_address,
order.maker_nonce,
keccak256(abi.encodePacked(order.taker_tokens)),
keccak256(abi.encodePacked(order.maker_tokens)),
keccak256(abi.encodePacked(order.taker_amounts)),
keccak256(abi.encodePacked(order.maker_amounts)),
order.receiver
)
)
)
);
}
function invalidateOrder(address maker, uint256 nonce) private {
require(nonce != 0, "Nonce must be non-zero");
uint256 invalidatorSlot = uint64(nonce) >> 8;
uint256 invalidatorBit = 1 << uint8(nonce);
mapping(uint256 => uint256) storage invalidatorStorage = maker_validator[maker];
uint256 invalidator = invalidatorStorage[invalidatorSlot];
require(invalidator & invalidatorBit == 0, "Invalid maker order (nonce)");
invalidatorStorage[invalidatorSlot] = invalidator | invalidatorBit;
}
function validateMakerSignature(
address maker_address,
bytes32 hash,
Signature memory signature
) public view override {
if (signature.signatureType == SignatureType.EIP712) {
// Signed using EIP712
(bytes32 r, bytes32 s, uint8 v) = getRsv(signature.signatureBytes);
address signer = ecrecover(hash, v, r, s);
require(signer != address(0), "Invalid signer");
if (signer != maker_address && !orderSignerRegistry[maker_address][signer]) {
revert("Invalid maker signature");
}
} else if (signature.signatureType == SignatureType.EIP1271) {
require(IERC1271(maker_address).isValidSignature(hash, signature.signatureBytes) == EIP1271_MAGICVALUE, "Invalid Maker EIP 1271 Signature");
} else if (signature.signatureType == SignatureType.ETHSIGN) {
bytes32 ethSignHash;
assembly {
mstore(0, ETH_SIGN_HASH_PREFIX) // length of 28 bytes
mstore(28, hash) // length of 32 bytes
ethSignHash := keccak256(0, 60)
}
(bytes32 r, bytes32 s, uint8 v) = getRsv(signature.signatureBytes);
address signer = ecrecover(ethSignHash, v, r, s);
require(signer != address(0), "Invalid signer");
if (signer != maker_address && !orderSignerRegistry[maker_address][signer]) {
revert("Invalid maker signature");
}
} else {
revert("Invalid Signature Type");
}
}
function assertAndInvalidateMakerOrders(
AggregateOrder memory order,
Signature[] memory makerSigs
) private {
// number of columns = number of sigs otherwise unwarranted columns can be injected by sender.
require(order.taker_tokens.length == makerSigs.length, "Taker tokens length mismatch");
require(order.maker_tokens.length == makerSigs.length, "Maker tokens length mismatch");
require(order.taker_amounts.length == makerSigs.length, "Taker amounts length mismatch");
require(order.maker_amounts.length == makerSigs.length, "Maker amounts length mismatch");
require(order.maker_nonces.length == makerSigs.length, "Maker nonces length mismatch");
require(order.maker_addresses.length == makerSigs.length, "Maker addresses length mismatch");
uint numMakerSigs = makerSigs.length;
for (uint256 i = 0; i < numMakerSigs; i++) {
// validate the partially signed orders.
address maker_address = order.maker_addresses[i];
require(order.maker_tokens[i].length == order.maker_amounts[i].length, "Maker tokens and amounts length mismatch");
require(order.taker_tokens[i].length == order.taker_amounts[i].length, "Taker tokens and amounts length mismatch");
PartialOrder memory partial_order = PartialOrder(
order.expiry,
order.taker_address,
maker_address,
order.maker_nonces[i],
order.taker_tokens[i],
order.maker_tokens[i],
order.taker_amounts[i],
order.maker_amounts[i],
order.receiver
);
bytes32 partial_hash = hashPartialOrder(partial_order);
Signature memory makerSig = makerSigs[i];
validateMakerSignature(maker_address, partial_hash, makerSig);
invalidateOrder(maker_address, order.maker_nonces[i]);
}
}
// Construct partial orders from aggregated orders
function assertAndInvalidateAggregateOrder(
AggregateOrder memory order,
bytes memory takerSig,
Signature[] memory makerSigs
) internal returns (bytes32) {
bytes32 h = hashAggregateOrder(order);
(bytes32 R, bytes32 S, uint8 V) = getRsv(takerSig);
address taker = ecrecover(h, V, R, S);
require(taker == order.taker_address, "Invalid taker signature");
// construct and validate maker partial orders
assertAndInvalidateMakerOrders(order, makerSigs);
require(order.expiry > block.timestamp, "Signature expired");
return h;
}
function makerTransferFunds(
address from,
address to,
uint256 quantity,
address token
) private returns (bool) {
IERC20(token).safeTransferFrom(from, to, quantity);
return true;
}
function SettleAggregateOrder(
AggregateOrder memory order,
bytes memory takerSig,
Signature[] memory makerSigs
) public payable override returns (bool) {
bytes32 h = assertAndInvalidateAggregateOrder(
order,
takerSig,
makerSigs
);
// for each distinct maker
uint numMakerSigs = makerSigs.length;
for (uint256 i = 0; i < numMakerSigs; i++) {
// for each of that maker's tokens
uint makerTokensLength = order.maker_tokens[i].length;
uint takerTokensLength = order.taker_tokens[i].length;
for (uint256 j = 0; j < makerTokensLength; j++) {
require(
// transfer those tokens to the receiver
makerTransferFunds(
order.maker_addresses[i],
order.receiver,
order.maker_amounts[i][j],
order.maker_tokens[i][j]
)
);
}
// for each of the takers tokens (corresponding to each maker)
for (uint k = 0; k < takerTokensLength; k++){
// transfer each of those tokens to the corresponding maker
IERC20(address(order.taker_tokens[i][k])).safeTransferFrom(
order.taker_address,
order.maker_addresses[i],
order.taker_amounts[i][k]
);
}
}
emit AggregateOrderExecuted(
h
);
return true;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC1271 standard signature validation method for
* contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].
*
* _Available since v4.1._
*/
interface IERC1271 {
/**
* @dev Should return whether the signature provided is valid for the provided data
* @param hash Hash of the data to be signed
* @param signature Signature byte array associated with _data
*/
function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
enum SignatureType {
EIP712, //0
EIP1271, //1
ETHSIGN //2
}
struct Signature {
SignatureType signatureType;
bytes signatureBytes;
}
struct AggregateOrder {
uint256 expiry;
address taker_address;
address[] maker_addresses;
uint256[] maker_nonces;
address[][] taker_tokens;
address[][] maker_tokens;
uint256[][] taker_amounts;
uint256[][] maker_amounts;
address receiver;
}
struct PartialOrder {
uint256 expiry;
address taker_address;
address maker_address;
uint256 maker_nonce;
address[] taker_tokens;
address[] maker_tokens;
uint256[] taker_amounts;
uint256[] maker_amounts;
address receiver;
}
interface IBebopAggregationContract {
event AggregateOrderExecuted(
bytes32 order_hash
);
event OrderSignerRegistered(address maker, address signer, bool allowed);
function hashAggregateOrder(AggregateOrder memory order) external view returns (bytes32);
function hashPartialOrder(PartialOrder memory order) external view returns (bytes32);
function registerAllowedOrderSigner(address signer, bool allowed) external;
function validateMakerSignature(
address maker_address,
bytes32 hash,
Signature memory signature
) external view;
function SettleAggregateOrder(
AggregateOrder memory order,
bytes memory takerSig,
Signature[] memory makerSigs
) external payable returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.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 functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}pragma solidity ^0.8.0;
import "../Address.sol";
import "./IERC20.sol";
import "./draft-IERC20Permit.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));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @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");
}
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"order_hash","type":"bytes32"}],"name":"AggregateOrderExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"maker","type":"address"},{"indexed":false,"internalType":"address","name":"signer","type":"address"},{"indexed":false,"internalType":"bool","name":"allowed","type":"bool"}],"name":"OrderSignerRegistered","type":"event"},{"inputs":[],"name":"EIP712_DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"taker_address","type":"address"},{"internalType":"address[]","name":"maker_addresses","type":"address[]"},{"internalType":"uint256[]","name":"maker_nonces","type":"uint256[]"},{"internalType":"address[][]","name":"taker_tokens","type":"address[][]"},{"internalType":"address[][]","name":"maker_tokens","type":"address[][]"},{"internalType":"uint256[][]","name":"taker_amounts","type":"uint256[][]"},{"internalType":"uint256[][]","name":"maker_amounts","type":"uint256[][]"},{"internalType":"address","name":"receiver","type":"address"}],"internalType":"struct AggregateOrder","name":"order","type":"tuple"},{"internalType":"bytes","name":"takerSig","type":"bytes"},{"components":[{"internalType":"enum SignatureType","name":"signatureType","type":"uint8"},{"internalType":"bytes","name":"signatureBytes","type":"bytes"}],"internalType":"struct Signature[]","name":"makerSigs","type":"tuple[]"}],"name":"SettleAggregateOrder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"taker_address","type":"address"},{"internalType":"address[]","name":"maker_addresses","type":"address[]"},{"internalType":"uint256[]","name":"maker_nonces","type":"uint256[]"},{"internalType":"address[][]","name":"taker_tokens","type":"address[][]"},{"internalType":"address[][]","name":"maker_tokens","type":"address[][]"},{"internalType":"uint256[][]","name":"taker_amounts","type":"uint256[][]"},{"internalType":"uint256[][]","name":"maker_amounts","type":"uint256[][]"},{"internalType":"address","name":"receiver","type":"address"}],"internalType":"struct AggregateOrder","name":"order","type":"tuple"}],"name":"hashAggregateOrder","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"taker_address","type":"address"},{"internalType":"address","name":"maker_address","type":"address"},{"internalType":"uint256","name":"maker_nonce","type":"uint256"},{"internalType":"address[]","name":"taker_tokens","type":"address[]"},{"internalType":"address[]","name":"maker_tokens","type":"address[]"},{"internalType":"uint256[]","name":"taker_amounts","type":"uint256[]"},{"internalType":"uint256[]","name":"maker_amounts","type":"uint256[]"},{"internalType":"address","name":"receiver","type":"address"}],"internalType":"struct PartialOrder","name":"order","type":"tuple"}],"name":"hashPartialOrder","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"bool","name":"allowed","type":"bool"}],"name":"registerAllowedOrderSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"maker_address","type":"address"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"components":[{"internalType":"enum SignatureType","name":"signatureType","type":"uint8"},{"internalType":"bytes","name":"signatureBytes","type":"bytes"}],"internalType":"struct Signature","name":"signature","type":"tuple"}],"name":"validateMakerSignature","outputs":[],"stateMutability":"view","type":"function"}]Contract Creation Code
6080604052620000146200014860201b60201c565b60005530600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006557600080fd5b506040518060800160405280605281526020016200414b60529139604051602001620000929190620001bf565b604051602081830303815290604052805190602001207f039d0dfc8d3a1f771ddc0eea61a6630683a0f0227b633c1c6ceaaea0bbdb2e2d7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6600054600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405160200162000126959493929190620001d8565b60405160208183030381529060405280519060200120600281905550620002c9565b6000804690508091505090565b62000160816200024b565b82525050565b62000171816200025f565b82525050565b6000620001848262000235565b62000190818562000240565b9350620001a281856020860162000293565b80840191505092915050565b620001b98162000289565b82525050565b6000620001cd828462000177565b915081905092915050565b600060a082019050620001ef600083018862000166565b620001fe602083018762000166565b6200020d604083018662000166565b6200021c6060830185620001ae565b6200022b608083018462000155565b9695505050505050565b600081519050919050565b600081905092915050565b6000620002588262000269565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620002b357808201518184015260208101905062000296565b83811115620002c3576000848401525b50505050565b613e7280620002d96000396000f3fe6080604052600436106100555760003560e01c806307502cc11461005a5780633f6e8a8e1461008a5780635b730ecd146100c7578063c7977be7146100f0578063ea7faa611461011b578063f453f4e314610144575b600080fd5b610074600480360381019061006f91906127a8565b610181565b6040516100819190612f0e565b60405180910390f35b34801561009657600080fd5b506100b160048036038101906100ac9190612767565b6105b1565b6040516100be9190612f29565b60405180910390f35b3480156100d357600080fd5b506100ee60048036038101906100e991906126ae565b610709565b005b3480156100fc57600080fd5b50610105610df4565b6040516101129190612f29565b60405180910390f35b34801561012757600080fd5b50610142600480360381019061013d9190612672565b610e36565b005b34801561015057600080fd5b5061016b6004803603810190610166919061283f565b610f09565b6040516101789190612f29565b60405180910390f35b60008061018f858585611071565b905060008351905060005b8181101561056c5760008760a0015182815181106101e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015151905060008860800151838151811061022b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015151905060005b828110156103ba5761039e8a604001518581518110610281577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518b61010001518c60e0015187815181106102cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151848151811061030c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518d60a001518881518110610351577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518581518110610391577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516111b7565b6103a757600080fd5b80806103b2906136b7565b915050610239565b5060005b81811015610556576105438a602001518b60400151868151811061040b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518c60c001518781518110610450577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518481518110610490577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518d6080015188815181106104d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518581518110610515577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff166111f2909392919063ffffffff16565b808061054e906136b7565b9150506103be565b5050508080610564906136b7565b91505061019a565b507fc59522161f93d59c8c4520b0e7a3635fb7544133275be812a4ea970f4f14251b8260405161059c9190612f29565b60405180910390a16001925050509392505050565b600060025460405180610100016040528060dc8152602001613c4460dc91396040516020016105e09190612e52565b604051602081830303815290604052805190602001208360000151846020015185604001516040516020016106159190612de5565b6040516020818303038152906040528051906020012086606001516040516020016106409190612dfc565b60405160208183030381529060405280519060200120610663886080015161127b565b805190602001206106778960a0015161127b565b8051906020012061068b8a60c00151611332565b8051906020012061069f8b60e00151611332565b805190602001208b61010001516040516020016106c59a99989796959493929190613010565b604051602081830303815290604052805190602001206040516020016106ec929190612e69565b604051602081830303815290604052805190602001209050919050565b60006002811115610743577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600001516002811115610780577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561096d57600080600061079884602001516113e9565b9250925092506000600186838686604051600081526020016040526040516107c394939291906130ac565b6020604051602081039080840390855afa1580156107e5573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085890613233565b60405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156109245750600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b906133b3565b60405180910390fd5b50505050610def565b600160028111156109a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816000015160028111156109e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610b1d577f1626ba7e356f5979dd355a3d2bfb43e80420a480c3b854edce286a82d74968697bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168373ffffffffffffffffffffffffffffffffffffffff16631626ba7e8484602001516040518363ffffffff1660e01b8152600401610a69929190612f44565b60206040518083038186803b158015610a8157600080fd5b505afa158015610a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab9919061273e565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90613193565b60405180910390fd5b610dee565b600280811115610b56577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600001516002811115610b93577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610db25760007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005282601c52603c60002090506000806000610bdc85602001516113e9565b925092509250600060018583868660405160008152602001604052604051610c0794939291906130ac565b6020604051602081039080840390855afa158015610c29573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9c90613233565b60405180910390fd5b8773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610d685750600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f906133b3565b60405180910390fd5b5050505050610ded565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490613153565b60405180910390fd5b5b5b505050565b604051806080016040528060528152602001613d2060529139604051602001610e1d9190612e52565b6040516020818303038152906040528051906020012081565b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f6ea9dbe8b2cc119348716a9220a0742ad62b7884ecb0ff4b32cd508121fd9379338383604051610efd93929190612ea0565b60405180910390a15050565b600060025460405180610100016040528060cb8152602001613d7260cb9139604051602001610f389190612e52565b6040516020818303038152906040528051906020012083600001518460200151856040015186606001518760800151604051602001610f779190612de5565b604051602081830303815290604052805190602001208860a00151604051602001610fa29190612de5565b604051602081830303815290604052805190602001208960c00151604051602001610fcd9190612dfc565b604051602081830303815290604052805190602001208a60e00151604051602001610ff89190612dfc565b604051602081830303815290604052805190602001208b610100015160405160200161102d9a99989796959493929190612f74565b60405160208183030381529060405280519060200120604051602001611054929190612e69565b604051602081830303815290604052805190602001209050919050565b60008061107d856105b1565b9050600080600061108d876113e9565b9250925092506000600185838686604051600081526020016040526040516110b894939291906130ac565b6020604051602081039080840390855afa1580156110da573d6000803e3d6000fd5b505050602060405103519050886020015173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90613353565b60405180910390fd5b611162898861151c565b428960000151116111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90613253565b60405180910390fd5b84955050505050509392505050565b60006111e68585858573ffffffffffffffffffffffffffffffffffffffff166111f2909392919063ffffffff16565b60019050949350505050565b611275846323b872dd60e01b85858560405160240161121393929190612ed7565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611b6d565b50505050565b606060008251905060005b8181101561132b57828482815181106112c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040516020016112e09190612de5565b60405160208183030381529060405280519060200120604051602001611307929190612e2a565b60405160208183030381529060405292508080611323906136b7565b915050611286565b5050919050565b606060008251905060005b818110156113e2578284828151811061137f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040516020016113979190612dfc565b604051602081830303815290604052805190602001206040516020016113be929190612e2a565b604051602081830303815290604052925080806113da906136b7565b91505061133d565b5050919050565b60008060006041845114611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990613313565b60405180910390fd5b6000806000602087015192506040870151915060ff60418801511690507f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c11156114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac906131f3565b60405180910390fd5b601b8160ff1614806114ca5750601c8160ff16145b611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090613273565b60405180910390fd5b8282829550955095505050509193909250565b805182608001515114611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613173565b60405180910390fd5b80518260a0015151146115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390613213565b60405180910390fd5b80518260c0015151146115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb906132d3565b60405180910390fd5b80518260e00151511461163c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611633906132b3565b60405180910390fd5b805182606001515114611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613393565b60405180910390fd5b8051826040015151146116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390613293565b60405180910390fd5b60008151905060005b81811015611b675760008460400151828151811061171c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508460e001518281518110611763577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151518560a0015183815181106117a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015151146117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e9906131d3565b60405180910390fd5b8460c00151828151811061182f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101515185608001518381518110611875577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015151146118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590613113565b60405180910390fd5b600060405180610120016040528087600001518152602001876020015173ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018760600151858151811061194f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200187608001518581518110611999577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020018760a0015185815181106119e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020018760c001518581518110611a2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020018760e001518581518110611a77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200187610100015173ffffffffffffffffffffffffffffffffffffffff1681525090506000611ab082610f09565b90506000868581518110611aed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050611b02848383610709565b611b508489606001518781518110611b43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611c34565b505050508080611b5f906136b7565b9150506116d5565b50505050565b6000611bcf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611d619092919063ffffffff16565b9050600081511115611c2f5780806020019051810190611bef9190612715565b611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2590613333565b60405180910390fd5b5b505050565b6000811415611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90613373565b60405180910390fd5b600060088267ffffffffffffffff16901c67ffffffffffffffff16905060008260ff166001901b90506000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816000858152602001908152602001600020549050600083821614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3790613133565b60405180910390fd5b82811782600086815260200190815260200160002081905550505050505050565b6060611d708484600085611d79565b90509392505050565b606082471015611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db5906131b3565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611de79190612e13565b60006040518083038185875af1925050503d8060008114611e24576040519150601f19603f3d011682016040523d82523d6000602084013e611e29565b606091505b5091509150611e3a87838387611e46565b92505050949350505050565b60608315611ea957600083511415611ea157611e6185611ebc565b611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e97906132f3565b60405180910390fd5b5b829050611eb4565b611eb38383611edf565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115611ef25781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2691906130f1565b60405180910390fd5b6000611f42611f3d846133f8565b6133d3565b90508083825260208201905082856020860282011115611f6157600080fd5b60005b85811015611f915781611f7788826121d7565b845260208401935060208301925050600181019050611f64565b5050509392505050565b6000611fae611fa984613424565b6133d3565b90508083825260208201905082856020860282011115611fcd57600080fd5b60005b8581101561201757813567ffffffffffffffff811115611fef57600080fd5b808601611ffc89826121ec565b85526020850194506020840193505050600181019050611fd0565b5050509392505050565b600061203461202f84613450565b6133d3565b9050808382526020820190508285602086028201111561205357600080fd5b60005b8581101561209d57813567ffffffffffffffff81111561207557600080fd5b8086016120828982612294565b85526020850194506020840193505050600181019050612056565b5050509392505050565b60006120ba6120b58461347c565b6133d3565b905080838252602082019050828560208602820111156120d957600080fd5b60005b8581101561212357813567ffffffffffffffff8111156120fb57600080fd5b80860161210889826125f9565b855260208501945060208401935050506001810190506120dc565b5050509392505050565b600061214061213b846134a8565b6133d3565b9050808382526020820190508285602086028201111561215f57600080fd5b60005b8581101561218f5781612175888261265d565b845260208401935060208301925050600181019050612162565b5050509392505050565b60006121ac6121a7846134d4565b6133d3565b9050828152602081018484840111156121c457600080fd5b6121cf848285613644565b509392505050565b6000813590506121e681613bc0565b92915050565b600082601f8301126121fd57600080fd5b813561220d848260208601611f2f565b91505092915050565b600082601f83011261222757600080fd5b8135612237848260208601611f9b565b91505092915050565b600082601f83011261225157600080fd5b8135612261848260208601612021565b91505092915050565b600082601f83011261227b57600080fd5b813561228b8482602086016120a7565b91505092915050565b600082601f8301126122a557600080fd5b81356122b584826020860161212d565b91505092915050565b6000813590506122cd81613bd7565b92915050565b6000815190506122e281613bd7565b92915050565b6000813590506122f781613bee565b92915050565b60008151905061230c81613c05565b92915050565b600082601f83011261232357600080fd5b8135612333848260208601612199565b91505092915050565b60008135905061234b81613c1c565b92915050565b6000610120828403121561236457600080fd5b61236f6101206133d3565b9050600061237f8482850161265d565b6000830152506020612393848285016121d7565b602083015250604082013567ffffffffffffffff8111156123b357600080fd5b6123bf848285016121ec565b604083015250606082013567ffffffffffffffff8111156123df57600080fd5b6123eb84828501612294565b606083015250608082013567ffffffffffffffff81111561240b57600080fd5b61241784828501612216565b60808301525060a082013567ffffffffffffffff81111561243757600080fd5b61244384828501612216565b60a08301525060c082013567ffffffffffffffff81111561246357600080fd5b61246f84828501612240565b60c08301525060e082013567ffffffffffffffff81111561248f57600080fd5b61249b84828501612240565b60e0830152506101006124b0848285016121d7565b6101008301525092915050565b600061012082840312156124d057600080fd5b6124db6101206133d3565b905060006124eb8482850161265d565b60008301525060206124ff848285016121d7565b6020830152506040612513848285016121d7565b60408301525060606125278482850161265d565b606083015250608082013567ffffffffffffffff81111561254757600080fd5b612553848285016121ec565b60808301525060a082013567ffffffffffffffff81111561257357600080fd5b61257f848285016121ec565b60a08301525060c082013567ffffffffffffffff81111561259f57600080fd5b6125ab84828501612294565b60c08301525060e082013567ffffffffffffffff8111156125cb57600080fd5b6125d784828501612294565b60e0830152506101006125ec848285016121d7565b6101008301525092915050565b60006040828403121561260b57600080fd5b61261560406133d3565b905060006126258482850161233c565b600083015250602082013567ffffffffffffffff81111561264557600080fd5b61265184828501612312565b60208301525092915050565b60008135905061266c81613c2c565b92915050565b6000806040838503121561268557600080fd5b6000612693858286016121d7565b92505060206126a4858286016122be565b9150509250929050565b6000806000606084860312156126c357600080fd5b60006126d1868287016121d7565b93505060206126e2868287016122e8565b925050604084013567ffffffffffffffff8111156126ff57600080fd5b61270b868287016125f9565b9150509250925092565b60006020828403121561272757600080fd5b6000612735848285016122d3565b91505092915050565b60006020828403121561275057600080fd5b600061275e848285016122fd565b91505092915050565b60006020828403121561277957600080fd5b600082013567ffffffffffffffff81111561279357600080fd5b61279f84828501612351565b91505092915050565b6000806000606084860312156127bd57600080fd5b600084013567ffffffffffffffff8111156127d757600080fd5b6127e386828701612351565b935050602084013567ffffffffffffffff81111561280057600080fd5b61280c86828701612312565b925050604084013567ffffffffffffffff81111561282957600080fd5b6128358682870161226a565b9150509250925092565b60006020828403121561285157600080fd5b600082013567ffffffffffffffff81111561286b57600080fd5b612877848285016124bd565b91505092915050565b600061288c83836128bf565b60208301905092915050565b60006128a48383612dc7565b60208301905092915050565b6128b9816135b9565b82525050565b6128c8816135b9565b82525050565b60006128d982613525565b6128e3818561356b565b93506128ee83613505565b8060005b8381101561291f5781516129068882612880565b975061291183613551565b9250506001810190506128f2565b5085935050505092915050565b600061293782613530565b6129418185613576565b935061294c83613515565b8060005b8381101561297d5781516129648882612898565b975061296f8361355e565b925050600181019050612950565b5085935050505092915050565b612993816135cb565b82525050565b6129a2816135d7565b82525050565b6129b96129b4826135d7565b613700565b82525050565b60006129ca8261353b565b6129d48185613581565b93506129e4818560208601613653565b6129ed81613768565b840191505092915050565b6000612a038261353b565b612a0d8185613592565b9350612a1d818560208601613653565b80840191505092915050565b6000612a3482613546565b612a3e818561359d565b9350612a4e818560208601613653565b612a5781613768565b840191505092915050565b6000612a6d82613546565b612a7781856135ae565b9350612a87818560208601613653565b80840191505092915050565b6000612aa060288361359d565b9150612aab82613779565b604082019050919050565b6000612ac3601b8361359d565b9150612ace826137c8565b602082019050919050565b6000612ae660168361359d565b9150612af1826137f1565b602082019050919050565b6000612b096002836135ae565b9150612b148261381a565b600282019050919050565b6000612b2c601c8361359d565b9150612b3782613843565b602082019050919050565b6000612b4f60208361359d565b9150612b5a8261386c565b602082019050919050565b6000612b7260268361359d565b9150612b7d82613895565b604082019050919050565b6000612b9560288361359d565b9150612ba0826138e4565b604082019050919050565b6000612bb860138361359d565b9150612bc382613933565b602082019050919050565b6000612bdb601c8361359d565b9150612be68261395c565b602082019050919050565b6000612bfe600e8361359d565b9150612c0982613985565b602082019050919050565b6000612c2160118361359d565b9150612c2c826139ae565b602082019050919050565b6000612c4460138361359d565b9150612c4f826139d7565b602082019050919050565b6000612c67601f8361359d565b9150612c7282613a00565b602082019050919050565b6000612c8a601d8361359d565b9150612c9582613a29565b602082019050919050565b6000612cad601d8361359d565b9150612cb882613a52565b602082019050919050565b6000612cd0601d8361359d565b9150612cdb82613a7b565b602082019050919050565b6000612cf360188361359d565b9150612cfe82613aa4565b602082019050919050565b6000612d16602a8361359d565b9150612d2182613acd565b604082019050919050565b6000612d3960178361359d565b9150612d4482613b1c565b602082019050919050565b6000612d5c60168361359d565b9150612d6782613b45565b602082019050919050565b6000612d7f601c8361359d565b9150612d8a82613b6e565b602082019050919050565b6000612da260178361359d565b9150612dad82613b97565b602082019050919050565b612dc18161362d565b82525050565b612dd08161362d565b82525050565b612ddf81613637565b82525050565b6000612df182846128ce565b915081905092915050565b6000612e08828461292c565b915081905092915050565b6000612e1f82846129f8565b915081905092915050565b6000612e3682856129f8565b9150612e4282846129a8565b6020820191508190509392505050565b6000612e5e8284612a62565b915081905092915050565b6000612e7482612afc565b9150612e8082856129a8565b602082019150612e9082846129a8565b6020820191508190509392505050565b6000606082019050612eb560008301866128b0565b612ec260208301856128b0565b612ecf604083018461298a565b949350505050565b6000606082019050612eec60008301866128b0565b612ef960208301856128b0565b612f066040830184612db8565b949350505050565b6000602082019050612f23600083018461298a565b92915050565b6000602082019050612f3e6000830184612999565b92915050565b6000604082019050612f596000830185612999565b8181036020830152612f6b81846129bf565b90509392505050565b600061014082019050612f8a600083018d612999565b612f97602083018c612db8565b612fa4604083018b6128b0565b612fb1606083018a6128b0565b612fbe6080830189612db8565b612fcb60a0830188612999565b612fd860c0830187612999565b612fe560e0830186612999565b612ff3610100830185612999565b6130016101208301846128b0565b9b9a5050505050505050505050565b600061014082019050613026600083018d612999565b613033602083018c612db8565b613040604083018b6128b0565b61304d606083018a612999565b61305a6080830189612999565b61306760a0830188612999565b61307460c0830187612999565b61308160e0830186612999565b61308f610100830185612999565b61309d6101208301846128b0565b9b9a5050505050505050505050565b60006080820190506130c16000830187612999565b6130ce6020830186612dd6565b6130db6040830185612999565b6130e86060830184612999565b95945050505050565b6000602082019050818103600083015261310b8184612a29565b905092915050565b6000602082019050818103600083015261312c81612a93565b9050919050565b6000602082019050818103600083015261314c81612ab6565b9050919050565b6000602082019050818103600083015261316c81612ad9565b9050919050565b6000602082019050818103600083015261318c81612b1f565b9050919050565b600060208201905081810360008301526131ac81612b42565b9050919050565b600060208201905081810360008301526131cc81612b65565b9050919050565b600060208201905081810360008301526131ec81612b88565b9050919050565b6000602082019050818103600083015261320c81612bab565b9050919050565b6000602082019050818103600083015261322c81612bce565b9050919050565b6000602082019050818103600083015261324c81612bf1565b9050919050565b6000602082019050818103600083015261326c81612c14565b9050919050565b6000602082019050818103600083015261328c81612c37565b9050919050565b600060208201905081810360008301526132ac81612c5a565b9050919050565b600060208201905081810360008301526132cc81612c7d565b9050919050565b600060208201905081810360008301526132ec81612ca0565b9050919050565b6000602082019050818103600083015261330c81612cc3565b9050919050565b6000602082019050818103600083015261332c81612ce6565b9050919050565b6000602082019050818103600083015261334c81612d09565b9050919050565b6000602082019050818103600083015261336c81612d2c565b9050919050565b6000602082019050818103600083015261338c81612d4f565b9050919050565b600060208201905081810360008301526133ac81612d72565b9050919050565b600060208201905081810360008301526133cc81612d95565b9050919050565b60006133dd6133ee565b90506133e98282613686565b919050565b6000604051905090565b600067ffffffffffffffff82111561341357613412613739565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561343f5761343e613739565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561346b5761346a613739565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561349757613496613739565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134c3576134c2613739565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134ef576134ee613739565b5b6134f882613768565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600081905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135c48261360d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613671578082015181840152602081019050613656565b83811115613680576000848401525b50505050565b61368f82613768565b810181811067ffffffffffffffff821117156136ae576136ad613739565b5b80604052505050565b60006136c28261362d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136f5576136f461370a565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f54616b657220746f6b656e7320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d616b6572206f7264657220286e6f6e6365290000000000600082015250565b7f496e76616c6964205369676e6174757265205479706500000000000000000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f54616b657220746f6b656e73206c656e677468206d69736d6174636800000000600082015250565b7f496e76616c6964204d616b6572204549502031323731205369676e6174757265600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4d616b657220746f6b656e7320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964207369672076616c7565205300000000000000000000000000600082015250565b7f4d616b657220746f6b656e73206c656e677468206d69736d6174636800000000600082015250565b7f496e76616c6964207369676e6572000000000000000000000000000000000000600082015250565b7f5369676e61747572652065787069726564000000000000000000000000000000600082015250565b7f496e76616c6964207369672076616c7565205600000000000000000000000000600082015250565b7f4d616b657220616464726573736573206c656e677468206d69736d6174636800600082015250565b7f4d616b657220616d6f756e7473206c656e677468206d69736d61746368000000600082015250565b7f54616b657220616d6f756e7473206c656e677468206d69736d61746368000000600082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f496e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f496e76616c69642074616b6572207369676e6174757265000000000000000000600082015250565b7f4e6f6e6365206d757374206265206e6f6e2d7a65726f00000000000000000000600082015250565b7f4d616b6572206e6f6e636573206c656e677468206d69736d6174636800000000600082015250565b7f496e76616c6964206d616b6572207369676e6174757265000000000000000000600082015250565b613bc9816135b9565b8114613bd457600080fd5b50565b613be0816135cb565b8114613beb57600080fd5b50565b613bf7816135d7565b8114613c0257600080fd5b50565b613c0e816135e1565b8114613c1957600080fd5b50565b60038110613c2957600080fd5b50565b613c358161362d565b8114613c4057600080fd5b5056fe4167677265676174654f726465722875696e74323536206578706972792c616464726573732074616b65725f616464726573732c616464726573735b5d206d616b65725f6164647265737365732c75696e743235365b5d206d616b65725f6e6f6e6365732c616464726573735b5d5b5d2074616b65725f746f6b656e732c616464726573735b5d5b5d206d616b65725f746f6b656e732c75696e743235365b5d5b5d2074616b65725f616d6f756e74732c75696e743235365b5d5b5d206d616b65725f616d6f756e74732c6164647265737320726563656976657229454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e7472616374295061727469616c4f726465722875696e74323536206578706972792c616464726573732074616b65725f616464726573732c61646472657373206d616b65725f616464726573732c75696e74323536206d616b65725f6e6f6e63652c616464726573735b5d2074616b65725f746f6b656e732c616464726573735b5d206d616b65725f746f6b656e732c75696e743235365b5d2074616b65725f616d6f756e74732c75696e743235365b5d206d616b65725f616d6f756e74732c6164647265737320726563656976657229a2646970667358221220d958384d3724b3548f2423229171ee40bffd3ba7b75a53590b98fc2eb560c44164736f6c63430008040033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429
Deployed Bytecode
0x6080604052600436106100555760003560e01c806307502cc11461005a5780633f6e8a8e1461008a5780635b730ecd146100c7578063c7977be7146100f0578063ea7faa611461011b578063f453f4e314610144575b600080fd5b610074600480360381019061006f91906127a8565b610181565b6040516100819190612f0e565b60405180910390f35b34801561009657600080fd5b506100b160048036038101906100ac9190612767565b6105b1565b6040516100be9190612f29565b60405180910390f35b3480156100d357600080fd5b506100ee60048036038101906100e991906126ae565b610709565b005b3480156100fc57600080fd5b50610105610df4565b6040516101129190612f29565b60405180910390f35b34801561012757600080fd5b50610142600480360381019061013d9190612672565b610e36565b005b34801561015057600080fd5b5061016b6004803603810190610166919061283f565b610f09565b6040516101789190612f29565b60405180910390f35b60008061018f858585611071565b905060008351905060005b8181101561056c5760008760a0015182815181106101e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015151905060008860800151838151811061022b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015151905060005b828110156103ba5761039e8a604001518581518110610281577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518b61010001518c60e0015187815181106102cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151848151811061030c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518d60a001518881518110610351577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518581518110610391577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516111b7565b6103a757600080fd5b80806103b2906136b7565b915050610239565b5060005b81811015610556576105438a602001518b60400151868151811061040b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518c60c001518781518110610450577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518481518110610490577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518d6080015188815181106104d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518581518110610515577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff166111f2909392919063ffffffff16565b808061054e906136b7565b9150506103be565b5050508080610564906136b7565b91505061019a565b507fc59522161f93d59c8c4520b0e7a3635fb7544133275be812a4ea970f4f14251b8260405161059c9190612f29565b60405180910390a16001925050509392505050565b600060025460405180610100016040528060dc8152602001613c4460dc91396040516020016105e09190612e52565b604051602081830303815290604052805190602001208360000151846020015185604001516040516020016106159190612de5565b6040516020818303038152906040528051906020012086606001516040516020016106409190612dfc565b60405160208183030381529060405280519060200120610663886080015161127b565b805190602001206106778960a0015161127b565b8051906020012061068b8a60c00151611332565b8051906020012061069f8b60e00151611332565b805190602001208b61010001516040516020016106c59a99989796959493929190613010565b604051602081830303815290604052805190602001206040516020016106ec929190612e69565b604051602081830303815290604052805190602001209050919050565b60006002811115610743577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600001516002811115610780577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561096d57600080600061079884602001516113e9565b9250925092506000600186838686604051600081526020016040526040516107c394939291906130ac565b6020604051602081039080840390855afa1580156107e5573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085890613233565b60405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156109245750600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b906133b3565b60405180910390fd5b50505050610def565b600160028111156109a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816000015160028111156109e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610b1d577f1626ba7e356f5979dd355a3d2bfb43e80420a480c3b854edce286a82d74968697bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168373ffffffffffffffffffffffffffffffffffffffff16631626ba7e8484602001516040518363ffffffff1660e01b8152600401610a69929190612f44565b60206040518083038186803b158015610a8157600080fd5b505afa158015610a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab9919061273e565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90613193565b60405180910390fd5b610dee565b600280811115610b56577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600001516002811115610b93577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610db25760007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005282601c52603c60002090506000806000610bdc85602001516113e9565b925092509250600060018583868660405160008152602001604052604051610c0794939291906130ac565b6020604051602081039080840390855afa158015610c29573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9c90613233565b60405180910390fd5b8773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610d685750600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f906133b3565b60405180910390fd5b5050505050610ded565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490613153565b60405180910390fd5b5b5b505050565b604051806080016040528060528152602001613d2060529139604051602001610e1d9190612e52565b6040516020818303038152906040528051906020012081565b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f6ea9dbe8b2cc119348716a9220a0742ad62b7884ecb0ff4b32cd508121fd9379338383604051610efd93929190612ea0565b60405180910390a15050565b600060025460405180610100016040528060cb8152602001613d7260cb9139604051602001610f389190612e52565b6040516020818303038152906040528051906020012083600001518460200151856040015186606001518760800151604051602001610f779190612de5565b604051602081830303815290604052805190602001208860a00151604051602001610fa29190612de5565b604051602081830303815290604052805190602001208960c00151604051602001610fcd9190612dfc565b604051602081830303815290604052805190602001208a60e00151604051602001610ff89190612dfc565b604051602081830303815290604052805190602001208b610100015160405160200161102d9a99989796959493929190612f74565b60405160208183030381529060405280519060200120604051602001611054929190612e69565b604051602081830303815290604052805190602001209050919050565b60008061107d856105b1565b9050600080600061108d876113e9565b9250925092506000600185838686604051600081526020016040526040516110b894939291906130ac565b6020604051602081039080840390855afa1580156110da573d6000803e3d6000fd5b505050602060405103519050886020015173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90613353565b60405180910390fd5b611162898861151c565b428960000151116111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90613253565b60405180910390fd5b84955050505050509392505050565b60006111e68585858573ffffffffffffffffffffffffffffffffffffffff166111f2909392919063ffffffff16565b60019050949350505050565b611275846323b872dd60e01b85858560405160240161121393929190612ed7565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611b6d565b50505050565b606060008251905060005b8181101561132b57828482815181106112c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040516020016112e09190612de5565b60405160208183030381529060405280519060200120604051602001611307929190612e2a565b60405160208183030381529060405292508080611323906136b7565b915050611286565b5050919050565b606060008251905060005b818110156113e2578284828151811061137f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040516020016113979190612dfc565b604051602081830303815290604052805190602001206040516020016113be929190612e2a565b604051602081830303815290604052925080806113da906136b7565b91505061133d565b5050919050565b60008060006041845114611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990613313565b60405180910390fd5b6000806000602087015192506040870151915060ff60418801511690507f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c11156114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac906131f3565b60405180910390fd5b601b8160ff1614806114ca5750601c8160ff16145b611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090613273565b60405180910390fd5b8282829550955095505050509193909250565b805182608001515114611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613173565b60405180910390fd5b80518260a0015151146115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390613213565b60405180910390fd5b80518260c0015151146115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb906132d3565b60405180910390fd5b80518260e00151511461163c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611633906132b3565b60405180910390fd5b805182606001515114611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613393565b60405180910390fd5b8051826040015151146116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390613293565b60405180910390fd5b60008151905060005b81811015611b675760008460400151828151811061171c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508460e001518281518110611763577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151518560a0015183815181106117a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015151146117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e9906131d3565b60405180910390fd5b8460c00151828151811061182f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101515185608001518381518110611875577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015151146118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590613113565b60405180910390fd5b600060405180610120016040528087600001518152602001876020015173ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018760600151858151811061194f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200187608001518581518110611999577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020018760a0015185815181106119e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020018760c001518581518110611a2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020018760e001518581518110611a77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200187610100015173ffffffffffffffffffffffffffffffffffffffff1681525090506000611ab082610f09565b90506000868581518110611aed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050611b02848383610709565b611b508489606001518781518110611b43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611c34565b505050508080611b5f906136b7565b9150506116d5565b50505050565b6000611bcf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611d619092919063ffffffff16565b9050600081511115611c2f5780806020019051810190611bef9190612715565b611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2590613333565b60405180910390fd5b5b505050565b6000811415611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90613373565b60405180910390fd5b600060088267ffffffffffffffff16901c67ffffffffffffffff16905060008260ff166001901b90506000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816000858152602001908152602001600020549050600083821614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3790613133565b60405180910390fd5b82811782600086815260200190815260200160002081905550505050505050565b6060611d708484600085611d79565b90509392505050565b606082471015611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db5906131b3565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611de79190612e13565b60006040518083038185875af1925050503d8060008114611e24576040519150601f19603f3d011682016040523d82523d6000602084013e611e29565b606091505b5091509150611e3a87838387611e46565b92505050949350505050565b60608315611ea957600083511415611ea157611e6185611ebc565b611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e97906132f3565b60405180910390fd5b5b829050611eb4565b611eb38383611edf565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115611ef25781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2691906130f1565b60405180910390fd5b6000611f42611f3d846133f8565b6133d3565b90508083825260208201905082856020860282011115611f6157600080fd5b60005b85811015611f915781611f7788826121d7565b845260208401935060208301925050600181019050611f64565b5050509392505050565b6000611fae611fa984613424565b6133d3565b90508083825260208201905082856020860282011115611fcd57600080fd5b60005b8581101561201757813567ffffffffffffffff811115611fef57600080fd5b808601611ffc89826121ec565b85526020850194506020840193505050600181019050611fd0565b5050509392505050565b600061203461202f84613450565b6133d3565b9050808382526020820190508285602086028201111561205357600080fd5b60005b8581101561209d57813567ffffffffffffffff81111561207557600080fd5b8086016120828982612294565b85526020850194506020840193505050600181019050612056565b5050509392505050565b60006120ba6120b58461347c565b6133d3565b905080838252602082019050828560208602820111156120d957600080fd5b60005b8581101561212357813567ffffffffffffffff8111156120fb57600080fd5b80860161210889826125f9565b855260208501945060208401935050506001810190506120dc565b5050509392505050565b600061214061213b846134a8565b6133d3565b9050808382526020820190508285602086028201111561215f57600080fd5b60005b8581101561218f5781612175888261265d565b845260208401935060208301925050600181019050612162565b5050509392505050565b60006121ac6121a7846134d4565b6133d3565b9050828152602081018484840111156121c457600080fd5b6121cf848285613644565b509392505050565b6000813590506121e681613bc0565b92915050565b600082601f8301126121fd57600080fd5b813561220d848260208601611f2f565b91505092915050565b600082601f83011261222757600080fd5b8135612237848260208601611f9b565b91505092915050565b600082601f83011261225157600080fd5b8135612261848260208601612021565b91505092915050565b600082601f83011261227b57600080fd5b813561228b8482602086016120a7565b91505092915050565b600082601f8301126122a557600080fd5b81356122b584826020860161212d565b91505092915050565b6000813590506122cd81613bd7565b92915050565b6000815190506122e281613bd7565b92915050565b6000813590506122f781613bee565b92915050565b60008151905061230c81613c05565b92915050565b600082601f83011261232357600080fd5b8135612333848260208601612199565b91505092915050565b60008135905061234b81613c1c565b92915050565b6000610120828403121561236457600080fd5b61236f6101206133d3565b9050600061237f8482850161265d565b6000830152506020612393848285016121d7565b602083015250604082013567ffffffffffffffff8111156123b357600080fd5b6123bf848285016121ec565b604083015250606082013567ffffffffffffffff8111156123df57600080fd5b6123eb84828501612294565b606083015250608082013567ffffffffffffffff81111561240b57600080fd5b61241784828501612216565b60808301525060a082013567ffffffffffffffff81111561243757600080fd5b61244384828501612216565b60a08301525060c082013567ffffffffffffffff81111561246357600080fd5b61246f84828501612240565b60c08301525060e082013567ffffffffffffffff81111561248f57600080fd5b61249b84828501612240565b60e0830152506101006124b0848285016121d7565b6101008301525092915050565b600061012082840312156124d057600080fd5b6124db6101206133d3565b905060006124eb8482850161265d565b60008301525060206124ff848285016121d7565b6020830152506040612513848285016121d7565b60408301525060606125278482850161265d565b606083015250608082013567ffffffffffffffff81111561254757600080fd5b612553848285016121ec565b60808301525060a082013567ffffffffffffffff81111561257357600080fd5b61257f848285016121ec565b60a08301525060c082013567ffffffffffffffff81111561259f57600080fd5b6125ab84828501612294565b60c08301525060e082013567ffffffffffffffff8111156125cb57600080fd5b6125d784828501612294565b60e0830152506101006125ec848285016121d7565b6101008301525092915050565b60006040828403121561260b57600080fd5b61261560406133d3565b905060006126258482850161233c565b600083015250602082013567ffffffffffffffff81111561264557600080fd5b61265184828501612312565b60208301525092915050565b60008135905061266c81613c2c565b92915050565b6000806040838503121561268557600080fd5b6000612693858286016121d7565b92505060206126a4858286016122be565b9150509250929050565b6000806000606084860312156126c357600080fd5b60006126d1868287016121d7565b93505060206126e2868287016122e8565b925050604084013567ffffffffffffffff8111156126ff57600080fd5b61270b868287016125f9565b9150509250925092565b60006020828403121561272757600080fd5b6000612735848285016122d3565b91505092915050565b60006020828403121561275057600080fd5b600061275e848285016122fd565b91505092915050565b60006020828403121561277957600080fd5b600082013567ffffffffffffffff81111561279357600080fd5b61279f84828501612351565b91505092915050565b6000806000606084860312156127bd57600080fd5b600084013567ffffffffffffffff8111156127d757600080fd5b6127e386828701612351565b935050602084013567ffffffffffffffff81111561280057600080fd5b61280c86828701612312565b925050604084013567ffffffffffffffff81111561282957600080fd5b6128358682870161226a565b9150509250925092565b60006020828403121561285157600080fd5b600082013567ffffffffffffffff81111561286b57600080fd5b612877848285016124bd565b91505092915050565b600061288c83836128bf565b60208301905092915050565b60006128a48383612dc7565b60208301905092915050565b6128b9816135b9565b82525050565b6128c8816135b9565b82525050565b60006128d982613525565b6128e3818561356b565b93506128ee83613505565b8060005b8381101561291f5781516129068882612880565b975061291183613551565b9250506001810190506128f2565b5085935050505092915050565b600061293782613530565b6129418185613576565b935061294c83613515565b8060005b8381101561297d5781516129648882612898565b975061296f8361355e565b925050600181019050612950565b5085935050505092915050565b612993816135cb565b82525050565b6129a2816135d7565b82525050565b6129b96129b4826135d7565b613700565b82525050565b60006129ca8261353b565b6129d48185613581565b93506129e4818560208601613653565b6129ed81613768565b840191505092915050565b6000612a038261353b565b612a0d8185613592565b9350612a1d818560208601613653565b80840191505092915050565b6000612a3482613546565b612a3e818561359d565b9350612a4e818560208601613653565b612a5781613768565b840191505092915050565b6000612a6d82613546565b612a7781856135ae565b9350612a87818560208601613653565b80840191505092915050565b6000612aa060288361359d565b9150612aab82613779565b604082019050919050565b6000612ac3601b8361359d565b9150612ace826137c8565b602082019050919050565b6000612ae660168361359d565b9150612af1826137f1565b602082019050919050565b6000612b096002836135ae565b9150612b148261381a565b600282019050919050565b6000612b2c601c8361359d565b9150612b3782613843565b602082019050919050565b6000612b4f60208361359d565b9150612b5a8261386c565b602082019050919050565b6000612b7260268361359d565b9150612b7d82613895565b604082019050919050565b6000612b9560288361359d565b9150612ba0826138e4565b604082019050919050565b6000612bb860138361359d565b9150612bc382613933565b602082019050919050565b6000612bdb601c8361359d565b9150612be68261395c565b602082019050919050565b6000612bfe600e8361359d565b9150612c0982613985565b602082019050919050565b6000612c2160118361359d565b9150612c2c826139ae565b602082019050919050565b6000612c4460138361359d565b9150612c4f826139d7565b602082019050919050565b6000612c67601f8361359d565b9150612c7282613a00565b602082019050919050565b6000612c8a601d8361359d565b9150612c9582613a29565b602082019050919050565b6000612cad601d8361359d565b9150612cb882613a52565b602082019050919050565b6000612cd0601d8361359d565b9150612cdb82613a7b565b602082019050919050565b6000612cf360188361359d565b9150612cfe82613aa4565b602082019050919050565b6000612d16602a8361359d565b9150612d2182613acd565b604082019050919050565b6000612d3960178361359d565b9150612d4482613b1c565b602082019050919050565b6000612d5c60168361359d565b9150612d6782613b45565b602082019050919050565b6000612d7f601c8361359d565b9150612d8a82613b6e565b602082019050919050565b6000612da260178361359d565b9150612dad82613b97565b602082019050919050565b612dc18161362d565b82525050565b612dd08161362d565b82525050565b612ddf81613637565b82525050565b6000612df182846128ce565b915081905092915050565b6000612e08828461292c565b915081905092915050565b6000612e1f82846129f8565b915081905092915050565b6000612e3682856129f8565b9150612e4282846129a8565b6020820191508190509392505050565b6000612e5e8284612a62565b915081905092915050565b6000612e7482612afc565b9150612e8082856129a8565b602082019150612e9082846129a8565b6020820191508190509392505050565b6000606082019050612eb560008301866128b0565b612ec260208301856128b0565b612ecf604083018461298a565b949350505050565b6000606082019050612eec60008301866128b0565b612ef960208301856128b0565b612f066040830184612db8565b949350505050565b6000602082019050612f23600083018461298a565b92915050565b6000602082019050612f3e6000830184612999565b92915050565b6000604082019050612f596000830185612999565b8181036020830152612f6b81846129bf565b90509392505050565b600061014082019050612f8a600083018d612999565b612f97602083018c612db8565b612fa4604083018b6128b0565b612fb1606083018a6128b0565b612fbe6080830189612db8565b612fcb60a0830188612999565b612fd860c0830187612999565b612fe560e0830186612999565b612ff3610100830185612999565b6130016101208301846128b0565b9b9a5050505050505050505050565b600061014082019050613026600083018d612999565b613033602083018c612db8565b613040604083018b6128b0565b61304d606083018a612999565b61305a6080830189612999565b61306760a0830188612999565b61307460c0830187612999565b61308160e0830186612999565b61308f610100830185612999565b61309d6101208301846128b0565b9b9a5050505050505050505050565b60006080820190506130c16000830187612999565b6130ce6020830186612dd6565b6130db6040830185612999565b6130e86060830184612999565b95945050505050565b6000602082019050818103600083015261310b8184612a29565b905092915050565b6000602082019050818103600083015261312c81612a93565b9050919050565b6000602082019050818103600083015261314c81612ab6565b9050919050565b6000602082019050818103600083015261316c81612ad9565b9050919050565b6000602082019050818103600083015261318c81612b1f565b9050919050565b600060208201905081810360008301526131ac81612b42565b9050919050565b600060208201905081810360008301526131cc81612b65565b9050919050565b600060208201905081810360008301526131ec81612b88565b9050919050565b6000602082019050818103600083015261320c81612bab565b9050919050565b6000602082019050818103600083015261322c81612bce565b9050919050565b6000602082019050818103600083015261324c81612bf1565b9050919050565b6000602082019050818103600083015261326c81612c14565b9050919050565b6000602082019050818103600083015261328c81612c37565b9050919050565b600060208201905081810360008301526132ac81612c5a565b9050919050565b600060208201905081810360008301526132cc81612c7d565b9050919050565b600060208201905081810360008301526132ec81612ca0565b9050919050565b6000602082019050818103600083015261330c81612cc3565b9050919050565b6000602082019050818103600083015261332c81612ce6565b9050919050565b6000602082019050818103600083015261334c81612d09565b9050919050565b6000602082019050818103600083015261336c81612d2c565b9050919050565b6000602082019050818103600083015261338c81612d4f565b9050919050565b600060208201905081810360008301526133ac81612d72565b9050919050565b600060208201905081810360008301526133cc81612d95565b9050919050565b60006133dd6133ee565b90506133e98282613686565b919050565b6000604051905090565b600067ffffffffffffffff82111561341357613412613739565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561343f5761343e613739565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561346b5761346a613739565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561349757613496613739565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134c3576134c2613739565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134ef576134ee613739565b5b6134f882613768565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600081905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135c48261360d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613671578082015181840152602081019050613656565b83811115613680576000848401525b50505050565b61368f82613768565b810181811067ffffffffffffffff821117156136ae576136ad613739565b5b80604052505050565b60006136c28261362d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136f5576136f461370a565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f54616b657220746f6b656e7320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d616b6572206f7264657220286e6f6e6365290000000000600082015250565b7f496e76616c6964205369676e6174757265205479706500000000000000000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f54616b657220746f6b656e73206c656e677468206d69736d6174636800000000600082015250565b7f496e76616c6964204d616b6572204549502031323731205369676e6174757265600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4d616b657220746f6b656e7320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964207369672076616c7565205300000000000000000000000000600082015250565b7f4d616b657220746f6b656e73206c656e677468206d69736d6174636800000000600082015250565b7f496e76616c6964207369676e6572000000000000000000000000000000000000600082015250565b7f5369676e61747572652065787069726564000000000000000000000000000000600082015250565b7f496e76616c6964207369672076616c7565205600000000000000000000000000600082015250565b7f4d616b657220616464726573736573206c656e677468206d69736d6174636800600082015250565b7f4d616b657220616d6f756e7473206c656e677468206d69736d61746368000000600082015250565b7f54616b657220616d6f756e7473206c656e677468206d69736d61746368000000600082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f496e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f496e76616c69642074616b6572207369676e6174757265000000000000000000600082015250565b7f4e6f6e6365206d757374206265206e6f6e2d7a65726f00000000000000000000600082015250565b7f4d616b6572206e6f6e636573206c656e677468206d69736d6174636800000000600082015250565b7f496e76616c6964206d616b6572207369676e6174757265000000000000000000600082015250565b613bc9816135b9565b8114613bd457600080fd5b50565b613be0816135cb565b8114613beb57600080fd5b50565b613bf7816135d7565b8114613c0257600080fd5b50565b613c0e816135e1565b8114613c1957600080fd5b50565b60038110613c2957600080fd5b50565b613c358161362d565b8114613c4057600080fd5b5056fe4167677265676174654f726465722875696e74323536206578706972792c616464726573732074616b65725f616464726573732c616464726573735b5d206d616b65725f6164647265737365732c75696e743235365b5d206d616b65725f6e6f6e6365732c616464726573735b5d5b5d2074616b65725f746f6b656e732c616464726573735b5d5b5d206d616b65725f746f6b656e732c75696e743235365b5d5b5d2074616b65725f616d6f756e74732c75696e743235365b5d5b5d206d616b65725f616d6f756e74732c6164647265737320726563656976657229454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e7472616374295061727469616c4f726465722875696e74323536206578706972792c616464726573732074616b65725f616464726573732c61646472657373206d616b65725f616464726573732c75696e74323536206d616b65725f6e6f6e63652c616464726573735b5d2074616b65725f746f6b656e732c616464726573735b5d206d616b65725f746f6b656e732c75696e743235365b5d2074616b65725f616d6f756e74732c75696e743235365b5d206d616b65725f616d6f756e74732c6164647265737320726563656976657229a2646970667358221220d958384d3724b3548f2423229171ee40bffd3ba7b75a53590b98fc2eb560c44164736f6c63430008040033
Loading...
Loading
Loading...
Loading
OVERVIEW
Bebop is a crypto platform that makes trading in DeFi both easy and efficient. Trade many tokens at once with no slippage.Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.