Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 220 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 19303098 | 731 days ago | IN | 0 ETH | 0.00054693 | ||||
| Set Approval For... | 16883712 | 1071 days ago | IN | 0 ETH | 0.00106189 | ||||
| Set Approval For... | 16767288 | 1087 days ago | IN | 0 ETH | 0.00117849 | ||||
| Set Approval For... | 16378336 | 1142 days ago | IN | 0 ETH | 0.000592 | ||||
| Set Approval For... | 16153277 | 1173 days ago | IN | 0 ETH | 0.00037446 | ||||
| Set Approval For... | 16145044 | 1174 days ago | IN | 0 ETH | 0.00061894 | ||||
| Set Approval For... | 16120594 | 1178 days ago | IN | 0 ETH | 0.00098715 | ||||
| Set Approval For... | 16017333 | 1192 days ago | IN | 0 ETH | 0.00054234 | ||||
| Set Approval For... | 16016605 | 1192 days ago | IN | 0 ETH | 0.0005126 | ||||
| Safe Transfer Fr... | 15959279 | 1200 days ago | IN | 0 ETH | 0.00079914 | ||||
| Whitelist Mint | 15955477 | 1201 days ago | IN | 0 ETH | 0.00105302 | ||||
| Transfer From | 15955474 | 1201 days ago | IN | 0 ETH | 0.00152822 | ||||
| Set Approval For... | 15948072 | 1202 days ago | IN | 0 ETH | 0.00146057 | ||||
| Whitelist Mint | 15946932 | 1202 days ago | IN | 0 ETH | 0.00212693 | ||||
| Whitelist Mint | 15946863 | 1202 days ago | IN | 0 ETH | 0.00296857 | ||||
| Whitelist Mint | 15945161 | 1202 days ago | IN | 0 ETH | 0.00205051 | ||||
| Transfer From | 15942394 | 1203 days ago | IN | 0 ETH | 0.00181775 | ||||
| Transfer From | 15942393 | 1203 days ago | IN | 0 ETH | 0.00187892 | ||||
| Transfer From | 15942392 | 1203 days ago | IN | 0 ETH | 0.00201677 | ||||
| Transfer From | 15942389 | 1203 days ago | IN | 0 ETH | 0.00211977 | ||||
| Transfer From | 15942388 | 1203 days ago | IN | 0 ETH | 0.00178789 | ||||
| Whitelist Mint | 15941339 | 1203 days ago | IN | 0 ETH | 0.00331951 | ||||
| Safe Transfer Fr... | 15941333 | 1203 days ago | IN | 0 ETH | 0.00303565 | ||||
| Safe Transfer Fr... | 15941326 | 1203 days ago | IN | 0 ETH | 0.00189901 | ||||
| Safe Transfer Fr... | 15941324 | 1203 days ago | IN | 0 ETH | 0.00245115 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Satoshi
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-11-07
*/
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Tree proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Calldata version of {verify}
*
* _Available since v4.7._
*/
function verifyCalldata(
bytes32[] calldata proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProofCalldata(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Calldata version of {processProof}
*
* _Available since v4.7._
*/
function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
* `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
*
* _Available since v4.7._
*/
function multiProofVerify(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProof(proof, proofFlags, leaves) == root;
}
/**
* @dev Calldata version of {multiProofVerify}
*
* _Available since v4.7._
*/
function multiProofVerifyCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProofCalldata(proof, proofFlags, leaves) == root;
}
/**
* @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
* consuming from one or the other at each step according to the instructions given by
* `proofFlags`.
*
* _Available since v4.7._
*/
function processMultiProof(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
/**
* @dev Calldata version of {processMultiProof}
*
* _Available since v4.7._
*/
function processMultiProofCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @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);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.7.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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.7.0) (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`.
*
* 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;
/**
* @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 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 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 the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @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);
}
// 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: 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 1;
}
/**
* @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: SatoshiNFT.sol
pragma solidity ^0.8.0;
contract Satoshi is ERC721A, Ownable {
using Strings for uint256;
string public baseURI;
string public baseExtension = ".json";
bool public presale = false;
bool public publicSale = false;
bytes32 public merkleRoot;
uint256 public maxSupply = 10000;
uint256 public presaleCost = 0 ether;
uint256 public publicCost = .04 ether;
uint256 public maxWhitelist = 1;
constructor(string memory _initBaseURI, uint256 quantity) ERC721A("Satoshi Nft Club", "SNC") {
setBaseURI(_initBaseURI);
_safeMint(msg.sender, quantity);
}
// whitelist mint
function whitelistMint(uint256 quantity, bytes32[] calldata _merkleProof)
public
payable
{
require(presale, "The whitelist sale is not enabled!");
uint256 supply = totalSupply();
require(quantity > 0, "Quantity Must Be Higher Than Zero");
require(supply + quantity <= maxSupply, "Max Supply Reached");
require(
balanceOf(msg.sender) + quantity <= maxWhitelist,
"You're not allowed to mint this Much!"
);
require(msg.value >= presaleCost * quantity, "Not enough ether!");
bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
require(
MerkleProof.verify(_merkleProof, merkleRoot, leaf),
"Invalid proof!"
);
_safeMint(msg.sender, quantity);
}
// public mint
function mint(uint256 quantity) external payable {
require(publicSale, "The public sale is not enabled!");
uint256 supply = totalSupply();
require(quantity > 0, "Quantity Must Be Higher Than Zero!");
require(supply + quantity <= maxSupply, "Max Supply Reached!");
if (msg.sender != owner()) {
require(msg.value >= publicCost * quantity, "Not enough ether!");
}
if (supply < 4000) {
_safeMint(msg.sender, quantity * 3);
} else if (supply < 6000) {
_safeMint(msg.sender, quantity * 2);
} else {
_safeMint(msg.sender, quantity);
}
}
function devMint(uint256 quantity) external onlyOwner {
uint256 supply = totalSupply();
require(quantity > 0, "Quantity Must Be Higher Than Zero!");
require(supply + quantity <= maxSupply, "Max Supply Reached!");
_safeMint(msg.sender, quantity);
}
// internal
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory currentBaseURI = _baseURI();
return
bytes(currentBaseURI).length > 0
? string(
abi.encodePacked(
currentBaseURI,
tokenId.toString(),
baseExtension
)
)
: "";
}
function setMaxSupply(uint256 _amount) public onlyOwner {
maxSupply = _amount;
}
function setMaxWhitelist(uint256 _amount) public onlyOwner {
maxWhitelist = _amount;
}
function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
merkleRoot = _merkleRoot;
}
function setSale(bool _presale, bool _publicSale) public onlyOwner {
presale = _presale;
publicSale = _publicSale;
}
function setPrice(uint256 _whitelistCost, uint256 _publicCost) public onlyOwner {
presaleCost = _whitelistCost;
publicCost = _publicCost;
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
function airdropNFTs(uint256 quantity, address _address) public onlyOwner {
uint256 supply = totalSupply();
require(quantity > 0, "Quantity Must Be Higher Than Zero!");
require(supply + quantity <= maxSupply, "Max Supply Reached!");
_safeMint(_address, quantity);
}
function setBaseExtension(string memory _newBaseExtension)
public
onlyOwner
{
baseExtension = _newBaseExtension;
}
function withdraw() public onlyOwner {
(bool ts, ) = payable(owner()).call{value: address(this).balance}("");
require(ts);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airdropNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"},{"internalType":"uint256","name":"_publicCost","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_presale","type":"bool"},{"internalType":"bool","name":"_publicSale","type":"bool"}],"name":"setSale","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":"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"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000972565b506000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff021916908315150217905550612710600d556000600e55668e1bc9bf040000600f556001601055348015620000b057600080fd5b5060405162004f9038038062004f908339818101604052810190620000d6919062000b00565b6040518060400160405280601081526020017f5361746f736869204e667420436c7562000000000000000000000000000000008152506040518060400160405280600381526020017f534e43000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200015a92919062000972565b5080600390805190602001906200017392919062000972565b5062000184620001d760201b60201c565b6000819055505050620001ac620001a0620001e060201b60201c565b620001e860201b60201c565b620001bd82620002ae60201b60201c565b620001cf3382620002da60201b60201c565b505062000ede565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002be6200030060201b60201c565b8060099080519060200190620002d692919062000972565b5050565b620002fc8282604051806020016040528060008152506200039160201b60201c565b5050565b62000310620001e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000336620003ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200038f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003869062000c44565b60405180910390fd5b565b620003a68383836001620003d560201b60201c565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000443576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156200047f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620004946000868387620007d160201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156200066c57506200066b8773ffffffffffffffffffffffffffffffffffffffff16620007d760201b6200199b1760201c565b5b156200073f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620006ea6000888480600101955088620007fa60201b60201c565b62000721576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415620006735782600054146200073957600080fd5b620007ac565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141562000740575b816000819055505050620007ca60008683876200096c60201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000828620001e060201b60201c565b8786866040518563ffffffff1660e01b81526004016200084c949392919062000bf0565b602060405180830381600087803b1580156200086757600080fd5b505af19250505080156200089b57506040513d601f19601f8201168201806040525081019062000898919062000ace565b60015b62000919573d8060008114620008ce576040519150601f19603f3d011682016040523d82523d6000602084013e620008d3565b606091505b5060008151141562000911576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620009809062000d92565b90600052602060002090601f016020900481019282620009a45760008555620009f0565b82601f10620009bf57805160ff1916838001178555620009f0565b82800160010185558215620009f0579182015b82811115620009ef578251825591602001919060010190620009d2565b5b509050620009ff919062000a03565b5090565b5b8082111562000a1e57600081600090555060010162000a04565b5090565b600062000a3962000a338462000c8f565b62000c66565b90508281526020810184848401111562000a585762000a5762000e61565b5b62000a6584828562000d5c565b509392505050565b60008151905062000a7e8162000eaa565b92915050565b600082601f83011262000a9c5762000a9b62000e5c565b5b815162000aae84826020860162000a22565b91505092915050565b60008151905062000ac88162000ec4565b92915050565b60006020828403121562000ae75762000ae662000e6b565b5b600062000af78482850162000a6d565b91505092915050565b6000806040838503121562000b1a5762000b1962000e6b565b5b600083015167ffffffffffffffff81111562000b3b5762000b3a62000e66565b5b62000b498582860162000a84565b925050602062000b5c8582860162000ab7565b9150509250929050565b62000b718162000cf2565b82525050565b600062000b848262000cc5565b62000b90818562000cd0565b935062000ba281856020860162000d5c565b62000bad8162000e70565b840191505092915050565b600062000bc760208362000ce1565b915062000bd48262000e81565b602082019050919050565b62000bea8162000d52565b82525050565b600060808201905062000c07600083018762000b66565b62000c16602083018662000b66565b62000c25604083018562000bdf565b818103606083015262000c39818462000b77565b905095945050505050565b6000602082019050818103600083015262000c5f8162000bb8565b9050919050565b600062000c7262000c85565b905062000c80828262000dc8565b919050565b6000604051905090565b600067ffffffffffffffff82111562000cad5762000cac62000e2d565b5b62000cb88262000e70565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000cff8262000d32565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000d7c57808201518184015260208101905062000d5f565b8381111562000d8c576000848401525b50505050565b6000600282049050600182168062000dab57607f821691505b6020821081141562000dc25762000dc162000dfe565b5b50919050565b62000dd38262000e70565b810181811067ffffffffffffffff8211171562000df55762000df462000e2d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000eb58162000d06565b811462000ec157600080fd5b50565b62000ecf8162000d52565b811462000edb57600080fd5b50565b6140a28062000eee6000396000f3fe6080604052600436106102255760003560e01c806372d9eb1e11610123578063c6682862116100ab578063e985e9c51161006f578063e985e9c5146107b1578063ee82e5a0146107ee578063f2fde38b14610817578063f7d9757714610840578063fdea8e0b1461086957610225565b8063c6682862146106d9578063c87b56dd14610704578063d2cab05614610741578063d5abeb011461075d578063da3ef23f1461078857610225565b806395d89b41116100f257806395d89b4114610615578063a0712d6814610640578063a22cb4651461065c578063b88d4fde14610685578063bf0d96c3146106ae57610225565b806372d9eb1e1461056d5780637cb64759146105965780638693da20146105bf5780638da5cb5b146105ea57610225565b806333bc1c5c116101b15780636352211e116101755780636352211e146104885780636c0360eb146104c55780636f8b44b0146104f057806370a0823114610519578063715018a61461055657610225565b806333bc1c5c146103cb578063375a069a146103f65780633ccfd60b1461041f57806342842e0e1461043657806355f804b31461045f57610225565b806318160ddd116101f857806318160ddd146102f85780632137ef8e1461032357806323b872dd1461034c5780632a23d07d146103755780632eb4a7ab146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613098565b610894565b60405161025e919061364c565b60405180910390f35b34801561027357600080fd5b5061027c610976565b6040516102899190613682565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061313b565b610a08565b6040516102c691906135e5565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612feb565b610a84565b005b34801561030457600080fd5b5061030d610b8f565b60405161031a9190613824565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613168565b610ba6565b005b34801561035857600080fd5b50610373600480360381019061036e9190612ed5565b610c5c565b005b34801561038157600080fd5b5061038a610c6c565b6040516103979190613824565b60405180910390f35b3480156103ac57600080fd5b506103b5610c72565b6040516103c29190613667565b60405180910390f35b3480156103d757600080fd5b506103e0610c78565b6040516103ed919061364c565b60405180910390f35b34801561040257600080fd5b5061041d6004803603810190610418919061313b565b610c8b565b005b34801561042b57600080fd5b50610434610d40565b005b34801561044257600080fd5b5061045d60048036038101906104589190612ed5565b610dc8565b005b34801561046b57600080fd5b50610486600480360381019061048191906130f2565b610de8565b005b34801561049457600080fd5b506104af60048036038101906104aa919061313b565b610e0a565b6040516104bc91906135e5565b60405180910390f35b3480156104d157600080fd5b506104da610e20565b6040516104e79190613682565b60405180910390f35b3480156104fc57600080fd5b506105176004803603810190610512919061313b565b610eae565b005b34801561052557600080fd5b50610540600480360381019061053b9190612e68565b610ec0565b60405161054d9190613824565b60405180910390f35b34801561056257600080fd5b5061056b610f90565b005b34801561057957600080fd5b50610594600480360381019061058f919061313b565b610fa4565b005b3480156105a257600080fd5b506105bd60048036038101906105b8919061306b565b610fb6565b005b3480156105cb57600080fd5b506105d4610fc8565b6040516105e19190613824565b60405180910390f35b3480156105f657600080fd5b506105ff610fce565b60405161060c91906135e5565b60405180910390f35b34801561062157600080fd5b5061062a610ff8565b6040516106379190613682565b60405180910390f35b61065a6004803603810190610655919061313b565b61108a565b005b34801561066857600080fd5b50610683600480360381019061067e9190612fab565b61125d565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612f28565b6113d5565b005b3480156106ba57600080fd5b506106c3611451565b6040516106d09190613824565b60405180910390f35b3480156106e557600080fd5b506106ee611457565b6040516106fb9190613682565b60405180910390f35b34801561071057600080fd5b5061072b6004803603810190610726919061313b565b6114e5565b6040516107389190613682565b60405180910390f35b61075b600480360381019061075691906131a8565b61158f565b005b34801561076957600080fd5b506107726117ee565b60405161077f9190613824565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa91906130f2565b6117f4565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190612e95565b611816565b6040516107e5919061364c565b60405180910390f35b3480156107fa57600080fd5b506108156004803603810190610810919061302b565b6118aa565b005b34801561082357600080fd5b5061083e60048036038101906108399190612e68565b6118ea565b005b34801561084c57600080fd5b5061086760048036038101906108629190613208565b61196e565b005b34801561087557600080fd5b5061087e611988565b60405161088b919061364c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096f575061096e826119be565b5b9050919050565b60606002805461098590613afe565b80601f01602080910402602001604051908101604052809291908181526020018280546109b190613afe565b80156109fe5780601f106109d3576101008083540402835291602001916109fe565b820191906000526020600020905b8154815290600101906020018083116109e157829003601f168201915b5050505050905090565b6000610a1382611a28565b610a49576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8f82610e0a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b16611a76565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b485750610b4681610b41611a76565b611816565b155b15610b7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b8a838383611a7e565b505050565b6000610b99611b30565b6001546000540303905090565b610bae611b39565b6000610bb8610b8f565b905060008311610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490613784565b60405180910390fd5b600d548382610c0c9190613929565b1115610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c44906137e4565b60405180910390fd5b610c578284611bb7565b505050565b610c67838383611bd5565b505050565b600e5481565b600c5481565b600b60019054906101000a900460ff1681565b610c93611b39565b6000610c9d610b8f565b905060008211610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990613784565b60405180910390fd5b600d548282610cf19190613929565b1115610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d29906137e4565b60405180910390fd5b610d3c3383611bb7565b5050565b610d48611b39565b6000610d52610fce565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d75906135d0565b60006040518083038185875af1925050503d8060008114610db2576040519150601f19603f3d011682016040523d82523d6000602084013e610db7565b606091505b5050905080610dc557600080fd5b50565b610de3838383604051806020016040528060008152506113d5565b505050565b610df0611b39565b8060099080519060200190610e06929190612bce565b5050565b6000610e158261208b565b600001519050919050565b60098054610e2d90613afe565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5990613afe565b8015610ea65780601f10610e7b57610100808354040283529160200191610ea6565b820191906000526020600020905b815481529060010190602001808311610e8957829003601f168201915b505050505081565b610eb6611b39565b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f28576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f98611b39565b610fa2600061231a565b565b610fac611b39565b8060108190555050565b610fbe611b39565b80600c8190555050565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461100790613afe565b80601f016020809104026020016040519081016040528092919081815260200182805461103390613afe565b80156110805780601f1061105557610100808354040283529160200191611080565b820191906000526020600020905b81548152906001019060200180831161106357829003601f168201915b5050505050905090565b600b60019054906101000a900460ff166110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090613804565b60405180910390fd5b60006110e3610b8f565b905060008211611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90613784565b60405180910390fd5b600d5482826111379190613929565b1115611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f906137e4565b60405180910390fd5b611180610fce565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112035781600f546111c091906139b0565b341015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f9906136a4565b60405180910390fd5b5b610fa0811015611228576112233360038461121e91906139b0565b611bb7565b611259565b61177081101561124d576112483360028461124391906139b0565b611bb7565b611258565b6112573383611bb7565b5b5b5050565b611265611a76565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ca576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112d7611a76565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611384611a76565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113c9919061364c565b60405180910390a35050565b6113e0848484611bd5565b6113ff8373ffffffffffffffffffffffffffffffffffffffff1661199b565b80156114145750611412848484846123e0565b155b1561144b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60105481565b600a805461146490613afe565b80601f016020809104026020016040519081016040528092919081815260200182805461149090613afe565b80156114dd5780601f106114b2576101008083540402835291602001916114dd565b820191906000526020600020905b8154815290600101906020018083116114c057829003601f168201915b505050505081565b60606114f082611a28565b61152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613764565b60405180910390fd5b6000611539612540565b905060008151116115595760405180602001604052806000815250611587565b80611563846125d2565b600a6040516020016115779392919061359f565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900460ff166115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d5906137a4565b60405180910390fd5b60006115e8610b8f565b90506000841161162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490613724565b60405180910390fd5b600d54848261163c9190613929565b111561167d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611674906137c4565b60405180910390fd5b6010548461168a33610ec0565b6116949190613929565b11156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc906136c4565b60405180910390fd5b83600e546116e391906139b0565b341015611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c906136a4565b60405180910390fd5b6000336040516020016117389190613584565b60405160208183030381529060405280519060200120905061179e848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483612733565b6117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d4906136e4565b60405180910390fd5b6117e73386611bb7565b5050505050565b600d5481565b6117fc611b39565b80600a9080519060200190611812929190612bce565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118b2611b39565b81600b60006101000a81548160ff02191690831515021790555080600b60016101000a81548160ff0219169083151502179055505050565b6118f2611b39565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195990613704565b60405180910390fd5b61196b8161231a565b50565b611976611b39565b81600e8190555080600f819055505050565b600b60009054906101000a900460ff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611a33611b30565b11158015611a42575060005482105b8015611a6f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b611b41611a76565b73ffffffffffffffffffffffffffffffffffffffff16611b5f610fce565b73ffffffffffffffffffffffffffffffffffffffff1614611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac90613744565b60405180910390fd5b565b611bd182826040518060200160405280600081525061274a565b5050565b6000611be08261208b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c4b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c6c611a76565b73ffffffffffffffffffffffffffffffffffffffff161480611c9b5750611c9a85611c95611a76565b611816565b5b80611ce05750611ca9611a76565b73ffffffffffffffffffffffffffffffffffffffff16611cc884610a08565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d19576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d80576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d8d858585600161275c565b611d9960008487611a7e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561201957600054821461201857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120848585856001612762565b5050505050565b612093612c54565b6000829050806120a1611b30565b111580156120b0575060005481105b156122e3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122e157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121c5578092505050612315565b5b6001156122e057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122db578092505050612315565b6121c6565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612406611a76565b8786866040518563ffffffff1660e01b81526004016124289493929190613600565b602060405180830381600087803b15801561244257600080fd5b505af192505050801561247357506040513d601f19601f8201168201806040525081019061247091906130c5565b60015b6124ed573d80600081146124a3576040519150601f19603f3d011682016040523d82523d6000602084013e6124a8565b606091505b506000815114156124e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461254f90613afe565b80601f016020809104026020016040519081016040528092919081815260200182805461257b90613afe565b80156125c85780601f1061259d576101008083540402835291602001916125c8565b820191906000526020600020905b8154815290600101906020018083116125ab57829003601f168201915b5050505050905090565b6060600082141561261a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061272e565b600082905060005b6000821461264c57808061263590613b61565b915050600a82612645919061397f565b9150612622565b60008167ffffffffffffffff81111561266857612667613cbb565b5b6040519080825280601f01601f19166020018201604052801561269a5781602001600182028036833780820191505090505b5090505b60008514612727576001826126b39190613a0a565b9150600a856126c29190613bce565b60306126ce9190613929565b60f81b8183815181106126e4576126e3613c8c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612720919061397f565b945061269e565b8093505050505b919050565b6000826127408584612768565b1490509392505050565b61275783838360016127be565b505050565b50505050565b50505050565b60008082905060005b84518110156127b35761279e8286838151811061279157612790613c8c565b5b6020026020010151612b8c565b915080806127ab90613b61565b915050612771565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561282b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612866576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612873600086838761275c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a3d5750612a3c8773ffffffffffffffffffffffffffffffffffffffff1661199b565b5b15612b03575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ab260008884806001019550886123e0565b612ae8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a43578260005414612afe57600080fd5b612b6f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612b04575b816000819055505050612b856000868387612762565b5050505050565b6000818310612ba457612b9f8284612bb7565b612baf565b612bae8383612bb7565b5b905092915050565b600082600052816020526040600020905092915050565b828054612bda90613afe565b90600052602060002090601f016020900481019282612bfc5760008555612c43565b82601f10612c1557805160ff1916838001178555612c43565b82800160010185558215612c43579182015b82811115612c42578251825591602001919060010190612c27565b5b509050612c509190612c97565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612cb0576000816000905550600101612c98565b5090565b6000612cc7612cc284613864565b61383f565b905082815260208101848484011115612ce357612ce2613cf9565b5b612cee848285613abc565b509392505050565b6000612d09612d0484613895565b61383f565b905082815260208101848484011115612d2557612d24613cf9565b5b612d30848285613abc565b509392505050565b600081359050612d4781613ff9565b92915050565b60008083601f840112612d6357612d62613cef565b5b8235905067ffffffffffffffff811115612d8057612d7f613cea565b5b602083019150836020820283011115612d9c57612d9b613cf4565b5b9250929050565b600081359050612db281614010565b92915050565b600081359050612dc781614027565b92915050565b600081359050612ddc8161403e565b92915050565b600081519050612df18161403e565b92915050565b600082601f830112612e0c57612e0b613cef565b5b8135612e1c848260208601612cb4565b91505092915050565b600082601f830112612e3a57612e39613cef565b5b8135612e4a848260208601612cf6565b91505092915050565b600081359050612e6281614055565b92915050565b600060208284031215612e7e57612e7d613d03565b5b6000612e8c84828501612d38565b91505092915050565b60008060408385031215612eac57612eab613d03565b5b6000612eba85828601612d38565b9250506020612ecb85828601612d38565b9150509250929050565b600080600060608486031215612eee57612eed613d03565b5b6000612efc86828701612d38565b9350506020612f0d86828701612d38565b9250506040612f1e86828701612e53565b9150509250925092565b60008060008060808587031215612f4257612f41613d03565b5b6000612f5087828801612d38565b9450506020612f6187828801612d38565b9350506040612f7287828801612e53565b925050606085013567ffffffffffffffff811115612f9357612f92613cfe565b5b612f9f87828801612df7565b91505092959194509250565b60008060408385031215612fc257612fc1613d03565b5b6000612fd085828601612d38565b9250506020612fe185828601612da3565b9150509250929050565b6000806040838503121561300257613001613d03565b5b600061301085828601612d38565b925050602061302185828601612e53565b9150509250929050565b6000806040838503121561304257613041613d03565b5b600061305085828601612da3565b925050602061306185828601612da3565b9150509250929050565b60006020828403121561308157613080613d03565b5b600061308f84828501612db8565b91505092915050565b6000602082840312156130ae576130ad613d03565b5b60006130bc84828501612dcd565b91505092915050565b6000602082840312156130db576130da613d03565b5b60006130e984828501612de2565b91505092915050565b60006020828403121561310857613107613d03565b5b600082013567ffffffffffffffff81111561312657613125613cfe565b5b61313284828501612e25565b91505092915050565b60006020828403121561315157613150613d03565b5b600061315f84828501612e53565b91505092915050565b6000806040838503121561317f5761317e613d03565b5b600061318d85828601612e53565b925050602061319e85828601612d38565b9150509250929050565b6000806000604084860312156131c1576131c0613d03565b5b60006131cf86828701612e53565b935050602084013567ffffffffffffffff8111156131f0576131ef613cfe565b5b6131fc86828701612d4d565b92509250509250925092565b6000806040838503121561321f5761321e613d03565b5b600061322d85828601612e53565b925050602061323e85828601612e53565b9150509250929050565b61325181613a3e565b82525050565b61326861326382613a3e565b613baa565b82525050565b61327781613a50565b82525050565b61328681613a5c565b82525050565b6000613297826138db565b6132a181856138f1565b93506132b1818560208601613acb565b6132ba81613d08565b840191505092915050565b60006132d0826138e6565b6132da818561390d565b93506132ea818560208601613acb565b6132f381613d08565b840191505092915050565b6000613309826138e6565b613313818561391e565b9350613323818560208601613acb565b80840191505092915050565b6000815461333c81613afe565b613346818661391e565b945060018216600081146133615760018114613372576133a5565b60ff198316865281860193506133a5565b61337b856138c6565b60005b8381101561339d5781548189015260018201915060208101905061337e565b838801955050505b50505092915050565b60006133bb60118361390d565b91506133c682613d26565b602082019050919050565b60006133de60258361390d565b91506133e982613d4f565b604082019050919050565b6000613401600e8361390d565b915061340c82613d9e565b602082019050919050565b600061342460268361390d565b915061342f82613dc7565b604082019050919050565b600061344760218361390d565b915061345282613e16565b604082019050919050565b600061346a60208361390d565b915061347582613e65565b602082019050919050565b600061348d602f8361390d565b915061349882613e8e565b604082019050919050565b60006134b060228361390d565b91506134bb82613edd565b604082019050919050565b60006134d3600083613902565b91506134de82613f2c565b600082019050919050565b60006134f660228361390d565b915061350182613f2f565b604082019050919050565b600061351960128361390d565b915061352482613f7e565b602082019050919050565b600061353c60138361390d565b915061354782613fa7565b602082019050919050565b600061355f601f8361390d565b915061356a82613fd0565b602082019050919050565b61357e81613ab2565b82525050565b60006135908284613257565b60148201915081905092915050565b60006135ab82866132fe565b91506135b782856132fe565b91506135c3828461332f565b9150819050949350505050565b60006135db826134c6565b9150819050919050565b60006020820190506135fa6000830184613248565b92915050565b60006080820190506136156000830187613248565b6136226020830186613248565b61362f6040830185613575565b8181036060830152613641818461328c565b905095945050505050565b6000602082019050613661600083018461326e565b92915050565b600060208201905061367c600083018461327d565b92915050565b6000602082019050818103600083015261369c81846132c5565b905092915050565b600060208201905081810360008301526136bd816133ae565b9050919050565b600060208201905081810360008301526136dd816133d1565b9050919050565b600060208201905081810360008301526136fd816133f4565b9050919050565b6000602082019050818103600083015261371d81613417565b9050919050565b6000602082019050818103600083015261373d8161343a565b9050919050565b6000602082019050818103600083015261375d8161345d565b9050919050565b6000602082019050818103600083015261377d81613480565b9050919050565b6000602082019050818103600083015261379d816134a3565b9050919050565b600060208201905081810360008301526137bd816134e9565b9050919050565b600060208201905081810360008301526137dd8161350c565b9050919050565b600060208201905081810360008301526137fd8161352f565b9050919050565b6000602082019050818103600083015261381d81613552565b9050919050565b60006020820190506138396000830184613575565b92915050565b600061384961385a565b90506138558282613b30565b919050565b6000604051905090565b600067ffffffffffffffff82111561387f5761387e613cbb565b5b61388882613d08565b9050602081019050919050565b600067ffffffffffffffff8211156138b0576138af613cbb565b5b6138b982613d08565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061393482613ab2565b915061393f83613ab2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397457613973613bff565b5b828201905092915050565b600061398a82613ab2565b915061399583613ab2565b9250826139a5576139a4613c2e565b5b828204905092915050565b60006139bb82613ab2565b91506139c683613ab2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139ff576139fe613bff565b5b828202905092915050565b6000613a1582613ab2565b9150613a2083613ab2565b925082821015613a3357613a32613bff565b5b828203905092915050565b6000613a4982613a92565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ae9578082015181840152602081019050613ace565b83811115613af8576000848401525b50505050565b60006002820490506001821680613b1657607f821691505b60208210811415613b2a57613b29613c5d565b5b50919050565b613b3982613d08565b810181811067ffffffffffffffff82111715613b5857613b57613cbb565b5b80604052505050565b6000613b6c82613ab2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b9f57613b9e613bff565b5b600182019050919050565b6000613bb582613bbc565b9050919050565b6000613bc782613d19565b9050919050565b6000613bd982613ab2565b9150613be483613ab2565b925082613bf457613bf3613c2e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420656e6f75676820657468657221000000000000000000000000000000600082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f4d617820537570706c7920526561636865642100000000000000000000000000600082015250565b7f546865207075626c69632073616c65206973206e6f7420656e61626c65642100600082015250565b61400281613a3e565b811461400d57600080fd5b50565b61401981613a50565b811461402457600080fd5b50565b61403081613a5c565b811461403b57600080fd5b50565b61404781613a66565b811461405257600080fd5b50565b61405e81613ab2565b811461406957600080fd5b5056fea26469706673582212206be40129039c643c14796447b6167d10314f4050208c284ba6016d82dddee0de64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d506744354342394a626247376173745239717859794d6f67694e694b544c6e687135784552464576644633372f00000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c806372d9eb1e11610123578063c6682862116100ab578063e985e9c51161006f578063e985e9c5146107b1578063ee82e5a0146107ee578063f2fde38b14610817578063f7d9757714610840578063fdea8e0b1461086957610225565b8063c6682862146106d9578063c87b56dd14610704578063d2cab05614610741578063d5abeb011461075d578063da3ef23f1461078857610225565b806395d89b41116100f257806395d89b4114610615578063a0712d6814610640578063a22cb4651461065c578063b88d4fde14610685578063bf0d96c3146106ae57610225565b806372d9eb1e1461056d5780637cb64759146105965780638693da20146105bf5780638da5cb5b146105ea57610225565b806333bc1c5c116101b15780636352211e116101755780636352211e146104885780636c0360eb146104c55780636f8b44b0146104f057806370a0823114610519578063715018a61461055657610225565b806333bc1c5c146103cb578063375a069a146103f65780633ccfd60b1461041f57806342842e0e1461043657806355f804b31461045f57610225565b806318160ddd116101f857806318160ddd146102f85780632137ef8e1461032357806323b872dd1461034c5780632a23d07d146103755780632eb4a7ab146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613098565b610894565b60405161025e919061364c565b60405180910390f35b34801561027357600080fd5b5061027c610976565b6040516102899190613682565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061313b565b610a08565b6040516102c691906135e5565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612feb565b610a84565b005b34801561030457600080fd5b5061030d610b8f565b60405161031a9190613824565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613168565b610ba6565b005b34801561035857600080fd5b50610373600480360381019061036e9190612ed5565b610c5c565b005b34801561038157600080fd5b5061038a610c6c565b6040516103979190613824565b60405180910390f35b3480156103ac57600080fd5b506103b5610c72565b6040516103c29190613667565b60405180910390f35b3480156103d757600080fd5b506103e0610c78565b6040516103ed919061364c565b60405180910390f35b34801561040257600080fd5b5061041d6004803603810190610418919061313b565b610c8b565b005b34801561042b57600080fd5b50610434610d40565b005b34801561044257600080fd5b5061045d60048036038101906104589190612ed5565b610dc8565b005b34801561046b57600080fd5b50610486600480360381019061048191906130f2565b610de8565b005b34801561049457600080fd5b506104af60048036038101906104aa919061313b565b610e0a565b6040516104bc91906135e5565b60405180910390f35b3480156104d157600080fd5b506104da610e20565b6040516104e79190613682565b60405180910390f35b3480156104fc57600080fd5b506105176004803603810190610512919061313b565b610eae565b005b34801561052557600080fd5b50610540600480360381019061053b9190612e68565b610ec0565b60405161054d9190613824565b60405180910390f35b34801561056257600080fd5b5061056b610f90565b005b34801561057957600080fd5b50610594600480360381019061058f919061313b565b610fa4565b005b3480156105a257600080fd5b506105bd60048036038101906105b8919061306b565b610fb6565b005b3480156105cb57600080fd5b506105d4610fc8565b6040516105e19190613824565b60405180910390f35b3480156105f657600080fd5b506105ff610fce565b60405161060c91906135e5565b60405180910390f35b34801561062157600080fd5b5061062a610ff8565b6040516106379190613682565b60405180910390f35b61065a6004803603810190610655919061313b565b61108a565b005b34801561066857600080fd5b50610683600480360381019061067e9190612fab565b61125d565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612f28565b6113d5565b005b3480156106ba57600080fd5b506106c3611451565b6040516106d09190613824565b60405180910390f35b3480156106e557600080fd5b506106ee611457565b6040516106fb9190613682565b60405180910390f35b34801561071057600080fd5b5061072b6004803603810190610726919061313b565b6114e5565b6040516107389190613682565b60405180910390f35b61075b600480360381019061075691906131a8565b61158f565b005b34801561076957600080fd5b506107726117ee565b60405161077f9190613824565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa91906130f2565b6117f4565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190612e95565b611816565b6040516107e5919061364c565b60405180910390f35b3480156107fa57600080fd5b506108156004803603810190610810919061302b565b6118aa565b005b34801561082357600080fd5b5061083e60048036038101906108399190612e68565b6118ea565b005b34801561084c57600080fd5b5061086760048036038101906108629190613208565b61196e565b005b34801561087557600080fd5b5061087e611988565b60405161088b919061364c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096f575061096e826119be565b5b9050919050565b60606002805461098590613afe565b80601f01602080910402602001604051908101604052809291908181526020018280546109b190613afe565b80156109fe5780601f106109d3576101008083540402835291602001916109fe565b820191906000526020600020905b8154815290600101906020018083116109e157829003601f168201915b5050505050905090565b6000610a1382611a28565b610a49576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8f82610e0a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b16611a76565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b485750610b4681610b41611a76565b611816565b155b15610b7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b8a838383611a7e565b505050565b6000610b99611b30565b6001546000540303905090565b610bae611b39565b6000610bb8610b8f565b905060008311610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490613784565b60405180910390fd5b600d548382610c0c9190613929565b1115610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c44906137e4565b60405180910390fd5b610c578284611bb7565b505050565b610c67838383611bd5565b505050565b600e5481565b600c5481565b600b60019054906101000a900460ff1681565b610c93611b39565b6000610c9d610b8f565b905060008211610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990613784565b60405180910390fd5b600d548282610cf19190613929565b1115610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d29906137e4565b60405180910390fd5b610d3c3383611bb7565b5050565b610d48611b39565b6000610d52610fce565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d75906135d0565b60006040518083038185875af1925050503d8060008114610db2576040519150601f19603f3d011682016040523d82523d6000602084013e610db7565b606091505b5050905080610dc557600080fd5b50565b610de3838383604051806020016040528060008152506113d5565b505050565b610df0611b39565b8060099080519060200190610e06929190612bce565b5050565b6000610e158261208b565b600001519050919050565b60098054610e2d90613afe565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5990613afe565b8015610ea65780601f10610e7b57610100808354040283529160200191610ea6565b820191906000526020600020905b815481529060010190602001808311610e8957829003601f168201915b505050505081565b610eb6611b39565b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f28576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f98611b39565b610fa2600061231a565b565b610fac611b39565b8060108190555050565b610fbe611b39565b80600c8190555050565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461100790613afe565b80601f016020809104026020016040519081016040528092919081815260200182805461103390613afe565b80156110805780601f1061105557610100808354040283529160200191611080565b820191906000526020600020905b81548152906001019060200180831161106357829003601f168201915b5050505050905090565b600b60019054906101000a900460ff166110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090613804565b60405180910390fd5b60006110e3610b8f565b905060008211611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90613784565b60405180910390fd5b600d5482826111379190613929565b1115611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f906137e4565b60405180910390fd5b611180610fce565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112035781600f546111c091906139b0565b341015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f9906136a4565b60405180910390fd5b5b610fa0811015611228576112233360038461121e91906139b0565b611bb7565b611259565b61177081101561124d576112483360028461124391906139b0565b611bb7565b611258565b6112573383611bb7565b5b5b5050565b611265611a76565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ca576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112d7611a76565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611384611a76565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113c9919061364c565b60405180910390a35050565b6113e0848484611bd5565b6113ff8373ffffffffffffffffffffffffffffffffffffffff1661199b565b80156114145750611412848484846123e0565b155b1561144b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60105481565b600a805461146490613afe565b80601f016020809104026020016040519081016040528092919081815260200182805461149090613afe565b80156114dd5780601f106114b2576101008083540402835291602001916114dd565b820191906000526020600020905b8154815290600101906020018083116114c057829003601f168201915b505050505081565b60606114f082611a28565b61152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613764565b60405180910390fd5b6000611539612540565b905060008151116115595760405180602001604052806000815250611587565b80611563846125d2565b600a6040516020016115779392919061359f565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900460ff166115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d5906137a4565b60405180910390fd5b60006115e8610b8f565b90506000841161162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490613724565b60405180910390fd5b600d54848261163c9190613929565b111561167d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611674906137c4565b60405180910390fd5b6010548461168a33610ec0565b6116949190613929565b11156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc906136c4565b60405180910390fd5b83600e546116e391906139b0565b341015611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c906136a4565b60405180910390fd5b6000336040516020016117389190613584565b60405160208183030381529060405280519060200120905061179e848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483612733565b6117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d4906136e4565b60405180910390fd5b6117e73386611bb7565b5050505050565b600d5481565b6117fc611b39565b80600a9080519060200190611812929190612bce565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118b2611b39565b81600b60006101000a81548160ff02191690831515021790555080600b60016101000a81548160ff0219169083151502179055505050565b6118f2611b39565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195990613704565b60405180910390fd5b61196b8161231a565b50565b611976611b39565b81600e8190555080600f819055505050565b600b60009054906101000a900460ff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611a33611b30565b11158015611a42575060005482105b8015611a6f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b611b41611a76565b73ffffffffffffffffffffffffffffffffffffffff16611b5f610fce565b73ffffffffffffffffffffffffffffffffffffffff1614611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac90613744565b60405180910390fd5b565b611bd182826040518060200160405280600081525061274a565b5050565b6000611be08261208b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c4b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c6c611a76565b73ffffffffffffffffffffffffffffffffffffffff161480611c9b5750611c9a85611c95611a76565b611816565b5b80611ce05750611ca9611a76565b73ffffffffffffffffffffffffffffffffffffffff16611cc884610a08565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d19576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d80576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d8d858585600161275c565b611d9960008487611a7e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561201957600054821461201857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120848585856001612762565b5050505050565b612093612c54565b6000829050806120a1611b30565b111580156120b0575060005481105b156122e3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122e157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121c5578092505050612315565b5b6001156122e057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122db578092505050612315565b6121c6565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612406611a76565b8786866040518563ffffffff1660e01b81526004016124289493929190613600565b602060405180830381600087803b15801561244257600080fd5b505af192505050801561247357506040513d601f19601f8201168201806040525081019061247091906130c5565b60015b6124ed573d80600081146124a3576040519150601f19603f3d011682016040523d82523d6000602084013e6124a8565b606091505b506000815114156124e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461254f90613afe565b80601f016020809104026020016040519081016040528092919081815260200182805461257b90613afe565b80156125c85780601f1061259d576101008083540402835291602001916125c8565b820191906000526020600020905b8154815290600101906020018083116125ab57829003601f168201915b5050505050905090565b6060600082141561261a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061272e565b600082905060005b6000821461264c57808061263590613b61565b915050600a82612645919061397f565b9150612622565b60008167ffffffffffffffff81111561266857612667613cbb565b5b6040519080825280601f01601f19166020018201604052801561269a5781602001600182028036833780820191505090505b5090505b60008514612727576001826126b39190613a0a565b9150600a856126c29190613bce565b60306126ce9190613929565b60f81b8183815181106126e4576126e3613c8c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612720919061397f565b945061269e565b8093505050505b919050565b6000826127408584612768565b1490509392505050565b61275783838360016127be565b505050565b50505050565b50505050565b60008082905060005b84518110156127b35761279e8286838151811061279157612790613c8c565b5b6020026020010151612b8c565b915080806127ab90613b61565b915050612771565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561282b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612866576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612873600086838761275c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a3d5750612a3c8773ffffffffffffffffffffffffffffffffffffffff1661199b565b5b15612b03575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ab260008884806001019550886123e0565b612ae8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a43578260005414612afe57600080fd5b612b6f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612b04575b816000819055505050612b856000868387612762565b5050505050565b6000818310612ba457612b9f8284612bb7565b612baf565b612bae8383612bb7565b5b905092915050565b600082600052816020526040600020905092915050565b828054612bda90613afe565b90600052602060002090601f016020900481019282612bfc5760008555612c43565b82601f10612c1557805160ff1916838001178555612c43565b82800160010185558215612c43579182015b82811115612c42578251825591602001919060010190612c27565b5b509050612c509190612c97565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612cb0576000816000905550600101612c98565b5090565b6000612cc7612cc284613864565b61383f565b905082815260208101848484011115612ce357612ce2613cf9565b5b612cee848285613abc565b509392505050565b6000612d09612d0484613895565b61383f565b905082815260208101848484011115612d2557612d24613cf9565b5b612d30848285613abc565b509392505050565b600081359050612d4781613ff9565b92915050565b60008083601f840112612d6357612d62613cef565b5b8235905067ffffffffffffffff811115612d8057612d7f613cea565b5b602083019150836020820283011115612d9c57612d9b613cf4565b5b9250929050565b600081359050612db281614010565b92915050565b600081359050612dc781614027565b92915050565b600081359050612ddc8161403e565b92915050565b600081519050612df18161403e565b92915050565b600082601f830112612e0c57612e0b613cef565b5b8135612e1c848260208601612cb4565b91505092915050565b600082601f830112612e3a57612e39613cef565b5b8135612e4a848260208601612cf6565b91505092915050565b600081359050612e6281614055565b92915050565b600060208284031215612e7e57612e7d613d03565b5b6000612e8c84828501612d38565b91505092915050565b60008060408385031215612eac57612eab613d03565b5b6000612eba85828601612d38565b9250506020612ecb85828601612d38565b9150509250929050565b600080600060608486031215612eee57612eed613d03565b5b6000612efc86828701612d38565b9350506020612f0d86828701612d38565b9250506040612f1e86828701612e53565b9150509250925092565b60008060008060808587031215612f4257612f41613d03565b5b6000612f5087828801612d38565b9450506020612f6187828801612d38565b9350506040612f7287828801612e53565b925050606085013567ffffffffffffffff811115612f9357612f92613cfe565b5b612f9f87828801612df7565b91505092959194509250565b60008060408385031215612fc257612fc1613d03565b5b6000612fd085828601612d38565b9250506020612fe185828601612da3565b9150509250929050565b6000806040838503121561300257613001613d03565b5b600061301085828601612d38565b925050602061302185828601612e53565b9150509250929050565b6000806040838503121561304257613041613d03565b5b600061305085828601612da3565b925050602061306185828601612da3565b9150509250929050565b60006020828403121561308157613080613d03565b5b600061308f84828501612db8565b91505092915050565b6000602082840312156130ae576130ad613d03565b5b60006130bc84828501612dcd565b91505092915050565b6000602082840312156130db576130da613d03565b5b60006130e984828501612de2565b91505092915050565b60006020828403121561310857613107613d03565b5b600082013567ffffffffffffffff81111561312657613125613cfe565b5b61313284828501612e25565b91505092915050565b60006020828403121561315157613150613d03565b5b600061315f84828501612e53565b91505092915050565b6000806040838503121561317f5761317e613d03565b5b600061318d85828601612e53565b925050602061319e85828601612d38565b9150509250929050565b6000806000604084860312156131c1576131c0613d03565b5b60006131cf86828701612e53565b935050602084013567ffffffffffffffff8111156131f0576131ef613cfe565b5b6131fc86828701612d4d565b92509250509250925092565b6000806040838503121561321f5761321e613d03565b5b600061322d85828601612e53565b925050602061323e85828601612e53565b9150509250929050565b61325181613a3e565b82525050565b61326861326382613a3e565b613baa565b82525050565b61327781613a50565b82525050565b61328681613a5c565b82525050565b6000613297826138db565b6132a181856138f1565b93506132b1818560208601613acb565b6132ba81613d08565b840191505092915050565b60006132d0826138e6565b6132da818561390d565b93506132ea818560208601613acb565b6132f381613d08565b840191505092915050565b6000613309826138e6565b613313818561391e565b9350613323818560208601613acb565b80840191505092915050565b6000815461333c81613afe565b613346818661391e565b945060018216600081146133615760018114613372576133a5565b60ff198316865281860193506133a5565b61337b856138c6565b60005b8381101561339d5781548189015260018201915060208101905061337e565b838801955050505b50505092915050565b60006133bb60118361390d565b91506133c682613d26565b602082019050919050565b60006133de60258361390d565b91506133e982613d4f565b604082019050919050565b6000613401600e8361390d565b915061340c82613d9e565b602082019050919050565b600061342460268361390d565b915061342f82613dc7565b604082019050919050565b600061344760218361390d565b915061345282613e16565b604082019050919050565b600061346a60208361390d565b915061347582613e65565b602082019050919050565b600061348d602f8361390d565b915061349882613e8e565b604082019050919050565b60006134b060228361390d565b91506134bb82613edd565b604082019050919050565b60006134d3600083613902565b91506134de82613f2c565b600082019050919050565b60006134f660228361390d565b915061350182613f2f565b604082019050919050565b600061351960128361390d565b915061352482613f7e565b602082019050919050565b600061353c60138361390d565b915061354782613fa7565b602082019050919050565b600061355f601f8361390d565b915061356a82613fd0565b602082019050919050565b61357e81613ab2565b82525050565b60006135908284613257565b60148201915081905092915050565b60006135ab82866132fe565b91506135b782856132fe565b91506135c3828461332f565b9150819050949350505050565b60006135db826134c6565b9150819050919050565b60006020820190506135fa6000830184613248565b92915050565b60006080820190506136156000830187613248565b6136226020830186613248565b61362f6040830185613575565b8181036060830152613641818461328c565b905095945050505050565b6000602082019050613661600083018461326e565b92915050565b600060208201905061367c600083018461327d565b92915050565b6000602082019050818103600083015261369c81846132c5565b905092915050565b600060208201905081810360008301526136bd816133ae565b9050919050565b600060208201905081810360008301526136dd816133d1565b9050919050565b600060208201905081810360008301526136fd816133f4565b9050919050565b6000602082019050818103600083015261371d81613417565b9050919050565b6000602082019050818103600083015261373d8161343a565b9050919050565b6000602082019050818103600083015261375d8161345d565b9050919050565b6000602082019050818103600083015261377d81613480565b9050919050565b6000602082019050818103600083015261379d816134a3565b9050919050565b600060208201905081810360008301526137bd816134e9565b9050919050565b600060208201905081810360008301526137dd8161350c565b9050919050565b600060208201905081810360008301526137fd8161352f565b9050919050565b6000602082019050818103600083015261381d81613552565b9050919050565b60006020820190506138396000830184613575565b92915050565b600061384961385a565b90506138558282613b30565b919050565b6000604051905090565b600067ffffffffffffffff82111561387f5761387e613cbb565b5b61388882613d08565b9050602081019050919050565b600067ffffffffffffffff8211156138b0576138af613cbb565b5b6138b982613d08565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061393482613ab2565b915061393f83613ab2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397457613973613bff565b5b828201905092915050565b600061398a82613ab2565b915061399583613ab2565b9250826139a5576139a4613c2e565b5b828204905092915050565b60006139bb82613ab2565b91506139c683613ab2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139ff576139fe613bff565b5b828202905092915050565b6000613a1582613ab2565b9150613a2083613ab2565b925082821015613a3357613a32613bff565b5b828203905092915050565b6000613a4982613a92565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ae9578082015181840152602081019050613ace565b83811115613af8576000848401525b50505050565b60006002820490506001821680613b1657607f821691505b60208210811415613b2a57613b29613c5d565b5b50919050565b613b3982613d08565b810181811067ffffffffffffffff82111715613b5857613b57613cbb565b5b80604052505050565b6000613b6c82613ab2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b9f57613b9e613bff565b5b600182019050919050565b6000613bb582613bbc565b9050919050565b6000613bc782613d19565b9050919050565b6000613bd982613ab2565b9150613be483613ab2565b925082613bf457613bf3613c2e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420656e6f75676820657468657221000000000000000000000000000000600082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f4d617820537570706c7920526561636865642100000000000000000000000000600082015250565b7f546865207075626c69632073616c65206973206e6f7420656e61626c65642100600082015250565b61400281613a3e565b811461400d57600080fd5b50565b61401981613a50565b811461402457600080fd5b50565b61403081613a5c565b811461403b57600080fd5b50565b61404781613a66565b811461405257600080fd5b50565b61405e81613ab2565b811461406957600080fd5b5056fea26469706673582212206be40129039c643c14796447b6167d10314f4050208c284ba6016d82dddee0de64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d506744354342394a626247376173745239717859794d6f67694e694b544c6e687135784552464576644633372f00000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmPgD5CB9JbbG7astR9qxYyMogiNiKTLnhq5xERFEvdF37/
Arg [1] : quantity (uint256): 100
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d506744354342394a626247376173745239717859794d6f
Arg [4] : 67694e694b544c6e687135784552464576644633372f00000000000000000000
Deployed Bytecode Sourcemap
54114:4625:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36307:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39420:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40923:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40486:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35556:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58116:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41788:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54406:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54335:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54298:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56284:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58589:147;;;;;;;;;;;;;:::i;:::-;;42029:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58004:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39228:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54192:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57365:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36676:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13998:103;;;;;;;;;;;;;:::i;:::-;;57467:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57575:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54449:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13350:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39589:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55596:680;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41199:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42285:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54493:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54220:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56713:644;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54744:824;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54367:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58430:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41557:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57687:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14256:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57834:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54264:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36307:305;36409:4;36461:25;36446:40;;;:11;:40;;;;:105;;;;36518:33;36503:48;;;:11;:48;;;;36446:105;:158;;;;36568:36;36592:11;36568:23;:36::i;:::-;36446:158;36426:178;;36307:305;;;:::o;39420:100::-;39474:13;39507:5;39500:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39420:100;:::o;40923:204::-;40991:7;41016:16;41024:7;41016;:16::i;:::-;41011:64;;41041:34;;;;;;;;;;;;;;41011:64;41095:15;:24;41111:7;41095:24;;;;;;;;;;;;;;;;;;;;;41088:31;;40923:204;;;:::o;40486:371::-;40559:13;40575:24;40591:7;40575:15;:24::i;:::-;40559:40;;40620:5;40614:11;;:2;:11;;;40610:48;;;40634:24;;;;;;;;;;;;;;40610:48;40691:5;40675:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;40701:37;40718:5;40725:12;:10;:12::i;:::-;40701:16;:37::i;:::-;40700:38;40675:63;40671:138;;;40762:35;;;;;;;;;;;;;;40671:138;40821:28;40830:2;40834:7;40843:5;40821:8;:28::i;:::-;40548:309;40486:371;;:::o;35556:303::-;35600:7;35825:15;:13;:15::i;:::-;35810:12;;35794:13;;:28;:46;35787:53;;35556:303;:::o;58116:306::-;13236:13;:11;:13::i;:::-;58201:14:::1;58218:13;:11;:13::i;:::-;58201:30;;58261:1;58250:8;:12;58242:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;58341:9;;58329:8;58320:6;:17;;;;:::i;:::-;:30;;58312:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58385:29;58395:8;58405;58385:9;:29::i;:::-;58190:232;58116:306:::0;;:::o;41788:170::-;41922:28;41932:4;41938:2;41942:7;41922:9;:28::i;:::-;41788:170;;;:::o;54406:36::-;;;;:::o;54335:25::-;;;;:::o;54298:30::-;;;;;;;;;;;;;:::o;56284:288::-;13236:13;:11;:13::i;:::-;56349:14:::1;56366:13;:11;:13::i;:::-;56349:30;;56409:1;56398:8;:12;56390:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;56489:9;;56477:8;56468:6;:17;;;;:::i;:::-;:30;;56460:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56533:31;56543:10;56555:8;56533:9;:31::i;:::-;56338:234;56284:288:::0;:::o;58589:147::-;13236:13;:11;:13::i;:::-;58638:7:::1;58659;:5;:7::i;:::-;58651:21;;58680;58651:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58637:69;;;58725:2;58717:11;;;::::0;::::1;;58626:110;58589:147::o:0;42029:185::-;42167:39;42184:4;42190:2;42194:7;42167:39;;;;;;;;;;;;:16;:39::i;:::-;42029:185;;;:::o;58004:104::-;13236:13;:11;:13::i;:::-;58089:11:::1;58079:7;:21;;;;;;;;;;;;:::i;:::-;;58004:104:::0;:::o;39228:125::-;39292:7;39319:21;39332:7;39319:12;:21::i;:::-;:26;;;39312:33;;39228:125;;;:::o;54192:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57365:94::-;13236:13;:11;:13::i;:::-;57444:7:::1;57432:9;:19;;;;57365:94:::0;:::o;36676:206::-;36740:7;36781:1;36764:19;;:5;:19;;;36760:60;;;36792:28;;;;;;;;;;;;;;36760:60;36846:12;:19;36859:5;36846:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;36838:36;;36831:43;;36676:206;;;:::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;57467:100::-;13236:13;:11;:13::i;:::-;57552:7:::1;57537:12;:22;;;;57467:100:::0;:::o;57575:104::-;13236:13;:11;:13::i;:::-;57660:11:::1;57647:10;:24;;;;57575:104:::0;:::o;54449:37::-;;;;:::o;13350:87::-;13396:7;13423:6;;;;;;;;;;;13416:13;;13350:87;:::o;39589:104::-;39645:13;39678:7;39671:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39589:104;:::o;55596:680::-;55664:10;;;;;;;;;;;55656:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;55721:14;55738:13;:11;:13::i;:::-;55721:30;;55781:1;55770:8;:12;55762:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;55861:9;;55849:8;55840:6;:17;;;;:::i;:::-;:30;;55832:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;55925:7;:5;:7::i;:::-;55911:21;;:10;:21;;;55907:118;;55983:8;55970:10;;:21;;;;:::i;:::-;55957:9;:34;;55949:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;55907:118;56050:4;56041:6;:13;56037:232;;;56071:35;56081:10;56104:1;56093:8;:12;;;;:::i;:::-;56071:9;:35::i;:::-;56037:232;;;56137:4;56128:6;:13;56124:145;;;56158:35;56168:10;56191:1;56180:8;:12;;;;:::i;:::-;56158:9;:35::i;:::-;56124:145;;;56226:31;56236:10;56248:8;56226:9;:31::i;:::-;56124:145;56037:232;55645:631;55596:680;:::o;41199:287::-;41310:12;:10;:12::i;:::-;41298:24;;:8;:24;;;41294:54;;;41331:17;;;;;;;;;;;;;;41294:54;41406:8;41361:18;:32;41380:12;:10;:12::i;:::-;41361:32;;;;;;;;;;;;;;;:42;41394:8;41361:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41459:8;41430:48;;41445:12;:10;:12::i;:::-;41430:48;;;41469:8;41430:48;;;;;;:::i;:::-;;;;;;;;41199:287;;:::o;42285:369::-;42452:28;42462:4;42468:2;42472:7;42452:9;:28::i;:::-;42495:15;:2;:13;;;:15::i;:::-;:76;;;;;42515:56;42546:4;42552:2;42556:7;42565:5;42515:30;:56::i;:::-;42514:57;42495:76;42491:156;;;42595:40;;;;;;;;;;;;;;42491:156;42285:369;;;;:::o;54493:31::-;;;;:::o;54220:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56713:644::-;56831:13;56884:16;56892:7;56884;:16::i;:::-;56862:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;56988:28;57019:10;:8;:10::i;:::-;56988:41;;57093:1;57068:14;57062:28;:32;:287;;;;;;;;;;;;;;;;;57186:14;57227:18;:7;:16;:18::i;:::-;57272:13;57143:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57062:287;57042:307;;;56713:644;;;:::o;54744:824::-;54875:7;;;;;;;;;;;54867:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;54933:14;54950:13;:11;:13::i;:::-;54933:30;;54993:1;54982:8;:12;54974:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;55072:9;;55060:8;55051:6;:17;;;;:::i;:::-;:30;;55043:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;55173:12;;55161:8;55137:21;55147:10;55137:9;:21::i;:::-;:32;;;;:::i;:::-;:48;;55115:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;55296:8;55282:11;;:22;;;;:::i;:::-;55269:9;:35;;55261:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;55337:12;55379:10;55362:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;55352:39;;;;;;55337:54;;55424:50;55443:12;;55424:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55457:10;;55469:4;55424:18;:50::i;:::-;55402:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;55529:31;55539:10;55551:8;55529:9;:31::i;:::-;54856:712;;54744:824;;;:::o;54367:32::-;;;;:::o;58430:151::-;13236:13;:11;:13::i;:::-;58556:17:::1;58540:13;:33;;;;;;;;;;;;:::i;:::-;;58430:151:::0;:::o;41557:164::-;41654:4;41678:18;:25;41697:5;41678:25;;;;;;;;;;;;;;;:35;41704:8;41678:35;;;;;;;;;;;;;;;;;;;;;;;;;41671:42;;41557:164;;;;:::o;57687:139::-;13236:13;:11;:13::i;:::-;57775:8:::1;57765:7;;:18;;;;;;;;;;;;;;;;;;57807:11;57794:10;;:24;;;;;;;;;;;;;;;;;;57687:139:::0;;:::o;14256:201::-;13236:13;:11;:13::i;:::-;14365:1:::1;14345:22;;:8;:22;;;;14337:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14421:28;14440:8;14421:18;:28::i;:::-;14256:201:::0;:::o;57834:162::-;13236:13;:11;:13::i;:::-;57939:14:::1;57925:11;:28;;;;57977:11;57964:10;:24;;;;57834:162:::0;;:::o;54264:27::-;;;;;;;;;;;;;:::o;16048:326::-;16108:4;16365:1;16343:7;:19;;;:23;16336:30;;16048:326;;;:::o;26204:157::-;26289:4;26328:25;26313:40;;;:11;:40;;;;26306:47;;26204:157;;;:::o;42909:174::-;42966:4;43009:7;42990:15;:13;:15::i;:::-;:26;;:53;;;;;43030:13;;43020:7;:23;42990:53;:85;;;;;43048:11;:20;43060:7;43048:20;;;;;;;;;;;:27;;;;;;;;;;;;43047:28;42990:85;42983:92;;42909:174;;;:::o;11901:98::-;11954:7;11981:10;11974:17;;11901:98;:::o;51066:196::-;51208:2;51181:15;:24;51197:7;51181:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51246:7;51242:2;51226:28;;51235:5;51226:28;;;;;;;;;;;;51066:196;;;:::o;35330:92::-;35386:7;35413:1;35406:8;;35330:92;:::o;13515:132::-;13590:12;:10;:12::i;:::-;13579:23;;:7;:5;:7::i;:::-;:23;;;13571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13515:132::o;43091:104::-;43160:27;43170:2;43174:8;43160:27;;;;;;;;;;;;:9;:27::i;:::-;43091:104;;:::o;46009:2130::-;46124:35;46162:21;46175:7;46162:12;:21::i;:::-;46124:59;;46222:4;46200:26;;:13;:18;;;:26;;;46196:67;;46235:28;;;;;;;;;;;;;;46196:67;46276:22;46318:4;46302:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;46339:36;46356:4;46362:12;:10;:12::i;:::-;46339:16;:36::i;:::-;46302:73;:126;;;;46416:12;:10;:12::i;:::-;46392:36;;:20;46404:7;46392:11;:20::i;:::-;:36;;;46302:126;46276:153;;46447:17;46442:66;;46473:35;;;;;;;;;;;;;;46442:66;46537:1;46523:16;;:2;:16;;;46519:52;;;46548:23;;;;;;;;;;;;;;46519:52;46584:43;46606:4;46612:2;46616:7;46625:1;46584:21;:43::i;:::-;46692:35;46709:1;46713:7;46722:4;46692:8;:35::i;:::-;47053:1;47023:12;:18;47036:4;47023:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47097:1;47069:12;:16;47082:2;47069:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47115:31;47149:11;:20;47161:7;47149:20;;;;;;;;;;;47115:54;;47200:2;47184:8;:13;;;:18;;;;;;;;;;;;;;;;;;47250:15;47217:8;:23;;;:49;;;;;;;;;;;;;;;;;;47518:19;47550:1;47540:7;:11;47518:33;;47566:31;47600:11;:24;47612:11;47600:24;;;;;;;;;;;47566:58;;47668:1;47643:27;;:8;:13;;;;;;;;;;;;:27;;;47639:384;;;47853:13;;47838:11;:28;47834:174;;47907:4;47891:8;:13;;;:20;;;;;;;;;;;;;;;;;;47960:13;:28;;;47934:8;:23;;;:54;;;;;;;;;;;;;;;;;;47834:174;47639:384;46998:1036;;;48070:7;48066:2;48051:27;;48060:4;48051:27;;;;;;;;;;;;48089:42;48110:4;48116:2;48120:7;48129:1;48089:20;:42::i;:::-;46113:2026;;46009:2130;;;:::o;38057:1109::-;38119:21;;:::i;:::-;38153:12;38168:7;38153:22;;38236:4;38217:15;:13;:15::i;:::-;:23;;:47;;;;;38251:13;;38244:4;:20;38217:47;38213:886;;;38285:31;38319:11;:17;38331:4;38319:17;;;;;;;;;;;38285:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38360:9;:16;;;38355:729;;38431:1;38405:28;;:9;:14;;;:28;;;38401:101;;38469:9;38462:16;;;;;;38401:101;38804:261;38811:4;38804:261;;;38844:6;;;;;;;;38889:11;:17;38901:4;38889:17;;;;;;;;;;;38877:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38963:1;38937:28;;:9;:14;;;:28;;;38933:109;;39005:9;38998:16;;;;;;38933:109;38804:261;;;38355:729;38266:833;38213:886;39127:31;;;;;;;;;;;;;;38057:1109;;;;:::o;14617:191::-;14691:16;14710:6;;;;;;;;;;;14691:25;;14736:8;14727:6;;:17;;;;;;;;;;;;;;;;;;14791:8;14760:40;;14781:8;14760:40;;;;;;;;;;;;14680:128;14617:191;:::o;51754:667::-;51917:4;51954:2;51938:36;;;51975:12;:10;:12::i;:::-;51989:4;51995:7;52004:5;51938:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51934:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52189:1;52172:6;:13;:18;52168:235;;;52218:40;;;;;;;;;;;;;;52168:235;52361:6;52355:13;52346:6;52342:2;52338:15;52331:38;51934:480;52067:45;;;52057:55;;;:6;:55;;;;52050:62;;;51754:667;;;;;;:::o;56597:108::-;56657:13;56690:7;56683:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56597:108;:::o;9155:723::-;9211:13;9441:1;9432:5;:10;9428:53;;;9459:10;;;;;;;;;;;;;;;;;;;;;9428:53;9491:12;9506:5;9491:20;;9522:14;9547:78;9562:1;9554:4;:9;9547:78;;9580:8;;;;;:::i;:::-;;;;9611:2;9603:10;;;;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:39;;9685:154;9701:1;9692:5;:10;9685:154;;9729:1;9719:11;;;;;:::i;:::-;;;9796:2;9788:5;:10;;;;:::i;:::-;9775:2;:24;;;;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9825:2;9816:11;;;;;:::i;:::-;;;9685:154;;;9863:6;9849:21;;;;;9155:723;;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;43558:163::-;43681:32;43687:2;43691:8;43701:5;43708:4;43681:5;:32::i;:::-;43558:163;;;:::o;53069:159::-;;;;;:::o;53887:158::-;;;;;:::o;2086:296::-;2169:7;2189:20;2212:4;2189:27;;2232:9;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;;2300:9;:33::i;:::-;2285:48;;2265:3;;;;;:::i;:::-;;;;2227:118;;;;2362:12;2355:19;;;2086:296;;;;:::o;43980:1775::-;44119:20;44142:13;;44119:36;;44184:1;44170:16;;:2;:16;;;44166:48;;;44195:19;;;;;;;;;;;;;;44166:48;44241:1;44229:8;:13;44225:44;;;44251:18;;;;;;;;;;;;;;44225:44;44282:61;44312:1;44316:2;44320:12;44334:8;44282:21;:61::i;:::-;44655:8;44620:12;:16;44633:2;44620:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44719:8;44679:12;:16;44692:2;44679:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44778:2;44745:11;:25;44757:12;44745:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44845:15;44795:11;:25;44807:12;44795:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44878:20;44901:12;44878:35;;44928:11;44957:8;44942:12;:23;44928:37;;44986:4;:23;;;;;44994:15;:2;:13;;;:15::i;:::-;44986:23;44982:641;;;45030:314;45086:12;45082:2;45061:38;;45078:1;45061:38;;;;;;;;;;;;45127:69;45166:1;45170:2;45174:14;;;;;;45190:5;45127:30;:69::i;:::-;45122:174;;45232:40;;;;;;;;;;;;;;45122:174;45339:3;45323:12;:19;;45030:314;;45425:12;45408:13;;:29;45404:43;;45439:8;;;45404:43;44982:641;;;45488:120;45544:14;;;;;;45540:2;45519:40;;45536:1;45519:40;;;;;;;;;;;;45603:3;45587:12;:19;;45488:120;;44982:641;45653:12;45637:13;:28;;;;44595:1082;;45687:60;45716:1;45720:2;45724:12;45738:8;45687:20;:60::i;:::-;44108:1647;43980:1775;;;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8414:20;8429:1;8432;8414:14;:20::i;:::-;8383:51;;;8391:20;8406:1;8409;8391:14;:20::i;:::-;8383:51;8376:58;;8293:149;;;;:::o;8450:268::-;8518:13;8625:1;8619:4;8612:15;8654:1;8648:4;8641:15;8695:4;8689;8679:21;8670:30;;8450:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:462::-;6418:6;6426;6475:2;6463:9;6454:7;6450:23;6446:32;6443:119;;;6481:79;;:::i;:::-;6443:119;6601:1;6626:50;6668:7;6659:6;6648:9;6644:22;6626:50;:::i;:::-;6616:60;;6572:114;6725:2;6751:50;6793:7;6784:6;6773:9;6769:22;6751:50;:::i;:::-;6741:60;;6696:115;6356:462;;;;;:::o;6824:329::-;6883:6;6932:2;6920:9;6911:7;6907:23;6903:32;6900:119;;;6938:79;;:::i;:::-;6900:119;7058:1;7083:53;7128:7;7119:6;7108:9;7104:22;7083:53;:::i;:::-;7073:63;;7029:117;6824:329;;;;:::o;7159:327::-;7217:6;7266:2;7254:9;7245:7;7241:23;7237:32;7234:119;;;7272:79;;:::i;:::-;7234:119;7392:1;7417:52;7461:7;7452:6;7441:9;7437:22;7417:52;:::i;:::-;7407:62;;7363:116;7159:327;;;;:::o;7492:349::-;7561:6;7610:2;7598:9;7589:7;7585:23;7581:32;7578:119;;;7616:79;;:::i;:::-;7578:119;7736:1;7761:63;7816:7;7807:6;7796:9;7792:22;7761:63;:::i;:::-;7751:73;;7707:127;7492:349;;;;:::o;7847:509::-;7916:6;7965:2;7953:9;7944:7;7940:23;7936:32;7933:119;;;7971:79;;:::i;:::-;7933:119;8119:1;8108:9;8104:17;8091:31;8149:18;8141:6;8138:30;8135:117;;;8171:79;;:::i;:::-;8135:117;8276:63;8331:7;8322:6;8311:9;8307:22;8276:63;:::i;:::-;8266:73;;8062:287;7847:509;;;;:::o;8362:329::-;8421:6;8470:2;8458:9;8449:7;8445:23;8441:32;8438:119;;;8476:79;;:::i;:::-;8438:119;8596:1;8621:53;8666:7;8657:6;8646:9;8642:22;8621:53;:::i;:::-;8611:63;;8567:117;8362:329;;;;:::o;8697:474::-;8765:6;8773;8822:2;8810:9;8801:7;8797:23;8793:32;8790:119;;;8828:79;;:::i;:::-;8790:119;8948:1;8973:53;9018:7;9009:6;8998:9;8994:22;8973:53;:::i;:::-;8963:63;;8919:117;9075:2;9101:53;9146:7;9137:6;9126:9;9122:22;9101:53;:::i;:::-;9091:63;;9046:118;8697:474;;;;;:::o;9177:704::-;9272:6;9280;9288;9337:2;9325:9;9316:7;9312:23;9308:32;9305:119;;;9343:79;;:::i;:::-;9305:119;9463:1;9488:53;9533:7;9524:6;9513:9;9509:22;9488:53;:::i;:::-;9478:63;;9434:117;9618:2;9607:9;9603:18;9590:32;9649:18;9641:6;9638:30;9635:117;;;9671:79;;:::i;:::-;9635:117;9784:80;9856:7;9847:6;9836:9;9832:22;9784:80;:::i;:::-;9766:98;;;;9561:313;9177:704;;;;;:::o;9887:474::-;9955:6;9963;10012:2;10000:9;9991:7;9987:23;9983:32;9980:119;;;10018:79;;:::i;:::-;9980:119;10138:1;10163:53;10208:7;10199:6;10188:9;10184:22;10163:53;:::i;:::-;10153:63;;10109:117;10265:2;10291:53;10336:7;10327:6;10316:9;10312:22;10291:53;:::i;:::-;10281:63;;10236:118;9887:474;;;;;:::o;10367:118::-;10454:24;10472:5;10454:24;:::i;:::-;10449:3;10442:37;10367:118;;:::o;10491:157::-;10596:45;10616:24;10634:5;10616:24;:::i;:::-;10596:45;:::i;:::-;10591:3;10584:58;10491:157;;:::o;10654:109::-;10735:21;10750:5;10735:21;:::i;:::-;10730:3;10723:34;10654:109;;:::o;10769:118::-;10856:24;10874:5;10856:24;:::i;:::-;10851:3;10844:37;10769:118;;:::o;10893:360::-;10979:3;11007:38;11039:5;11007:38;:::i;:::-;11061:70;11124:6;11119:3;11061:70;:::i;:::-;11054:77;;11140:52;11185:6;11180:3;11173:4;11166:5;11162:16;11140:52;:::i;:::-;11217:29;11239:6;11217:29;:::i;:::-;11212:3;11208:39;11201:46;;10983:270;10893:360;;;;:::o;11259:364::-;11347:3;11375:39;11408:5;11375:39;:::i;:::-;11430:71;11494:6;11489:3;11430:71;:::i;:::-;11423:78;;11510:52;11555:6;11550:3;11543:4;11536:5;11532:16;11510:52;:::i;:::-;11587:29;11609:6;11587:29;:::i;:::-;11582:3;11578:39;11571:46;;11351:272;11259:364;;;;:::o;11629:377::-;11735:3;11763:39;11796:5;11763:39;:::i;:::-;11818:89;11900:6;11895:3;11818:89;:::i;:::-;11811:96;;11916:52;11961:6;11956:3;11949:4;11942:5;11938:16;11916:52;:::i;:::-;11993:6;11988:3;11984:16;11977:23;;11739:267;11629:377;;;;:::o;12036:845::-;12139:3;12176:5;12170:12;12205:36;12231:9;12205:36;:::i;:::-;12257:89;12339:6;12334:3;12257:89;:::i;:::-;12250:96;;12377:1;12366:9;12362:17;12393:1;12388:137;;;;12539:1;12534:341;;;;12355:520;;12388:137;12472:4;12468:9;12457;12453:25;12448:3;12441:38;12508:6;12503:3;12499:16;12492:23;;12388:137;;12534:341;12601:38;12633:5;12601:38;:::i;:::-;12661:1;12675:154;12689:6;12686:1;12683:13;12675:154;;;12763:7;12757:14;12753:1;12748:3;12744:11;12737:35;12813:1;12804:7;12800:15;12789:26;;12711:4;12708:1;12704:12;12699:17;;12675:154;;;12858:6;12853:3;12849:16;12842:23;;12541:334;;12355:520;;12143:738;;12036:845;;;;:::o;12887:366::-;13029:3;13050:67;13114:2;13109:3;13050:67;:::i;:::-;13043:74;;13126:93;13215:3;13126:93;:::i;:::-;13244:2;13239:3;13235:12;13228:19;;12887:366;;;:::o;13259:::-;13401:3;13422:67;13486:2;13481:3;13422:67;:::i;:::-;13415:74;;13498:93;13587:3;13498:93;:::i;:::-;13616:2;13611:3;13607:12;13600:19;;13259:366;;;:::o;13631:::-;13773:3;13794:67;13858:2;13853:3;13794:67;:::i;:::-;13787:74;;13870:93;13959:3;13870:93;:::i;:::-;13988:2;13983:3;13979:12;13972:19;;13631:366;;;:::o;14003:::-;14145:3;14166:67;14230:2;14225:3;14166:67;:::i;:::-;14159:74;;14242:93;14331:3;14242:93;:::i;:::-;14360:2;14355:3;14351:12;14344:19;;14003:366;;;:::o;14375:::-;14517:3;14538:67;14602:2;14597:3;14538:67;:::i;:::-;14531:74;;14614:93;14703:3;14614:93;:::i;:::-;14732:2;14727:3;14723:12;14716:19;;14375:366;;;:::o;14747:::-;14889:3;14910:67;14974:2;14969:3;14910:67;:::i;:::-;14903:74;;14986:93;15075:3;14986:93;:::i;:::-;15104:2;15099:3;15095:12;15088:19;;14747:366;;;:::o;15119:::-;15261:3;15282:67;15346:2;15341:3;15282:67;:::i;:::-;15275:74;;15358:93;15447:3;15358:93;:::i;:::-;15476:2;15471:3;15467:12;15460:19;;15119:366;;;:::o;15491:::-;15633:3;15654:67;15718:2;15713:3;15654:67;:::i;:::-;15647:74;;15730:93;15819:3;15730:93;:::i;:::-;15848:2;15843:3;15839:12;15832:19;;15491:366;;;:::o;15863:398::-;16022:3;16043:83;16124:1;16119:3;16043:83;:::i;:::-;16036:90;;16135:93;16224:3;16135:93;:::i;:::-;16253:1;16248:3;16244:11;16237:18;;15863:398;;;:::o;16267:366::-;16409:3;16430:67;16494:2;16489:3;16430:67;:::i;:::-;16423:74;;16506:93;16595:3;16506:93;:::i;:::-;16624:2;16619:3;16615:12;16608:19;;16267:366;;;:::o;16639:::-;16781:3;16802:67;16866:2;16861:3;16802:67;:::i;:::-;16795:74;;16878:93;16967:3;16878:93;:::i;:::-;16996:2;16991:3;16987:12;16980:19;;16639:366;;;:::o;17011:::-;17153:3;17174:67;17238:2;17233:3;17174:67;:::i;:::-;17167:74;;17250:93;17339:3;17250:93;:::i;:::-;17368:2;17363:3;17359:12;17352:19;;17011:366;;;:::o;17383:::-;17525:3;17546:67;17610:2;17605:3;17546:67;:::i;:::-;17539:74;;17622:93;17711:3;17622:93;:::i;:::-;17740:2;17735:3;17731:12;17724:19;;17383:366;;;:::o;17755:118::-;17842:24;17860:5;17842:24;:::i;:::-;17837:3;17830:37;17755:118;;:::o;17879:256::-;17991:3;18006:75;18077:3;18068:6;18006:75;:::i;:::-;18106:2;18101:3;18097:12;18090:19;;18126:3;18119:10;;17879:256;;;;:::o;18141:589::-;18366:3;18388:95;18479:3;18470:6;18388:95;:::i;:::-;18381:102;;18500:95;18591:3;18582:6;18500:95;:::i;:::-;18493:102;;18612:92;18700:3;18691:6;18612:92;:::i;:::-;18605:99;;18721:3;18714:10;;18141:589;;;;;;:::o;18736:379::-;18920:3;18942:147;19085:3;18942:147;:::i;:::-;18935:154;;19106:3;19099:10;;18736:379;;;:::o;19121:222::-;19214:4;19252:2;19241:9;19237:18;19229:26;;19265:71;19333:1;19322:9;19318:17;19309:6;19265:71;:::i;:::-;19121:222;;;;:::o;19349:640::-;19544:4;19582:3;19571:9;19567:19;19559:27;;19596:71;19664:1;19653:9;19649:17;19640:6;19596:71;:::i;:::-;19677:72;19745:2;19734:9;19730:18;19721:6;19677:72;:::i;:::-;19759;19827:2;19816:9;19812:18;19803:6;19759:72;:::i;:::-;19878:9;19872:4;19868:20;19863:2;19852:9;19848:18;19841:48;19906:76;19977:4;19968:6;19906:76;:::i;:::-;19898:84;;19349:640;;;;;;;:::o;19995:210::-;20082:4;20120:2;20109:9;20105:18;20097:26;;20133:65;20195:1;20184:9;20180:17;20171:6;20133:65;:::i;:::-;19995:210;;;;:::o;20211:222::-;20304:4;20342:2;20331:9;20327:18;20319:26;;20355:71;20423:1;20412:9;20408:17;20399:6;20355:71;:::i;:::-;20211:222;;;;:::o;20439:313::-;20552:4;20590:2;20579:9;20575:18;20567:26;;20639:9;20633:4;20629:20;20625:1;20614:9;20610:17;20603:47;20667:78;20740:4;20731:6;20667:78;:::i;:::-;20659:86;;20439:313;;;;:::o;20758:419::-;20924:4;20962:2;20951:9;20947:18;20939:26;;21011:9;21005:4;21001:20;20997:1;20986:9;20982:17;20975:47;21039:131;21165:4;21039:131;:::i;:::-;21031:139;;20758:419;;;:::o;21183:::-;21349:4;21387:2;21376:9;21372:18;21364:26;;21436:9;21430:4;21426:20;21422:1;21411:9;21407:17;21400:47;21464:131;21590:4;21464:131;:::i;:::-;21456:139;;21183:419;;;:::o;21608:::-;21774:4;21812:2;21801:9;21797:18;21789:26;;21861:9;21855:4;21851:20;21847:1;21836:9;21832:17;21825:47;21889:131;22015:4;21889:131;:::i;:::-;21881:139;;21608:419;;;:::o;22033:::-;22199:4;22237:2;22226:9;22222:18;22214:26;;22286:9;22280:4;22276:20;22272:1;22261:9;22257:17;22250:47;22314:131;22440:4;22314:131;:::i;:::-;22306:139;;22033:419;;;:::o;22458:::-;22624:4;22662:2;22651:9;22647:18;22639:26;;22711:9;22705:4;22701:20;22697:1;22686:9;22682:17;22675:47;22739:131;22865:4;22739:131;:::i;:::-;22731:139;;22458:419;;;:::o;22883:::-;23049:4;23087:2;23076:9;23072:18;23064:26;;23136:9;23130:4;23126:20;23122:1;23111:9;23107:17;23100:47;23164:131;23290:4;23164:131;:::i;:::-;23156:139;;22883:419;;;:::o;23308:::-;23474:4;23512:2;23501:9;23497:18;23489:26;;23561:9;23555:4;23551:20;23547:1;23536:9;23532:17;23525:47;23589:131;23715:4;23589:131;:::i;:::-;23581:139;;23308:419;;;:::o;23733:::-;23899:4;23937:2;23926:9;23922:18;23914:26;;23986:9;23980:4;23976:20;23972:1;23961:9;23957:17;23950:47;24014:131;24140:4;24014:131;:::i;:::-;24006:139;;23733:419;;;:::o;24158:::-;24324:4;24362:2;24351:9;24347:18;24339:26;;24411:9;24405:4;24401:20;24397:1;24386:9;24382:17;24375:47;24439:131;24565:4;24439:131;:::i;:::-;24431:139;;24158:419;;;:::o;24583:::-;24749:4;24787:2;24776:9;24772:18;24764:26;;24836:9;24830:4;24826:20;24822:1;24811:9;24807:17;24800:47;24864:131;24990:4;24864:131;:::i;:::-;24856:139;;24583:419;;;:::o;25008:::-;25174:4;25212:2;25201:9;25197:18;25189:26;;25261:9;25255:4;25251:20;25247:1;25236:9;25232:17;25225:47;25289:131;25415:4;25289:131;:::i;:::-;25281:139;;25008:419;;;:::o;25433:::-;25599:4;25637:2;25626:9;25622:18;25614:26;;25686:9;25680:4;25676:20;25672:1;25661:9;25657:17;25650:47;25714:131;25840:4;25714:131;:::i;:::-;25706:139;;25433:419;;;:::o;25858:222::-;25951:4;25989:2;25978:9;25974:18;25966:26;;26002:71;26070:1;26059:9;26055:17;26046:6;26002:71;:::i;:::-;25858:222;;;;:::o;26086:129::-;26120:6;26147:20;;:::i;:::-;26137:30;;26176:33;26204:4;26196:6;26176:33;:::i;:::-;26086:129;;;:::o;26221:75::-;26254:6;26287:2;26281:9;26271:19;;26221:75;:::o;26302:307::-;26363:4;26453:18;26445:6;26442:30;26439:56;;;26475:18;;:::i;:::-;26439:56;26513:29;26535:6;26513:29;:::i;:::-;26505:37;;26597:4;26591;26587:15;26579:23;;26302:307;;;:::o;26615:308::-;26677:4;26767:18;26759:6;26756:30;26753:56;;;26789:18;;:::i;:::-;26753:56;26827:29;26849:6;26827:29;:::i;:::-;26819:37;;26911:4;26905;26901:15;26893:23;;26615:308;;;:::o;26929:141::-;26978:4;27001:3;26993:11;;27024:3;27021:1;27014:14;27058:4;27055:1;27045:18;27037:26;;26929:141;;;:::o;27076:98::-;27127:6;27161:5;27155:12;27145:22;;27076:98;;;:::o;27180:99::-;27232:6;27266:5;27260:12;27250:22;;27180:99;;;:::o;27285:168::-;27368:11;27402:6;27397:3;27390:19;27442:4;27437:3;27433:14;27418:29;;27285:168;;;;:::o;27459:147::-;27560:11;27597:3;27582:18;;27459:147;;;;:::o;27612:169::-;27696:11;27730:6;27725:3;27718:19;27770:4;27765:3;27761:14;27746:29;;27612:169;;;;:::o;27787:148::-;27889:11;27926:3;27911:18;;27787:148;;;;:::o;27941:305::-;27981:3;28000:20;28018:1;28000:20;:::i;:::-;27995:25;;28034:20;28052:1;28034:20;:::i;:::-;28029:25;;28188:1;28120:66;28116:74;28113:1;28110:81;28107:107;;;28194:18;;:::i;:::-;28107:107;28238:1;28235;28231:9;28224:16;;27941:305;;;;:::o;28252:185::-;28292:1;28309:20;28327:1;28309:20;:::i;:::-;28304:25;;28343:20;28361:1;28343:20;:::i;:::-;28338:25;;28382:1;28372:35;;28387:18;;:::i;:::-;28372:35;28429:1;28426;28422:9;28417:14;;28252:185;;;;:::o;28443:348::-;28483:7;28506:20;28524:1;28506:20;:::i;:::-;28501:25;;28540:20;28558:1;28540:20;:::i;:::-;28535:25;;28728:1;28660:66;28656:74;28653:1;28650:81;28645:1;28638:9;28631:17;28627:105;28624:131;;;28735:18;;:::i;:::-;28624:131;28783:1;28780;28776:9;28765:20;;28443:348;;;;:::o;28797:191::-;28837:4;28857:20;28875:1;28857:20;:::i;:::-;28852:25;;28891:20;28909:1;28891:20;:::i;:::-;28886:25;;28930:1;28927;28924:8;28921:34;;;28935:18;;:::i;:::-;28921:34;28980:1;28977;28973:9;28965:17;;28797:191;;;;:::o;28994:96::-;29031:7;29060:24;29078:5;29060:24;:::i;:::-;29049:35;;28994:96;;;:::o;29096:90::-;29130:7;29173:5;29166:13;29159:21;29148:32;;29096:90;;;:::o;29192:77::-;29229:7;29258:5;29247:16;;29192:77;;;:::o;29275:149::-;29311:7;29351:66;29344:5;29340:78;29329:89;;29275:149;;;:::o;29430:126::-;29467:7;29507:42;29500:5;29496:54;29485:65;;29430:126;;;:::o;29562:77::-;29599:7;29628:5;29617:16;;29562:77;;;:::o;29645:154::-;29729:6;29724:3;29719;29706:30;29791:1;29782:6;29777:3;29773:16;29766:27;29645:154;;;:::o;29805:307::-;29873:1;29883:113;29897:6;29894:1;29891:13;29883:113;;;29982:1;29977:3;29973:11;29967:18;29963:1;29958:3;29954:11;29947:39;29919:2;29916:1;29912:10;29907:15;;29883:113;;;30014:6;30011:1;30008:13;30005:101;;;30094:1;30085:6;30080:3;30076:16;30069:27;30005:101;29854:258;29805:307;;;:::o;30118:320::-;30162:6;30199:1;30193:4;30189:12;30179:22;;30246:1;30240:4;30236:12;30267:18;30257:81;;30323:4;30315:6;30311:17;30301:27;;30257:81;30385:2;30377:6;30374:14;30354:18;30351:38;30348:84;;;30404:18;;:::i;:::-;30348:84;30169:269;30118:320;;;:::o;30444:281::-;30527:27;30549:4;30527:27;:::i;:::-;30519:6;30515:40;30657:6;30645:10;30642:22;30621:18;30609:10;30606:34;30603:62;30600:88;;;30668:18;;:::i;:::-;30600:88;30708:10;30704:2;30697:22;30487:238;30444:281;;:::o;30731:233::-;30770:3;30793:24;30811:5;30793:24;:::i;:::-;30784:33;;30839:66;30832:5;30829:77;30826:103;;;30909:18;;:::i;:::-;30826:103;30956:1;30949:5;30945:13;30938:20;;30731:233;;;:::o;30970:100::-;31009:7;31038:26;31058:5;31038:26;:::i;:::-;31027:37;;30970:100;;;:::o;31076:94::-;31115:7;31144:20;31158:5;31144:20;:::i;:::-;31133:31;;31076:94;;;:::o;31176:176::-;31208:1;31225:20;31243:1;31225:20;:::i;:::-;31220:25;;31259:20;31277:1;31259:20;:::i;:::-;31254:25;;31298:1;31288:35;;31303:18;;:::i;:::-;31288:35;31344:1;31341;31337:9;31332:14;;31176:176;;;;:::o;31358:180::-;31406:77;31403:1;31396:88;31503:4;31500:1;31493:15;31527:4;31524:1;31517:15;31544:180;31592:77;31589:1;31582:88;31689:4;31686:1;31679:15;31713:4;31710:1;31703:15;31730:180;31778:77;31775:1;31768:88;31875:4;31872:1;31865:15;31899:4;31896:1;31889:15;31916:180;31964:77;31961:1;31954:88;32061:4;32058:1;32051:15;32085:4;32082:1;32075:15;32102:180;32150:77;32147:1;32140:88;32247:4;32244:1;32237:15;32271:4;32268:1;32261:15;32288:117;32397:1;32394;32387:12;32411:117;32520:1;32517;32510:12;32534:117;32643:1;32640;32633:12;32657:117;32766:1;32763;32756:12;32780:117;32889:1;32886;32879:12;32903:117;33012:1;33009;33002:12;33026:102;33067:6;33118:2;33114:7;33109:2;33102:5;33098:14;33094:28;33084:38;;33026:102;;;:::o;33134:94::-;33167:8;33215:5;33211:2;33207:14;33186:35;;33134:94;;;:::o;33234:167::-;33374:19;33370:1;33362:6;33358:14;33351:43;33234:167;:::o;33407:224::-;33547:34;33543:1;33535:6;33531:14;33524:58;33616:7;33611:2;33603:6;33599:15;33592:32;33407:224;:::o;33637:164::-;33777:16;33773:1;33765:6;33761:14;33754:40;33637:164;:::o;33807:225::-;33947:34;33943:1;33935:6;33931:14;33924:58;34016:8;34011:2;34003:6;33999:15;33992:33;33807:225;:::o;34038:220::-;34178:34;34174:1;34166:6;34162:14;34155:58;34247:3;34242:2;34234:6;34230:15;34223:28;34038:220;:::o;34264:182::-;34404:34;34400:1;34392:6;34388:14;34381:58;34264:182;:::o;34452:234::-;34592:34;34588:1;34580:6;34576:14;34569:58;34661:17;34656:2;34648:6;34644:15;34637:42;34452:234;:::o;34692:221::-;34832:34;34828:1;34820:6;34816:14;34809:58;34901:4;34896:2;34888:6;34884:15;34877:29;34692:221;:::o;34919:114::-;;:::o;35039:221::-;35179:34;35175:1;35167:6;35163:14;35156:58;35248:4;35243:2;35235:6;35231:15;35224:29;35039:221;:::o;35266:168::-;35406:20;35402:1;35394:6;35390:14;35383:44;35266:168;:::o;35440:169::-;35580:21;35576:1;35568:6;35564:14;35557:45;35440:169;:::o;35615:181::-;35755:33;35751:1;35743:6;35739:14;35732:57;35615:181;:::o;35802:122::-;35875:24;35893:5;35875:24;:::i;:::-;35868:5;35865:35;35855:63;;35914:1;35911;35904:12;35855:63;35802:122;:::o;35930:116::-;36000:21;36015:5;36000:21;:::i;:::-;35993:5;35990:32;35980:60;;36036:1;36033;36026:12;35980:60;35930:116;:::o;36052:122::-;36125:24;36143:5;36125:24;:::i;:::-;36118:5;36115:35;36105:63;;36164:1;36161;36154:12;36105:63;36052:122;:::o;36180:120::-;36252:23;36269:5;36252:23;:::i;:::-;36245:5;36242:34;36232:62;;36290:1;36287;36280:12;36232:62;36180:120;:::o;36306:122::-;36379:24;36397:5;36379:24;:::i;:::-;36372:5;36369:35;36359:63;;36418:1;36415;36408:12;36359:63;36306:122;:::o
Swarm Source
ipfs://6be40129039c643c14796447b6167d10314f4050208c284ba6016d82dddee0de
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 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.