Source Code
Overview
GLMR Balance
GLMR Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Safe Mint | 961567 | 1366 days ago | IN | 0 GLMR | 0.0076906 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PNSPM
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/**
*Submitted for verification at moonbeam.moonscan.io on 2022-05-05
*/
// File: @openzeppelin\contracts\utils\introspection\IERC165.sol
// SPDX-License-Identifier: MIT
// 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\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\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\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\utils\Address.sol
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// 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\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\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: erc721a\contracts\ERC721A.sol
// Creator: Chiru Labs
pragma solidity ^0.8.4;
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
*
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Compiler will pack this into a single 256bit word.
struct TokenOwnership {
// The address of the owner.
address addr;
// Keeps track of the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
}
// Compiler will pack this into a single 256bit word.
struct AddressData {
// Realistically, 2**64-1 is more than enough.
uint64 balance;
// Keeps track of mint count with minimal overhead for tokenomics.
uint64 numberMinted;
// Keeps track of burn count with minimal overhead for tokenomics.
uint64 numberBurned;
// For miscellaneous variable(s) pertaining to the address
// (e.g. number of whitelist mint slots used).
// If there are multiple variables, please pack them into a uint64.
uint64 aux;
}
// The tokenId of the next token to be minted.
uint256 internal _currentIndex;
// The number of tokens burned.
uint256 internal _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// 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;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
/**
* To change the starting tokenId, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
*/
function totalSupply() public view returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than _currentIndex - _startTokenId() times
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to _startTokenId()
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @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 override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return uint256(_addressData[owner].balance);
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberMinted);
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberBurned);
}
/**
* Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return _addressData[owner].aux;
}
/**
* Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal {
_addressData[owner].aux = aux;
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr && curr < _currentIndex) {
TokenOwnership memory ownership = _ownerships[curr];
if (!ownership.burned) {
if (ownership.addr != address(0)) {
return ownership;
}
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
while (true) {
curr--;
ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return _ownershipOf(tokenId).addr;
}
/**
* @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) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
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 override {
address owner = ERC721A.ownerOf(tokenId);
if (to == owner) revert ApprovalToCurrentOwner();
if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSender()) revert ApproveToCaller();
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_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 {
_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 {
_transfer(from, to, tokenId);
if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @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`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, '');
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint64(quantity);
_addressData[to].numberMinted += uint64(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
if (safe && to.isContract()) {
do {
emit Transfer(address(0), to, updatedIndex);
if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (updatedIndex != end);
// Reentrancy protection
if (_currentIndex != startTokenId) revert();
} else {
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex != end);
}
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* 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
) private {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = to;
currSlot.startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev This is equivalent to _burn(tokenId, false)
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
address from = prevOwnership.addr;
if (approvalCheck) {
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
AddressData storage addressData = _addressData[from];
addressData.balance -= 1;
addressData.numberBurned += 1;
// Keep track of who burned the token, and the timestamp of burning.
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = from;
currSlot.startTimestamp = uint64(block.timestamp);
currSlot.burned = true;
// If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
* And also called before burning one token.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* 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, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
* And also called after one token has been burned.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
// 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: contracts\PNSPM.sol
pragma solidity ^0.8.4;
contract PNSPM is ERC721A, Ownable {
uint256 public MAX_SUPPLY = 10000;
constructor() ERC721A("nft hello", "nft hello") {}
function totalMinted() public view returns (uint256){
return _totalMinted();
}
function safeMint(address to) public onlyOwner {
require(_totalMinted() < MAX_SUPPLY, "Exceed maximum supply");
_safeMint(to, 1);
}
function batchMint(address[] memory to) public onlyOwner {
require(_totalMinted() + to.length <= MAX_SUPPLY, "Exceed maximum supply");
for (uint256 i = 0; i< to.length; i++) {
_safeMint(to[i], 1);
}
}
function burn(uint256 tokenId) public {
_burn(tokenId, true);
}
function currentId () public view returns (uint256) {
return _currentIndex;
}
function _baseURI() internal pure override returns (string memory) {
return "{\n \"description\": \"xxxxxx\",\n \"external_url\": \"xxxxxx\",\n \"image\": \"https://ipfs.madewithmason.com/ipfs/Qmenzb1d49cakmjXf5SDKbEeN9oWnUVAwmH5Ge1mKuiWfd\",\n \"name\": \"test mp4\",\n \"attributes\": \"\"\n}";
}
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
return _baseURI();
}
function _startTokenId() internal view virtual override returns (uint256) {
return 1;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","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":"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":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]Contract Creation Code
60806040526127106009553480156200001757600080fd5b506040518060400160405280600981526020017f6e66742068656c6c6f00000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f6e66742068656c6c6f000000000000000000000000000000000000000000000081525081600290805190602001906200009c929190620001cb565b508060039080519060200190620000b5929190620001cb565b50620000c6620000f460201b60201c565b6000819055505050620000ee620000e2620000fd60201b60201c565b6200010560201b60201c565b620002e0565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d9906200027b565b90600052602060002090601f016020900481019282620001fd576000855562000249565b82601f106200021857805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002485782518255916020019190600101906200022b565b5b5090506200025891906200025c565b5090565b5b80821115620002775760008160009055506001016200025d565b5090565b600060028204905060018216806200029457607f821691505b60208210811415620002ab57620002aa620002b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612dfc80620002f06000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde14610378578063c87b56dd14610394578063d67b06c1146103c4578063e00dd161146103e0578063e985e9c5146103fe578063f2fde38b1461042e5761014d565b806370a08231146102c8578063715018a6146102f85780638da5cb5b1461030257806395d89b4114610320578063a22cb4651461033e578063a2309ff81461035a5761014d565b806323b872dd1161011557806323b872dd1461020a57806332cb6b0c1461022657806340d097c31461024457806342842e0e1461026057806342966c681461027c5780636352211e146102985761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190612653565b61044a565b604051610179919061283d565b60405180910390f35b61018a61052c565b6040516101979190612858565b60405180910390f35b6101ba60048036038101906101b591906126a5565b6105be565b6040516101c791906127d6565b60405180910390f35b6101ea60048036038101906101e591906125d6565b61063a565b005b6101f4610745565b60405161020191906128da565b60405180910390f35b610224600480360381019061021f91906124d0565b61075c565b005b61022e61076c565b60405161023b91906128da565b60405180910390f35b61025e6004803603810190610259919061246b565b610772565b005b61027a600480360381019061027591906124d0565b610847565b005b610296600480360381019061029191906126a5565b610867565b005b6102b260048036038101906102ad91906126a5565b610875565b6040516102bf91906127d6565b60405180910390f35b6102e260048036038101906102dd919061246b565b61088b565b6040516102ef91906128da565b60405180910390f35b61030061095b565b005b61030a6109e3565b60405161031791906127d6565b60405180910390f35b610328610a0d565b6040516103359190612858565b60405180910390f35b6103586004803603810190610353919061259a565b610a9f565b005b610362610c17565b60405161036f91906128da565b60405180910390f35b610392600480360381019061038d919061251f565b610c26565b005b6103ae60048036038101906103a991906126a5565b610ca2565b6040516103bb9190612858565b60405180910390f35b6103de60048036038101906103d99190612612565b610cb3565b005b6103e8610df5565b6040516103f591906128da565b60405180910390f35b61041860048036038101906104139190612494565b610dfe565b604051610425919061283d565b60405180910390f35b6104486004803603810190610443919061246b565b610e92565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610525575061052482610f8a565b5b9050919050565b60606002805461053b90612abb565b80601f016020809104026020016040519081016040528092919081815260200182805461056790612abb565b80156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b60006105c982610ff4565b6105ff576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061064582610875565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ad576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106cc611042565b73ffffffffffffffffffffffffffffffffffffffff16141580156106fe57506106fc816106f7611042565b610dfe565b155b15610735576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61074083838361104a565b505050565b600061074f6110fc565b6001546000540303905090565b610767838383611105565b505050565b60095481565b61077a611042565b73ffffffffffffffffffffffffffffffffffffffff166107986109e3565b73ffffffffffffffffffffffffffffffffffffffff16146107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e5906128ba565b60405180910390fd5b6009546107f96115bb565b10610839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108309061289a565b60405180910390fd5b6108448160016115ce565b50565b61086283838360405180602001604052806000815250610c26565b505050565b6108728160016115ec565b50565b6000610880826119dc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108f3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610963611042565b73ffffffffffffffffffffffffffffffffffffffff166109816109e3565b73ffffffffffffffffffffffffffffffffffffffff16146109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce906128ba565b60405180910390fd5b6109e16000611c6b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610a1c90612abb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4890612abb565b8015610a955780601f10610a6a57610100808354040283529160200191610a95565b820191906000526020600020905b815481529060010190602001808311610a7857829003601f168201915b5050505050905090565b610aa7611042565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610b19611042565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610bc6611042565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c0b919061283d565b60405180910390a35050565b6000610c216115bb565b905090565b610c31848484611105565b610c508373ffffffffffffffffffffffffffffffffffffffff16611d31565b8015610c655750610c6384848484611d54565b155b15610c9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610cac611eb4565b9050919050565b610cbb611042565b73ffffffffffffffffffffffffffffffffffffffff16610cd96109e3565b73ffffffffffffffffffffffffffffffffffffffff1614610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d26906128ba565b60405180910390fd5b6009548151610d3c6115bb565b610d4691906129af565b1115610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e9061289a565b60405180910390fd5b60005b8151811015610df157610dde828281518110610dcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160016115ce565b8080610de990612b1e565b915050610d8a565b5050565b60008054905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e9a611042565b73ffffffffffffffffffffffffffffffffffffffff16610eb86109e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f05906128ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f759061287a565b60405180910390fd5b610f8781611c6b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081610fff6110fc565b1115801561100e575060005482105b801561103b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611110826119dc565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461117b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661119c611042565b73ffffffffffffffffffffffffffffffffffffffff1614806111cb57506111ca856111c5611042565b610dfe565b5b8061121057506111d9611042565b73ffffffffffffffffffffffffffffffffffffffff166111f8846105be565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611249576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156112b0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112bd8585856001611ed5565b6112c96000848761104a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561154957600054821461154857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115b48585856001611edb565b5050505050565b60006115c56110fc565b60005403905090565b6115e8828260405180602001604052806000815250611ee1565b5050565b60006115f7836119dc565b905060008160000151905082156116d85760008173ffffffffffffffffffffffffffffffffffffffff16611629611042565b73ffffffffffffffffffffffffffffffffffffffff161480611658575061165782611652611042565b610dfe565b5b8061169d5750611666611042565b73ffffffffffffffffffffffffffffffffffffffff16611685866105be565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806116d6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6116e6816000866001611ed5565b6116f26000858361104a565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561195657600054821461195557848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119c4816000866001611edb565b60016000815480929190600101919050555050505050565b6119e46122c1565b6000829050806119f26110fc565b11158015611a01575060005481105b15611c34576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611c3257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b16578092505050611c66565b5b600115611c3157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c2c578092505050611c66565b611b17565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d7a611042565b8786866040518563ffffffff1660e01b8152600401611d9c94939291906127f1565b602060405180830381600087803b158015611db657600080fd5b505af1925050508015611de757506040513d601f19601f82011682018060405250810190611de4919061267c565b60015b611e61573d8060008114611e17576040519150601f19603f3d011682016040523d82523d6000602084013e611e1c565b606091505b50600081511415611e59576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180610100016040528060c48152602001612d0360c49139905090565b50505050565b50505050565b611eee8383836001611ef3565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f60576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611f9b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa86000868387611ed5565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561217257506121718773ffffffffffffffffffffffffffffffffffffffff16611d31565b5b15612238575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121e76000888480600101955088611d54565b61221d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561217857826000541461223357600080fd5b6122a4565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612239575b8160008190555050506122ba6000868387611edb565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b60006123176123128461291a565b6128f5565b9050808382526020820190508285602086028201111561233657600080fd5b60005b85811015612366578161234c88826123ae565b845260208401935060208301925050600181019050612339565b5050509392505050565b600061238361237e84612946565b6128f5565b90508281526020810184848401111561239b57600080fd5b6123a6848285612a79565b509392505050565b6000813590506123bd81612ca6565b92915050565b600082601f8301126123d457600080fd5b81356123e4848260208601612304565b91505092915050565b6000813590506123fc81612cbd565b92915050565b60008135905061241181612cd4565b92915050565b60008151905061242681612cd4565b92915050565b600082601f83011261243d57600080fd5b813561244d848260208601612370565b91505092915050565b60008135905061246581612ceb565b92915050565b60006020828403121561247d57600080fd5b600061248b848285016123ae565b91505092915050565b600080604083850312156124a757600080fd5b60006124b5858286016123ae565b92505060206124c6858286016123ae565b9150509250929050565b6000806000606084860312156124e557600080fd5b60006124f3868287016123ae565b9350506020612504868287016123ae565b925050604061251586828701612456565b9150509250925092565b6000806000806080858703121561253557600080fd5b6000612543878288016123ae565b9450506020612554878288016123ae565b935050604061256587828801612456565b925050606085013567ffffffffffffffff81111561258257600080fd5b61258e8782880161242c565b91505092959194509250565b600080604083850312156125ad57600080fd5b60006125bb858286016123ae565b92505060206125cc858286016123ed565b9150509250929050565b600080604083850312156125e957600080fd5b60006125f7858286016123ae565b925050602061260885828601612456565b9150509250929050565b60006020828403121561262457600080fd5b600082013567ffffffffffffffff81111561263e57600080fd5b61264a848285016123c3565b91505092915050565b60006020828403121561266557600080fd5b600061267384828501612402565b91505092915050565b60006020828403121561268e57600080fd5b600061269c84828501612417565b91505092915050565b6000602082840312156126b757600080fd5b60006126c584828501612456565b91505092915050565b6126d781612a05565b82525050565b6126e681612a17565b82525050565b60006126f782612977565b612701818561298d565b9350612711818560208601612a88565b61271a81612bf4565b840191505092915050565b600061273082612982565b61273a818561299e565b935061274a818560208601612a88565b61275381612bf4565b840191505092915050565b600061276b60268361299e565b915061277682612c05565b604082019050919050565b600061278e60158361299e565b915061279982612c54565b602082019050919050565b60006127b160208361299e565b91506127bc82612c7d565b602082019050919050565b6127d081612a6f565b82525050565b60006020820190506127eb60008301846126ce565b92915050565b600060808201905061280660008301876126ce565b61281360208301866126ce565b61282060408301856127c7565b818103606083015261283281846126ec565b905095945050505050565b600060208201905061285260008301846126dd565b92915050565b600060208201905081810360008301526128728184612725565b905092915050565b600060208201905081810360008301526128938161275e565b9050919050565b600060208201905081810360008301526128b381612781565b9050919050565b600060208201905081810360008301526128d3816127a4565b9050919050565b60006020820190506128ef60008301846127c7565b92915050565b60006128ff612910565b905061290b8282612aed565b919050565b6000604051905090565b600067ffffffffffffffff82111561293557612934612bc5565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561296157612960612bc5565b5b61296a82612bf4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006129ba82612a6f565b91506129c583612a6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129fa576129f9612b67565b5b828201905092915050565b6000612a1082612a4f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612aa6578082015181840152602081019050612a8b565b83811115612ab5576000848401525b50505050565b60006002820490506001821680612ad357607f821691505b60208210811415612ae757612ae6612b96565b5b50919050565b612af682612bf4565b810181811067ffffffffffffffff82111715612b1557612b14612bc5565b5b80604052505050565b6000612b2982612a6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b5c57612b5b612b67565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564206d6178696d756d20737570706c790000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612caf81612a05565b8114612cba57600080fd5b50565b612cc681612a17565b8114612cd157600080fd5b50565b612cdd81612a23565b8114612ce857600080fd5b50565b612cf481612a6f565b8114612cff57600080fd5b5056fe7b0a2020226465736372697074696f6e223a2022787878787878222c0a20202265787465726e616c5f75726c223a2022787878787878222c0a202022696d616765223a202268747470733a2f2f697066732e6d616465776974686d61736f6e2e636f6d2f697066732f516d656e7a623164343963616b6d6a58663553444b6245654e396f576e555641776d48354765316d4b7569576664222c0a2020226e616d65223a202274657374206d7034222c0a20202261747472696275746573223a2022220a7da2646970667358221220364daddc509e9064f0ec8cc36177518bfac06f3bb92bab2ed33b41ec5511cbb264736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde14610378578063c87b56dd14610394578063d67b06c1146103c4578063e00dd161146103e0578063e985e9c5146103fe578063f2fde38b1461042e5761014d565b806370a08231146102c8578063715018a6146102f85780638da5cb5b1461030257806395d89b4114610320578063a22cb4651461033e578063a2309ff81461035a5761014d565b806323b872dd1161011557806323b872dd1461020a57806332cb6b0c1461022657806340d097c31461024457806342842e0e1461026057806342966c681461027c5780636352211e146102985761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190612653565b61044a565b604051610179919061283d565b60405180910390f35b61018a61052c565b6040516101979190612858565b60405180910390f35b6101ba60048036038101906101b591906126a5565b6105be565b6040516101c791906127d6565b60405180910390f35b6101ea60048036038101906101e591906125d6565b61063a565b005b6101f4610745565b60405161020191906128da565b60405180910390f35b610224600480360381019061021f91906124d0565b61075c565b005b61022e61076c565b60405161023b91906128da565b60405180910390f35b61025e6004803603810190610259919061246b565b610772565b005b61027a600480360381019061027591906124d0565b610847565b005b610296600480360381019061029191906126a5565b610867565b005b6102b260048036038101906102ad91906126a5565b610875565b6040516102bf91906127d6565b60405180910390f35b6102e260048036038101906102dd919061246b565b61088b565b6040516102ef91906128da565b60405180910390f35b61030061095b565b005b61030a6109e3565b60405161031791906127d6565b60405180910390f35b610328610a0d565b6040516103359190612858565b60405180910390f35b6103586004803603810190610353919061259a565b610a9f565b005b610362610c17565b60405161036f91906128da565b60405180910390f35b610392600480360381019061038d919061251f565b610c26565b005b6103ae60048036038101906103a991906126a5565b610ca2565b6040516103bb9190612858565b60405180910390f35b6103de60048036038101906103d99190612612565b610cb3565b005b6103e8610df5565b6040516103f591906128da565b60405180910390f35b61041860048036038101906104139190612494565b610dfe565b604051610425919061283d565b60405180910390f35b6104486004803603810190610443919061246b565b610e92565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610525575061052482610f8a565b5b9050919050565b60606002805461053b90612abb565b80601f016020809104026020016040519081016040528092919081815260200182805461056790612abb565b80156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b60006105c982610ff4565b6105ff576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061064582610875565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ad576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106cc611042565b73ffffffffffffffffffffffffffffffffffffffff16141580156106fe57506106fc816106f7611042565b610dfe565b155b15610735576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61074083838361104a565b505050565b600061074f6110fc565b6001546000540303905090565b610767838383611105565b505050565b60095481565b61077a611042565b73ffffffffffffffffffffffffffffffffffffffff166107986109e3565b73ffffffffffffffffffffffffffffffffffffffff16146107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e5906128ba565b60405180910390fd5b6009546107f96115bb565b10610839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108309061289a565b60405180910390fd5b6108448160016115ce565b50565b61086283838360405180602001604052806000815250610c26565b505050565b6108728160016115ec565b50565b6000610880826119dc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108f3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610963611042565b73ffffffffffffffffffffffffffffffffffffffff166109816109e3565b73ffffffffffffffffffffffffffffffffffffffff16146109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce906128ba565b60405180910390fd5b6109e16000611c6b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610a1c90612abb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4890612abb565b8015610a955780601f10610a6a57610100808354040283529160200191610a95565b820191906000526020600020905b815481529060010190602001808311610a7857829003601f168201915b5050505050905090565b610aa7611042565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610b19611042565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610bc6611042565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c0b919061283d565b60405180910390a35050565b6000610c216115bb565b905090565b610c31848484611105565b610c508373ffffffffffffffffffffffffffffffffffffffff16611d31565b8015610c655750610c6384848484611d54565b155b15610c9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610cac611eb4565b9050919050565b610cbb611042565b73ffffffffffffffffffffffffffffffffffffffff16610cd96109e3565b73ffffffffffffffffffffffffffffffffffffffff1614610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d26906128ba565b60405180910390fd5b6009548151610d3c6115bb565b610d4691906129af565b1115610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e9061289a565b60405180910390fd5b60005b8151811015610df157610dde828281518110610dcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160016115ce565b8080610de990612b1e565b915050610d8a565b5050565b60008054905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e9a611042565b73ffffffffffffffffffffffffffffffffffffffff16610eb86109e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f05906128ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f759061287a565b60405180910390fd5b610f8781611c6b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081610fff6110fc565b1115801561100e575060005482105b801561103b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611110826119dc565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461117b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661119c611042565b73ffffffffffffffffffffffffffffffffffffffff1614806111cb57506111ca856111c5611042565b610dfe565b5b8061121057506111d9611042565b73ffffffffffffffffffffffffffffffffffffffff166111f8846105be565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611249576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156112b0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112bd8585856001611ed5565b6112c96000848761104a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561154957600054821461154857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115b48585856001611edb565b5050505050565b60006115c56110fc565b60005403905090565b6115e8828260405180602001604052806000815250611ee1565b5050565b60006115f7836119dc565b905060008160000151905082156116d85760008173ffffffffffffffffffffffffffffffffffffffff16611629611042565b73ffffffffffffffffffffffffffffffffffffffff161480611658575061165782611652611042565b610dfe565b5b8061169d5750611666611042565b73ffffffffffffffffffffffffffffffffffffffff16611685866105be565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806116d6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6116e6816000866001611ed5565b6116f26000858361104a565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561195657600054821461195557848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119c4816000866001611edb565b60016000815480929190600101919050555050505050565b6119e46122c1565b6000829050806119f26110fc565b11158015611a01575060005481105b15611c34576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611c3257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b16578092505050611c66565b5b600115611c3157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c2c578092505050611c66565b611b17565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d7a611042565b8786866040518563ffffffff1660e01b8152600401611d9c94939291906127f1565b602060405180830381600087803b158015611db657600080fd5b505af1925050508015611de757506040513d601f19601f82011682018060405250810190611de4919061267c565b60015b611e61573d8060008114611e17576040519150601f19603f3d011682016040523d82523d6000602084013e611e1c565b606091505b50600081511415611e59576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180610100016040528060c48152602001612d0360c49139905090565b50505050565b50505050565b611eee8383836001611ef3565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f60576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611f9b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa86000868387611ed5565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561217257506121718773ffffffffffffffffffffffffffffffffffffffff16611d31565b5b15612238575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121e76000888480600101955088611d54565b61221d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561217857826000541461223357600080fd5b6122a4565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612239575b8160008190555050506122ba6000868387611edb565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b60006123176123128461291a565b6128f5565b9050808382526020820190508285602086028201111561233657600080fd5b60005b85811015612366578161234c88826123ae565b845260208401935060208301925050600181019050612339565b5050509392505050565b600061238361237e84612946565b6128f5565b90508281526020810184848401111561239b57600080fd5b6123a6848285612a79565b509392505050565b6000813590506123bd81612ca6565b92915050565b600082601f8301126123d457600080fd5b81356123e4848260208601612304565b91505092915050565b6000813590506123fc81612cbd565b92915050565b60008135905061241181612cd4565b92915050565b60008151905061242681612cd4565b92915050565b600082601f83011261243d57600080fd5b813561244d848260208601612370565b91505092915050565b60008135905061246581612ceb565b92915050565b60006020828403121561247d57600080fd5b600061248b848285016123ae565b91505092915050565b600080604083850312156124a757600080fd5b60006124b5858286016123ae565b92505060206124c6858286016123ae565b9150509250929050565b6000806000606084860312156124e557600080fd5b60006124f3868287016123ae565b9350506020612504868287016123ae565b925050604061251586828701612456565b9150509250925092565b6000806000806080858703121561253557600080fd5b6000612543878288016123ae565b9450506020612554878288016123ae565b935050604061256587828801612456565b925050606085013567ffffffffffffffff81111561258257600080fd5b61258e8782880161242c565b91505092959194509250565b600080604083850312156125ad57600080fd5b60006125bb858286016123ae565b92505060206125cc858286016123ed565b9150509250929050565b600080604083850312156125e957600080fd5b60006125f7858286016123ae565b925050602061260885828601612456565b9150509250929050565b60006020828403121561262457600080fd5b600082013567ffffffffffffffff81111561263e57600080fd5b61264a848285016123c3565b91505092915050565b60006020828403121561266557600080fd5b600061267384828501612402565b91505092915050565b60006020828403121561268e57600080fd5b600061269c84828501612417565b91505092915050565b6000602082840312156126b757600080fd5b60006126c584828501612456565b91505092915050565b6126d781612a05565b82525050565b6126e681612a17565b82525050565b60006126f782612977565b612701818561298d565b9350612711818560208601612a88565b61271a81612bf4565b840191505092915050565b600061273082612982565b61273a818561299e565b935061274a818560208601612a88565b61275381612bf4565b840191505092915050565b600061276b60268361299e565b915061277682612c05565b604082019050919050565b600061278e60158361299e565b915061279982612c54565b602082019050919050565b60006127b160208361299e565b91506127bc82612c7d565b602082019050919050565b6127d081612a6f565b82525050565b60006020820190506127eb60008301846126ce565b92915050565b600060808201905061280660008301876126ce565b61281360208301866126ce565b61282060408301856127c7565b818103606083015261283281846126ec565b905095945050505050565b600060208201905061285260008301846126dd565b92915050565b600060208201905081810360008301526128728184612725565b905092915050565b600060208201905081810360008301526128938161275e565b9050919050565b600060208201905081810360008301526128b381612781565b9050919050565b600060208201905081810360008301526128d3816127a4565b9050919050565b60006020820190506128ef60008301846127c7565b92915050565b60006128ff612910565b905061290b8282612aed565b919050565b6000604051905090565b600067ffffffffffffffff82111561293557612934612bc5565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561296157612960612bc5565b5b61296a82612bf4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006129ba82612a6f565b91506129c583612a6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129fa576129f9612b67565b5b828201905092915050565b6000612a1082612a4f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612aa6578082015181840152602081019050612a8b565b83811115612ab5576000848401525b50505050565b60006002820490506001821680612ad357607f821691505b60208210811415612ae757612ae6612b96565b5b50919050565b612af682612bf4565b810181811067ffffffffffffffff82111715612b1557612b14612bc5565b5b80604052505050565b6000612b2982612a6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b5c57612b5b612b67565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564206d6178696d756d20737570706c790000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612caf81612a05565b8114612cba57600080fd5b50565b612cc681612a17565b8114612cd157600080fd5b50565b612cdd81612a23565b8114612ce857600080fd5b50565b612cf481612a6f565b8114612cff57600080fd5b5056fe7b0a2020226465736372697074696f6e223a2022787878787878222c0a20202265787465726e616c5f75726c223a2022787878787878222c0a202022696d616765223a202268747470733a2f2f697066732e6d616465776974686d61736f6e2e636f6d2f697066732f516d656e7a623164343963616b6d6a58663553444b6245654e396f576e555641776d48354765316d4b7569576664222c0a2020226e616d65223a202274657374206d7034222c0a20202261747472696275746573223a2022220a7da2646970667358221220364daddc509e9064f0ec8cc36177518bfac06f3bb92bab2ed33b41ec5511cbb264736f6c63430008040033
Deployed Bytecode Sourcemap
44801:1412:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24465:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27578:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29081:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28644:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23714:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29946:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44845:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45049:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30187:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45465:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27386:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24834:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43921:103;;;:::i;:::-;;43270:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27747:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29357:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44949:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30443:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45976:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45211:246;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45552:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29715:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44179:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24465:305;24567:4;24619:25;24604:40;;;:11;:40;;;;:105;;;;24676:33;24661:48;;;:11;:48;;;;24604:105;:158;;;;24726:36;24750:11;24726:23;:36::i;:::-;24604:158;24584:178;;24465:305;;;:::o;27578:100::-;27632:13;27665:5;27658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27578:100;:::o;29081:204::-;29149:7;29174:16;29182:7;29174;:16::i;:::-;29169:64;;29199:34;;;;;;;;;;;;;;29169:64;29253:15;:24;29269:7;29253:24;;;;;;;;;;;;;;;;;;;;;29246:31;;29081:204;;;:::o;28644:371::-;28717:13;28733:24;28749:7;28733:15;:24::i;:::-;28717:40;;28778:5;28772:11;;:2;:11;;;28768:48;;;28792:24;;;;;;;;;;;;;;28768:48;28849:5;28833:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28859:37;28876:5;28883:12;:10;:12::i;:::-;28859:16;:37::i;:::-;28858:38;28833:63;28829:138;;;28920:35;;;;;;;;;;;;;;28829:138;28979:28;28988:2;28992:7;29001:5;28979:8;:28::i;:::-;28644:371;;;:::o;23714:303::-;23758:7;23983:15;:13;:15::i;:::-;23968:12;;23952:13;;:28;:46;23945:53;;23714:303;:::o;29946:170::-;30080:28;30090:4;30096:2;30100:7;30080:9;:28::i;:::-;29946:170;;;:::o;44845:33::-;;;;:::o;45049:154::-;43501:12;:10;:12::i;:::-;43490:23;;:7;:5;:7::i;:::-;:23;;;43482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45132:10:::1;;45115:14;:12;:14::i;:::-;:27;45107:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45179:16;45189:2;45193:1;45179:9;:16::i;:::-;45049:154:::0;:::o;30187:185::-;30325:39;30342:4;30348:2;30352:7;30325:39;;;;;;;;;;;;:16;:39::i;:::-;30187:185;;;:::o;45465:79::-;45516:20;45522:7;45531:4;45516:5;:20::i;:::-;45465:79;:::o;27386:125::-;27450:7;27477:21;27490:7;27477:12;:21::i;:::-;:26;;;27470:33;;27386:125;;;:::o;24834:206::-;24898:7;24939:1;24922:19;;:5;:19;;;24918:60;;;24950:28;;;;;;;;;;;;;;24918:60;25004:12;:19;25017:5;25004:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24996:36;;24989:43;;24834:206;;;:::o;43921:103::-;43501:12;:10;:12::i;:::-;43490:23;;:7;:5;:7::i;:::-;:23;;;43482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43986:30:::1;44013:1;43986:18;:30::i;:::-;43921:103::o:0;43270:87::-;43316:7;43343:6;;;;;;;;;;;43336:13;;43270:87;:::o;27747:104::-;27803:13;27836:7;27829:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27747:104;:::o;29357:287::-;29468:12;:10;:12::i;:::-;29456:24;;:8;:24;;;29452:54;;;29489:17;;;;;;;;;;;;;;29452:54;29564:8;29519:18;:32;29538:12;:10;:12::i;:::-;29519:32;;;;;;;;;;;;;;;:42;29552:8;29519:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29617:8;29588:48;;29603:12;:10;:12::i;:::-;29588:48;;;29627:8;29588:48;;;;;;:::i;:::-;;;;;;;;29357:287;;:::o;44949:92::-;44993:7;45019:14;:12;:14::i;:::-;45012:21;;44949:92;:::o;30443:369::-;30610:28;30620:4;30626:2;30630:7;30610:9;:28::i;:::-;30653:15;:2;:13;;;:15::i;:::-;:76;;;;;30673:56;30704:4;30710:2;30714:7;30723:5;30673:30;:56::i;:::-;30672:57;30653:76;30649:156;;;30753:40;;;;;;;;;;;;;;30649:156;30443:369;;;;:::o;45976:123::-;46049:13;46081:10;:8;:10::i;:::-;46074:17;;45976:123;;;:::o;45211:246::-;43501:12;:10;:12::i;:::-;43490:23;;:7;:5;:7::i;:::-;:23;;;43482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45317:10:::1;;45304:2;:9;45287:14;:12;:14::i;:::-;:26;;;;:::i;:::-;:40;;45279:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45369:9;45364:86;45387:2;:9;45384:1;:12;45364:86;;;45419:19;45429:2;45432:1;45429:5;;;;;;;;;;;;;;;;;;;;;;45436:1;45419:9;:19::i;:::-;45398:3;;;;;:::i;:::-;;;;45364:86;;;;45211:246:::0;:::o;45552:91::-;45595:7;45622:13;;45615:20;;45552:91;:::o;29715:164::-;29812:4;29836:18;:25;29855:5;29836:25;;;;;;;;;;;;;;;:35;29862:8;29836:35;;;;;;;;;;;;;;;;;;;;;;;;;29829:42;;29715:164;;;;:::o;44179:201::-;43501:12;:10;:12::i;:::-;43490:23;;:7;:5;:7::i;:::-;:23;;;43482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44288:1:::1;44268:22;;:8;:22;;;;44260:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44344:28;44363:8;44344:18;:28::i;:::-;44179:201:::0;:::o;20033:157::-;20118:4;20157:25;20142:40;;;:11;:40;;;;20135:47;;20033:157;;;:::o;31067:174::-;31124:4;31167:7;31148:15;:13;:15::i;:::-;:26;;:53;;;;;31188:13;;31178:7;:23;31148:53;:85;;;;;31206:11;:20;31218:7;31206:20;;;;;;;;;;;:27;;;;;;;;;;;;31205:28;31148:85;31141:92;;31067:174;;;:::o;16832:98::-;16885:7;16912:10;16905:17;;16832:98;:::o;39224:196::-;39366:2;39339:15;:24;39355:7;39339:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39404:7;39400:2;39384:28;;39393:5;39384:28;;;;;;;;;;;;39224:196;;;:::o;46107:101::-;46172:7;46199:1;46192:8;;46107:101;:::o;34167:2130::-;34282:35;34320:21;34333:7;34320:12;:21::i;:::-;34282:59;;34380:4;34358:26;;:13;:18;;;:26;;;34354:67;;34393:28;;;;;;;;;;;;;;34354:67;34434:22;34476:4;34460:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34497:36;34514:4;34520:12;:10;:12::i;:::-;34497:16;:36::i;:::-;34460:73;:126;;;;34574:12;:10;:12::i;:::-;34550:36;;:20;34562:7;34550:11;:20::i;:::-;:36;;;34460:126;34434:153;;34605:17;34600:66;;34631:35;;;;;;;;;;;;;;34600:66;34695:1;34681:16;;:2;:16;;;34677:52;;;34706:23;;;;;;;;;;;;;;34677:52;34742:43;34764:4;34770:2;34774:7;34783:1;34742:21;:43::i;:::-;34850:35;34867:1;34871:7;34880:4;34850:8;:35::i;:::-;35211:1;35181:12;:18;35194:4;35181:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35255:1;35227:12;:16;35240:2;35227:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35273:31;35307:11;:20;35319:7;35307:20;;;;;;;;;;;35273:54;;35358:2;35342:8;:13;;;:18;;;;;;;;;;;;;;;;;;35408:15;35375:8;:23;;;:49;;;;;;;;;;;;;;;;;;35676:19;35708:1;35698:7;:11;35676:33;;35724:31;35758:11;:24;35770:11;35758:24;;;;;;;;;;;35724:58;;35826:1;35801:27;;:8;:13;;;;;;;;;;;;:27;;;35797:384;;;36011:13;;35996:11;:28;35992:174;;36065:4;36049:8;:13;;;:20;;;;;;;;;;;;;;;;;;36118:13;:28;;;36092:8;:23;;;:54;;;;;;;;;;;;;;;;;;35992:174;35797:384;34167:2130;;;36228:7;36224:2;36209:27;;36218:4;36209:27;;;;;;;;;;;;36247:42;36268:4;36274:2;36278:7;36287:1;36247:20;:42::i;:::-;34167:2130;;;;;:::o;24110:283::-;24157:7;24359:15;:13;:15::i;:::-;24343:13;;:31;24336:38;;24110:283;:::o;31249:104::-;31318:27;31328:2;31332:8;31318:27;;;;;;;;;;;;:9;:27::i;:::-;31249:104;;:::o;36698:2408::-;36778:35;36816:21;36829:7;36816:12;:21::i;:::-;36778:59;;36850:12;36865:13;:18;;;36850:33;;36900:13;36896:290;;;36930:22;36972:4;36956:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;36997:36;37014:4;37020:12;:10;:12::i;:::-;36997:16;:36::i;:::-;36956:77;:134;;;;37078:12;:10;:12::i;:::-;37054:36;;:20;37066:7;37054:11;:20::i;:::-;:36;;;36956:134;36930:161;;37113:17;37108:66;;37139:35;;;;;;;;;;;;;;37108:66;36896:290;;37198:51;37220:4;37234:1;37238:7;37247:1;37198:21;:51::i;:::-;37314:35;37331:1;37335:7;37344:4;37314:8;:35::i;:::-;37645:31;37679:12;:18;37692:4;37679:18;;;;;;;;;;;;;;;37645:52;;37735:1;37712:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37779:1;37751:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37879:31;37913:11;:20;37925:7;37913:20;;;;;;;;;;;37879:54;;37964:4;37948:8;:13;;;:20;;;;;;;;;;;;;;;;;;38016:15;37983:8;:23;;;:49;;;;;;;;;;;;;;;;;;38065:4;38047:8;:15;;;:22;;;;;;;;;;;;;;;;;;38317:19;38349:1;38339:7;:11;38317:33;;38365:31;38399:11;:24;38411:11;38399:24;;;;;;;;;;;38365:58;;38467:1;38442:27;;:8;:13;;;;;;;;;;;;:27;;;38438:384;;;38652:13;;38637:11;:28;38633:174;;38706:4;38690:8;:13;;;:20;;;;;;;;;;;;;;;;;;38759:13;:28;;;38733:8;:23;;;:54;;;;;;;;;;;;;;;;;;38633:174;38438:384;36698:2408;;;;38877:7;38873:1;38850:35;;38859:4;38850:35;;;;;;;;;;;;38896:50;38917:4;38931:1;38935:7;38944:1;38896:20;:50::i;:::-;39073:12;;:14;;;;;;;;;;;;;36698:2408;;;;:::o;26215:1109::-;26277:21;;:::i;:::-;26311:12;26326:7;26311:22;;26394:4;26375:15;:13;:15::i;:::-;:23;;:47;;;;;26409:13;;26402:4;:20;26375:47;26371:886;;;26443:31;26477:11;:17;26489:4;26477:17;;;;;;;;;;;26443:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26518:9;:16;;;26513:729;;26589:1;26563:28;;:9;:14;;;:28;;;26559:101;;26627:9;26620:16;;;;;;26559:101;26962:261;26969:4;26962:261;;;27002:6;;;;;;;;27047:11;:17;27059:4;27047:17;;;;;;;;;;;27035:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27121:1;27095:28;;:9;:14;;;:28;;;27091:109;;27163:9;27156:16;;;;;;27091:109;26962:261;;;26513:729;26371:886;;27285:31;;;;;;;;;;;;;;26215:1109;;;;:::o;44540:191::-;44614:16;44633:6;;;;;;;;;;;44614:25;;44659:8;44650:6;;:17;;;;;;;;;;;;;;;;;;44714:8;44683:40;;44704:8;44683:40;;;;;;;;;;;;44540:191;;:::o;8883:326::-;8943:4;9200:1;9178:7;:19;;;:23;9171:30;;8883:326;;;:::o;39912:667::-;40075:4;40112:2;40096:36;;;40133:12;:10;:12::i;:::-;40147:4;40153:7;40162:5;40096:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40092:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40347:1;40330:6;:13;:18;40326:235;;;40376:40;;;;;;;;;;;;;;40326:235;40519:6;40513:13;40504:6;40500:2;40496:15;40489:38;40092:480;40225:45;;;40215:55;;;:6;:55;;;;40208:62;;;39912:667;;;;;;:::o;45651:317::-;45703:13;45729:231;;;;;;;;;;;;;;;;;;;45651:317;:::o;41227:159::-;;;;;:::o;42045:158::-;;;;;:::o;31716:163::-;31839:32;31845:2;31849:8;31859:5;31866:4;31839:5;:32::i;:::-;31716:163;;;:::o;32138:1775::-;32277:20;32300:13;;32277:36;;32342:1;32328:16;;:2;:16;;;32324:48;;;32353:19;;;;;;;;;;;;;;32324:48;32399:1;32387:8;:13;32383:44;;;32409:18;;;;;;;;;;;;;;32383:44;32440:61;32470:1;32474:2;32478:12;32492:8;32440:21;:61::i;:::-;32813:8;32778:12;:16;32791:2;32778:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32877:8;32837:12;:16;32850:2;32837:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32936:2;32903:11;:25;32915:12;32903:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33003:15;32953:11;:25;32965:12;32953:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33036:20;33059:12;33036:35;;33086:11;33115:8;33100:12;:23;33086:37;;33144:4;:23;;;;;33152:15;:2;:13;;;:15::i;:::-;33144:23;33140:641;;;33188:314;33244:12;33240:2;33219:38;;33236:1;33219:38;;;;;;;;;;;;33285:69;33324:1;33328:2;33332:14;;;;;;33348:5;33285:30;:69::i;:::-;33280:174;;33390:40;;;;;;;;;;;;;;33280:174;33497:3;33481:12;:19;;33188:314;;33583:12;33566:13;;:29;33562:43;;33597:8;;;33562:43;33140:641;;;33646:120;33702:14;;;;;;33698:2;33677:40;;33694:1;33677:40;;;;;;;;;;;;33761:3;33745:12;:19;;33646:120;;33140:641;33811:12;33795:13;:28;;;;32138:1775;;33845:60;33874:1;33878:2;33882:12;33896:8;33845:20;:60::i;:::-;32138:1775;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:139::-;1080:5;1118:6;1105:20;1096:29;;1134:33;1161:5;1134:33;:::i;:::-;1086:87;;;;:::o;1196:303::-;1267:5;1316:3;1309:4;1301:6;1297:17;1293:27;1283:2;;1334:1;1331;1324:12;1283:2;1374:6;1361:20;1399:94;1489:3;1481:6;1474:4;1466:6;1462:17;1399:94;:::i;:::-;1390:103;;1273:226;;;;;:::o;1505:133::-;1548:5;1586:6;1573:20;1564:29;;1602:30;1626:5;1602:30;:::i;:::-;1554:84;;;;:::o;1644:137::-;1689:5;1727:6;1714:20;1705:29;;1743:32;1769:5;1743:32;:::i;:::-;1695:86;;;;:::o;1787:141::-;1843:5;1874:6;1868:13;1859:22;;1890:32;1916:5;1890:32;:::i;:::-;1849:79;;;;:::o;1947:271::-;2002:5;2051:3;2044:4;2036:6;2032:17;2028:27;2018:2;;2069:1;2066;2059:12;2018:2;2109:6;2096:20;2134:78;2208:3;2200:6;2193:4;2185:6;2181:17;2134:78;:::i;:::-;2125:87;;2008:210;;;;;:::o;2224:139::-;2270:5;2308:6;2295:20;2286:29;;2324:33;2351:5;2324:33;:::i;:::-;2276:87;;;;:::o;2369:262::-;2428:6;2477:2;2465:9;2456:7;2452:23;2448:32;2445:2;;;2493:1;2490;2483:12;2445:2;2536:1;2561:53;2606:7;2597:6;2586:9;2582:22;2561:53;:::i;:::-;2551:63;;2507:117;2435:196;;;;:::o;2637:407::-;2705:6;2713;2762:2;2750:9;2741:7;2737:23;2733:32;2730:2;;;2778:1;2775;2768:12;2730:2;2821:1;2846:53;2891:7;2882:6;2871:9;2867:22;2846:53;:::i;:::-;2836:63;;2792:117;2948:2;2974:53;3019:7;3010:6;2999:9;2995:22;2974:53;:::i;:::-;2964:63;;2919:118;2720:324;;;;;:::o;3050:552::-;3127:6;3135;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:2;;;3208:1;3205;3198:12;3160:2;3251:1;3276:53;3321:7;3312:6;3301:9;3297:22;3276:53;:::i;:::-;3266:63;;3222:117;3378:2;3404:53;3449:7;3440:6;3429:9;3425:22;3404:53;:::i;:::-;3394:63;;3349:118;3506:2;3532:53;3577:7;3568:6;3557:9;3553:22;3532:53;:::i;:::-;3522:63;;3477:118;3150:452;;;;;:::o;3608:809::-;3703:6;3711;3719;3727;3776:3;3764:9;3755:7;3751:23;3747:33;3744:2;;;3793:1;3790;3783:12;3744:2;3836:1;3861:53;3906:7;3897:6;3886:9;3882:22;3861:53;:::i;:::-;3851:63;;3807:117;3963:2;3989:53;4034:7;4025:6;4014:9;4010:22;3989:53;:::i;:::-;3979:63;;3934:118;4091:2;4117:53;4162:7;4153:6;4142:9;4138:22;4117:53;:::i;:::-;4107:63;;4062:118;4247:2;4236:9;4232:18;4219:32;4278:18;4270:6;4267:30;4264:2;;;4310:1;4307;4300:12;4264:2;4338:62;4392:7;4383:6;4372:9;4368:22;4338:62;:::i;:::-;4328:72;;4190:220;3734:683;;;;;;;:::o;4423:401::-;4488:6;4496;4545:2;4533:9;4524:7;4520:23;4516:32;4513:2;;;4561:1;4558;4551:12;4513:2;4604:1;4629:53;4674:7;4665:6;4654:9;4650:22;4629:53;:::i;:::-;4619:63;;4575:117;4731:2;4757:50;4799:7;4790:6;4779:9;4775:22;4757:50;:::i;:::-;4747:60;;4702:115;4503:321;;;;;:::o;4830:407::-;4898:6;4906;4955:2;4943:9;4934:7;4930:23;4926:32;4923:2;;;4971:1;4968;4961:12;4923:2;5014:1;5039:53;5084:7;5075:6;5064:9;5060:22;5039:53;:::i;:::-;5029:63;;4985:117;5141:2;5167:53;5212:7;5203:6;5192:9;5188:22;5167:53;:::i;:::-;5157:63;;5112:118;4913:324;;;;;:::o;5243:405::-;5327:6;5376:2;5364:9;5355:7;5351:23;5347:32;5344:2;;;5392:1;5389;5382:12;5344:2;5463:1;5452:9;5448:17;5435:31;5493:18;5485:6;5482:30;5479:2;;;5525:1;5522;5515:12;5479:2;5553:78;5623:7;5614:6;5603:9;5599:22;5553:78;:::i;:::-;5543:88;;5406:235;5334:314;;;;:::o;5654:260::-;5712:6;5761:2;5749:9;5740:7;5736:23;5732:32;5729:2;;;5777:1;5774;5767:12;5729:2;5820:1;5845:52;5889:7;5880:6;5869:9;5865:22;5845:52;:::i;:::-;5835:62;;5791:116;5719:195;;;;:::o;5920:282::-;5989:6;6038:2;6026:9;6017:7;6013:23;6009:32;6006:2;;;6054:1;6051;6044:12;6006:2;6097:1;6122:63;6177:7;6168:6;6157:9;6153:22;6122:63;:::i;:::-;6112:73;;6068:127;5996:206;;;;:::o;6208:262::-;6267:6;6316:2;6304:9;6295:7;6291:23;6287:32;6284:2;;;6332:1;6329;6322:12;6284:2;6375:1;6400:53;6445:7;6436:6;6425:9;6421:22;6400:53;:::i;:::-;6390:63;;6346:117;6274:196;;;;:::o;6476:118::-;6563:24;6581:5;6563:24;:::i;:::-;6558:3;6551:37;6541:53;;:::o;6600:109::-;6681:21;6696:5;6681:21;:::i;:::-;6676:3;6669:34;6659:50;;:::o;6715:360::-;6801:3;6829:38;6861:5;6829:38;:::i;:::-;6883:70;6946:6;6941:3;6883:70;:::i;:::-;6876:77;;6962:52;7007:6;7002:3;6995:4;6988:5;6984:16;6962:52;:::i;:::-;7039:29;7061:6;7039:29;:::i;:::-;7034:3;7030:39;7023:46;;6805:270;;;;;:::o;7081:364::-;7169:3;7197:39;7230:5;7197:39;:::i;:::-;7252:71;7316:6;7311:3;7252:71;:::i;:::-;7245:78;;7332:52;7377:6;7372:3;7365:4;7358:5;7354:16;7332:52;:::i;:::-;7409:29;7431:6;7409:29;:::i;:::-;7404:3;7400:39;7393:46;;7173:272;;;;;:::o;7451:366::-;7593:3;7614:67;7678:2;7673:3;7614:67;:::i;:::-;7607:74;;7690:93;7779:3;7690:93;:::i;:::-;7808:2;7803:3;7799:12;7792:19;;7597:220;;;:::o;7823:366::-;7965:3;7986:67;8050:2;8045:3;7986:67;:::i;:::-;7979:74;;8062:93;8151:3;8062:93;:::i;:::-;8180:2;8175:3;8171:12;8164:19;;7969:220;;;:::o;8195:366::-;8337:3;8358:67;8422:2;8417:3;8358:67;:::i;:::-;8351:74;;8434:93;8523:3;8434:93;:::i;:::-;8552:2;8547:3;8543:12;8536:19;;8341:220;;;:::o;8567:118::-;8654:24;8672:5;8654:24;:::i;:::-;8649:3;8642:37;8632:53;;:::o;8691:222::-;8784:4;8822:2;8811:9;8807:18;8799:26;;8835:71;8903:1;8892:9;8888:17;8879:6;8835:71;:::i;:::-;8789:124;;;;:::o;8919:640::-;9114:4;9152:3;9141:9;9137:19;9129:27;;9166:71;9234:1;9223:9;9219:17;9210:6;9166:71;:::i;:::-;9247:72;9315:2;9304:9;9300:18;9291:6;9247:72;:::i;:::-;9329;9397:2;9386:9;9382:18;9373:6;9329:72;:::i;:::-;9448:9;9442:4;9438:20;9433:2;9422:9;9418:18;9411:48;9476:76;9547:4;9538:6;9476:76;:::i;:::-;9468:84;;9119:440;;;;;;;:::o;9565:210::-;9652:4;9690:2;9679:9;9675:18;9667:26;;9703:65;9765:1;9754:9;9750:17;9741:6;9703:65;:::i;:::-;9657:118;;;;:::o;9781:313::-;9894:4;9932:2;9921:9;9917:18;9909:26;;9981:9;9975:4;9971:20;9967:1;9956:9;9952:17;9945:47;10009:78;10082:4;10073:6;10009:78;:::i;:::-;10001:86;;9899:195;;;;:::o;10100:419::-;10266:4;10304:2;10293:9;10289:18;10281:26;;10353:9;10347:4;10343:20;10339:1;10328:9;10324:17;10317:47;10381:131;10507:4;10381:131;:::i;:::-;10373:139;;10271:248;;;:::o;10525:419::-;10691:4;10729:2;10718:9;10714:18;10706:26;;10778:9;10772:4;10768:20;10764:1;10753:9;10749:17;10742:47;10806:131;10932:4;10806:131;:::i;:::-;10798:139;;10696:248;;;:::o;10950:419::-;11116:4;11154:2;11143:9;11139:18;11131:26;;11203:9;11197:4;11193:20;11189:1;11178:9;11174:17;11167:47;11231:131;11357:4;11231:131;:::i;:::-;11223:139;;11121:248;;;:::o;11375:222::-;11468:4;11506:2;11495:9;11491:18;11483:26;;11519:71;11587:1;11576:9;11572:17;11563:6;11519:71;:::i;:::-;11473:124;;;;:::o;11603:129::-;11637:6;11664:20;;:::i;:::-;11654:30;;11693:33;11721:4;11713:6;11693:33;:::i;:::-;11644:88;;;:::o;11738:75::-;11771:6;11804:2;11798:9;11788:19;;11778:35;:::o;11819:311::-;11896:4;11986:18;11978:6;11975:30;11972:2;;;12008:18;;:::i;:::-;11972:2;12058:4;12050:6;12046:17;12038:25;;12118:4;12112;12108:15;12100:23;;11901:229;;;:::o;12136:307::-;12197:4;12287:18;12279:6;12276:30;12273:2;;;12309:18;;:::i;:::-;12273:2;12347:29;12369:6;12347:29;:::i;:::-;12339:37;;12431:4;12425;12421:15;12413:23;;12202:241;;;:::o;12449:98::-;12500:6;12534:5;12528:12;12518:22;;12507:40;;;:::o;12553:99::-;12605:6;12639:5;12633:12;12623:22;;12612:40;;;:::o;12658:168::-;12741:11;12775:6;12770:3;12763:19;12815:4;12810:3;12806:14;12791:29;;12753:73;;;;:::o;12832:169::-;12916:11;12950:6;12945:3;12938:19;12990:4;12985:3;12981:14;12966:29;;12928:73;;;;:::o;13007:305::-;13047:3;13066:20;13084:1;13066:20;:::i;:::-;13061:25;;13100:20;13118:1;13100:20;:::i;:::-;13095:25;;13254:1;13186:66;13182:74;13179:1;13176:81;13173:2;;;13260:18;;:::i;:::-;13173:2;13304:1;13301;13297:9;13290:16;;13051:261;;;;:::o;13318:96::-;13355:7;13384:24;13402:5;13384:24;:::i;:::-;13373:35;;13363:51;;;:::o;13420:90::-;13454:7;13497:5;13490:13;13483:21;13472:32;;13462:48;;;:::o;13516:149::-;13552:7;13592:66;13585:5;13581:78;13570:89;;13560:105;;;:::o;13671:126::-;13708:7;13748:42;13741:5;13737:54;13726:65;;13716:81;;;:::o;13803:77::-;13840:7;13869:5;13858:16;;13848:32;;;:::o;13886:154::-;13970:6;13965:3;13960;13947:30;14032:1;14023:6;14018:3;14014:16;14007:27;13937:103;;;:::o;14046:307::-;14114:1;14124:113;14138:6;14135:1;14132:13;14124:113;;;14223:1;14218:3;14214:11;14208:18;14204:1;14199:3;14195:11;14188:39;14160:2;14157:1;14153:10;14148:15;;14124:113;;;14255:6;14252:1;14249:13;14246:2;;;14335:1;14326:6;14321:3;14317:16;14310:27;14246:2;14095:258;;;;:::o;14359:320::-;14403:6;14440:1;14434:4;14430:12;14420:22;;14487:1;14481:4;14477:12;14508:18;14498:2;;14564:4;14556:6;14552:17;14542:27;;14498:2;14626;14618:6;14615:14;14595:18;14592:38;14589:2;;;14645:18;;:::i;:::-;14589:2;14410:269;;;;:::o;14685:281::-;14768:27;14790:4;14768:27;:::i;:::-;14760:6;14756:40;14898:6;14886:10;14883:22;14862:18;14850:10;14847:34;14844:62;14841:2;;;14909:18;;:::i;:::-;14841:2;14949:10;14945:2;14938:22;14728:238;;;:::o;14972:233::-;15011:3;15034:24;15052:5;15034:24;:::i;:::-;15025:33;;15080:66;15073:5;15070:77;15067:2;;;15150:18;;:::i;:::-;15067:2;15197:1;15190:5;15186:13;15179:20;;15015:190;;;:::o;15211:180::-;15259:77;15256:1;15249:88;15356:4;15353:1;15346:15;15380:4;15377:1;15370:15;15397:180;15445:77;15442:1;15435:88;15542:4;15539:1;15532:15;15566:4;15563:1;15556:15;15583:180;15631:77;15628:1;15621:88;15728:4;15725:1;15718:15;15752:4;15749:1;15742:15;15769:102;15810:6;15861:2;15857:7;15852:2;15845:5;15841:14;15837:28;15827:38;;15817:54;;;:::o;15877:225::-;16017:34;16013:1;16005:6;16001:14;15994:58;16086:8;16081:2;16073:6;16069:15;16062:33;15983:119;:::o;16108:171::-;16248:23;16244:1;16236:6;16232:14;16225:47;16214:65;:::o;16285:182::-;16425:34;16421:1;16413:6;16409:14;16402:58;16391:76;:::o;16473:122::-;16546:24;16564:5;16546:24;:::i;:::-;16539:5;16536:35;16526:2;;16585:1;16582;16575:12;16526:2;16516:79;:::o;16601:116::-;16671:21;16686:5;16671:21;:::i;:::-;16664:5;16661:32;16651:2;;16707:1;16704;16697:12;16651:2;16641:76;:::o;16723:120::-;16795:23;16812:5;16795:23;:::i;:::-;16788:5;16785:34;16775:2;;16833:1;16830;16823:12;16775:2;16765:78;:::o;16849:122::-;16922:24;16940:5;16922:24;:::i;:::-;16915:5;16912:35;16902:2;;16961:1;16958;16951:12;16902:2;16892:79;:::o
Swarm Source
ipfs://364daddc509e9064f0ec8cc36177518bfac06f3bb92bab2ed33b41ec5511cbb2
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in GLMR
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.