Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Source Code
Overview
Max Total Supply
0 st0ked
Holders
560
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 st0kedLoading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
st0ked
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-05-01
*/
/*
_______________ __ __ __________
/ ___/_ __/ __ \/ //_// ____/ __ \
\__ \ / / / / / / ,< / __/ / / / /
___/ // / / /_/ / /| |/ /___/ /_/ /
/____//_/ \____/_/ |_/_____/_____/
*/
//SPDX-License-Identifier: MIT
// File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol
pragma solidity >=0.5.0;
interface ILayerZeroUserApplicationConfig {
// @notice set the configuration of the LayerZero messaging library of the specified version
// @param _version - messaging library version
// @param _chainId - the chainId for the pending config change
// @param _configType - type of configuration. every messaging library has its own convention.
// @param _config - configuration in the bytes. can encode arbitrary content.
function setConfig(
uint16 _version,
uint16 _chainId,
uint256 _configType,
bytes calldata _config
) external;
// @notice set the send() LayerZero messaging library version to _version
// @param _version - new messaging library version
function setSendVersion(uint16 _version) external;
// @notice set the lzReceive() LayerZero messaging library version to _version
// @param _version - new messaging library version
function setReceiveVersion(uint16 _version) external;
// @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
// @param _srcChainId - the chainId of the source chain
// @param _srcAddress - the contract address of the source contract at the source chain
function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress)
external;
}
// File: contracts/interfaces/ILayerZeroEndpoint.sol
pragma solidity >=0.5.0;
interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
// @notice send a LayerZero message to the specified address at a LayerZero endpoint.
// @param _dstChainId - the destination chain identifier
// @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
// @param _payload - a custom bytes payload to send to the destination contract
// @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
// @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
// @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
function send(
uint16 _dstChainId,
bytes calldata _destination,
bytes calldata _payload,
address payable _refundAddress,
address _zroPaymentAddress,
bytes calldata _adapterParams
) external payable;
// @notice used by the messaging library to publish verified payload
// @param _srcChainId - the source chain identifier
// @param _srcAddress - the source contract (as bytes) at the source chain
// @param _dstAddress - the address on destination chain
// @param _nonce - the unbound message ordering nonce
// @param _gasLimit - the gas limit for external contract execution
// @param _payload - verified payload to send to the destination contract
function receivePayload(
uint16 _srcChainId,
bytes calldata _srcAddress,
address _dstAddress,
uint64 _nonce,
uint256 _gasLimit,
bytes calldata _payload
) external;
// @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain
// @param _srcChainId - the source chain identifier
// @param _srcAddress - the source chain contract address
function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress)
external
view
returns (uint64);
// @notice get the outboundNonce from this source chain which, consequently, is always an EVM
// @param _srcAddress - the source chain contract address
function getOutboundNonce(uint16 _dstChainId, address _srcAddress)
external
view
returns (uint64);
// @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
// @param _dstChainId - the destination chain identifier
// @param _userApplication - the user app address on this EVM chain
// @param _payload - the custom message to send over LayerZero
// @param _payInZRO - if false, user app pays the protocol fee in native token
// @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
function estimateFees(
uint16 _dstChainId,
address _userApplication,
bytes calldata _payload,
bool _payInZRO,
bytes calldata _adapterParam
) external view returns (uint256 nativeFee, uint256 zroFee);
// @notice get this Endpoint's immutable source identifier
function getChainId() external view returns (uint16);
// @notice the interface to retry failed message on this Endpoint destination
// @param _srcChainId - the source chain identifier
// @param _srcAddress - the source chain contract address
// @param _payload - the payload to be retried
function retryPayload(
uint16 _srcChainId,
bytes calldata _srcAddress,
bytes calldata _payload
) external;
// @notice query if any STORED payload (message blocking) at the endpoint.
// @param _srcChainId - the source chain identifier
// @param _srcAddress - the source chain contract address
function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress)
external
view
returns (bool);
// @notice query if the _libraryAddress is valid for sending msgs.
// @param _userApplication - the user app address on this EVM chain
function getSendLibraryAddress(address _userApplication)
external
view
returns (address);
// @notice query if the _libraryAddress is valid for receiving msgs.
// @param _userApplication - the user app address on this EVM chain
function getReceiveLibraryAddress(address _userApplication)
external
view
returns (address);
// @notice query if the non-reentrancy guard for send() is on
// @return true if the guard is on. false otherwise
function isSendingPayload() external view returns (bool);
// @notice query if the non-reentrancy guard for receive() is on
// @return true if the guard is on. false otherwise
function isReceivingPayload() external view returns (bool);
// @notice get the configuration of the LayerZero messaging library of the specified version
// @param _version - messaging library version
// @param _chainId - the chainId for the pending config change
// @param _userApplication - the contract address of the user application
// @param _configType - type of configuration. every messaging library has its own convention.
function getConfig(
uint16 _version,
uint16 _chainId,
address _userApplication,
uint256 _configType
) external view returns (bytes memory);
// @notice get the send() LayerZero messaging library version
// @param _userApplication - the contract address of the user application
function getSendVersion(address _userApplication)
external
view
returns (uint16);
// @notice get the lzReceive() LayerZero messaging library version
// @param _userApplication - the contract address of the user application
function getReceiveVersion(address _userApplication)
external
view
returns (uint16);
}
// File: contracts/interfaces/ILayerZeroReceiver.sol
pragma solidity >=0.5.0;
interface ILayerZeroReceiver {
// @notice LayerZero endpoint will invoke this function to deliver the message on the destination
// @param _srcChainId - the source endpoint identifier
// @param _srcAddress - the source sending contract address from the source chain
// @param _nonce - the ordered message nonce
// @param _payload - the signed payload is the UA bytes has encoded to be sent
function lzReceive(
uint16 _srcChainId,
bytes calldata _srcAddress,
uint64 _nonce,
bytes calldata _payload
) external;
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length)
internal
pure
returns (string memory)
{
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(
address(this).balance >= amount,
"Address: insufficient balance"
);
(bool success, ) = recipient.call{value: amount}("");
require(
success,
"Address: unable to send value, recipient may have reverted"
);
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return
functionCallWithValue(
target,
data,
value,
"Address: low-level call with value failed"
);
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(
address(this).balance >= value,
"Address: insufficient balance for call"
);
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(
data
);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data)
internal
view
returns (bytes memory)
{
return
functionStaticCall(
target,
data,
"Address: low-level static call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return
functionDelegateCall(
target,
data,
"Address: low-level delegate call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override
returns (bool)
{
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(
address indexed from,
address indexed to,
uint256 indexed tokenId
);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(
address indexed owner,
address indexed approved,
uint256 indexed tokenId
);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(
address indexed owner,
address indexed operator,
bool approved
);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId)
external
view
returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator)
external
view
returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC165, IERC165)
returns (bool)
{
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner)
public
view
virtual
override
returns (uint256)
{
require(
owner != address(0),
"ERC721: balance query for the zero address"
);
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId)
public
view
virtual
override
returns (address)
{
address owner = _owners[tokenId];
require(
owner != address(0),
"ERC721: owner query for nonexistent token"
);
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory baseURI = _baseURI();
return
bytes(baseURI).length > 0
? string(abi.encodePacked(baseURI, tokenId.toString()))
: "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId)
public
view
virtual
override
returns (address)
{
require(
_exists(tokenId),
"ERC721: approved query for nonexistent token"
);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved)
public
virtual
override
{
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator)
public
view
virtual
override
returns (bool)
{
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId)
internal
view
virtual
returns (bool)
{
require(
_exists(tokenId),
"ERC721: operator query for nonexistent token"
);
address owner = ERC721.ownerOf(tokenId);
return (spender == owner ||
getApproved(tokenId) == spender ||
isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(
ERC721.ownerOf(tokenId) == from,
"ERC721: transfer of token that is not own"
);
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try
IERC721Receiver(to).onERC721Received(
_msgSender(),
from,
tokenId,
_data
)
returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert(
"ERC721: transfer to non ERC721Receiver implementer"
);
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// File: contracts/NonblockingReceiver.sol
pragma solidity ^0.8.6;
abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {
ILayerZeroEndpoint internal endpoint;
struct FailedMessages {
uint256 payloadLength;
bytes32 payloadHash;
}
mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages)))
public failedMessages;
mapping(uint16 => bytes) public trustedRemoteLookup;
event MessageFailed(
uint16 _srcChainId,
bytes _srcAddress,
uint64 _nonce,
bytes _payload
);
function lzReceive(
uint16 _srcChainId,
bytes memory _srcAddress,
uint64 _nonce,
bytes memory _payload
) external override {
require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security
require(
_srcAddress.length == trustedRemoteLookup[_srcChainId].length &&
keccak256(_srcAddress) ==
keccak256(trustedRemoteLookup[_srcChainId]),
"NonblockingReceiver: invalid source sending contract"
);
// try-catch all errors/exceptions
// having failed messages does not block messages passing
try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {
// do nothing
} catch {
// error / exception
failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(
_payload.length,
keccak256(_payload)
);
emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);
}
}
function onLzReceive(
uint16 _srcChainId,
bytes memory _srcAddress,
uint64 _nonce,
bytes memory _payload
) public {
// only internal transaction
require(
msg.sender == address(this),
"NonblockingReceiver: caller must be Bridge."
);
// handle incoming message
_LzReceive(_srcChainId, _srcAddress, _nonce, _payload);
}
// abstract function
function _LzReceive(
uint16 _srcChainId,
bytes memory _srcAddress,
uint64 _nonce,
bytes memory _payload
) internal virtual;
function _lzSend(
uint16 _dstChainId,
bytes memory _payload,
address payable _refundAddress,
address _zroPaymentAddress,
bytes memory _txParam
) internal {
endpoint.send{value: msg.value}(
_dstChainId,
trustedRemoteLookup[_dstChainId],
_payload,
_refundAddress,
_zroPaymentAddress,
_txParam
);
}
function retryMessage(
uint16 _srcChainId,
bytes memory _srcAddress,
uint64 _nonce,
bytes calldata _payload
) external payable {
// assert there is message to retry
FailedMessages storage failedMsg = failedMessages[_srcChainId][
_srcAddress
][_nonce];
require(
failedMsg.payloadHash != bytes32(0),
"NonblockingReceiver: no stored message"
);
require(
_payload.length == failedMsg.payloadLength &&
keccak256(_payload) == failedMsg.payloadHash,
"LayerZero: invalid payload"
);
// clear the stored message
failedMsg.payloadLength = 0;
failedMsg.payloadHash = bytes32(0);
// execute the message. revert if it fails again
this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
}
function setTrustedRemote(uint16 _chainId, bytes calldata _trustedRemote)
external
onlyOwner
{
trustedRemoteLookup[_chainId] = _trustedRemote;
}
}
// File: contracts/st0ked-eth.sol
pragma solidity ^0.8.7;
contract st0ked is Ownable, ERC721, NonblockingReceiver {
address public _owner;
string private baseURI;
bool public isPaused = true;
uint256 nextTokenId = 1111;
uint256 MAX_MINT_ETH = 2022;
uint256 gasForDestinationLzReceive = 2022;
constructor(string memory baseURI_, address _layerZeroEndpoint)
ERC721("st0ked", "st0ked")
{
_owner = msg.sender;
endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
baseURI = baseURI_;
}
// mint function
// you can mint upto 2 nft's max. 1 per transaction
// mint is free, but payments are accepted
function mint(uint8 numTokens) external payable {
require(!isPaused, "Minting is Paused yet");
require(numTokens < 2, "st0ked: Max 1 NFTs per transaction");
require(balanceOf(msg.sender)+numTokens < 3, "Max 2 Nft's per wallet");
require(
nextTokenId + numTokens <= MAX_MINT_ETH,
"st0ked: Mint exceeds supply"
);
_safeMint(msg.sender, ++nextTokenId);
if (numTokens == 2) {
_safeMint(msg.sender, ++nextTokenId);
}
}
function pause () external onlyOwner {
isPaused = true;
}
function unPause () external onlyOwner {
isPaused = false;
}
// This function transfers the nft from your address on the
// source chain to the same address on the destination chain
function traverseChains(uint16 _chainId, uint256 tokenId) public payable {
require(
msg.sender == ownerOf(tokenId),
"You must own the token to traverse"
);
require(
trustedRemoteLookup[_chainId].length > 0,
"This chain is currently unavailable for travel"
);
// burn NFT, eliminating it from circulation on src chain
_burn(tokenId);
// abi.encode() the payload with the values to send
bytes memory payload = abi.encode(msg.sender, tokenId);
// encode adapterParams to specify more gas for the destination
uint16 version = 1;
bytes memory adapterParams = abi.encodePacked(
version,
gasForDestinationLzReceive
);
// get the fees we need to pay to LayerZero + Relayer to cover message delivery
// you will be refunded for extra gas paid
(uint256 messageFee, ) = endpoint.estimateFees(
_chainId,
address(this),
payload,
false,
adapterParams
);
require(
msg.value >= messageFee,
"st0ked: msg.value not enough to cover messageFee. Send gas for message fees"
);
endpoint.send{value: msg.value}(
_chainId, // destination chainId
trustedRemoteLookup[_chainId], // destination address of nft contract
payload, // abi.encoded()'ed bytes
payable(msg.sender), // refund address
address(0x0), // 'zroPaymentAddress' unused for this
adapterParams // txParameters
);
}
function setBaseURI(string memory URI) external onlyOwner {
baseURI = URI;
}
function donate() external payable {
// thank you
}
// This allows the devs to receive kind donations
function withdraw(uint256 amt) external onlyOwner {
(bool sent, ) = payable(_owner).call{value: amt}("");
require(sent, "st0ked: Failed to withdraw Ether");
}
// just in case this fixed variable limits us from future integrations
function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner {
gasForDestinationLzReceive = newVal;
}
// ------------------
// Internal Functions
// ------------------
function _LzReceive(
uint16 _srcChainId,
bytes memory _srcAddress,
uint64 _nonce,
bytes memory _payload
) internal override {
// decode
(address toAddr, uint256 tokenId) = abi.decode(
_payload,
(address, uint256)
);
// mint the tokens back into existence on destination chain
_safeMint(toAddr, tokenId);
}
function _baseURI() internal view override returns (string memory) {
return baseURI;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052600c805460ff19166001179055610457600d556107e6600e819055600f553480156200002f57600080fd5b50604051620035cb380380620035cb833981016040819052620000529162000236565b604051806040016040528060068152602001651cdd0c1ad95960d21b815250604051806040016040528060068152602001651cdd0c1ad95960d21b815250620000aa620000a46200011f60201b60201c565b62000123565b8151620000bf90600190602085019062000173565b508051620000d590600290602084019062000173565b5050600a8054336001600160a01b031991821617909155600780549091166001600160a01b0384161790555081516200011690600b90602085019062000173565b5050506200037a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001819062000327565b90600052602060002090601f016020900481019282620001a55760008555620001f0565b82601f10620001c057805160ff1916838001178555620001f0565b82800160010185558215620001f0579182015b82811115620001f0578251825591602001919060010190620001d3565b50620001fe92915062000202565b5090565b5b80821115620001fe576000815560010162000203565b80516001600160a01b03811681146200023157600080fd5b919050565b600080604083850312156200024a57600080fd5b82516001600160401b03808211156200026257600080fd5b818501915085601f8301126200027757600080fd5b8151818111156200028c576200028c62000364565b604051601f8201601f19908116603f01168101908382118183101715620002b757620002b762000364565b81604052828152602093508884848701011115620002d457600080fd5b600091505b82821015620002f85784820184015181830185015290830190620002d9565b828211156200030a5760008484830101525b95506200031c91505085820162000219565b925050509250929050565b600181811c908216806200033c57607f821691505b602082108114156200035e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613241806200038a6000396000f3fe6080604052600436106101e25760003560e01c80638da5cb5b11610102578063c87b56dd11610095578063eb8d72b711610064578063eb8d72b7146105ca578063ed88c68e14610207578063f2fde38b146105ea578063f7b188a51461060a57600080fd5b8063c87b56dd1461053b578063cf89fa031461055b578063d1deba1f1461056e578063e985e9c51461058157600080fd5b8063a22cb465116100d1578063a22cb465146104c1578063b187bd26146104e1578063b2bdfa7b146104fb578063b88d4fde1461051b57600080fd5b80638da5cb5b146104035780638ee7491214610421578063943fb8721461048c57806395d89b41146104ac57600080fd5b806342842e0e1161017a57806370a082311161014957806370a082311461038b578063715018a6146103b95780637533d788146103ce5780638456cb59146103ee57600080fd5b806342842e0e1461031857806355f804b3146103385780636352211e146103585780636ecd23061461037857600080fd5b8063095ea7b3116101b6578063095ea7b3146102985780631c37a822146102b857806323b872dd146102d85780632e1a7d4d146102f857600080fd5b80621d3567146101e757806301ffc9a71461020957806306fdde031461023e578063081812fc14610260575b600080fd5b3480156101f357600080fd5b50610207610202366004612ba5565b61061f565b005b34801561021557600080fd5b506102296102243660046129d1565b61083c565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610921565b6040516102359190612ded565b34801561026c57600080fd5b5061028061027b366004612c3a565b6109b3565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102076102b33660046129a5565b610a59565b3480156102c457600080fd5b506102076102d3366004612ba5565b610b8b565b3480156102e457600080fd5b506102076102f33660046128c5565b610c0c565b34801561030457600080fd5b50610207610313366004612c3a565b610c93565b34801561032457600080fd5b506102076103333660046128c5565b610d94565b34801561034457600080fd5b50610207610353366004612a0b565b610daf565b34801561036457600080fd5b50610280610373366004612c3a565b610e1c565b610207610386366004612c77565b610ea7565b34801561039757600080fd5b506103ab6103a6366004612841565b61107a565b604051908152602001610235565b3480156103c557600080fd5b50610207611114565b3480156103da57600080fd5b506102536103e9366004612a54565b61117a565b3480156103fa57600080fd5b50610207611214565b34801561040f57600080fd5b506000546001600160a01b0316610280565b34801561042d57600080fd5b5061047761043c366004612ac2565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610235565b34801561049857600080fd5b506102076104a7366004612c3a565b61127d565b3480156104b857600080fd5b506102536112dc565b3480156104cd57600080fd5b506102076104dc366004612972565b6112eb565b3480156104ed57600080fd5b50600c546102299060ff1681565b34801561050757600080fd5b50600a54610280906001600160a01b031681565b34801561052757600080fd5b50610207610536366004612906565b6112f6565b34801561054757600080fd5b50610253610556366004612c3a565b61137e565b610207610569366004612c1e565b611467565b61020761057c366004612b19565b6117d6565b34801561058d57600080fd5b5061022961059c36600461288c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105d657600080fd5b506102076105e5366004612a6f565b611994565b3480156105f657600080fd5b50610207610605366004612841565b611a0c565b34801561061657600080fd5b50610207611aeb565b6007546001600160a01b0316331461063657600080fd5b61ffff8416600090815260096020526040902080546106549061306b565b90508351148015610693575061ffff84166000908152600960205260409081902090516106819190612d10565b60405180910390208380519060200120145b61070a5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a8229061074c908790879087908790600401612ed2565b600060405180830381600087803b15801561076657600080fd5b505af1925050508015610777575060015b610836576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107c19190612cf4565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061082d908690869086908690612ed2565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108cf57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061091b57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600180546109309061306b565b80601f016020809104026020016040519081016040528092919081815260200182805461095c9061306b565b80156109a95780601f1061097e576101008083540402835291602001916109a9565b820191906000526020600020905b81548152906001019060200180831161098c57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610a3d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610701565b506000908152600560205260409020546001600160a01b031690565b6000610a6482610e1c565b9050806001600160a01b0316836001600160a01b03161415610aee5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610701565b336001600160a01b0382161480610b0a5750610b0a813361059c565b610b7c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610701565b610b868383611b51565b505050565b333014610c005760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e0000000000000000000000000000000000000000006064820152608401610701565b61083684848484611bd7565b610c163382611c04565b610c885760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610701565b610b86838383611d0c565b6000546001600160a01b03163314610ced5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610d3a576040519150601f19603f3d011682016040523d82523d6000602084013e610d3f565b606091505b5050905080610d905760405162461bcd60e51b815260206004820181905260248201527f7374306b65643a204661696c656420746f2077697468647261772045746865726044820152606401610701565b5050565b610b86838383604051806020016040528060008152506112f6565b6000546001600160a01b03163314610e095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b8051610d9090600b906020840190612608565b6000818152600360205260408120546001600160a01b03168061091b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610701565b600c5460ff1615610efa5760405162461bcd60e51b815260206004820152601560248201527f4d696e74696e67206973205061757365642079657400000000000000000000006044820152606401610701565b60028160ff1610610f735760405162461bcd60e51b815260206004820152602260248201527f7374306b65643a204d61782031204e46547320706572207472616e736163746960448201527f6f6e0000000000000000000000000000000000000000000000000000000000006064820152608401610701565b60038160ff16610f823361107a565b610f8c9190612ffc565b10610fd95760405162461bcd60e51b815260206004820152601660248201527f4d61782032204e66742773207065722077616c6c6574000000000000000000006044820152606401610701565b600e548160ff16600d54610fed9190612ffc565b111561103b5760405162461bcd60e51b815260206004820152601b60248201527f7374306b65643a204d696e74206578636565647320737570706c7900000000006044820152606401610701565b61105833600d6000815461104e906130bf565b9182905550611ef1565b8060ff16600214156110775761107733600d6000815461104e906130bf565b50565b60006001600160a01b0382166110f85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610701565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461116e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b6111786000611f0b565b565b600960205260009081526040902080546111939061306b565b80601f01602080910402602001604051908101604052809291908181526020018280546111bf9061306b565b801561120c5780601f106111e15761010080835404028352916020019161120c565b820191906000526020600020905b8154815290600101906020018083116111ef57829003601f168201915b505050505081565b6000546001600160a01b0316331461126e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b600c805460ff19166001179055565b6000546001600160a01b031633146112d75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b600f55565b6060600280546109309061306b565b610d90338383611f73565b6113003383611c04565b6113725760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610701565b61083684848484612042565b6000818152600360205260409020546060906001600160a01b031661140b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610701565b60006114156120cb565b905060008151116114355760405180602001604052806000815250611460565b8061143f846120da565b604051602001611450929190612d82565b6040516020818303038152906040525b9392505050565b61147081610e1c565b6001600160a01b0316336001600160a01b0316146114f65760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f73650000000000000000000000000000000000000000000000000000000000006064820152608401610701565b61ffff8216600090815260096020526040812080546115149061306b565b9050116115895760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c0000000000000000000000000000000000006064820152608401610701565b6115928161220c565b60408051336020820152808201839052815180820383018152606082018352600f547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb100000000000000000000000000000000000000000000000000000000090945290926001926000916001600160a01b0316906340a7bb1090611649908990309089908790899060a601612e00565b604080518083038186803b15801561166057600080fd5b505afa158015611674573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116989190612c53565b509050803410156117375760405162461bcd60e51b815260206004820152604b60248201527f7374306b65643a206d73672e76616c7565206e6f7420656e6f75676820746f2060448201527f636f766572206d6573736167654665652e2053656e642067617320666f72206d60648201527f6573736167652066656573000000000000000000000000000000000000000000608482015260a401610701565b60075461ffff871660009081526009602052604080822090517fc58031000000000000000000000000000000000000000000000000000000000081526001600160a01b039093169263c580310092349261179c928c928b913391908b90600401612f1c565b6000604051808303818588803b1580156117b557600080fd5b505af11580156117c9573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516117f7908790612cf4565b908152604080516020928190038301902067ffffffffffffffff871660009081529252902060018101549091506118965760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f65737361676500000000000000000000000000000000000000000000000000006064820152608401610701565b8054821480156118c05750806001015483836040516118b6929190612ce4565b6040518091039020145b61190c5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610701565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a8229061195a9089908990899089908990600401612e52565b600060405180830381600087803b15801561197457600080fd5b505af1158015611988573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146119ee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b61ffff8316600090815260096020526040902061083690838361268c565b6000546001600160a01b03163314611a665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b6001600160a01b038116611ae25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610701565b61107781611f0b565b6000546001600160a01b03163314611b455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b600c805460ff19169055565b600081815260056020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190611b9e82610e1c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611bee919061285e565b91509150611bfc8282611ef1565b505050505050565b6000818152600360205260408120546001600160a01b0316611c8e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610701565b6000611c9983610e1c565b9050806001600160a01b0316846001600160a01b03161480611cd45750836001600160a01b0316611cc9846109b3565b6001600160a01b0316145b80611d0457506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d1f82610e1c565b6001600160a01b031614611d9b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610701565b6001600160a01b038216611e165760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610701565b611e21600082611b51565b6001600160a01b0383166000908152600460205260408120805460019290611e4a908490613028565b90915550506001600160a01b0382166000908152600460205260408120805460019290611e78908490612ffc565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d908282604051806020016040528060008152506122bf565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415611fd55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610701565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61204d848484611d0c565b61205984848484612348565b6108365760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610701565b6060600b80546109309061306b565b60608161211a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612144578061212e816130bf565b915061213d9050600a83613014565b915061211e565b60008167ffffffffffffffff81111561215f5761215f613199565b6040519080825280601f01601f191660200182016040528015612189576020820181803683370190505b5090505b8415611d045761219e600183613028565b91506121ab600a866130f8565b6121b6906030612ffc565b60f81b8183815181106121cb576121cb61316a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612205600a86613014565b945061218d565b600061221782610e1c565b9050612224600083611b51565b6001600160a01b038116600090815260046020526040812080546001929061224d908490613028565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6122c98383612513565b6122d66000848484612348565b610b865760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610701565b60006001600160a01b0384163b15612508576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906123a5903390899088908890600401612db1565b602060405180830381600087803b1580156123bf57600080fd5b505af192505050801561240d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261240a918101906129ee565b60015b6124bd573d80801561243b576040519150601f19603f3d011682016040523d82523d6000602084013e612440565b606091505b5080516124b55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610701565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611d04565b506001949350505050565b6001600160a01b0382166125695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610701565b6001600160a01b0382166000908152600460205260408120805460019290612592908490612ffc565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546126149061306b565b90600052602060002090601f016020900481019282612636576000855561267c565b82601f1061264f57805160ff191683800117855561267c565b8280016001018555821561267c579182015b8281111561267c578251825591602001919060010190612661565b50612688929150612700565b5090565b8280546126989061306b565b90600052602060002090601f0160209004810192826126ba576000855561267c565b82601f106126d35782800160ff1982351617855561267c565b8280016001018555821561267c579182015b8281111561267c5782358255916020019190600101906126e5565b5b808211156126885760008155600101612701565b600067ffffffffffffffff8084111561273057612730613199565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561277657612776613199565b8160405280935085815286868601111561278f57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f8401126127bb57600080fd5b50813567ffffffffffffffff8111156127d357600080fd5b6020830191508360208285010111156127eb57600080fd5b9250929050565b600082601f83011261280357600080fd5b61146083833560208501612715565b803561ffff8116811461282457600080fd5b919050565b803567ffffffffffffffff8116811461282457600080fd5b60006020828403121561285357600080fd5b8135611460816131c8565b6000806040838503121561287157600080fd5b825161287c816131c8565b6020939093015192949293505050565b6000806040838503121561289f57600080fd5b82356128aa816131c8565b915060208301356128ba816131c8565b809150509250929050565b6000806000606084860312156128da57600080fd5b83356128e5816131c8565b925060208401356128f5816131c8565b929592945050506040919091013590565b6000806000806080858703121561291c57600080fd5b8435612927816131c8565b93506020850135612937816131c8565b925060408501359150606085013567ffffffffffffffff81111561295a57600080fd5b612966878288016127f2565b91505092959194509250565b6000806040838503121561298557600080fd5b8235612990816131c8565b9150602083013580151581146128ba57600080fd5b600080604083850312156129b857600080fd5b82356129c3816131c8565b946020939093013593505050565b6000602082840312156129e357600080fd5b8135611460816131dd565b600060208284031215612a0057600080fd5b8151611460816131dd565b600060208284031215612a1d57600080fd5b813567ffffffffffffffff811115612a3457600080fd5b8201601f81018413612a4557600080fd5b611d0484823560208401612715565b600060208284031215612a6657600080fd5b61146082612812565b600080600060408486031215612a8457600080fd5b612a8d84612812565b9250602084013567ffffffffffffffff811115612aa957600080fd5b612ab5868287016127a9565b9497909650939450505050565b600080600060608486031215612ad757600080fd5b612ae084612812565b9250602084013567ffffffffffffffff811115612afc57600080fd5b612b08868287016127f2565b925050604084013590509250925092565b600080600080600060808688031215612b3157600080fd5b612b3a86612812565b9450602086013567ffffffffffffffff80821115612b5757600080fd5b612b6389838a016127f2565b9550612b7160408901612829565b94506060880135915080821115612b8757600080fd5b50612b94888289016127a9565b969995985093965092949392505050565b60008060008060808587031215612bbb57600080fd5b612bc485612812565b9350602085013567ffffffffffffffff80821115612be157600080fd5b612bed888389016127f2565b9450612bfb60408801612829565b93506060870135915080821115612c1157600080fd5b50612966878288016127f2565b60008060408385031215612c3157600080fd5b6129c383612812565b600060208284031215612c4c57600080fd5b5035919050565b60008060408385031215612c6657600080fd5b505080516020909101519092909150565b600060208284031215612c8957600080fd5b813560ff8116811461146057600080fd5b60008151808452612cb281602086016020860161303f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b8183823760009101908152919050565b60008251612d0681846020870161303f565b9190910192915050565b6000808354612d1e8161306b565b60018281168015612d365760018114612d4757612d76565b60ff19841687528287019450612d76565b8760005260208060002060005b85811015612d6d5781548a820152908401908201612d54565b50505082870194505b50929695505050505050565b60008351612d9481846020880161303f565b835190830190612da881836020880161303f565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612de36080830184612c9a565b9695505050505050565b6020815260006114606020830184612c9a565b61ffff861681526001600160a01b038516602082015260a060408201526000612e2c60a0830186612c9a565b84151560608401528281036080840152612e468185612c9a565b98975050505050505050565b61ffff86168152608060208201526000612e6f6080830187612c9a565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b61ffff85168152608060208201526000612eef6080830186612c9a565b67ffffffffffffffff851660408401528281036060840152612f118185612c9a565b979650505050505050565b61ffff871681526000602060c08184015260008854612f3a8161306b565b8060c087015260e0600180841660008114612f5c5760018114612f7157612f9f565b60ff198516838a015261010089019550612f9f565b8d6000528660002060005b85811015612f975781548b8201860152908301908801612f7c565b8a0184019650505b50505050508381036040850152612fb68189612c9a565b915050612fce60608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612fef8185612c9a565b9998505050505050505050565b6000821982111561300f5761300f61310c565b500190565b6000826130235761302361313b565b500490565b60008282101561303a5761303a61310c565b500390565b60005b8381101561305a578181015183820152602001613042565b838111156108365750506000910152565b600181811c9082168061307f57607f821691505b602082108114156130b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130f1576130f161310c565b5060010190565b6000826131075761310761313b565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6001600160a01b038116811461107757600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461107757600080fdfea2646970667358221220b6a35ba1c92d942494e4bd66c67ade07e9399d2af41c51dba82077014bb2201564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d504343424465776a367571457a50394d7770554d5831684b42536b516875424c6b38337232676b77566b31732f00000000000000000000
Deployed Bytecode
0x6080604052600436106101e25760003560e01c80638da5cb5b11610102578063c87b56dd11610095578063eb8d72b711610064578063eb8d72b7146105ca578063ed88c68e14610207578063f2fde38b146105ea578063f7b188a51461060a57600080fd5b8063c87b56dd1461053b578063cf89fa031461055b578063d1deba1f1461056e578063e985e9c51461058157600080fd5b8063a22cb465116100d1578063a22cb465146104c1578063b187bd26146104e1578063b2bdfa7b146104fb578063b88d4fde1461051b57600080fd5b80638da5cb5b146104035780638ee7491214610421578063943fb8721461048c57806395d89b41146104ac57600080fd5b806342842e0e1161017a57806370a082311161014957806370a082311461038b578063715018a6146103b95780637533d788146103ce5780638456cb59146103ee57600080fd5b806342842e0e1461031857806355f804b3146103385780636352211e146103585780636ecd23061461037857600080fd5b8063095ea7b3116101b6578063095ea7b3146102985780631c37a822146102b857806323b872dd146102d85780632e1a7d4d146102f857600080fd5b80621d3567146101e757806301ffc9a71461020957806306fdde031461023e578063081812fc14610260575b600080fd5b3480156101f357600080fd5b50610207610202366004612ba5565b61061f565b005b34801561021557600080fd5b506102296102243660046129d1565b61083c565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610921565b6040516102359190612ded565b34801561026c57600080fd5b5061028061027b366004612c3a565b6109b3565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102076102b33660046129a5565b610a59565b3480156102c457600080fd5b506102076102d3366004612ba5565b610b8b565b3480156102e457600080fd5b506102076102f33660046128c5565b610c0c565b34801561030457600080fd5b50610207610313366004612c3a565b610c93565b34801561032457600080fd5b506102076103333660046128c5565b610d94565b34801561034457600080fd5b50610207610353366004612a0b565b610daf565b34801561036457600080fd5b50610280610373366004612c3a565b610e1c565b610207610386366004612c77565b610ea7565b34801561039757600080fd5b506103ab6103a6366004612841565b61107a565b604051908152602001610235565b3480156103c557600080fd5b50610207611114565b3480156103da57600080fd5b506102536103e9366004612a54565b61117a565b3480156103fa57600080fd5b50610207611214565b34801561040f57600080fd5b506000546001600160a01b0316610280565b34801561042d57600080fd5b5061047761043c366004612ac2565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610235565b34801561049857600080fd5b506102076104a7366004612c3a565b61127d565b3480156104b857600080fd5b506102536112dc565b3480156104cd57600080fd5b506102076104dc366004612972565b6112eb565b3480156104ed57600080fd5b50600c546102299060ff1681565b34801561050757600080fd5b50600a54610280906001600160a01b031681565b34801561052757600080fd5b50610207610536366004612906565b6112f6565b34801561054757600080fd5b50610253610556366004612c3a565b61137e565b610207610569366004612c1e565b611467565b61020761057c366004612b19565b6117d6565b34801561058d57600080fd5b5061022961059c36600461288c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105d657600080fd5b506102076105e5366004612a6f565b611994565b3480156105f657600080fd5b50610207610605366004612841565b611a0c565b34801561061657600080fd5b50610207611aeb565b6007546001600160a01b0316331461063657600080fd5b61ffff8416600090815260096020526040902080546106549061306b565b90508351148015610693575061ffff84166000908152600960205260409081902090516106819190612d10565b60405180910390208380519060200120145b61070a5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a8229061074c908790879087908790600401612ed2565b600060405180830381600087803b15801561076657600080fd5b505af1925050508015610777575060015b610836576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107c19190612cf4565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061082d908690869086908690612ed2565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108cf57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061091b57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600180546109309061306b565b80601f016020809104026020016040519081016040528092919081815260200182805461095c9061306b565b80156109a95780601f1061097e576101008083540402835291602001916109a9565b820191906000526020600020905b81548152906001019060200180831161098c57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610a3d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610701565b506000908152600560205260409020546001600160a01b031690565b6000610a6482610e1c565b9050806001600160a01b0316836001600160a01b03161415610aee5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610701565b336001600160a01b0382161480610b0a5750610b0a813361059c565b610b7c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610701565b610b868383611b51565b505050565b333014610c005760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e0000000000000000000000000000000000000000006064820152608401610701565b61083684848484611bd7565b610c163382611c04565b610c885760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610701565b610b86838383611d0c565b6000546001600160a01b03163314610ced5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610d3a576040519150601f19603f3d011682016040523d82523d6000602084013e610d3f565b606091505b5050905080610d905760405162461bcd60e51b815260206004820181905260248201527f7374306b65643a204661696c656420746f2077697468647261772045746865726044820152606401610701565b5050565b610b86838383604051806020016040528060008152506112f6565b6000546001600160a01b03163314610e095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b8051610d9090600b906020840190612608565b6000818152600360205260408120546001600160a01b03168061091b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610701565b600c5460ff1615610efa5760405162461bcd60e51b815260206004820152601560248201527f4d696e74696e67206973205061757365642079657400000000000000000000006044820152606401610701565b60028160ff1610610f735760405162461bcd60e51b815260206004820152602260248201527f7374306b65643a204d61782031204e46547320706572207472616e736163746960448201527f6f6e0000000000000000000000000000000000000000000000000000000000006064820152608401610701565b60038160ff16610f823361107a565b610f8c9190612ffc565b10610fd95760405162461bcd60e51b815260206004820152601660248201527f4d61782032204e66742773207065722077616c6c6574000000000000000000006044820152606401610701565b600e548160ff16600d54610fed9190612ffc565b111561103b5760405162461bcd60e51b815260206004820152601b60248201527f7374306b65643a204d696e74206578636565647320737570706c7900000000006044820152606401610701565b61105833600d6000815461104e906130bf565b9182905550611ef1565b8060ff16600214156110775761107733600d6000815461104e906130bf565b50565b60006001600160a01b0382166110f85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610701565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461116e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b6111786000611f0b565b565b600960205260009081526040902080546111939061306b565b80601f01602080910402602001604051908101604052809291908181526020018280546111bf9061306b565b801561120c5780601f106111e15761010080835404028352916020019161120c565b820191906000526020600020905b8154815290600101906020018083116111ef57829003601f168201915b505050505081565b6000546001600160a01b0316331461126e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b600c805460ff19166001179055565b6000546001600160a01b031633146112d75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b600f55565b6060600280546109309061306b565b610d90338383611f73565b6113003383611c04565b6113725760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610701565b61083684848484612042565b6000818152600360205260409020546060906001600160a01b031661140b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610701565b60006114156120cb565b905060008151116114355760405180602001604052806000815250611460565b8061143f846120da565b604051602001611450929190612d82565b6040516020818303038152906040525b9392505050565b61147081610e1c565b6001600160a01b0316336001600160a01b0316146114f65760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f73650000000000000000000000000000000000000000000000000000000000006064820152608401610701565b61ffff8216600090815260096020526040812080546115149061306b565b9050116115895760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c0000000000000000000000000000000000006064820152608401610701565b6115928161220c565b60408051336020820152808201839052815180820383018152606082018352600f547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb100000000000000000000000000000000000000000000000000000000090945290926001926000916001600160a01b0316906340a7bb1090611649908990309089908790899060a601612e00565b604080518083038186803b15801561166057600080fd5b505afa158015611674573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116989190612c53565b509050803410156117375760405162461bcd60e51b815260206004820152604b60248201527f7374306b65643a206d73672e76616c7565206e6f7420656e6f75676820746f2060448201527f636f766572206d6573736167654665652e2053656e642067617320666f72206d60648201527f6573736167652066656573000000000000000000000000000000000000000000608482015260a401610701565b60075461ffff871660009081526009602052604080822090517fc58031000000000000000000000000000000000000000000000000000000000081526001600160a01b039093169263c580310092349261179c928c928b913391908b90600401612f1c565b6000604051808303818588803b1580156117b557600080fd5b505af11580156117c9573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516117f7908790612cf4565b908152604080516020928190038301902067ffffffffffffffff871660009081529252902060018101549091506118965760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f65737361676500000000000000000000000000000000000000000000000000006064820152608401610701565b8054821480156118c05750806001015483836040516118b6929190612ce4565b6040518091039020145b61190c5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610701565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a8229061195a9089908990899089908990600401612e52565b600060405180830381600087803b15801561197457600080fd5b505af1158015611988573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146119ee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b61ffff8316600090815260096020526040902061083690838361268c565b6000546001600160a01b03163314611a665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b6001600160a01b038116611ae25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610701565b61107781611f0b565b6000546001600160a01b03163314611b455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610701565b600c805460ff19169055565b600081815260056020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190611b9e82610e1c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611bee919061285e565b91509150611bfc8282611ef1565b505050505050565b6000818152600360205260408120546001600160a01b0316611c8e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610701565b6000611c9983610e1c565b9050806001600160a01b0316846001600160a01b03161480611cd45750836001600160a01b0316611cc9846109b3565b6001600160a01b0316145b80611d0457506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d1f82610e1c565b6001600160a01b031614611d9b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610701565b6001600160a01b038216611e165760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610701565b611e21600082611b51565b6001600160a01b0383166000908152600460205260408120805460019290611e4a908490613028565b90915550506001600160a01b0382166000908152600460205260408120805460019290611e78908490612ffc565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d908282604051806020016040528060008152506122bf565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415611fd55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610701565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61204d848484611d0c565b61205984848484612348565b6108365760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610701565b6060600b80546109309061306b565b60608161211a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612144578061212e816130bf565b915061213d9050600a83613014565b915061211e565b60008167ffffffffffffffff81111561215f5761215f613199565b6040519080825280601f01601f191660200182016040528015612189576020820181803683370190505b5090505b8415611d045761219e600183613028565b91506121ab600a866130f8565b6121b6906030612ffc565b60f81b8183815181106121cb576121cb61316a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612205600a86613014565b945061218d565b600061221782610e1c565b9050612224600083611b51565b6001600160a01b038116600090815260046020526040812080546001929061224d908490613028565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6122c98383612513565b6122d66000848484612348565b610b865760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610701565b60006001600160a01b0384163b15612508576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906123a5903390899088908890600401612db1565b602060405180830381600087803b1580156123bf57600080fd5b505af192505050801561240d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261240a918101906129ee565b60015b6124bd573d80801561243b576040519150601f19603f3d011682016040523d82523d6000602084013e612440565b606091505b5080516124b55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610701565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611d04565b506001949350505050565b6001600160a01b0382166125695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610701565b6001600160a01b0382166000908152600460205260408120805460019290612592908490612ffc565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546126149061306b565b90600052602060002090601f016020900481019282612636576000855561267c565b82601f1061264f57805160ff191683800117855561267c565b8280016001018555821561267c579182015b8281111561267c578251825591602001919060010190612661565b50612688929150612700565b5090565b8280546126989061306b565b90600052602060002090601f0160209004810192826126ba576000855561267c565b82601f106126d35782800160ff1982351617855561267c565b8280016001018555821561267c579182015b8281111561267c5782358255916020019190600101906126e5565b5b808211156126885760008155600101612701565b600067ffffffffffffffff8084111561273057612730613199565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561277657612776613199565b8160405280935085815286868601111561278f57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f8401126127bb57600080fd5b50813567ffffffffffffffff8111156127d357600080fd5b6020830191508360208285010111156127eb57600080fd5b9250929050565b600082601f83011261280357600080fd5b61146083833560208501612715565b803561ffff8116811461282457600080fd5b919050565b803567ffffffffffffffff8116811461282457600080fd5b60006020828403121561285357600080fd5b8135611460816131c8565b6000806040838503121561287157600080fd5b825161287c816131c8565b6020939093015192949293505050565b6000806040838503121561289f57600080fd5b82356128aa816131c8565b915060208301356128ba816131c8565b809150509250929050565b6000806000606084860312156128da57600080fd5b83356128e5816131c8565b925060208401356128f5816131c8565b929592945050506040919091013590565b6000806000806080858703121561291c57600080fd5b8435612927816131c8565b93506020850135612937816131c8565b925060408501359150606085013567ffffffffffffffff81111561295a57600080fd5b612966878288016127f2565b91505092959194509250565b6000806040838503121561298557600080fd5b8235612990816131c8565b9150602083013580151581146128ba57600080fd5b600080604083850312156129b857600080fd5b82356129c3816131c8565b946020939093013593505050565b6000602082840312156129e357600080fd5b8135611460816131dd565b600060208284031215612a0057600080fd5b8151611460816131dd565b600060208284031215612a1d57600080fd5b813567ffffffffffffffff811115612a3457600080fd5b8201601f81018413612a4557600080fd5b611d0484823560208401612715565b600060208284031215612a6657600080fd5b61146082612812565b600080600060408486031215612a8457600080fd5b612a8d84612812565b9250602084013567ffffffffffffffff811115612aa957600080fd5b612ab5868287016127a9565b9497909650939450505050565b600080600060608486031215612ad757600080fd5b612ae084612812565b9250602084013567ffffffffffffffff811115612afc57600080fd5b612b08868287016127f2565b925050604084013590509250925092565b600080600080600060808688031215612b3157600080fd5b612b3a86612812565b9450602086013567ffffffffffffffff80821115612b5757600080fd5b612b6389838a016127f2565b9550612b7160408901612829565b94506060880135915080821115612b8757600080fd5b50612b94888289016127a9565b969995985093965092949392505050565b60008060008060808587031215612bbb57600080fd5b612bc485612812565b9350602085013567ffffffffffffffff80821115612be157600080fd5b612bed888389016127f2565b9450612bfb60408801612829565b93506060870135915080821115612c1157600080fd5b50612966878288016127f2565b60008060408385031215612c3157600080fd5b6129c383612812565b600060208284031215612c4c57600080fd5b5035919050565b60008060408385031215612c6657600080fd5b505080516020909101519092909150565b600060208284031215612c8957600080fd5b813560ff8116811461146057600080fd5b60008151808452612cb281602086016020860161303f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b8183823760009101908152919050565b60008251612d0681846020870161303f565b9190910192915050565b6000808354612d1e8161306b565b60018281168015612d365760018114612d4757612d76565b60ff19841687528287019450612d76565b8760005260208060002060005b85811015612d6d5781548a820152908401908201612d54565b50505082870194505b50929695505050505050565b60008351612d9481846020880161303f565b835190830190612da881836020880161303f565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612de36080830184612c9a565b9695505050505050565b6020815260006114606020830184612c9a565b61ffff861681526001600160a01b038516602082015260a060408201526000612e2c60a0830186612c9a565b84151560608401528281036080840152612e468185612c9a565b98975050505050505050565b61ffff86168152608060208201526000612e6f6080830187612c9a565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b61ffff85168152608060208201526000612eef6080830186612c9a565b67ffffffffffffffff851660408401528281036060840152612f118185612c9a565b979650505050505050565b61ffff871681526000602060c08184015260008854612f3a8161306b565b8060c087015260e0600180841660008114612f5c5760018114612f7157612f9f565b60ff198516838a015261010089019550612f9f565b8d6000528660002060005b85811015612f975781548b8201860152908301908801612f7c565b8a0184019650505b50505050508381036040850152612fb68189612c9a565b915050612fce60608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612fef8185612c9a565b9998505050505050505050565b6000821982111561300f5761300f61310c565b500190565b6000826130235761302361313b565b500490565b60008282101561303a5761303a61310c565b500390565b60005b8381101561305a578181015183820152602001613042565b838111156108365750506000910152565b600181811c9082168061307f57607f821691505b602082108114156130b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130f1576130f161310c565b5060010190565b6000826131075761310761313b565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6001600160a01b038116811461107757600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461107757600080fdfea2646970667358221220b6a35ba1c92d942494e4bd66c67ade07e9399d2af41c51dba82077014bb2201564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d504343424465776a367571457a50394d7770554d5831684b42536b516875424c6b38337232676b77566b31732f00000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string): ipfs://QmPCCBDewj6uqEzP9MwpUMX1hKBSkQhuBLk83r2gkwVk1s/
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d504343424465776a367571457a50394d7770554d583168
Arg [4] : 4b42536b516875424c6b38337232676b77566b31732f00000000000000000000
Deployed Bytecode Sourcemap
50404:4427:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47027:1098;;;;;;;;;;-1:-1:-1;47027:1098:0;;;;;:::i;:::-;;:::i;:::-;;33092:355;;;;;;;;;;-1:-1:-1;33092:355:0;;;;;:::i;:::-;;:::i;:::-;;;13121:14:1;;13114:22;13096:41;;13084:2;13069:18;33092:355:0;;;;;;;;34261:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35954:308::-;;;;;;;;;;-1:-1:-1;35954:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;12071:55:1;;;12053:74;;12041:2;12026:18;35954:308:0;11907:226:1;35477:411:0;;;;;;;;;;-1:-1:-1;35477:411:0;;;;;:::i;:::-;;:::i;48133:435::-;;;;;;;;;;-1:-1:-1;48133:435:0;;;;;:::i;:::-;;:::i;36873:376::-;;;;;;;;;;-1:-1:-1;36873:376:0;;;;;:::i;:::-;;:::i;53812:181::-;;;;;;;;;;-1:-1:-1;53812:181:0;;;;;:::i;:::-;;:::i;37320:185::-;;;;;;;;;;-1:-1:-1;37320:185:0;;;;;:::i;:::-;;:::i;53586:90::-;;;;;;;;;;-1:-1:-1;53586:90:0;;;;;:::i;:::-;;:::i;33868:326::-;;;;;;;;;;-1:-1:-1;33868:326:0;;;;;:::i;:::-;;:::i;51044:534::-;;;;;;:::i;:::-;;:::i;33511:295::-;;;;;;;;;;-1:-1:-1;33511:295:0;;;;;:::i;:::-;;:::i;:::-;;;28053:25:1;;;28041:2;28026:18;33511:295:0;27907:177:1;13404:103:0;;;;;;;;;;;;;:::i;46826:51::-;;;;;;;;;;-1:-1:-1;46826:51:0;;;;;:::i;:::-;;:::i;51586:73::-;;;;;;;;;;;;;:::i;12753:87::-;;;;;;;;;;-1:-1:-1;12799:7:0;12826:6;-1:-1:-1;;;;;12826:6:0;12753:87;;46717:102;;;;;;;;;;-1:-1:-1;46717:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28263:25:1;;;28319:2;28304:18;;28297:34;;;;28236:18;46717:102:0;28089:248:1;54077:128:0;;;;;;;;;;-1:-1:-1;54077:128:0;;;;;:::i;:::-;;:::i;34430:104::-;;;;;;;;;;;;;:::i;36334:187::-;;;;;;;;;;-1:-1:-1;36334:187:0;;;;;:::i;:::-;;:::i;50524:27::-;;;;;;;;;;-1:-1:-1;50524:27:0;;;;;;;;50467:21;;;;;;;;;;-1:-1:-1;50467:21:0;;;;-1:-1:-1;;;;;50467:21:0;;;37576:365;;;;;;;;;;-1:-1:-1;37576:365:0;;;;;:::i;:::-;;:::i;34605:468::-;;;;;;;;;;-1:-1:-1;34605:468:0;;;;;:::i;:::-;;:::i;51882:1696::-;;;;;;:::i;:::-;;:::i;49228:916::-;;;;;;:::i;:::-;;:::i;36592:214::-;;;;;;;;;;-1:-1:-1;36592:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;36763:25:0;;;36734:4;36763:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36592:214;50152:181;;;;;;;;;;-1:-1:-1;50152:181:0;;;;;:::i;:::-;;:::i;13662:238::-;;;;;;;;;;-1:-1:-1;13662:238:0;;;;;:::i;:::-;;:::i;51667:76::-;;;;;;;;;;;;;:::i;47027:1098::-;47232:8;;-1:-1:-1;;;;;47232:8:0;47210:10;:31;47202:40;;;;;;47367:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47345:11;:18;:61;:168;;;;-1:-1:-1;47480:32:0;;;;;;;:19;:32;;;;;;;47470:43;;;;47480:32;47470:43;:::i;:::-;;;;;;;;47437:11;47427:22;;;;;;:86;47345:168;47323:270;;;;-1:-1:-1;;;47323:270:0;;20961:2:1;47323:270:0;;;20943:21:1;21000:2;20980:18;;;20973:30;21039:34;21019:18;;;21012:62;21110:22;21090:18;;;21083:50;21150:19;;47323:270:0;;;;;;;;;47721:60;;;;;:4;;:16;;:60;;47738:11;;47751;;47764:6;;47772:8;;47721:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47717:401;;47928:101;;;;;;;;47961:8;:15;47928:101;;;;48005:8;47995:19;;;;;;47928:101;;;47877:14;:27;47892:11;47877:27;;;;;;;;;;;;;;;47905:11;47877:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;48049:57;;;;48063:11;;48076;;47918:6;;48097:8;;48049:57;:::i;:::-;;;;;;;;47717:401;47027:1098;;;;:::o;33092:355::-;33239:4;33281:40;;;33296:25;33281:40;;:105;;-1:-1:-1;33338:48:0;;;33353:33;33338:48;33281:105;:158;;;-1:-1:-1;25853:25:0;25838:40;;;;33403:36;33261:178;33092:355;-1:-1:-1;;33092:355:0:o;34261:100::-;34315:13;34348:5;34341:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34261:100;:::o;35954:308::-;36075:7;39577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39577:16:0;36100:110;;;;-1:-1:-1;;;36100:110:0;;20187:2:1;36100:110:0;;;20169:21:1;20226:2;20206:18;;;20199:30;20265:34;20245:18;;;20238:62;20336:14;20316:18;;;20309:42;20368:19;;36100:110:0;19985:408:1;36100:110:0;-1:-1:-1;36230:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36230:24:0;;35954:308::o;35477:411::-;35558:13;35574:23;35589:7;35574:14;:23::i;:::-;35558:39;;35622:5;-1:-1:-1;;;;;35616:11:0;:2;-1:-1:-1;;;;;35616:11:0;;;35608:57;;;;-1:-1:-1;;;35608:57:0;;22961:2:1;35608:57:0;;;22943:21:1;23000:2;22980:18;;;22973:30;23039:34;23019:18;;;23012:62;23110:3;23090:18;;;23083:31;23131:19;;35608:57:0;22759:397:1;35608:57:0;11536:10;-1:-1:-1;;;;;35700:21:0;;;;:62;;-1:-1:-1;35725:37:0;35742:5;11536:10;36592:214;:::i;35725:37::-;35678:168;;;;-1:-1:-1;;;35678:168:0;;17451:2:1;35678:168:0;;;17433:21:1;17490:2;17470:18;;;17463:30;17529:34;17509:18;;;17502:62;17600:26;17580:18;;;17573:54;17644:19;;35678:168:0;17249:420:1;35678:168:0;35859:21;35868:2;35872:7;35859:8;:21::i;:::-;35547:341;35477:411;;:::o;48133:435::-;48359:10;48381:4;48359:27;48337:120;;;;-1:-1:-1;;;48337:120:0;;19414:2:1;48337:120:0;;;19396:21:1;19453:2;19433:18;;;19426:30;19492:34;19472:18;;;19465:62;19563:13;19543:18;;;19536:41;19594:19;;48337:120:0;19212:407:1;48337:120:0;48506:54;48517:11;48530;48543:6;48551:8;48506:10;:54::i;36873:376::-;37082:41;11536:10;37115:7;37082:18;:41::i;:::-;37060:140;;;;-1:-1:-1;;;37060:140:0;;23363:2:1;37060:140:0;;;23345:21:1;23402:2;23382:18;;;23375:30;23441:34;23421:18;;;23414:62;23512:19;23492:18;;;23485:47;23549:19;;37060:140:0;23161:413:1;37060:140:0;37213:28;37223:4;37229:2;37233:7;37213:9;:28::i;53812:181::-;12799:7;12826:6;-1:-1:-1;;;;;12826:6:0;11536:10;12973:23;12965:68;;;;-1:-1:-1;;;12965:68:0;;20600:2:1;12965:68:0;;;20582:21:1;;;20619:18;;;20612:30;20678:34;20658:18;;;20651:62;20730:18;;12965:68:0;20398:356:1;12965:68:0;53897:6:::1;::::0;53889:36:::1;::::0;53874:9:::1;::::0;-1:-1:-1;;;;;53897:6:0::1;::::0;53917:3;;53874:9;53889:36;53874:9;53889:36;53917:3;53897:6;53889:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53873:52;;;53944:4;53936:49;;;::::0;-1:-1:-1;;;53936:49:0;;17876:2:1;53936:49:0::1;::::0;::::1;17858:21:1::0;;;17895:18;;;17888:30;17954:34;17934:18;;;17927:62;18006:18;;53936:49:0::1;17674:356:1::0;53936:49:0::1;53862:131;53812:181:::0;:::o;37320:185::-;37458:39;37475:4;37481:2;37485:7;37458:39;;;;;;;;;;;;:16;:39::i;53586:90::-;12799:7;12826:6;-1:-1:-1;;;;;12826:6:0;11536:10;12973:23;12965:68;;;;-1:-1:-1;;;12965:68:0;;20600:2:1;12965:68:0;;;20582:21:1;;;20619:18;;;20612:30;20678:34;20658:18;;;20651:62;20730:18;;12965:68:0;20398:356:1;12965:68:0;53655:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33868:326::-:0;33985:7;34026:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34026:16:0;34075:19;34053:110;;;;-1:-1:-1;;;34053:110:0;;19004:2:1;34053:110:0;;;18986:21:1;19043:2;19023:18;;;19016:30;19082:34;19062:18;;;19055:62;19153:11;19133:18;;;19126:39;19182:19;;34053:110:0;18802:405:1;51044:534:0;51112:8;;;;51111:9;51103:43;;;;-1:-1:-1;;;51103:43:0;;22208:2:1;51103:43:0;;;22190:21:1;22247:2;22227:18;;;22220:30;22286:23;22266:18;;;22259:51;22327:18;;51103:43:0;22006:345:1;51103:43:0;51178:1;51166:9;:13;;;51158:60;;;;-1:-1:-1;;;51158:60:0;;22558:2:1;51158:60:0;;;22540:21:1;22597:2;22577:18;;;22570:30;22636:34;22616:18;;;22609:62;22707:4;22687:18;;;22680:32;22729:19;;51158:60:0;22356:398:1;51158:60:0;51271:1;51259:9;51237:31;;:21;51247:10;51237:9;:21::i;:::-;:31;;;;:::i;:::-;:35;51229:70;;;;-1:-1:-1;;;51229:70:0;;24188:2:1;51229:70:0;;;24170:21:1;24227:2;24207:18;;;24200:30;24266:24;24246:18;;;24239:52;24308:18;;51229:70:0;23986:346:1;51229:70:0;51359:12;;51346:9;51332:23;;:11;;:23;;;;:::i;:::-;:39;;51310:116;;;;-1:-1:-1;;;51310:116:0;;18237:2:1;51310:116:0;;;18219:21:1;18276:2;18256:18;;;18249:30;18315:29;18295:18;;;18288:57;18362:18;;51310:116:0;18035:351:1;51310:116:0;51437:36;51447:10;51461:11;;51459:13;;;;;:::i;:::-;;;;;-1:-1:-1;51437:9:0;:36::i;:::-;51488:9;:14;;51501:1;51488:14;51484:83;;;51519:36;51529:10;51543:11;;51541:13;;;;;:::i;51519:36::-;51044:534;:::o;33511:295::-;33628:7;-1:-1:-1;;;;;33675:19:0;;33653:111;;;;-1:-1:-1;;;33653:111:0;;18593:2:1;33653:111:0;;;18575:21:1;18632:2;18612:18;;;18605:30;18671:34;18651:18;;;18644:62;18742:12;18722:18;;;18715:40;18772:19;;33653:111:0;18391:406:1;33653:111:0;-1:-1:-1;;;;;;33782:16:0;;;;;:9;:16;;;;;;;33511:295::o;13404:103::-;12799:7;12826:6;-1:-1:-1;;;;;12826:6:0;11536:10;12973:23;12965:68;;;;-1:-1:-1;;;12965:68:0;;20600:2:1;12965:68:0;;;20582:21:1;;;20619:18;;;20612:30;20678:34;20658:18;;;20651:62;20730:18;;12965:68:0;20398:356:1;12965:68:0;13469:30:::1;13496:1;13469:18;:30::i;:::-;13404:103::o:0;46826:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51586:73::-;12799:7;12826:6;-1:-1:-1;;;;;12826:6:0;11536:10;12973:23;12965:68;;;;-1:-1:-1;;;12965:68:0;;20600:2:1;12965:68:0;;;20582:21:1;;;20619:18;;;20612:30;20678:34;20658:18;;;20651:62;20730:18;;12965:68:0;20398:356:1;12965:68:0;51635:8:::1;:15:::0;;-1:-1:-1;;51635:15:0::1;51646:4;51635:15;::::0;;51586:73::o;54077:128::-;12799:7;12826:6;-1:-1:-1;;;;;12826:6:0;11536:10;12973:23;12965:68;;;;-1:-1:-1;;;12965:68:0;;20600:2:1;12965:68:0;;;20582:21:1;;;20619:18;;;20612:30;20678:34;20658:18;;;20651:62;20730:18;;12965:68:0;20398:356:1;12965:68:0;54162:26:::1;:35:::0;54077:128::o;34430:104::-;34486:13;34519:7;34512:14;;;;;:::i;36334:187::-;36461:52;11536:10;36494:8;36504;36461:18;:52::i;37576:365::-;37765:41;11536:10;37798:7;37765:18;:41::i;:::-;37743:140;;;;-1:-1:-1;;;37743:140:0;;23363:2:1;37743:140:0;;;23345:21:1;23402:2;23382:18;;;23375:30;23441:34;23421:18;;;23414:62;23512:19;23492:18;;;23485:47;23549:19;;37743:140:0;23161:413:1;37743:140:0;37894:39;37908:4;37914:2;37918:7;37927:5;37894:13;:39::i;34605:468::-;39553:4;39577:16;;;:7;:16;;;;;;34723:13;;-1:-1:-1;;;;;39577:16:0;34754:113;;;;-1:-1:-1;;;34754:113:0;;21792:2:1;34754:113:0;;;21774:21:1;21831:2;21811:18;;;21804:30;21870:34;21850:18;;;21843:62;21941:17;21921:18;;;21914:45;21976:19;;34754:113:0;21590:411:1;34754:113:0;34880:21;34904:10;:8;:10::i;:::-;34880:34;;34969:1;34951:7;34945:21;:25;:120;;;;;;;;;;;;;;;;;35014:7;35023:18;:7;:16;:18::i;:::-;34997:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34945:120;34925:140;34605:468;-1:-1:-1;;;34605:468:0:o;51882:1696::-;52002:16;52010:7;52002;:16::i;:::-;-1:-1:-1;;;;;51988:30:0;:10;-1:-1:-1;;;;;51988:30:0;;51966:114;;;;-1:-1:-1;;;51966:114:0;;16635:2:1;51966:114:0;;;16617:21:1;16674:2;16654:18;;;16647:30;16713:34;16693:18;;;16686:62;16784:4;16764:18;;;16757:32;16806:19;;51966:114:0;16433:398:1;51966:114:0;52113:29;;;52152:1;52113:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;52091:136;;;;-1:-1:-1;;;52091:136:0;;15865:2:1;52091:136:0;;;15847:21:1;15904:2;15884:18;;;15877:30;15943:34;15923:18;;;15916:62;16014:16;15994:18;;;15987:44;16048:19;;52091:136:0;15663:410:1;52091:136:0;52307:14;52313:7;52307:5;:14::i;:::-;52418:31;;;52429:10;52418:31;;;12828:74:1;12918:18;;;12911:34;;;52418:31:0;;;;;;;;;12801:18:1;;;52418:31:0;;52646:26;;11746:16:1;52593:90:0;;;11730:102:1;11848:11;;;;11841:27;;;;52593:90:0;;;;;;;;;;11884:12:1;;;52593:90:0;;;;52862:8;;:153;;;;52418:31;;52552:1;;-1:-1:-1;;;;;;;52862:8:0;;:21;;:153;;52898:8;;52929:4;;52418:31;;-1:-1:-1;;52593:90:0;;52862:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52837:178;;;53063:10;53050:9;:23;;53028:148;;;;-1:-1:-1;;;53028:148:0;;13796:2:1;53028:148:0;;;13778:21:1;13835:2;13815:18;;;13808:30;13874:34;13854:18;;;13847:62;13945:34;13925:18;;;13918:62;14017:13;13996:19;;;13989:42;14048:19;;53028:148:0;13594:479:1;53028:148:0;53189:8;;53281:29;;;53189:8;53281:29;;;:19;:29;;;;;;53189:381;;;;;-1:-1:-1;;;;;53189:8:0;;;;:13;;53210:9;;53189:381;;53235:8;;53364:7;;53420:10;;53189:8;53530:13;;53189:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51955:1623;;;;51882:1696;;:::o;49228:916::-;49487:27;;;49452:32;49487:27;;;:14;:27;;;;;;:64;;;;49529:11;;49487:64;:::i;:::-;;;;;;;;;;;;;;;;:72;;;;;;;;;;;49592:21;;;;49487:72;;-1:-1:-1;49570:123:0;;;;-1:-1:-1;;;49570:123:0;;23781:2:1;49570:123:0;;;23763:21:1;23820:2;23800:18;;;23793:30;23859:34;23839:18;;;23832:62;23930:8;23910:18;;;23903:36;23956:19;;49570:123:0;23579:402:1;49570:123:0;49745:23;;49726:42;;:107;;;;;49812:9;:21;;;49799:8;;49789:19;;;;;;;:::i;:::-;;;;;;;;:44;49726:107;49704:183;;;;-1:-1:-1;;;49704:183:0;;16280:2:1;49704:183:0;;;16262:21:1;16319:2;16299:18;;;16292:30;16358:28;16338:18;;;16331:56;16404:18;;49704:183:0;16078:350:1;49704:183:0;49961:1;49935:27;;;49973:21;;;:34;50076:60;;;;;:4;;:16;;:60;;50093:11;;50106;;50119:6;;50127:8;;;;50076:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49396:748;49228:916;;;;;:::o;50152:181::-;12799:7;12826:6;-1:-1:-1;;;;;12826:6:0;11536:10;12973:23;12965:68;;;;-1:-1:-1;;;12965:68:0;;20600:2:1;12965:68:0;;;20582:21:1;;;20619:18;;;20612:30;20678:34;20658:18;;;20651:62;20730:18;;12965:68:0;20398:356:1;12965:68:0;50279:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50311:14;;50279:46:::1;:::i;13662:238::-:0;12799:7;12826:6;-1:-1:-1;;;;;12826:6:0;11536:10;12973:23;12965:68;;;;-1:-1:-1;;;12965:68:0;;20600:2:1;12965:68:0;;;20582:21:1;;;20619:18;;;20612:30;20678:34;20658:18;;;20651:62;20730:18;;12965:68:0;20398:356:1;12965:68:0;-1:-1:-1;;;;;13765:22:0;::::1;13743:110;;;::::0;-1:-1:-1;;;13743:110:0;;14699:2:1;13743:110:0::1;::::0;::::1;14681:21:1::0;14738:2;14718:18;;;14711:30;14777:34;14757:18;;;14750:62;14848:8;14828:18;;;14821:36;14874:19;;13743:110:0::1;14497:402:1::0;13743:110:0::1;13864:28;13883:8;13864:18;:28::i;51667:76::-:0;12799:7;12826:6;-1:-1:-1;;;;;12826:6:0;11536:10;12973:23;12965:68;;;;-1:-1:-1;;;12965:68:0;;20600:2:1;12965:68:0;;;20582:21:1;;;20619:18;;;20612:30;20678:34;20658:18;;;20651:62;20730:18;;12965:68:0;20398:356:1;12965:68:0;51718:8:::1;:16:::0;;-1:-1:-1;;51718:16:0::1;::::0;;51667:76::o;43542:174::-;43617:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;43617:29:0;;;;;;;;:24;;43671:23;43617:24;43671:14;:23::i;:::-;-1:-1:-1;;;;;43662:46:0;;;;;;;;;;;43542:174;;:::o;54296:424::-;54492:14;54508:15;54552:8;54527:77;;;;;;;;;;;;:::i;:::-;54491:113;;;;54686:26;54696:6;54704:7;54686:9;:26::i;:::-;54461:259;;54296:424;;;;:::o;39782:452::-;39911:4;39577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39577:16:0;39933:110;;;;-1:-1:-1;;;39933:110:0;;17038:2:1;39933:110:0;;;17020:21:1;17077:2;17057:18;;;17050:30;17116:34;17096:18;;;17089:62;17187:14;17167:18;;;17160:42;17219:19;;39933:110:0;16836:408:1;39933:110:0;40054:13;40070:23;40085:7;40070:14;:23::i;:::-;40054:39;;40123:5;-1:-1:-1;;;;;40112:16:0;:7;-1:-1:-1;;;;;40112:16:0;;:64;;;;40169:7;-1:-1:-1;;;;;40145:31:0;:20;40157:7;40145:11;:20::i;:::-;-1:-1:-1;;;;;40145:31:0;;40112:64;:113;;;-1:-1:-1;;;;;;36763:25:0;;;36734:4;36763:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40193:32;40104:122;39782:452;-1:-1:-1;;;;39782:452:0:o;42809:615::-;42982:4;-1:-1:-1;;;;;42955:31:0;:23;42970:7;42955:14;:23::i;:::-;-1:-1:-1;;;;;42955:31:0;;42933:122;;;;-1:-1:-1;;;42933:122:0;;21382:2:1;42933:122:0;;;21364:21:1;21421:2;21401:18;;;21394:30;21460:34;21440:18;;;21433:62;21531:11;21511:18;;;21504:39;21560:19;;42933:122:0;21180:405:1;42933:122:0;-1:-1:-1;;;;;43074:16:0;;43066:65;;;;-1:-1:-1;;;43066:65:0;;15106:2:1;43066:65:0;;;15088:21:1;15145:2;15125:18;;;15118:30;15184:34;15164:18;;;15157:62;15255:6;15235:18;;;15228:34;15279:19;;43066:65:0;14904:400:1;43066:65:0;43248:29;43265:1;43269:7;43248:8;:29::i;:::-;-1:-1:-1;;;;;43290:15:0;;;;;;:9;:15;;;;;:20;;43309:1;;43290:15;:20;;43309:1;;43290:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43321:13:0;;;;;;:9;:13;;;;;:18;;43338:1;;43321:13;:18;;43338:1;;43321:18;:::i;:::-;;;;-1:-1:-1;;43350:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;43350:21:0;;;;;;;;;43389:27;;43350:16;;43389:27;;;;;;;42809:615;;;:::o;40576:110::-;40652:26;40662:2;40666:7;40652:26;;;;;;;;;;;;:9;:26::i;14060:191::-;14134:16;14153:6;;-1:-1:-1;;;;;14170:17:0;;;;;;;;;;14203:40;;14153:6;;;;;;;14203:40;;14134:16;14203:40;14123:128;14060:191;:::o;43858:315::-;44013:8;-1:-1:-1;;;;;44004:17:0;:5;-1:-1:-1;;;;;44004:17:0;;;43996:55;;;;-1:-1:-1;;;43996:55:0;;15511:2:1;43996:55:0;;;15493:21:1;15550:2;15530:18;;;15523:30;15589:27;15569:18;;;15562:55;15634:18;;43996:55:0;15309:349:1;43996:55:0;-1:-1:-1;;;;;44062:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;44062:46:0;;;;;;;;;;44124:41;;13096::1;;;44124::0;;13069:18:1;44124:41:0;;;;;;;43858:315;;;:::o;38823:352::-;38980:28;38990:4;38996:2;39000:7;38980:9;:28::i;:::-;39041:48;39064:4;39070:2;39074:7;39083:5;39041:22;:48::i;:::-;39019:148;;;;-1:-1:-1;;;39019:148:0;;14280:2:1;39019:148:0;;;14262:21:1;14319:2;14299:18;;;14292:30;14358:34;14338:18;;;14331:62;14429:20;14409:18;;;14402:48;14467:19;;39019:148:0;14078:414:1;54728:100:0;54780:13;54813:7;54806:14;;;;;:::i;8988:723::-;9044:13;9265:10;9261:53;;-1:-1:-1;;9292:10:0;;;;;;;;;;;;;;;;;;8988:723::o;9261:53::-;9339:5;9324:12;9380:78;9387:9;;9380:78;;9413:8;;;;:::i;:::-;;-1:-1:-1;9436:10:0;;-1:-1:-1;9444:2:0;9436:10;;:::i;:::-;;;9380:78;;;9468:19;9500:6;9490:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9490:17:0;;9468:39;;9518:154;9525:10;;9518:154;;9552:11;9562:1;9552:11;;:::i;:::-;;-1:-1:-1;9621:10:0;9629:2;9621:5;:10;:::i;:::-;9608:24;;:2;:24;:::i;:::-;9595:39;;9578:6;9585;9578:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;9649:11:0;9658:2;9649:11;;:::i;:::-;;;9518:154;;42112:360;42172:13;42188:23;42203:7;42188:14;:23::i;:::-;42172:39;;42313:29;42330:1;42334:7;42313:8;:29::i;:::-;-1:-1:-1;;;;;42355:16:0;;;;;;:9;:16;;;;;:21;;42375:1;;42355:16;:21;;42375:1;;42355:21;:::i;:::-;;;;-1:-1:-1;;42394:16:0;;;;:7;:16;;;;;;42387:23;;;;;;42428:36;42402:7;;42394:16;-1:-1:-1;;;;;42428:36:0;;;;;42394:16;;42428:36;42161:311;42112:360;:::o;40913:321::-;41043:18;41049:2;41053:7;41043:5;:18::i;:::-;41094:54;41125:1;41129:2;41133:7;41142:5;41094:22;:54::i;:::-;41072:154;;;;-1:-1:-1;;;41072:154:0;;14280:2:1;41072:154:0;;;14262:21:1;14319:2;14299:18;;;14292:30;14358:34;14338:18;;;14331:62;14429:20;14409:18;;;14402:48;14467:19;;41072:154:0;14078:414:1;44738:980:0;44893:4;-1:-1:-1;;;;;44914:13:0;;15399:20;15447:8;44910:801;;44967:175;;;;;-1:-1:-1;;;;;44967:36:0;;;;;:175;;11536:10;;45061:4;;45088:7;;45118:5;;44967:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44967:175:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44946:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45325:13:0;;45321:320;;45368:108;;-1:-1:-1;;;45368:108:0;;14280:2:1;45368:108:0;;;14262:21:1;14319:2;14299:18;;;14292:30;14358:34;14338:18;;;14331:62;14429:20;14409:18;;;14402:48;14467:19;;45368:108:0;14078:414:1;45321:320:0;45591:6;45585:13;45576:6;45572:2;45568:15;45561:38;44946:710;45206:51;;45216:41;45206:51;;-1:-1:-1;45199:58:0;;44910:801;-1:-1:-1;45695:4:0;44738:980;;;;;;:::o;41570:313::-;-1:-1:-1;;;;;41650:16:0;;41642:61;;;;-1:-1:-1;;;41642:61:0;;19826:2:1;41642:61:0;;;19808:21:1;;;19845:18;;;19838:30;19904:34;19884:18;;;19877:62;19956:18;;41642:61:0;19624:356:1;41642:61:0;-1:-1:-1;;;;;41774:13:0;;;;;;:9;:13;;;;;:18;;41791:1;;41774:13;:18;;41791:1;;41774:18;:::i;:::-;;;;-1:-1:-1;;41803:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;41803:21:0;;;;;;;;41842:33;;41803:16;;;41842:33;;41803:16;;41842:33;41570:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;194:66;339:24;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:347::-;760:8;770:6;824:3;817:4;809:6;805:17;801:27;791:55;;842:1;839;832:12;791:55;-1:-1:-1;865:20:1;;908:18;897:30;;894:50;;;940:1;937;930:12;894:50;977:4;969:6;965:17;953:29;;1029:3;1022:4;1013:6;1005;1001:19;997:30;994:39;991:59;;;1046:1;1043;1036:12;991:59;709:347;;;;;:::o;1061:220::-;1103:5;1156:3;1149:4;1141:6;1137:17;1133:27;1123:55;;1174:1;1171;1164:12;1123:55;1196:79;1271:3;1262:6;1249:20;1242:4;1234:6;1230:17;1196:79;:::i;1286:159::-;1353:20;;1413:6;1402:18;;1392:29;;1382:57;;1435:1;1432;1425:12;1382:57;1286:159;;;:::o;1450:171::-;1517:20;;1577:18;1566:30;;1556:41;;1546:69;;1611:1;1608;1601:12;1626:247;1685:6;1738:2;1726:9;1717:7;1713:23;1709:32;1706:52;;;1754:1;1751;1744:12;1706:52;1793:9;1780:23;1812:31;1837:5;1812:31;:::i;1878:320::-;1965:6;1973;2026:2;2014:9;2005:7;2001:23;1997:32;1994:52;;;2042:1;2039;2032:12;1994:52;2074:9;2068:16;2093:31;2118:5;2093:31;:::i;:::-;2188:2;2173:18;;;;2167:25;2143:5;;2167:25;;-1:-1:-1;;;1878:320:1:o;2203:388::-;2271:6;2279;2332:2;2320:9;2311:7;2307:23;2303:32;2300:52;;;2348:1;2345;2338:12;2300:52;2387:9;2374:23;2406:31;2431:5;2406:31;:::i;:::-;2456:5;-1:-1:-1;2513:2:1;2498:18;;2485:32;2526:33;2485:32;2526:33;:::i;:::-;2578:7;2568:17;;;2203:388;;;;;:::o;2596:456::-;2673:6;2681;2689;2742:2;2730:9;2721:7;2717:23;2713:32;2710:52;;;2758:1;2755;2748:12;2710:52;2797:9;2784:23;2816:31;2841:5;2816:31;:::i;:::-;2866:5;-1:-1:-1;2923:2:1;2908:18;;2895:32;2936:33;2895:32;2936:33;:::i;:::-;2596:456;;2988:7;;-1:-1:-1;;;3042:2:1;3027:18;;;;3014:32;;2596:456::o;3057:665::-;3152:6;3160;3168;3176;3229:3;3217:9;3208:7;3204:23;3200:33;3197:53;;;3246:1;3243;3236:12;3197:53;3285:9;3272:23;3304:31;3329:5;3304:31;:::i;:::-;3354:5;-1:-1:-1;3411:2:1;3396:18;;3383:32;3424:33;3383:32;3424:33;:::i;:::-;3476:7;-1:-1:-1;3530:2:1;3515:18;;3502:32;;-1:-1:-1;3585:2:1;3570:18;;3557:32;3612:18;3601:30;;3598:50;;;3644:1;3641;3634:12;3598:50;3667:49;3708:7;3699:6;3688:9;3684:22;3667:49;:::i;:::-;3657:59;;;3057:665;;;;;;;:::o;3727:416::-;3792:6;3800;3853:2;3841:9;3832:7;3828:23;3824:32;3821:52;;;3869:1;3866;3859:12;3821:52;3908:9;3895:23;3927:31;3952:5;3927:31;:::i;:::-;3977:5;-1:-1:-1;4034:2:1;4019:18;;4006:32;4076:15;;4069:23;4057:36;;4047:64;;4107:1;4104;4097:12;4148:315;4216:6;4224;4277:2;4265:9;4256:7;4252:23;4248:32;4245:52;;;4293:1;4290;4283:12;4245:52;4332:9;4319:23;4351:31;4376:5;4351:31;:::i;:::-;4401:5;4453:2;4438:18;;;;4425:32;;-1:-1:-1;;;4148:315:1:o;4468:245::-;4526:6;4579:2;4567:9;4558:7;4554:23;4550:32;4547:52;;;4595:1;4592;4585:12;4547:52;4634:9;4621:23;4653:30;4677:5;4653:30;:::i;4718:249::-;4787:6;4840:2;4828:9;4819:7;4815:23;4811:32;4808:52;;;4856:1;4853;4846:12;4808:52;4888:9;4882:16;4907:30;4931:5;4907:30;:::i;4972:450::-;5041:6;5094:2;5082:9;5073:7;5069:23;5065:32;5062:52;;;5110:1;5107;5100:12;5062:52;5150:9;5137:23;5183:18;5175:6;5172:30;5169:50;;;5215:1;5212;5205:12;5169:50;5238:22;;5291:4;5283:13;;5279:27;-1:-1:-1;5269:55:1;;5320:1;5317;5310:12;5269:55;5343:73;5408:7;5403:2;5390:16;5385:2;5381;5377:11;5343:73;:::i;5427:184::-;5485:6;5538:2;5526:9;5517:7;5513:23;5509:32;5506:52;;;5554:1;5551;5544:12;5506:52;5577:28;5595:9;5577:28;:::i;5616:481::-;5694:6;5702;5710;5763:2;5751:9;5742:7;5738:23;5734:32;5731:52;;;5779:1;5776;5769:12;5731:52;5802:28;5820:9;5802:28;:::i;:::-;5792:38;;5881:2;5870:9;5866:18;5853:32;5908:18;5900:6;5897:30;5894:50;;;5940:1;5937;5930:12;5894:50;5979:58;6029:7;6020:6;6009:9;6005:22;5979:58;:::i;:::-;5616:481;;6056:8;;-1:-1:-1;5953:84:1;;-1:-1:-1;;;;5616:481:1:o;6102:460::-;6187:6;6195;6203;6256:2;6244:9;6235:7;6231:23;6227:32;6224:52;;;6272:1;6269;6262:12;6224:52;6295:28;6313:9;6295:28;:::i;:::-;6285:38;;6374:2;6363:9;6359:18;6346:32;6401:18;6393:6;6390:30;6387:50;;;6433:1;6430;6423:12;6387:50;6456:49;6497:7;6488:6;6477:9;6473:22;6456:49;:::i;:::-;6446:59;;;6552:2;6541:9;6537:18;6524:32;6514:42;;6102:460;;;;;:::o;6567:773::-;6671:6;6679;6687;6695;6703;6756:3;6744:9;6735:7;6731:23;6727:33;6724:53;;;6773:1;6770;6763:12;6724:53;6796:28;6814:9;6796:28;:::i;:::-;6786:38;;6875:2;6864:9;6860:18;6847:32;6898:18;6939:2;6931:6;6928:14;6925:34;;;6955:1;6952;6945:12;6925:34;6978:49;7019:7;7010:6;6999:9;6995:22;6978:49;:::i;:::-;6968:59;;7046:37;7079:2;7068:9;7064:18;7046:37;:::i;:::-;7036:47;;7136:2;7125:9;7121:18;7108:32;7092:48;;7165:2;7155:8;7152:16;7149:36;;;7181:1;7178;7171:12;7149:36;;7220:60;7272:7;7261:8;7250:9;7246:24;7220:60;:::i;:::-;6567:773;;;;-1:-1:-1;6567:773:1;;-1:-1:-1;7299:8:1;;7194:86;6567:773;-1:-1:-1;;;6567:773:1:o;7345:684::-;7447:6;7455;7463;7471;7524:3;7512:9;7503:7;7499:23;7495:33;7492:53;;;7541:1;7538;7531:12;7492:53;7564:28;7582:9;7564:28;:::i;:::-;7554:38;;7643:2;7632:9;7628:18;7615:32;7666:18;7707:2;7699:6;7696:14;7693:34;;;7723:1;7720;7713:12;7693:34;7746:49;7787:7;7778:6;7767:9;7763:22;7746:49;:::i;:::-;7736:59;;7814:37;7847:2;7836:9;7832:18;7814:37;:::i;:::-;7804:47;;7904:2;7893:9;7889:18;7876:32;7860:48;;7933:2;7923:8;7920:16;7917:36;;;7949:1;7946;7939:12;7917:36;;7972:51;8015:7;8004:8;7993:9;7989:24;7972:51;:::i;8034:252::-;8101:6;8109;8162:2;8150:9;8141:7;8137:23;8133:32;8130:52;;;8178:1;8175;8168:12;8130:52;8201:28;8219:9;8201:28;:::i;8291:180::-;8350:6;8403:2;8391:9;8382:7;8378:23;8374:32;8371:52;;;8419:1;8416;8409:12;8371:52;-1:-1:-1;8442:23:1;;8291:180;-1:-1:-1;8291:180:1:o;8476:245::-;8555:6;8563;8616:2;8604:9;8595:7;8591:23;8587:32;8584:52;;;8632:1;8629;8622:12;8584:52;-1:-1:-1;;8655:16:1;;8711:2;8696:18;;;8690:25;8655:16;;8690:25;;-1:-1:-1;8476:245:1:o;8726:269::-;8783:6;8836:2;8824:9;8815:7;8811:23;8807:32;8804:52;;;8852:1;8849;8842:12;8804:52;8891:9;8878:23;8941:4;8934:5;8930:16;8923:5;8920:27;8910:55;;8961:1;8958;8951:12;9140:316;9181:3;9219:5;9213:12;9246:6;9241:3;9234:19;9262:63;9318:6;9311:4;9306:3;9302:14;9295:4;9288:5;9284:16;9262:63;:::i;:::-;9370:2;9358:15;9375:66;9354:88;9345:98;;;;9445:4;9341:109;;9140:316;-1:-1:-1;;9140:316:1:o;9461:271::-;9644:6;9636;9631:3;9618:33;9600:3;9670:16;;9695:13;;;9670:16;9461:271;-1:-1:-1;9461:271:1:o;9737:274::-;9866:3;9904:6;9898:13;9920:53;9966:6;9961:3;9954:4;9946:6;9942:17;9920:53;:::i;:::-;9989:16;;;;;9737:274;-1:-1:-1;;9737:274:1:o;10016:869::-;10142:3;10171:1;10204:6;10198:13;10234:36;10260:9;10234:36;:::i;:::-;10289:1;10306:18;;;10333:162;;;;10509:1;10504:356;;;;10299:561;;10333:162;-1:-1:-1;;10370:9:1;10366:82;10361:3;10354:95;10478:6;10473:3;10469:16;10462:23;;10333:162;;10504:356;10535:6;10532:1;10525:17;10565:4;10610:2;10607:1;10597:16;10635:1;10649:165;10663:6;10660:1;10657:13;10649:165;;;10741:14;;10728:11;;;10721:35;10784:16;;;;10678:10;;10649:165;;;10653:3;;;10843:6;10838:3;10834:16;10827:23;;10299:561;-1:-1:-1;10876:3:1;;10016:869;-1:-1:-1;;;;;;10016:869:1:o;10890:470::-;11069:3;11107:6;11101:13;11123:53;11169:6;11164:3;11157:4;11149:6;11145:17;11123:53;:::i;:::-;11239:13;;11198:16;;;;11261:57;11239:13;11198:16;11295:4;11283:17;;11261:57;:::i;:::-;11334:20;;10890:470;-1:-1:-1;;;;10890:470:1:o;12138:511::-;12332:4;-1:-1:-1;;;;;12442:2:1;12434:6;12430:15;12419:9;12412:34;12494:2;12486:6;12482:15;12477:2;12466:9;12462:18;12455:43;;12534:6;12529:2;12518:9;12514:18;12507:34;12577:3;12572:2;12561:9;12557:18;12550:31;12598:45;12638:3;12627:9;12623:19;12615:6;12598:45;:::i;:::-;12590:53;12138:511;-1:-1:-1;;;;;;12138:511:1:o;13148:217::-;13295:2;13284:9;13277:21;13258:4;13315:44;13355:2;13344:9;13340:18;13332:6;13315:44;:::i;24337:663::-;24618:6;24610;24606:19;24595:9;24588:38;-1:-1:-1;;;;;24666:6:1;24662:55;24657:2;24646:9;24642:18;24635:83;24754:3;24749:2;24738:9;24734:18;24727:31;24569:4;24781:45;24821:3;24810:9;24806:19;24798:6;24781:45;:::i;:::-;24876:6;24869:14;24862:22;24857:2;24846:9;24842:18;24835:50;24934:9;24926:6;24922:22;24916:3;24905:9;24901:19;24894:51;24962:32;24987:6;24979;24962:32;:::i;:::-;24954:40;24337:663;-1:-1:-1;;;;;;;;24337:663:1:o;25005:776::-;25272:6;25264;25260:19;25249:9;25242:38;25316:3;25311:2;25300:9;25296:18;25289:31;25223:4;25343:45;25383:3;25372:9;25368:19;25360:6;25343:45;:::i;:::-;25436:18;25428:6;25424:31;25419:2;25408:9;25404:18;25397:59;25504:9;25496:6;25492:22;25487:2;25476:9;25472:18;25465:50;25539:6;25531;25524:22;25593:6;25585;25580:2;25572:6;25568:15;25555:45;25646:1;25641:2;25632:6;25624;25620:19;25616:28;25609:39;25772:2;25702:66;25697:2;25689:6;25685:15;25681:88;25673:6;25669:101;25665:110;25657:118;;;25005:776;;;;;;;;:::o;25786:555::-;26043:6;26035;26031:19;26020:9;26013:38;26087:3;26082:2;26071:9;26067:18;26060:31;25994:4;26114:45;26154:3;26143:9;26139:19;26131:6;26114:45;:::i;:::-;26207:18;26199:6;26195:31;26190:2;26179:9;26175:18;26168:59;26275:9;26267:6;26263:22;26258:2;26247:9;26243:18;26236:50;26303:32;26328:6;26320;26303:32;:::i;:::-;26295:40;25786:555;-1:-1:-1;;;;;;;25786:555:1:o;26346:1556::-;26692:6;26684;26680:19;26669:9;26662:38;26643:4;26719:2;26757:3;26752:2;26741:9;26737:18;26730:31;26781:1;26814:6;26808:13;26844:36;26870:9;26844:36;:::i;:::-;26917:6;26911:3;26900:9;26896:19;26889:35;26943:3;26965:1;26997:2;26986:9;26982:18;27014:1;27009:180;;;;27203:1;27198:354;;;;26975:577;;27009:180;-1:-1:-1;;27061:9:1;27057:82;27052:2;27041:9;27037:18;27030:110;27175:3;27164:9;27160:19;27153:26;;27009:180;;27198:354;27229:6;27226:1;27219:17;27277:2;27274:1;27264:16;27302:1;27316:180;27330:6;27327:1;27324:13;27316:180;;;27423:14;;27399:17;;;27395:26;;27388:50;27466:16;;;;27345:10;;27316:180;;;27520:17;;27516:26;;;-1:-1:-1;;26975:577:1;;;;;;27597:9;27592:3;27588:19;27583:2;27572:9;27568:18;27561:47;27631:29;27656:3;27648:6;27631:29;:::i;:::-;27617:43;;;27669:54;27719:2;27708:9;27704:18;27696:6;-1:-1:-1;;;;;9074:54:1;9062:67;;9000:135;27669:54;-1:-1:-1;;;;;9074:54:1;;27782:3;27767:19;;9062:67;27836:9;27828:6;27824:22;27818:3;27807:9;27803:19;27796:51;27864:32;27889:6;27881;27864:32;:::i;:::-;27856:40;26346:1556;-1:-1:-1;;;;;;;;;26346:1556:1:o;28342:128::-;28382:3;28413:1;28409:6;28406:1;28403:13;28400:39;;;28419:18;;:::i;:::-;-1:-1:-1;28455:9:1;;28342:128::o;28475:120::-;28515:1;28541;28531:35;;28546:18;;:::i;:::-;-1:-1:-1;28580:9:1;;28475:120::o;28600:125::-;28640:4;28668:1;28665;28662:8;28659:34;;;28673:18;;:::i;:::-;-1:-1:-1;28710:9:1;;28600:125::o;28730:258::-;28802:1;28812:113;28826:6;28823:1;28820:13;28812:113;;;28902:11;;;28896:18;28883:11;;;28876:39;28848:2;28841:10;28812:113;;;28943:6;28940:1;28937:13;28934:48;;;-1:-1:-1;;28978:1:1;28960:16;;28953:27;28730:258::o;28993:437::-;29072:1;29068:12;;;;29115;;;29136:61;;29190:4;29182:6;29178:17;29168:27;;29136:61;29243:2;29235:6;29232:14;29212:18;29209:38;29206:218;;;29280:77;29277:1;29270:88;29381:4;29378:1;29371:15;29409:4;29406:1;29399:15;29206:218;;28993:437;;;:::o;29435:195::-;29474:3;29505:66;29498:5;29495:77;29492:103;;;29575:18;;:::i;:::-;-1:-1:-1;29622:1:1;29611:13;;29435:195::o;29635:112::-;29667:1;29693;29683:35;;29698:18;;:::i;:::-;-1:-1:-1;29732:9:1;;29635:112::o;29752:184::-;29804:77;29801:1;29794:88;29901:4;29898:1;29891:15;29925:4;29922:1;29915:15;29941:184;29993:77;29990:1;29983:88;30090:4;30087:1;30080:15;30114:4;30111:1;30104:15;30130:184;30182:77;30179:1;30172:88;30279:4;30276:1;30269:15;30303:4;30300:1;30293:15;30319:184;30371:77;30368:1;30361:88;30468:4;30465:1;30458:15;30492:4;30489:1;30482:15;30508:154;-1:-1:-1;;;;;30587:5:1;30583:54;30576:5;30573:65;30563:93;;30652:1;30649;30642:12;30667:177;30752:66;30745:5;30741:78;30734:5;30731:89;30721:117;;30834:1;30831;30824:12
Swarm Source
ipfs://b6a35ba1c92d942494e4bd66c67ade07e9399d2af41c51dba82077014bb22015
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.