Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 39 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 16634545 | 1122 days ago | IN | 0 ETH | 0.00144722 | ||||
| Safe Transfer Fr... | 16605614 | 1126 days ago | IN | 0 ETH | 0.00074263 | ||||
| Safe Transfer Fr... | 16605612 | 1126 days ago | IN | 0 ETH | 0.00078044 | ||||
| Safe Transfer Fr... | 16605609 | 1126 days ago | IN | 0 ETH | 0.00147928 | ||||
| Set Not Revealed... | 16478387 | 1144 days ago | IN | 0 ETH | 0.00111751 | ||||
| Set Not Revealed... | 16430352 | 1150 days ago | IN | 0 ETH | 0.00226909 | ||||
| Set Not Revealed... | 16425221 | 1151 days ago | IN | 0 ETH | 0.00060671 | ||||
| Gift | 16348856 | 1162 days ago | IN | 0 ETH | 0.00163587 | ||||
| Gift | 16348236 | 1162 days ago | IN | 0 ETH | 0.00181706 | ||||
| Gift | 16348233 | 1162 days ago | IN | 0 ETH | 0.00177013 | ||||
| Gift | 16348230 | 1162 days ago | IN | 0 ETH | 0.00209704 | ||||
| Gift | 16348142 | 1162 days ago | IN | 0 ETH | 0.00115388 | ||||
| Togglepublic Sal... | 16347922 | 1162 days ago | IN | 0 ETH | 0.00033238 | ||||
| Gift | 16347918 | 1162 days ago | IN | 0 ETH | 0.00119838 | ||||
| Withdraw | 16347916 | 1162 days ago | IN | 0 ETH | 0.00053022 | ||||
| Gift | 16347911 | 1162 days ago | IN | 0 ETH | 0.00121009 | ||||
| Gift | 16347900 | 1162 days ago | IN | 0 ETH | 0.0011214 | ||||
| Set Approval For... | 16346652 | 1162 days ago | IN | 0 ETH | 0.00070725 | ||||
| Set Cost | 16344757 | 1162 days ago | IN | 0 ETH | 0.00049779 | ||||
| Mint | 16343087 | 1163 days ago | IN | 0.02 ETH | 0.00165115 | ||||
| Togglepublic Sal... | 16337658 | 1163 days ago | IN | 0 ETH | 0.00085148 | ||||
| Togglepre Sale | 16337656 | 1163 days ago | IN | 0 ETH | 0.00043772 | ||||
| Set Cost | 16337643 | 1163 days ago | IN | 0 ETH | 0.00051626 | ||||
| Set Cost | 16337635 | 1163 days ago | IN | 0 ETH | 0.000614 | ||||
| Withdraw | 16335642 | 1164 days ago | IN | 0 ETH | 0.00055538 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SealTeam6
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0
//Developer : MCPDC , Twitter :@Manuel_MCPDC , Telegram: @MCPDC
pragma solidity >=0.7.0 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract SealTeam6 is ERC721A, Ownable, ReentrancyGuard {
using Strings for uint256;
string public baseURI;
string public baseExtension = ".json";
string public notRevealedUri;
uint256 public cost = 0.06 ether;
uint256 public wlcost = 0.05 ether;
uint256 public maxSupply = 3000;
uint256 public MaxperWallet = 3;
uint256 public MaxperWalletWl = 3;
bool public paused = false;
bool public revealed = false;
bool public preSale = true;
bool public publicSale = false;
bytes32 public merkleRoot;
constructor(
) ERC721A("Seal Team 6", "ST6") {
setNotRevealedURI("ipfs://bafkreih5ak2yydw6ndx2ivevuueshyyz4e3o32wkg2oecg3b3klmqrgoiq");
}
// internal
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function _startTokenId() internal view virtual override returns (uint256) {
return 1;
}
// public
function mint(uint256 tokens) public payable nonReentrant {
require(!paused, "ST6: oops contract is paused");
require(publicSale, "ST6: Sale Hasn't started yet");
uint256 supply = totalSupply();
require(tokens > 0, "ST6: need to mint at least 1 NFT");
require(tokens <= MaxperWallet, "ST6: max mint amount per tx exceeded");
require(supply + tokens <= maxSupply, "ST6: We Soldout");
require(_numberMinted(_msgSender()) + tokens <= MaxperWallet, "ST6: Max NFT Per Wallet exceeded");
require(msg.value >= cost * tokens, "ST6: insufficient funds");
_safeMint(_msgSender(), tokens);
}
/// @dev presale mint for whitelisted
function presalemint(uint256 tokens, bytes32[] calldata merkleProof) public payable nonReentrant {
require(!paused, "ST6: oops contract is paused");
require(preSale, "ST6: Presale Hasn't started yet");
require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "ST6: You are not Whitelisted");
uint256 supply = totalSupply();
require(_numberMinted(_msgSender()) + tokens <= MaxperWalletWl, "ST6: Max NFT Per Wallet exceeded");
require(tokens > 0, "ST6: need to mint at least 1 NFT");
require(tokens <= MaxperWalletWl, "ST6: max mint per Tx exceeded");
require(supply + tokens <= maxSupply, "ST6: Whitelist MaxSupply exceeded");
require(msg.value >= wlcost * tokens, "ST6: insufficient funds");
_safeMint(_msgSender(), tokens);
}
/// @dev use it for giveaway and mint for yourself
function gift(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
require(_mintAmount > 0, "need to mint at least 1 NFT");
uint256 supply = totalSupply();
require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
_safeMint(destination, _mintAmount);
}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721AMetadata: URI query for nonexistent token"
);
if(revealed == false) {
return notRevealedUri;
}
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
: "";
}
function numberMinted(address owner) public view returns (uint256) {
return _numberMinted(owner);
}
//only owner
function reveal(bool _state) public onlyOwner {
revealed = _state;
}
function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
merkleRoot = _merkleRoot;
}
function setMaxPerWallet(uint256 _limit) public onlyOwner {
MaxperWallet = _limit;
}
function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
MaxperWalletWl = _limit;
}
function setCost(uint256 _newCost) public onlyOwner {
cost = _newCost;
}
function setWlCost(uint256 _newWlCost) public onlyOwner {
wlcost = _newWlCost;
}
function setMaxsupply(uint256 _newsupply) public onlyOwner {
maxSupply = _newsupply;
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
baseExtension = _newBaseExtension;
}
function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
notRevealedUri = _notRevealedURI;
}
function pause(bool _state) public onlyOwner {
paused = _state;
}
function togglepreSale(bool _state) external onlyOwner {
preSale = _state;
}
function togglepublicSale(bool _state) external onlyOwner {
publicSale = _state;
}
function withdraw() public payable onlyOwner nonReentrant {
(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
require(success);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Tree proofs.
*
* The tree and the proofs can be generated using our
* https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
* You will find a quickstart guide in the readme.
*
* 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.
* OpenZeppelin's JavaScript library generates merkle trees that are safe
* against this attack out of the box.
*/
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 simultaneously proven to be a part of a merkle tree defined by
* `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _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}
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _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 sibling nodes in `proof`. The reconstruction
* proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
* leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
* respectively.
*
* CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
* is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
* tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
*
* _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}.
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _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)
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _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) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @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] = _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);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @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);
}
}// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721A.sol';
/**
* @dev Interface of ERC721 token receiver.
*/
interface ERC721A__IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @title ERC721A
*
* @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
* Non-Fungible Token Standard, including the Metadata extension.
* Optimized for lower gas during batch mints.
*
* Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
* starting from `_startTokenId()`.
*
* Assumptions:
*
* - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
* - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is IERC721A {
// Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
struct TokenApprovalRef {
address value;
}
// =============================================================
// CONSTANTS
// =============================================================
// Mask of an entry in packed address data.
uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
// The bit position of `numberMinted` in packed address data.
uint256 private constant _BITPOS_NUMBER_MINTED = 64;
// The bit position of `numberBurned` in packed address data.
uint256 private constant _BITPOS_NUMBER_BURNED = 128;
// The bit position of `aux` in packed address data.
uint256 private constant _BITPOS_AUX = 192;
// Mask of all 256 bits in packed address data except the 64 bits for `aux`.
uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
// The bit position of `startTimestamp` in packed ownership.
uint256 private constant _BITPOS_START_TIMESTAMP = 160;
// The bit mask of the `burned` bit in packed ownership.
uint256 private constant _BITMASK_BURNED = 1 << 224;
// The bit position of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;
// The bit mask of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;
// The bit position of `extraData` in packed ownership.
uint256 private constant _BITPOS_EXTRA_DATA = 232;
// Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;
// The mask of the lower 160 bits for addresses.
uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;
// The maximum `quantity` that can be minted with {_mintERC2309}.
// This limit is to prevent overflows on the address data entries.
// For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
// is required to cause an overflow, which is unrealistic.
uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;
// The `Transfer` event signature is given by:
// `keccak256(bytes("Transfer(address,address,uint256)"))`.
bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;
// =============================================================
// STORAGE
// =============================================================
// The next token ID to be minted.
uint256 private _currentIndex;
// The number of tokens burned.
uint256 private _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 {_packedOwnershipOf} implementation for details.
//
// Bits Layout:
// - [0..159] `addr`
// - [160..223] `startTimestamp`
// - [224] `burned`
// - [225] `nextInitialized`
// - [232..255] `extraData`
mapping(uint256 => uint256) private _packedOwnerships;
// Mapping owner address to address data.
//
// Bits Layout:
// - [0..63] `balance`
// - [64..127] `numberMinted`
// - [128..191] `numberBurned`
// - [192..255] `aux`
mapping(address => uint256) private _packedAddressData;
// Mapping from token ID to approved address.
mapping(uint256 => TokenApprovalRef) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// =============================================================
// CONSTRUCTOR
// =============================================================
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
// =============================================================
// TOKEN COUNTING OPERATIONS
// =============================================================
/**
* @dev Returns the starting token ID.
* To change the starting token ID, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Returns the next token ID to be minted.
*/
function _nextTokenId() internal view virtual returns (uint256) {
return _currentIndex;
}
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() public view virtual override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than `_currentIndex - _startTokenId()` times.
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view virtual returns (uint256) {
// Counter underflow is impossible as `_currentIndex` does not decrement,
// and it is initialized to `_startTokenId()`.
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev Returns the total number of tokens burned.
*/
function _totalBurned() internal view virtual returns (uint256) {
return _burnCounter;
}
// =============================================================
// ADDRESS DATA OPERATIONS
// =============================================================
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
}
/**
* Sets the auxiliary 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 virtual {
uint256 packed = _packedAddressData[owner];
uint256 auxCasted;
// Cast `aux` with assembly to avoid redundant masking.
assembly {
auxCasted := aux
}
packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
_packedAddressData[owner] = packed;
}
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
// The interface IDs are constants representing the first 4 bytes
// of the XOR of all function selectors in the interface.
// See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
// (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
return
interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
}
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the token collection symbol.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
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, _toString(tokenId))) : '';
}
/**
* @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, it can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
// =============================================================
// OWNERSHIPS OPERATIONS
// =============================================================
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @dev Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around over time.
*/
function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal virtual {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr)
if (curr < _currentIndex) {
uint256 packed = _packedOwnerships[curr];
// If not burned.
if (packed & _BITMASK_BURNED == 0) {
// Invariant:
// There will always be an initialized ownership slot
// (i.e. `ownership.addr != address(0) && ownership.burned == false`)
// before an unintialized ownership slot
// (i.e. `ownership.addr == address(0) && ownership.burned == false`)
// Hence, `curr` will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed will be zero.
while (packed == 0) {
packed = _packedOwnerships[--curr];
}
return packed;
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev Returns the unpacked `TokenOwnership` struct from `packed`.
*/
function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
ownership.addr = address(uint160(packed));
ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
ownership.burned = packed & _BITMASK_BURNED != 0;
ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
}
/**
* @dev Packs ownership data into a single uint256.
*/
function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
}
}
/**
* @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
*/
function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
// For branchless setting of the `nextInitialized` flag.
assembly {
// `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
}
}
// =============================================================
// APPROVAL OPERATIONS
// =============================================================
/**
* @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) public payable virtual override {
address owner = ownerOf(tokenId);
if (_msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_tokenApprovals[tokenId].value = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId].value;
}
/**
* @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) public virtual override {
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @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. See {_mint}.
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex && // If within bounds,
_packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
}
/**
* @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
*/
function _isSenderApprovedOrOwner(
address approvedAddress,
address owner,
address msgSender
) private pure returns (bool result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
msgSender := and(msgSender, _BITMASK_ADDRESS)
// `msgSender == owner || msgSender == approvedAddress`.
result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
}
}
/**
* @dev Returns the storage slot and value for the approved address of `tokenId`.
*/
function _getApprovedSlotAndAddress(uint256 tokenId)
private
view
returns (uint256 approvedAddressSlot, address approvedAddress)
{
TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
// The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
assembly {
approvedAddressSlot := tokenApproval.slot
approvedAddress := sload(approvedAddressSlot)
}
}
// =============================================================
// TRANSFER OPERATIONS
// =============================================================
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* 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
) public payable virtual override {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// 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 {
// We can directly increment and decrement the balances.
--_packedAddressData[from]; // Updates: `balance -= 1`.
++_packedAddressData[to]; // Updates: `balance += 1`.
// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
to,
_BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public payable virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @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 memory _data
) public payable virtual override {
transferFrom(from, to, tokenId);
if (to.code.length != 0)
if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @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 {}
/**
* @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* `from` - Previous owner of the given token ID.
* `to` - Target address that will receive the token.
* `tokenId` - Token ID to be transferred.
* `_data` - Optional data to send along with the call.
*
* Returns whether the call correctly returned the expected magic value.
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
bytes4 retval
) {
return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
// =============================================================
// MINT OPERATIONS
// =============================================================
/**
* @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 for each mint.
*/
function _mint(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// `balance` and `numberMinted` have a maximum limit of 2**64.
// `tokenId` has a maximum limit of 2**256.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
uint256 toMasked;
uint256 end = startTokenId + quantity;
// Use assembly to loop and emit the `Transfer` event for gas savings.
// The duplicated `log4` removes an extra check and reduces stack juggling.
// The assembly, together with the surrounding Solidity code, have been
// delicately arranged to nudge the compiler into producing optimized opcodes.
assembly {
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
toMasked := and(to, _BITMASK_ADDRESS)
// Emit the `Transfer` event.
log4(
0, // Start of data (0, since no data).
0, // End of data (0, since no data).
_TRANSFER_EVENT_SIGNATURE, // Signature.
0, // `address(0)`.
toMasked, // `to`.
startTokenId // `tokenId`.
)
// The `iszero(eq(,))` check ensures that large values of `quantity`
// that overflows uint256 will make the loop run out of gas.
// The compiler will optimize the `iszero` away for performance.
for {
let tokenId := add(startTokenId, 1)
} iszero(eq(tokenId, end)) {
tokenId := add(tokenId, 1)
} {
// Emit the `Transfer` event. Similar to above.
log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
}
}
if (toMasked == 0) revert MintToZeroAddress();
_currentIndex = end;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* This function is intended for efficient minting only during contract creation.
*
* It emits only one {ConsecutiveTransfer} as defined in
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
* instead of a sequence of {Transfer} event(s).
*
* Calling this function outside of contract creation WILL make your contract
* non-compliant with the ERC721 standard.
* For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
* {ConsecutiveTransfer} event is only permissible during contract creation.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {ConsecutiveTransfer} event.
*/
function _mintERC2309(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are unrealistic due to the above check for `quantity` to be below the limit.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);
_currentIndex = startTokenId + quantity;
}
_afterTokenTransfers(address(0), to, startTokenId, 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.
*
* See {_mint}.
*
* Emits a {Transfer} event for each mint.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal virtual {
_mint(to, quantity);
unchecked {
if (to.code.length != 0) {
uint256 end = _currentIndex;
uint256 index = end - quantity;
do {
if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (index < end);
// Reentrancy protection.
if (_currentIndex != end) revert();
}
}
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal virtual {
_safeMint(to, quantity, '');
}
// =============================================================
// BURN OPERATIONS
// =============================================================
/**
* @dev 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 {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
address from = address(uint160(prevOwnershipPacked));
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
if (approvalCheck) {
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// 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 {
// Updates:
// - `balance -= 1`.
// - `numberBurned += 1`.
//
// We can directly decrement the balance, and increment the number burned.
// This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
_packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;
// Updates:
// - `address` to the last owner.
// - `startTimestamp` to the timestamp of burning.
// - `burned` to `true`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
from,
(_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
// =============================================================
// EXTRA DATA OPERATIONS
// =============================================================
/**
* @dev Directly sets the extra data for the ownership data `index`.
*/
function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
uint256 packed = _packedOwnerships[index];
if (packed == 0) revert OwnershipNotInitializedForExtraData();
uint256 extraDataCasted;
// Cast `extraData` with assembly to avoid redundant masking.
assembly {
extraDataCasted := extraData
}
packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
_packedOwnerships[index] = packed;
}
/**
* @dev Called during each token transfer to set the 24bit `extraData` field.
* Intended to be overridden by the cosumer contract.
*
* `previousExtraData` - the value of `extraData` before transfer.
*
* 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 _extraData(
address from,
address to,
uint24 previousExtraData
) internal view virtual returns (uint24) {}
/**
* @dev Returns the next extra data for the packed ownership data.
* The returned result is shifted into position.
*/
function _nextExtraData(
address from,
address to,
uint256 prevOwnershipPacked
) private view returns (uint256) {
uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
}
// =============================================================
// OTHER OPERATIONS
// =============================================================
/**
* @dev Returns the message sender (defaults to `msg.sender`).
*
* If you are writing GSN compatible contracts, you need to override this function.
*/
function _msgSenderERC721A() internal view virtual returns (address) {
return msg.sender;
}
/**
* @dev Converts a uint256 to its ASCII string decimal representation.
*/
function _toString(uint256 value) internal pure virtual returns (string memory str) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit), but
// we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
// We will need 1 word for the trailing zeros padding, 1 word for the length,
// and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
let m := add(mload(0x40), 0xa0)
// Update the free memory pointer to allocate.
mstore(0x40, m)
// Assign the `str` to the end.
str := sub(m, 0x20)
// Zeroize the slot after the string.
mstore(str, 0)
// Cache the end of the memory to calculate the length later.
let end := str
// We write the string from rightmost digit to leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// prettier-ignore
for { let temp := value } 1 {} {
str := sub(str, 1)
// Write the character to the pointer.
// The ASCII index of the '0' character is 48.
mstore8(str, add(48, mod(temp, 10)))
// Keep dividing `temp` until zero.
temp := div(temp, 10)
// prettier-ignore
if iszero(temp) { break }
}
let length := sub(end, str)
// Move the pointer 32 bytes leftwards to make room for the length.
str := sub(str, 0x20)
// Store the length.
mstore(str, length)
}
}
}// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721A.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the
* ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
/**
* The `quantity` minted with ERC2309 exceeds the safety limit.
*/
error MintERC2309QuantityExceedsLimit();
/**
* The `extraData` cannot be set on an unintialized ownership slot.
*/
error OwnershipNotInitializedForExtraData();
// =============================================================
// STRUCTS
// =============================================================
struct TokenOwnership {
// The address of the owner.
address addr;
// Stores the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
// Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
uint24 extraData;
}
// =============================================================
// TOKEN COUNTERS
// =============================================================
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() external view returns (uint256);
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
// =============================================================
// IERC721
// =============================================================
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables
* (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`,
* checking first that contract recipients are aware of the ERC721 protocol
* to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move
* this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external payable;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @dev Transfers `tokenId` 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 payable;
/**
* @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 payable;
/**
* @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);
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @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);
// =============================================================
// IERC2309
// =============================================================
/**
* @dev Emitted when tokens in `fromTokenId` to `toTokenId`
* (inclusive) is transferred from `from` to `to`, as defined in the
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
*
* See {_mintERC2309} for more details.
*/
event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"payable","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":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"payable","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":"payable","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":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","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":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b908051906020019062000051929190620003be565b5066d529ae9e860000600d5566b1a2bc2ec50000600e55610bb8600f55600360105560036011556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff0219169083151502179055506000601260036101000a81548160ff021916908315150217905550348015620000f157600080fd5b506040518060400160405280600b81526020017f5365616c205465616d20360000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5354360000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000176929190620003be565b5080600390805190602001906200018f929190620003be565b50620001a06200020060201b60201c565b6000819055505050620001c8620001bc6200020960201b60201c565b6200021160201b60201c565b6001600981905550620001fa604051806080016040528060428152602001620046cf60429139620002d760201b60201c565b62000556565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002e76200030360201b60201c565b80600c9080519060200190620002ff929190620003be565b5050565b620003136200020960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003396200039460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003899062000495565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003cc90620004c8565b90600052602060002090601f016020900481019282620003f057600085556200043c565b82601f106200040b57805160ff19168380011785556200043c565b828001600101855582156200043c579182015b828111156200043b5782518255916020019190600101906200041e565b5b5090506200044b91906200044f565b5090565b5b808211156200046a57600081600090555060010162000450565b5090565b60006200047d602083620004b7565b91506200048a826200052d565b602082019050919050565b60006020820190508181036000830152620004b0816200046e565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004e157607f821691505b60208210811415620004f857620004f7620004fe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61416980620005666000396000f3fe6080604052600436106102925760003560e01c806370a082311161015a578063c6682862116100c1578063e985e9c51161007a578063e985e9c51461096c578063f12f6d5d146109a9578063f2c4ce1e146109d2578063f2fde38b146109fb578063f3257cdd14610a24578063fea0e05814610a4d57610292565b8063c66828621461084a578063c87b56dd14610875578063d5abeb01146108b2578063da3ef23f146108dd578063dc33e68114610906578063e268e4d31461094357610292565b806395d89b411161011357806395d89b411461076a578063a0712d6814610795578063a22cb465146107b1578063b88d4fde146107da578063bd7a1998146107f6578063bde0608a1461082157610292565b806370a0823114610670578063715018a6146106ad5780637cb64759146106c457806383a076be146106ed5780638da5cb5b14610716578063940cd05b1461074157610292565b80632eb4a7ab116101fe57806355f804b3116101b757806355f804b31461055e5780635a7adf7f146105875780635c975abb146105b25780636352211e146105dd5780636c0360eb1461061a5780636c2d3c4f1461064557610292565b80632eb4a7ab1461048e57806333bc1c5c146104b95780633ccfd60b146104e457806342842e0e146104ee57806344a0d68a1461050a578063518302271461053357610292565b8063081c8c4411610250578063081c8c44146103ac578063095ea7b3146103d757806313faede6146103f3578063149835a01461041e57806318160ddd1461044757806323b872dd1461047257610292565b806277ec051461029757806301ffc9a7146102c257806302329a29146102ff578063036e4cb51461032857806306fdde0314610344578063081812fc1461036f575b600080fd5b3480156102a357600080fd5b506102ac610a76565b6040516102b99190613900565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190613065565b610a7c565b6040516102f69190613688565b60405180910390f35b34801561030b57600080fd5b506103266004803603810190610321919061300b565b610b0e565b005b610342600480360381019061033d9190613175565b610b33565b005b34801561035057600080fd5b50610359610e3f565b60405161036691906136be565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190613108565b610ed1565b6040516103a39190613621565b60405180910390f35b3480156103b857600080fd5b506103c1610f50565b6040516103ce91906136be565b60405180910390f35b6103f160048036038101906103ec9190612fcb565b610fde565b005b3480156103ff57600080fd5b50610408611122565b6040516104159190613900565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190613108565b611128565b005b34801561045357600080fd5b5061045c61113a565b6040516104699190613900565b60405180910390f35b61048c60048036038101906104879190612eb5565b611151565b005b34801561049a57600080fd5b506104a3611476565b6040516104b091906136a3565b60405180910390f35b3480156104c557600080fd5b506104ce61147c565b6040516104db9190613688565b60405180910390f35b6104ec61148f565b005b61050860048036038101906105039190612eb5565b611520565b005b34801561051657600080fd5b50610531600480360381019061052c9190613108565b611540565b005b34801561053f57600080fd5b50610548611552565b6040516105559190613688565b60405180910390f35b34801561056a57600080fd5b50610585600480360381019061058091906130bf565b611565565b005b34801561059357600080fd5b5061059c611587565b6040516105a99190613688565b60405180910390f35b3480156105be57600080fd5b506105c761159a565b6040516105d49190613688565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190613108565b6115ad565b6040516106119190613621565b60405180910390f35b34801561062657600080fd5b5061062f6115bf565b60405161063c91906136be565b60405180910390f35b34801561065157600080fd5b5061065a61164d565b6040516106679190613900565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612e48565b611653565b6040516106a49190613900565b60405180910390f35b3480156106b957600080fd5b506106c261170c565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190613038565b611720565b005b3480156106f957600080fd5b50610714600480360381019061070f9190613135565b611732565b005b34801561072257600080fd5b5061072b6117f8565b6040516107389190613621565b60405180910390f35b34801561074d57600080fd5b506107686004803603810190610763919061300b565b611822565b005b34801561077657600080fd5b5061077f611847565b60405161078c91906136be565b60405180910390f35b6107af60048036038101906107aa9190613108565b6118d9565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190612f8b565b611b30565b005b6107f460048036038101906107ef9190612f08565b611c3b565b005b34801561080257600080fd5b5061080b611cae565b6040516108189190613900565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613108565b611cb4565b005b34801561085657600080fd5b5061085f611cc6565b60405161086c91906136be565b60405180910390f35b34801561088157600080fd5b5061089c60048036038101906108979190613108565b611d54565b6040516108a991906136be565b60405180910390f35b3480156108be57600080fd5b506108c7611ead565b6040516108d49190613900565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff91906130bf565b611eb3565b005b34801561091257600080fd5b5061092d60048036038101906109289190612e48565b611ed5565b60405161093a9190613900565b60405180910390f35b34801561094f57600080fd5b5061096a60048036038101906109659190613108565b611ee7565b005b34801561097857600080fd5b50610993600480360381019061098e9190612e75565b611ef9565b6040516109a09190613688565b60405180910390f35b3480156109b557600080fd5b506109d060048036038101906109cb9190613108565b611f8d565b005b3480156109de57600080fd5b506109f960048036038101906109f491906130bf565b611f9f565b005b348015610a0757600080fd5b50610a226004803603810190610a1d9190612e48565b611fc1565b005b348015610a3057600080fd5b50610a4b6004803603810190610a46919061300b565b612045565b005b348015610a5957600080fd5b50610a746004803603810190610a6f919061300b565b61206a565b005b60115481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b075750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610b1661208f565b80601260006101000a81548160ff02191690831515021790555050565b610b3b61210d565b601260009054906101000a900460ff1615610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8290613760565b60405180910390fd5b601260029054906101000a900460ff16610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd1906138e0565b60405180910390fd5b610c4e828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060135433604051602001610c3391906135c0565b6040516020818303038152906040528051906020012061215d565b610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490613860565b60405180910390fd5b6000610c9761113a565b905060115484610cad610ca8612174565b61217c565b610cb79190613a05565b1115610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90613800565b60405180910390fd5b60008411610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290613780565b60405180910390fd5b601154841115610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613820565b60405180910390fd5b600f548482610d8f9190613a05565b1115610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc7906137e0565b60405180910390fd5b83600e54610dde9190613a5b565b341015610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790613700565b60405180910390fd5b610e31610e2b612174565b856121d3565b50610e3a6121f1565b505050565b606060028054610e4e90613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7a90613b75565b8015610ec75780601f10610e9c57610100808354040283529160200191610ec7565b820191906000526020600020905b815481529060010190602001808311610eaa57829003601f168201915b5050505050905090565b6000610edc826121fb565b610f12576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610f5d90613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8990613b75565b8015610fd65780601f10610fab57610100808354040283529160200191610fd6565b820191906000526020600020905b815481529060010190602001808311610fb957829003601f168201915b505050505081565b6000610fe9826115ad565b90508073ffffffffffffffffffffffffffffffffffffffff1661100a61225a565b73ffffffffffffffffffffffffffffffffffffffff161461106d576110368161103161225a565b611ef9565b61106c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b61113061208f565b80600f8190555050565b6000611144612262565b6001546000540303905090565b600061115c8261226b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111c3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806111cf84612339565b915091506111e581876111e061225a565b612360565b611231576111fa866111f561225a565b611ef9565b611230576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611298576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112a586868660016123a4565b80156112b057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061137e8561135a8888876123aa565b7c0200000000000000000000000000000000000000000000000000000000176123d2565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611406576000600185019050600060046000838152602001908152602001600020541415611404576000548114611403578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461146e86868660016123fd565b505050505050565b60135481565b601260039054906101000a900460ff1681565b61149761208f565b61149f61210d565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516114c59061360c565b60006040518083038185875af1925050503d8060008114611502576040519150601f19603f3d011682016040523d82523d6000602084013e611507565b606091505b505090508061151557600080fd5b5061151e6121f1565b565b61153b83838360405180602001604052806000815250611c3b565b505050565b61154861208f565b80600d8190555050565b601260019054906101000a900460ff1681565b61156d61208f565b80600a9080519060200190611583929190612bf1565b5050565b601260029054906101000a900460ff1681565b601260009054906101000a900460ff1681565b60006115b88261226b565b9050919050565b600a80546115cc90613b75565b80601f01602080910402602001604051908101604052809291908181526020018280546115f890613b75565b80156116455780601f1061161a57610100808354040283529160200191611645565b820191906000526020600020905b81548152906001019060200180831161162857829003601f168201915b505050505081565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116bb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61171461208f565b61171e6000612403565b565b61172861208f565b8060138190555050565b61173a61208f565b61174261210d565b60008211611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c906138c0565b60405180910390fd5b600061178f61113a565b9050600f5483826117a09190613a05565b11156117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d8906137c0565b60405180910390fd5b6117eb82846121d3565b506117f46121f1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61182a61208f565b80601260016101000a81548160ff02191690831515021790555050565b60606003805461185690613b75565b80601f016020809104026020016040519081016040528092919081815260200182805461188290613b75565b80156118cf5780601f106118a4576101008083540402835291602001916118cf565b820191906000526020600020905b8154815290600101906020018083116118b257829003601f168201915b5050505050905090565b6118e161210d565b601260009054906101000a900460ff1615611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890613760565b60405180910390fd5b601260039054906101000a900460ff16611980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611977906137a0565b60405180910390fd5b600061198a61113a565b9050600082116119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690613780565b60405180910390fd5b601054821115611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90613740565b60405180910390fd5b600f548282611a239190613a05565b1115611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613880565b60405180910390fd5b60105482611a78611a73612174565b61217c565b611a829190613a05565b1115611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba90613800565b60405180910390fd5b81600d54611ad19190613a5b565b341015611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a90613700565b60405180910390fd5b611b24611b1e612174565b836121d3565b50611b2d6121f1565b50565b8060076000611b3d61225a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bea61225a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c2f9190613688565b60405180910390a35050565b611c46848484611151565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ca857611c71848484846124c9565b611ca7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b611cbc61208f565b8060118190555050565b600b8054611cd390613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054611cff90613b75565b8015611d4c5780601f10611d2157610100808354040283529160200191611d4c565b820191906000526020600020905b815481529060010190602001808311611d2f57829003601f168201915b505050505081565b6060611d5f826121fb565b611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d95906136e0565b60405180910390fd5b60001515601260019054906101000a900460ff1615151415611e4c57600c8054611dc790613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054611df390613b75565b8015611e405780601f10611e1557610100808354040283529160200191611e40565b820191906000526020600020905b815481529060010190602001808311611e2357829003601f168201915b50505050509050611ea8565b6000611e56612629565b90506000815111611e765760405180602001604052806000815250611ea4565b80611e80846126bb565b600b604051602001611e94939291906135db565b6040516020818303038152906040525b9150505b919050565b600f5481565b611ebb61208f565b80600b9080519060200190611ed1929190612bf1565b5050565b6000611ee08261217c565b9050919050565b611eef61208f565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9561208f565b80600e8190555050565b611fa761208f565b80600c9080519060200190611fbd929190612bf1565b5050565b611fc961208f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203090613720565b60405180910390fd5b61204281612403565b50565b61204d61208f565b80601260036101000a81548160ff02191690831515021790555050565b61207261208f565b80601260026101000a81548160ff02191690831515021790555050565b612097612174565b73ffffffffffffffffffffffffffffffffffffffff166120b56117f8565b73ffffffffffffffffffffffffffffffffffffffff161461210b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210290613840565b60405180910390fd5b565b60026009541415612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a906138a0565b60405180910390fd5b6002600981905550565b60008261216a8584612793565b1490509392505050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6121ed8282604051806020016040528060008152506127e9565b5050565b6001600981905550565b600081612206612262565b11158015612215575060005482105b8015612253575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061227a612262565b11612302576000548110156123015760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156122ff575b60008114156122f55760046000836001900393508381526020019081526020016000205490506122ca565b8092505050612334565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123c1868684612886565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ef61225a565b8786866040518563ffffffff1660e01b8152600401612511949392919061363c565b602060405180830381600087803b15801561252b57600080fd5b505af192505050801561255c57506040513d601f19601f820116820180604052508101906125599190613092565b60015b6125d6573d806000811461258c576040519150601f19603f3d011682016040523d82523d6000602084013e612591565b606091505b506000815114156125ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461263890613b75565b80601f016020809104026020016040519081016040528092919081815260200182805461266490613b75565b80156126b15780601f10612686576101008083540402835291602001916126b1565b820191906000526020600020905b81548152906001019060200180831161269457829003601f168201915b5050505050905090565b6060600060016126ca8461288f565b01905060008167ffffffffffffffff8111156126e9576126e8613d01565b5b6040519080825280601f01601f19166020018201604052801561271b5781602001600182028036833780820191505090505b509050600082602001820190505b600115612788578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161277257612771613c74565b5b049450600085141561278357612788565b612729565b819350505050919050565b60008082905060005b84518110156127de576127c9828683815181106127bc576127bb613cd2565b5b60200260200101516129e2565b915080806127d690613bd8565b91505061279c565b508091505092915050565b6127f38383612a0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461288157600080549050600083820390505b61283360008683806001019450866124c9565b612869576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061282057816000541461287e57600080fd5b50505b505050565b60009392505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106128ed577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816128e3576128e2613c74565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061292a576d04ee2d6d415b85acef810000000083816129205761291f613c74565b5b0492506020810190505b662386f26fc10000831061295957662386f26fc10000838161294f5761294e613c74565b5b0492506010810190505b6305f5e1008310612982576305f5e100838161297857612977613c74565b5b0492506008810190505b61271083106129a757612710838161299d5761299c613c74565b5b0492506004810190505b606483106129ca57606483816129c0576129bf613c74565b5b0492506002810190505b600a83106129d9576001810190505b80915050919050565b60008183106129fa576129f58284612bca565b612a05565b612a048383612bca565b5b905092915050565b6000805490506000821415612a4e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a5b60008483856123a4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612ad283612ac360008660006123aa565b612acc85612be1565b176123d2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b7357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b38565b506000821415612baf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612bc560008483856123fd565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054612bfd90613b75565b90600052602060002090601f016020900481019282612c1f5760008555612c66565b82601f10612c3857805160ff1916838001178555612c66565b82800160010185558215612c66579182015b82811115612c65578251825591602001919060010190612c4a565b5b509050612c739190612c77565b5090565b5b80821115612c90576000816000905550600101612c78565b5090565b6000612ca7612ca284613940565b61391b565b905082815260208101848484011115612cc357612cc2613d3f565b5b612cce848285613b33565b509392505050565b6000612ce9612ce484613971565b61391b565b905082815260208101848484011115612d0557612d04613d3f565b5b612d10848285613b33565b509392505050565b600081359050612d27816140c0565b92915050565b60008083601f840112612d4357612d42613d35565b5b8235905067ffffffffffffffff811115612d6057612d5f613d30565b5b602083019150836020820283011115612d7c57612d7b613d3a565b5b9250929050565b600081359050612d92816140d7565b92915050565b600081359050612da7816140ee565b92915050565b600081359050612dbc81614105565b92915050565b600081519050612dd181614105565b92915050565b600082601f830112612dec57612deb613d35565b5b8135612dfc848260208601612c94565b91505092915050565b600082601f830112612e1a57612e19613d35565b5b8135612e2a848260208601612cd6565b91505092915050565b600081359050612e428161411c565b92915050565b600060208284031215612e5e57612e5d613d49565b5b6000612e6c84828501612d18565b91505092915050565b60008060408385031215612e8c57612e8b613d49565b5b6000612e9a85828601612d18565b9250506020612eab85828601612d18565b9150509250929050565b600080600060608486031215612ece57612ecd613d49565b5b6000612edc86828701612d18565b9350506020612eed86828701612d18565b9250506040612efe86828701612e33565b9150509250925092565b60008060008060808587031215612f2257612f21613d49565b5b6000612f3087828801612d18565b9450506020612f4187828801612d18565b9350506040612f5287828801612e33565b925050606085013567ffffffffffffffff811115612f7357612f72613d44565b5b612f7f87828801612dd7565b91505092959194509250565b60008060408385031215612fa257612fa1613d49565b5b6000612fb085828601612d18565b9250506020612fc185828601612d83565b9150509250929050565b60008060408385031215612fe257612fe1613d49565b5b6000612ff085828601612d18565b925050602061300185828601612e33565b9150509250929050565b60006020828403121561302157613020613d49565b5b600061302f84828501612d83565b91505092915050565b60006020828403121561304e5761304d613d49565b5b600061305c84828501612d98565b91505092915050565b60006020828403121561307b5761307a613d49565b5b600061308984828501612dad565b91505092915050565b6000602082840312156130a8576130a7613d49565b5b60006130b684828501612dc2565b91505092915050565b6000602082840312156130d5576130d4613d49565b5b600082013567ffffffffffffffff8111156130f3576130f2613d44565b5b6130ff84828501612e05565b91505092915050565b60006020828403121561311e5761311d613d49565b5b600061312c84828501612e33565b91505092915050565b6000806040838503121561314c5761314b613d49565b5b600061315a85828601612e33565b925050602061316b85828601612d18565b9150509250929050565b60008060006040848603121561318e5761318d613d49565b5b600061319c86828701612e33565b935050602084013567ffffffffffffffff8111156131bd576131bc613d44565b5b6131c986828701612d2d565b92509250509250925092565b6131de81613ab5565b82525050565b6131f56131f082613ab5565b613c21565b82525050565b61320481613ac7565b82525050565b61321381613ad3565b82525050565b6000613224826139b7565b61322e81856139cd565b935061323e818560208601613b42565b61324781613d4e565b840191505092915050565b600061325d826139c2565b61326781856139e9565b9350613277818560208601613b42565b61328081613d4e565b840191505092915050565b6000613296826139c2565b6132a081856139fa565b93506132b0818560208601613b42565b80840191505092915050565b600081546132c981613b75565b6132d381866139fa565b945060018216600081146132ee57600181146132ff57613332565b60ff19831686528186019350613332565b613308856139a2565b60005b8381101561332a5781548189015260018201915060208101905061330b565b838801955050505b50505092915050565b60006133486030836139e9565b915061335382613d6c565b604082019050919050565b600061336b6017836139e9565b915061337682613dbb565b602082019050919050565b600061338e6026836139e9565b915061339982613de4565b604082019050919050565b60006133b16024836139e9565b91506133bc82613e33565b604082019050919050565b60006133d4601c836139e9565b91506133df82613e82565b602082019050919050565b60006133f76020836139e9565b915061340282613eab565b602082019050919050565b600061341a601c836139e9565b915061342582613ed4565b602082019050919050565b600061343d6016836139e9565b915061344882613efd565b602082019050919050565b60006134606021836139e9565b915061346b82613f26565b604082019050919050565b60006134836020836139e9565b915061348e82613f75565b602082019050919050565b60006134a6601d836139e9565b91506134b182613f9e565b602082019050919050565b60006134c96020836139e9565b91506134d482613fc7565b602082019050919050565b60006134ec601c836139e9565b91506134f782613ff0565b602082019050919050565b600061350f6000836139de565b915061351a82614019565b600082019050919050565b6000613532600f836139e9565b915061353d8261401c565b602082019050919050565b6000613555601f836139e9565b915061356082614045565b602082019050919050565b6000613578601b836139e9565b91506135838261406e565b602082019050919050565b600061359b601f836139e9565b91506135a682614097565b602082019050919050565b6135ba81613b29565b82525050565b60006135cc82846131e4565b60148201915081905092915050565b60006135e7828661328b565b91506135f3828561328b565b91506135ff82846132bc565b9150819050949350505050565b600061361782613502565b9150819050919050565b600060208201905061363660008301846131d5565b92915050565b600060808201905061365160008301876131d5565b61365e60208301866131d5565b61366b60408301856135b1565b818103606083015261367d8184613219565b905095945050505050565b600060208201905061369d60008301846131fb565b92915050565b60006020820190506136b8600083018461320a565b92915050565b600060208201905081810360008301526136d88184613252565b905092915050565b600060208201905081810360008301526136f98161333b565b9050919050565b600060208201905081810360008301526137198161335e565b9050919050565b6000602082019050818103600083015261373981613381565b9050919050565b60006020820190508181036000830152613759816133a4565b9050919050565b60006020820190508181036000830152613779816133c7565b9050919050565b60006020820190508181036000830152613799816133ea565b9050919050565b600060208201905081810360008301526137b98161340d565b9050919050565b600060208201905081810360008301526137d981613430565b9050919050565b600060208201905081810360008301526137f981613453565b9050919050565b6000602082019050818103600083015261381981613476565b9050919050565b6000602082019050818103600083015261383981613499565b9050919050565b60006020820190508181036000830152613859816134bc565b9050919050565b60006020820190508181036000830152613879816134df565b9050919050565b6000602082019050818103600083015261389981613525565b9050919050565b600060208201905081810360008301526138b981613548565b9050919050565b600060208201905081810360008301526138d98161356b565b9050919050565b600060208201905081810360008301526138f98161358e565b9050919050565b600060208201905061391560008301846135b1565b92915050565b6000613925613936565b90506139318282613ba7565b919050565b6000604051905090565b600067ffffffffffffffff82111561395b5761395a613d01565b5b61396482613d4e565b9050602081019050919050565b600067ffffffffffffffff82111561398c5761398b613d01565b5b61399582613d4e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a1082613b29565b9150613a1b83613b29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a5057613a4f613c45565b5b828201905092915050565b6000613a6682613b29565b9150613a7183613b29565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aaa57613aa9613c45565b5b828202905092915050565b6000613ac082613b09565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b60578082015181840152602081019050613b45565b83811115613b6f576000848401525b50505050565b60006002820490506001821680613b8d57607f821691505b60208210811415613ba157613ba0613ca3565b5b50919050565b613bb082613d4e565b810181811067ffffffffffffffff82111715613bcf57613bce613d01565b5b80604052505050565b6000613be382613b29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1657613c15613c45565b5b600182019050919050565b6000613c2c82613c33565b9050919050565b6000613c3e82613d5f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f5354363a20696e73756666696369656e742066756e6473000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5354363a206d6178206d696e7420616d6f756e7420706572207478206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f5354363a206f6f707320636f6e74726163742069732070617573656400000000600082015250565b7f5354363a206e65656420746f206d696e74206174206c656173742031204e4654600082015250565b7f5354363a2053616c65204861736e277420737461727465642079657400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f5354363a2057686974656c697374204d6178537570706c79206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f5354363a204d6178204e4654205065722057616c6c6574206578636565646564600082015250565b7f5354363a206d6178206d696e7420706572205478206578636565646564000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5354363a20596f7520617265206e6f742057686974656c697374656400000000600082015250565b50565b7f5354363a20576520536f6c646f75740000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f5354363a2050726573616c65204861736e277420737461727465642079657400600082015250565b6140c981613ab5565b81146140d457600080fd5b50565b6140e081613ac7565b81146140eb57600080fd5b50565b6140f781613ad3565b811461410257600080fd5b50565b61410e81613add565b811461411957600080fd5b50565b61412581613b29565b811461413057600080fd5b5056fea26469706673582212204b78aeeb1977f4684bcbbc7284a5f5c6187bd0f53ddd2c5f42fb1104cfa2241564736f6c63430008070033697066733a2f2f6261666b7265696835616b3279796477366e64783269766576757565736879797a3465336f3332776b67326f6563673362336b6c6d7172676f6971
Deployed Bytecode
0x6080604052600436106102925760003560e01c806370a082311161015a578063c6682862116100c1578063e985e9c51161007a578063e985e9c51461096c578063f12f6d5d146109a9578063f2c4ce1e146109d2578063f2fde38b146109fb578063f3257cdd14610a24578063fea0e05814610a4d57610292565b8063c66828621461084a578063c87b56dd14610875578063d5abeb01146108b2578063da3ef23f146108dd578063dc33e68114610906578063e268e4d31461094357610292565b806395d89b411161011357806395d89b411461076a578063a0712d6814610795578063a22cb465146107b1578063b88d4fde146107da578063bd7a1998146107f6578063bde0608a1461082157610292565b806370a0823114610670578063715018a6146106ad5780637cb64759146106c457806383a076be146106ed5780638da5cb5b14610716578063940cd05b1461074157610292565b80632eb4a7ab116101fe57806355f804b3116101b757806355f804b31461055e5780635a7adf7f146105875780635c975abb146105b25780636352211e146105dd5780636c0360eb1461061a5780636c2d3c4f1461064557610292565b80632eb4a7ab1461048e57806333bc1c5c146104b95780633ccfd60b146104e457806342842e0e146104ee57806344a0d68a1461050a578063518302271461053357610292565b8063081c8c4411610250578063081c8c44146103ac578063095ea7b3146103d757806313faede6146103f3578063149835a01461041e57806318160ddd1461044757806323b872dd1461047257610292565b806277ec051461029757806301ffc9a7146102c257806302329a29146102ff578063036e4cb51461032857806306fdde0314610344578063081812fc1461036f575b600080fd5b3480156102a357600080fd5b506102ac610a76565b6040516102b99190613900565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190613065565b610a7c565b6040516102f69190613688565b60405180910390f35b34801561030b57600080fd5b506103266004803603810190610321919061300b565b610b0e565b005b610342600480360381019061033d9190613175565b610b33565b005b34801561035057600080fd5b50610359610e3f565b60405161036691906136be565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190613108565b610ed1565b6040516103a39190613621565b60405180910390f35b3480156103b857600080fd5b506103c1610f50565b6040516103ce91906136be565b60405180910390f35b6103f160048036038101906103ec9190612fcb565b610fde565b005b3480156103ff57600080fd5b50610408611122565b6040516104159190613900565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190613108565b611128565b005b34801561045357600080fd5b5061045c61113a565b6040516104699190613900565b60405180910390f35b61048c60048036038101906104879190612eb5565b611151565b005b34801561049a57600080fd5b506104a3611476565b6040516104b091906136a3565b60405180910390f35b3480156104c557600080fd5b506104ce61147c565b6040516104db9190613688565b60405180910390f35b6104ec61148f565b005b61050860048036038101906105039190612eb5565b611520565b005b34801561051657600080fd5b50610531600480360381019061052c9190613108565b611540565b005b34801561053f57600080fd5b50610548611552565b6040516105559190613688565b60405180910390f35b34801561056a57600080fd5b50610585600480360381019061058091906130bf565b611565565b005b34801561059357600080fd5b5061059c611587565b6040516105a99190613688565b60405180910390f35b3480156105be57600080fd5b506105c761159a565b6040516105d49190613688565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190613108565b6115ad565b6040516106119190613621565b60405180910390f35b34801561062657600080fd5b5061062f6115bf565b60405161063c91906136be565b60405180910390f35b34801561065157600080fd5b5061065a61164d565b6040516106679190613900565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612e48565b611653565b6040516106a49190613900565b60405180910390f35b3480156106b957600080fd5b506106c261170c565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190613038565b611720565b005b3480156106f957600080fd5b50610714600480360381019061070f9190613135565b611732565b005b34801561072257600080fd5b5061072b6117f8565b6040516107389190613621565b60405180910390f35b34801561074d57600080fd5b506107686004803603810190610763919061300b565b611822565b005b34801561077657600080fd5b5061077f611847565b60405161078c91906136be565b60405180910390f35b6107af60048036038101906107aa9190613108565b6118d9565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190612f8b565b611b30565b005b6107f460048036038101906107ef9190612f08565b611c3b565b005b34801561080257600080fd5b5061080b611cae565b6040516108189190613900565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613108565b611cb4565b005b34801561085657600080fd5b5061085f611cc6565b60405161086c91906136be565b60405180910390f35b34801561088157600080fd5b5061089c60048036038101906108979190613108565b611d54565b6040516108a991906136be565b60405180910390f35b3480156108be57600080fd5b506108c7611ead565b6040516108d49190613900565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff91906130bf565b611eb3565b005b34801561091257600080fd5b5061092d60048036038101906109289190612e48565b611ed5565b60405161093a9190613900565b60405180910390f35b34801561094f57600080fd5b5061096a60048036038101906109659190613108565b611ee7565b005b34801561097857600080fd5b50610993600480360381019061098e9190612e75565b611ef9565b6040516109a09190613688565b60405180910390f35b3480156109b557600080fd5b506109d060048036038101906109cb9190613108565b611f8d565b005b3480156109de57600080fd5b506109f960048036038101906109f491906130bf565b611f9f565b005b348015610a0757600080fd5b50610a226004803603810190610a1d9190612e48565b611fc1565b005b348015610a3057600080fd5b50610a4b6004803603810190610a46919061300b565b612045565b005b348015610a5957600080fd5b50610a746004803603810190610a6f919061300b565b61206a565b005b60115481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b075750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610b1661208f565b80601260006101000a81548160ff02191690831515021790555050565b610b3b61210d565b601260009054906101000a900460ff1615610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8290613760565b60405180910390fd5b601260029054906101000a900460ff16610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd1906138e0565b60405180910390fd5b610c4e828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060135433604051602001610c3391906135c0565b6040516020818303038152906040528051906020012061215d565b610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490613860565b60405180910390fd5b6000610c9761113a565b905060115484610cad610ca8612174565b61217c565b610cb79190613a05565b1115610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90613800565b60405180910390fd5b60008411610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290613780565b60405180910390fd5b601154841115610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613820565b60405180910390fd5b600f548482610d8f9190613a05565b1115610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc7906137e0565b60405180910390fd5b83600e54610dde9190613a5b565b341015610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790613700565b60405180910390fd5b610e31610e2b612174565b856121d3565b50610e3a6121f1565b505050565b606060028054610e4e90613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7a90613b75565b8015610ec75780601f10610e9c57610100808354040283529160200191610ec7565b820191906000526020600020905b815481529060010190602001808311610eaa57829003601f168201915b5050505050905090565b6000610edc826121fb565b610f12576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610f5d90613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8990613b75565b8015610fd65780601f10610fab57610100808354040283529160200191610fd6565b820191906000526020600020905b815481529060010190602001808311610fb957829003601f168201915b505050505081565b6000610fe9826115ad565b90508073ffffffffffffffffffffffffffffffffffffffff1661100a61225a565b73ffffffffffffffffffffffffffffffffffffffff161461106d576110368161103161225a565b611ef9565b61106c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b61113061208f565b80600f8190555050565b6000611144612262565b6001546000540303905090565b600061115c8261226b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111c3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806111cf84612339565b915091506111e581876111e061225a565b612360565b611231576111fa866111f561225a565b611ef9565b611230576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611298576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112a586868660016123a4565b80156112b057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061137e8561135a8888876123aa565b7c0200000000000000000000000000000000000000000000000000000000176123d2565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611406576000600185019050600060046000838152602001908152602001600020541415611404576000548114611403578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461146e86868660016123fd565b505050505050565b60135481565b601260039054906101000a900460ff1681565b61149761208f565b61149f61210d565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516114c59061360c565b60006040518083038185875af1925050503d8060008114611502576040519150601f19603f3d011682016040523d82523d6000602084013e611507565b606091505b505090508061151557600080fd5b5061151e6121f1565b565b61153b83838360405180602001604052806000815250611c3b565b505050565b61154861208f565b80600d8190555050565b601260019054906101000a900460ff1681565b61156d61208f565b80600a9080519060200190611583929190612bf1565b5050565b601260029054906101000a900460ff1681565b601260009054906101000a900460ff1681565b60006115b88261226b565b9050919050565b600a80546115cc90613b75565b80601f01602080910402602001604051908101604052809291908181526020018280546115f890613b75565b80156116455780601f1061161a57610100808354040283529160200191611645565b820191906000526020600020905b81548152906001019060200180831161162857829003601f168201915b505050505081565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116bb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61171461208f565b61171e6000612403565b565b61172861208f565b8060138190555050565b61173a61208f565b61174261210d565b60008211611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c906138c0565b60405180910390fd5b600061178f61113a565b9050600f5483826117a09190613a05565b11156117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d8906137c0565b60405180910390fd5b6117eb82846121d3565b506117f46121f1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61182a61208f565b80601260016101000a81548160ff02191690831515021790555050565b60606003805461185690613b75565b80601f016020809104026020016040519081016040528092919081815260200182805461188290613b75565b80156118cf5780601f106118a4576101008083540402835291602001916118cf565b820191906000526020600020905b8154815290600101906020018083116118b257829003601f168201915b5050505050905090565b6118e161210d565b601260009054906101000a900460ff1615611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890613760565b60405180910390fd5b601260039054906101000a900460ff16611980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611977906137a0565b60405180910390fd5b600061198a61113a565b9050600082116119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690613780565b60405180910390fd5b601054821115611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90613740565b60405180910390fd5b600f548282611a239190613a05565b1115611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613880565b60405180910390fd5b60105482611a78611a73612174565b61217c565b611a829190613a05565b1115611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba90613800565b60405180910390fd5b81600d54611ad19190613a5b565b341015611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a90613700565b60405180910390fd5b611b24611b1e612174565b836121d3565b50611b2d6121f1565b50565b8060076000611b3d61225a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bea61225a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c2f9190613688565b60405180910390a35050565b611c46848484611151565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ca857611c71848484846124c9565b611ca7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b611cbc61208f565b8060118190555050565b600b8054611cd390613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054611cff90613b75565b8015611d4c5780601f10611d2157610100808354040283529160200191611d4c565b820191906000526020600020905b815481529060010190602001808311611d2f57829003601f168201915b505050505081565b6060611d5f826121fb565b611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d95906136e0565b60405180910390fd5b60001515601260019054906101000a900460ff1615151415611e4c57600c8054611dc790613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054611df390613b75565b8015611e405780601f10611e1557610100808354040283529160200191611e40565b820191906000526020600020905b815481529060010190602001808311611e2357829003601f168201915b50505050509050611ea8565b6000611e56612629565b90506000815111611e765760405180602001604052806000815250611ea4565b80611e80846126bb565b600b604051602001611e94939291906135db565b6040516020818303038152906040525b9150505b919050565b600f5481565b611ebb61208f565b80600b9080519060200190611ed1929190612bf1565b5050565b6000611ee08261217c565b9050919050565b611eef61208f565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9561208f565b80600e8190555050565b611fa761208f565b80600c9080519060200190611fbd929190612bf1565b5050565b611fc961208f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203090613720565b60405180910390fd5b61204281612403565b50565b61204d61208f565b80601260036101000a81548160ff02191690831515021790555050565b61207261208f565b80601260026101000a81548160ff02191690831515021790555050565b612097612174565b73ffffffffffffffffffffffffffffffffffffffff166120b56117f8565b73ffffffffffffffffffffffffffffffffffffffff161461210b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210290613840565b60405180910390fd5b565b60026009541415612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a906138a0565b60405180910390fd5b6002600981905550565b60008261216a8584612793565b1490509392505050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6121ed8282604051806020016040528060008152506127e9565b5050565b6001600981905550565b600081612206612262565b11158015612215575060005482105b8015612253575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061227a612262565b11612302576000548110156123015760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156122ff575b60008114156122f55760046000836001900393508381526020019081526020016000205490506122ca565b8092505050612334565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123c1868684612886565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ef61225a565b8786866040518563ffffffff1660e01b8152600401612511949392919061363c565b602060405180830381600087803b15801561252b57600080fd5b505af192505050801561255c57506040513d601f19601f820116820180604052508101906125599190613092565b60015b6125d6573d806000811461258c576040519150601f19603f3d011682016040523d82523d6000602084013e612591565b606091505b506000815114156125ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461263890613b75565b80601f016020809104026020016040519081016040528092919081815260200182805461266490613b75565b80156126b15780601f10612686576101008083540402835291602001916126b1565b820191906000526020600020905b81548152906001019060200180831161269457829003601f168201915b5050505050905090565b6060600060016126ca8461288f565b01905060008167ffffffffffffffff8111156126e9576126e8613d01565b5b6040519080825280601f01601f19166020018201604052801561271b5781602001600182028036833780820191505090505b509050600082602001820190505b600115612788578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161277257612771613c74565b5b049450600085141561278357612788565b612729565b819350505050919050565b60008082905060005b84518110156127de576127c9828683815181106127bc576127bb613cd2565b5b60200260200101516129e2565b915080806127d690613bd8565b91505061279c565b508091505092915050565b6127f38383612a0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461288157600080549050600083820390505b61283360008683806001019450866124c9565b612869576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061282057816000541461287e57600080fd5b50505b505050565b60009392505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106128ed577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816128e3576128e2613c74565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061292a576d04ee2d6d415b85acef810000000083816129205761291f613c74565b5b0492506020810190505b662386f26fc10000831061295957662386f26fc10000838161294f5761294e613c74565b5b0492506010810190505b6305f5e1008310612982576305f5e100838161297857612977613c74565b5b0492506008810190505b61271083106129a757612710838161299d5761299c613c74565b5b0492506004810190505b606483106129ca57606483816129c0576129bf613c74565b5b0492506002810190505b600a83106129d9576001810190505b80915050919050565b60008183106129fa576129f58284612bca565b612a05565b612a048383612bca565b5b905092915050565b6000805490506000821415612a4e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a5b60008483856123a4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612ad283612ac360008660006123aa565b612acc85612be1565b176123d2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b7357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b38565b506000821415612baf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612bc560008483856123fd565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054612bfd90613b75565b90600052602060002090601f016020900481019282612c1f5760008555612c66565b82601f10612c3857805160ff1916838001178555612c66565b82800160010185558215612c66579182015b82811115612c65578251825591602001919060010190612c4a565b5b509050612c739190612c77565b5090565b5b80821115612c90576000816000905550600101612c78565b5090565b6000612ca7612ca284613940565b61391b565b905082815260208101848484011115612cc357612cc2613d3f565b5b612cce848285613b33565b509392505050565b6000612ce9612ce484613971565b61391b565b905082815260208101848484011115612d0557612d04613d3f565b5b612d10848285613b33565b509392505050565b600081359050612d27816140c0565b92915050565b60008083601f840112612d4357612d42613d35565b5b8235905067ffffffffffffffff811115612d6057612d5f613d30565b5b602083019150836020820283011115612d7c57612d7b613d3a565b5b9250929050565b600081359050612d92816140d7565b92915050565b600081359050612da7816140ee565b92915050565b600081359050612dbc81614105565b92915050565b600081519050612dd181614105565b92915050565b600082601f830112612dec57612deb613d35565b5b8135612dfc848260208601612c94565b91505092915050565b600082601f830112612e1a57612e19613d35565b5b8135612e2a848260208601612cd6565b91505092915050565b600081359050612e428161411c565b92915050565b600060208284031215612e5e57612e5d613d49565b5b6000612e6c84828501612d18565b91505092915050565b60008060408385031215612e8c57612e8b613d49565b5b6000612e9a85828601612d18565b9250506020612eab85828601612d18565b9150509250929050565b600080600060608486031215612ece57612ecd613d49565b5b6000612edc86828701612d18565b9350506020612eed86828701612d18565b9250506040612efe86828701612e33565b9150509250925092565b60008060008060808587031215612f2257612f21613d49565b5b6000612f3087828801612d18565b9450506020612f4187828801612d18565b9350506040612f5287828801612e33565b925050606085013567ffffffffffffffff811115612f7357612f72613d44565b5b612f7f87828801612dd7565b91505092959194509250565b60008060408385031215612fa257612fa1613d49565b5b6000612fb085828601612d18565b9250506020612fc185828601612d83565b9150509250929050565b60008060408385031215612fe257612fe1613d49565b5b6000612ff085828601612d18565b925050602061300185828601612e33565b9150509250929050565b60006020828403121561302157613020613d49565b5b600061302f84828501612d83565b91505092915050565b60006020828403121561304e5761304d613d49565b5b600061305c84828501612d98565b91505092915050565b60006020828403121561307b5761307a613d49565b5b600061308984828501612dad565b91505092915050565b6000602082840312156130a8576130a7613d49565b5b60006130b684828501612dc2565b91505092915050565b6000602082840312156130d5576130d4613d49565b5b600082013567ffffffffffffffff8111156130f3576130f2613d44565b5b6130ff84828501612e05565b91505092915050565b60006020828403121561311e5761311d613d49565b5b600061312c84828501612e33565b91505092915050565b6000806040838503121561314c5761314b613d49565b5b600061315a85828601612e33565b925050602061316b85828601612d18565b9150509250929050565b60008060006040848603121561318e5761318d613d49565b5b600061319c86828701612e33565b935050602084013567ffffffffffffffff8111156131bd576131bc613d44565b5b6131c986828701612d2d565b92509250509250925092565b6131de81613ab5565b82525050565b6131f56131f082613ab5565b613c21565b82525050565b61320481613ac7565b82525050565b61321381613ad3565b82525050565b6000613224826139b7565b61322e81856139cd565b935061323e818560208601613b42565b61324781613d4e565b840191505092915050565b600061325d826139c2565b61326781856139e9565b9350613277818560208601613b42565b61328081613d4e565b840191505092915050565b6000613296826139c2565b6132a081856139fa565b93506132b0818560208601613b42565b80840191505092915050565b600081546132c981613b75565b6132d381866139fa565b945060018216600081146132ee57600181146132ff57613332565b60ff19831686528186019350613332565b613308856139a2565b60005b8381101561332a5781548189015260018201915060208101905061330b565b838801955050505b50505092915050565b60006133486030836139e9565b915061335382613d6c565b604082019050919050565b600061336b6017836139e9565b915061337682613dbb565b602082019050919050565b600061338e6026836139e9565b915061339982613de4565b604082019050919050565b60006133b16024836139e9565b91506133bc82613e33565b604082019050919050565b60006133d4601c836139e9565b91506133df82613e82565b602082019050919050565b60006133f76020836139e9565b915061340282613eab565b602082019050919050565b600061341a601c836139e9565b915061342582613ed4565b602082019050919050565b600061343d6016836139e9565b915061344882613efd565b602082019050919050565b60006134606021836139e9565b915061346b82613f26565b604082019050919050565b60006134836020836139e9565b915061348e82613f75565b602082019050919050565b60006134a6601d836139e9565b91506134b182613f9e565b602082019050919050565b60006134c96020836139e9565b91506134d482613fc7565b602082019050919050565b60006134ec601c836139e9565b91506134f782613ff0565b602082019050919050565b600061350f6000836139de565b915061351a82614019565b600082019050919050565b6000613532600f836139e9565b915061353d8261401c565b602082019050919050565b6000613555601f836139e9565b915061356082614045565b602082019050919050565b6000613578601b836139e9565b91506135838261406e565b602082019050919050565b600061359b601f836139e9565b91506135a682614097565b602082019050919050565b6135ba81613b29565b82525050565b60006135cc82846131e4565b60148201915081905092915050565b60006135e7828661328b565b91506135f3828561328b565b91506135ff82846132bc565b9150819050949350505050565b600061361782613502565b9150819050919050565b600060208201905061363660008301846131d5565b92915050565b600060808201905061365160008301876131d5565b61365e60208301866131d5565b61366b60408301856135b1565b818103606083015261367d8184613219565b905095945050505050565b600060208201905061369d60008301846131fb565b92915050565b60006020820190506136b8600083018461320a565b92915050565b600060208201905081810360008301526136d88184613252565b905092915050565b600060208201905081810360008301526136f98161333b565b9050919050565b600060208201905081810360008301526137198161335e565b9050919050565b6000602082019050818103600083015261373981613381565b9050919050565b60006020820190508181036000830152613759816133a4565b9050919050565b60006020820190508181036000830152613779816133c7565b9050919050565b60006020820190508181036000830152613799816133ea565b9050919050565b600060208201905081810360008301526137b98161340d565b9050919050565b600060208201905081810360008301526137d981613430565b9050919050565b600060208201905081810360008301526137f981613453565b9050919050565b6000602082019050818103600083015261381981613476565b9050919050565b6000602082019050818103600083015261383981613499565b9050919050565b60006020820190508181036000830152613859816134bc565b9050919050565b60006020820190508181036000830152613879816134df565b9050919050565b6000602082019050818103600083015261389981613525565b9050919050565b600060208201905081810360008301526138b981613548565b9050919050565b600060208201905081810360008301526138d98161356b565b9050919050565b600060208201905081810360008301526138f98161358e565b9050919050565b600060208201905061391560008301846135b1565b92915050565b6000613925613936565b90506139318282613ba7565b919050565b6000604051905090565b600067ffffffffffffffff82111561395b5761395a613d01565b5b61396482613d4e565b9050602081019050919050565b600067ffffffffffffffff82111561398c5761398b613d01565b5b61399582613d4e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a1082613b29565b9150613a1b83613b29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a5057613a4f613c45565b5b828201905092915050565b6000613a6682613b29565b9150613a7183613b29565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aaa57613aa9613c45565b5b828202905092915050565b6000613ac082613b09565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b60578082015181840152602081019050613b45565b83811115613b6f576000848401525b50505050565b60006002820490506001821680613b8d57607f821691505b60208210811415613ba157613ba0613ca3565b5b50919050565b613bb082613d4e565b810181811067ffffffffffffffff82111715613bcf57613bce613d01565b5b80604052505050565b6000613be382613b29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1657613c15613c45565b5b600182019050919050565b6000613c2c82613c33565b9050919050565b6000613c3e82613d5f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f5354363a20696e73756666696369656e742066756e6473000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5354363a206d6178206d696e7420616d6f756e7420706572207478206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f5354363a206f6f707320636f6e74726163742069732070617573656400000000600082015250565b7f5354363a206e65656420746f206d696e74206174206c656173742031204e4654600082015250565b7f5354363a2053616c65204861736e277420737461727465642079657400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f5354363a2057686974656c697374204d6178537570706c79206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f5354363a204d6178204e4654205065722057616c6c6574206578636565646564600082015250565b7f5354363a206d6178206d696e7420706572205478206578636565646564000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5354363a20596f7520617265206e6f742057686974656c697374656400000000600082015250565b50565b7f5354363a20576520536f6c646f75740000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f5354363a2050726573616c65204861736e277420737461727465642079657400600082015250565b6140c981613ab5565b81146140d457600080fd5b50565b6140e081613ac7565b81146140eb57600080fd5b50565b6140f781613ad3565b811461410257600080fd5b50565b61410e81613add565b811461411957600080fd5b50565b61412581613b29565b811461413057600080fd5b5056fea26469706673582212204b78aeeb1977f4684bcbbc7284a5f5c6187bd0f53ddd2c5f42fb1104cfa2241564736f6c63430008070033
Deployed Bytecode Sourcemap
415:4832:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;747:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9155:630:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4804:71:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1994:813;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10039:98:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;571:28:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;603:32:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4360:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;910:25:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;876:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5077:168;;;:::i;:::-;;22758:187:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4184:78:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;814:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4456:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;846:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;784;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;505:21:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;639:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;3878:104:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2870:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3798:76:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1325:626:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23526:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;712:31:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4084:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;530:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3190:478;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;677:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4556:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3674:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3988:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17282:162:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4268:86:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4682:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4975:94:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4881:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;747:33;;;;:::o;9155:630:6:-;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;4804:71:8:-;1094:13:0;:11;:13::i;:::-;4864:6:8::1;4855;;:15;;;;;;;;;;;;;;;;;;4804:71:::0;:::o;1994:813::-;2261:21:1;:19;:21::i;:::-;2106:6:8::1;;;;;;;;;;;2105:7;2097:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;2159:7;;;;;;;;;;;2151:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;2216:84;2235:11;;2216:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2248:10;;2287;2270:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2260:39;;;;;;2216:18;:84::i;:::-;2208:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;2339:14;2356:13;:11;:13::i;:::-;2339:30;;2423:14;;2413:6;2383:27;2397:12;:10;:12::i;:::-;2383:13;:27::i;:::-;:36;;;;:::i;:::-;:54;;2375:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;2497:1;2488:6;:10;2480:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2559:14;;2549:6;:24;;2541:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2640:9;;2630:6;2621;:15;;;;:::i;:::-;:28;;2613:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2723:6;2714;;:15;;;;:::i;:::-;2701:9;:28;;2693:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2766:31;2776:12;:10;:12::i;:::-;2790:6;2766:9;:31::i;:::-;2091:716;2303:20:1::0;:18;:20::i;:::-;1994:813:8;;;:::o;10039:98:6:-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;571:28:8:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15812:398:6:-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;603:32:8:-;;;;:::o;4360:92::-;1094:13:0;:11;:13::i;:::-;4437:10:8::1;4425:9;:22;;;;4360:92:::0;:::o;5894:317:6:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;19903:2764::-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;910:25:8:-;;;;:::o;876:30::-;;;;;;;;;;;;;:::o;5077:168::-;1094:13:0;:11;:13::i;:::-;2261:21:1::1;:19;:21::i;:::-;5142:12:8::2;5168:10;5160:24;;5192:21;5160:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5141:77;;;5232:7;5224:16;;;::::0;::::2;;5135:110;2303:20:1::1;:18;:20::i;:::-;5077:168:8:o:0;22758:187:6:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;4184:78:8:-;1094:13:0;:11;:13::i;:::-;4249:8:8::1;4242:4;:15;;;;4184:78:::0;:::o;814:28::-;;;;;;;;;;;;;:::o;4456:96::-;1094:13:0;:11;:13::i;:::-;4536:11:8::1;4526:7;:21;;;;;;;;;;;;:::i;:::-;;4456:96:::0;:::o;846:26::-;;;;;;;;;;;;;:::o;784:::-;;;;;;;;;;;;;:::o;11391:150:6:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;505:21:8:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;639:34::-;;;;:::o;7045:230:6:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;3878:104:8:-;1094:13:0;:11;:13::i;:::-;3964:11:8::1;3951:10;:24;;;;3878:104:::0;:::o;2870:311::-;1094:13:0;:11;:13::i;:::-;2261:21:1::1;:19;:21::i;:::-;2984:1:8::2;2970:11;:15;2962:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;3023:14;3040:13;:11;:13::i;:::-;3023:30;;3091:9;;3076:11;3067:6;:20;;;;:::i;:::-;:33;;3059:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3136:35;3146:11;3159;3136:9;:35::i;:::-;2956:225;2303:20:1::1;:18;:20::i;:::-;2870:311:8::0;;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;3798:76:8:-;1094:13:0;:11;:13::i;:::-;3863:6:8::1;3852:8;;:17;;;;;;;;;;;;;;;;;;3798:76:::0;:::o;10208:102:6:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;1325:626:8:-;2261:21:1;:19;:21::i;:::-;1398:6:8::1;;;;;;;;;;;1397:7;1389:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;1451:10;;;;;;;;;;;1443:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;1500:14;1517:13;:11;:13::i;:::-;1500:30;;1553:1;1544:6;:10;1536:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1615:12;;1605:6;:22;;1597:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1701:9;;1691:6;1682;:15;;;;:::i;:::-;:28;;1674:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1784:12;;1774:6;1744:27;1758:12;:10;:12::i;:::-;1744:13;:27::i;:::-;:36;;;;:::i;:::-;:52;;1736:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;1867:6;1860:4;;:13;;;;:::i;:::-;1847:9;:26;;1839:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1910:31;1920:12;:10;:12::i;:::-;1934:6;1910:9;:31::i;:::-;1383:568;2303:20:1::0;:18;:20::i;:::-;1325:626:8;:::o;16901:231:6:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;23526:396::-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;712:31:8:-;;;;:::o;4084:94::-;1094:13:0;:11;:13::i;:::-;4167:6:8::1;4150:14;:23;;;;4084:94:::0;:::o;530:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3190:478::-;3283:13;3321:16;3329:7;3321;:16::i;:::-;3306:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;3427:5;3415:17;;:8;;;;;;;;;;;:17;;;3412:60;;;3451:14;3444:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3412:60;3478:28;3509:10;:8;:10::i;:::-;3478:41;;3563:1;3538:14;3532:28;:32;:131;;;;;;;;;;;;;;;;;3599:14;3615:18;:7;:16;:18::i;:::-;3635:13;3582:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3532:131;3525:138;;;3190:478;;;;:::o;677:31::-;;;;:::o;4556:120::-;1094:13:0;:11;:13::i;:::-;4654:17:8::1;4638:13;:33;;;;;;;;;;;;:::i;:::-;;4556:120:::0;:::o;3674:105::-;3732:7;3754:20;3768:5;3754:13;:20::i;:::-;3747:27;;3674:105;;;:::o;3988:90::-;1094:13:0;:11;:13::i;:::-;4067:6:8::1;4052:12;:21;;;;3988:90:::0;:::o;17282:162:6:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;4268:86:8:-;1094:13:0;:11;:13::i;:::-;4339:10:8::1;4330:6;:19;;;;4268:86:::0;:::o;4682:118::-;1094:13:0;:11;:13::i;:::-;4780:15:8::1;4763:14;:32;;;;;;;;;;;;:::i;:::-;;4682:118:::0;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;4975:94:8:-;1094:13:0;:11;:13::i;:::-;5056:6:8::1;5043:10;;:19;;;;;;;;;;;;;;;;;;4975:94:::0;:::o;4881:88::-;1094:13:0;:11;:13::i;:::-;4956:6:8::1;4946:7;;:16;;;;;;;;;;;;;;;;;;4881:88:::0;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;2336:287:1:-;1759:1;2468:7;;:19;;2460:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1759:1;2598:7;:18;;;;2336:287::o;1156:184:4:-;1277:4;1329;1300:25;1313:5;1320:4;1300:12;:25::i;:::-;:33;1293:40;;1156:184;;;;;:::o;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;7352:176:6:-;7413:7;1360:13;1495:2;7440:18;:25;7459:5;7440:25;;;;;;;;;;;;;;;;:50;;7439:82;7432:89;;7352:176;;;:::o;33423:110::-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;2629:209:1:-;1716:1;2809:7;:22;;;;2629:209::o;17693:277:6:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;1210:99:8:-;1275:7;1301:1;1294:8;;1210:99;:::o;12515:1249:6:-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;;13510:111;13527:1;13517:6;:11;13510:111;;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;25948:697:6:-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;1103:100:8:-;1163:13;1191:7;1184:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1103:100;:::o;415:696:3:-;471:13;520:14;557:1;537:17;548:5;537:10;:17::i;:::-;:21;520:38;;572:20;606:6;595:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572:41;;627:11;753:6;749:2;745:15;737:6;733:28;726:35;;788:280;795:4;788:280;;;819:5;;;;;;;;958:8;953:2;946:5;942:14;937:30;932:3;924:44;1012:2;1003:11;;;;;;:::i;:::-;;;;;1045:1;1036:5;:10;1032:21;;;1048:5;;1032:21;788:280;;;1088:6;1081:13;;;;;415:696;;;:::o;1994:290:4:-;2077:7;2096:20;2119:4;2096:27;;2138:9;2133:116;2157:5;:12;2153:1;:16;2133:116;;;2205:33;2215:12;2229:5;2235:1;2229:8;;;;;;;;:::i;:::-;;;;;;;;2205:9;:33::i;:::-;2190:48;;2171:3;;;;;:::i;:::-;;;;2133:116;;;;2265:12;2258:19;;;1994:290;;;;:::o;32675:669:6:-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;38475:143::-;38608:6;38475:143;;;;;:::o;9889:890:5:-;9942:7;9961:14;9978:1;9961:18;;10026:6;10017:5;:15;10013:99;;10061:6;10052:15;;;;;;:::i;:::-;;;;;10095:2;10085:12;;;;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;;;;:::i;:::-;;;;;10207:2;10197:12;;;;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;;;;:::i;:::-;;;;;10319:2;10309:12;;;;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;;;;:::i;:::-;;;;;10429:1;10419:11;;;;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;;;;:::i;:::-;;;;;10538:1;10528:11;;;;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;;;;:::i;:::-;;;;;10647:1;10637:11;;;;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;;;;10676:64;10766:6;10759:13;;;9889:890;;;:::o;8879:147:4:-;8942:7;8972:1;8968;:5;:51;;8999:20;9014:1;9017;8999:14;:20::i;:::-;8968:51;;;8976:20;8991:1;8994;8976:14;:20::i;:::-;8968:51;8961:58;;8879:147;;;;:::o;27091:2902:6:-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;9032:261:4:-;9100:13;9204:1;9198:4;9191:15;9232:1;9226:4;9219:15;9272:4;9266;9256:21;9247:30;;9032:261;;;;:::o;14837:318:6:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:9:-;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:323::-;6412:6;6461:2;6449:9;6440:7;6436:23;6432:32;6429:119;;;6467:79;;:::i;:::-;6429:119;6587:1;6612:50;6654:7;6645:6;6634:9;6630:22;6612:50;:::i;:::-;6602:60;;6558:114;6356:323;;;;:::o;6685:329::-;6744:6;6793:2;6781:9;6772:7;6768:23;6764:32;6761:119;;;6799:79;;:::i;:::-;6761:119;6919:1;6944:53;6989:7;6980:6;6969:9;6965:22;6944:53;:::i;:::-;6934:63;;6890:117;6685:329;;;;:::o;7020:327::-;7078:6;7127:2;7115:9;7106:7;7102:23;7098:32;7095:119;;;7133:79;;:::i;:::-;7095:119;7253:1;7278:52;7322:7;7313:6;7302:9;7298:22;7278:52;:::i;:::-;7268:62;;7224:116;7020:327;;;;:::o;7353:349::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7597:1;7622:63;7677:7;7668:6;7657:9;7653:22;7622:63;:::i;:::-;7612:73;;7568:127;7353:349;;;;:::o;7708:509::-;7777:6;7826:2;7814:9;7805:7;7801:23;7797:32;7794:119;;;7832:79;;:::i;:::-;7794:119;7980:1;7969:9;7965:17;7952:31;8010:18;8002:6;7999:30;7996:117;;;8032:79;;:::i;:::-;7996:117;8137:63;8192:7;8183:6;8172:9;8168:22;8137:63;:::i;:::-;8127:73;;7923:287;7708:509;;;;:::o;8223:329::-;8282:6;8331:2;8319:9;8310:7;8306:23;8302:32;8299:119;;;8337:79;;:::i;:::-;8299:119;8457:1;8482:53;8527:7;8518:6;8507:9;8503:22;8482:53;:::i;:::-;8472:63;;8428:117;8223:329;;;;:::o;8558:474::-;8626:6;8634;8683:2;8671:9;8662:7;8658:23;8654:32;8651:119;;;8689:79;;:::i;:::-;8651:119;8809:1;8834:53;8879:7;8870:6;8859:9;8855:22;8834:53;:::i;:::-;8824:63;;8780:117;8936:2;8962:53;9007:7;8998:6;8987:9;8983:22;8962:53;:::i;:::-;8952:63;;8907:118;8558:474;;;;;:::o;9038:704::-;9133:6;9141;9149;9198:2;9186:9;9177:7;9173:23;9169:32;9166:119;;;9204:79;;:::i;:::-;9166:119;9324:1;9349:53;9394:7;9385:6;9374:9;9370:22;9349:53;:::i;:::-;9339:63;;9295:117;9479:2;9468:9;9464:18;9451:32;9510:18;9502:6;9499:30;9496:117;;;9532:79;;:::i;:::-;9496:117;9645:80;9717:7;9708:6;9697:9;9693:22;9645:80;:::i;:::-;9627:98;;;;9422:313;9038:704;;;;;:::o;9748:118::-;9835:24;9853:5;9835:24;:::i;:::-;9830:3;9823:37;9748:118;;:::o;9872:157::-;9977:45;9997:24;10015:5;9997:24;:::i;:::-;9977:45;:::i;:::-;9972:3;9965:58;9872:157;;:::o;10035:109::-;10116:21;10131:5;10116:21;:::i;:::-;10111:3;10104:34;10035:109;;:::o;10150:118::-;10237:24;10255:5;10237:24;:::i;:::-;10232:3;10225:37;10150:118;;:::o;10274:360::-;10360:3;10388:38;10420:5;10388:38;:::i;:::-;10442:70;10505:6;10500:3;10442:70;:::i;:::-;10435:77;;10521:52;10566:6;10561:3;10554:4;10547:5;10543:16;10521:52;:::i;:::-;10598:29;10620:6;10598:29;:::i;:::-;10593:3;10589:39;10582:46;;10364:270;10274:360;;;;:::o;10640:364::-;10728:3;10756:39;10789:5;10756:39;:::i;:::-;10811:71;10875:6;10870:3;10811:71;:::i;:::-;10804:78;;10891:52;10936:6;10931:3;10924:4;10917:5;10913:16;10891:52;:::i;:::-;10968:29;10990:6;10968:29;:::i;:::-;10963:3;10959:39;10952:46;;10732:272;10640:364;;;;:::o;11010:377::-;11116:3;11144:39;11177:5;11144:39;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11297:52;11342:6;11337:3;11330:4;11323:5;11319:16;11297:52;:::i;:::-;11374:6;11369:3;11365:16;11358:23;;11120:267;11010:377;;;;:::o;11417:845::-;11520:3;11557:5;11551:12;11586:36;11612:9;11586:36;:::i;:::-;11638:89;11720:6;11715:3;11638:89;:::i;:::-;11631:96;;11758:1;11747:9;11743:17;11774:1;11769:137;;;;11920:1;11915:341;;;;11736:520;;11769:137;11853:4;11849:9;11838;11834:25;11829:3;11822:38;11889:6;11884:3;11880:16;11873:23;;11769:137;;11915:341;11982:38;12014:5;11982:38;:::i;:::-;12042:1;12056:154;12070:6;12067:1;12064:13;12056:154;;;12144:7;12138:14;12134:1;12129:3;12125:11;12118:35;12194:1;12185:7;12181:15;12170:26;;12092:4;12089:1;12085:12;12080:17;;12056:154;;;12239:6;12234:3;12230:16;12223:23;;11922:334;;11736:520;;11524:738;;11417:845;;;;:::o;12268:366::-;12410:3;12431:67;12495:2;12490:3;12431:67;:::i;:::-;12424:74;;12507:93;12596:3;12507:93;:::i;:::-;12625:2;12620:3;12616:12;12609:19;;12268:366;;;:::o;12640:::-;12782:3;12803:67;12867:2;12862:3;12803:67;:::i;:::-;12796:74;;12879:93;12968:3;12879:93;:::i;:::-;12997:2;12992:3;12988:12;12981:19;;12640:366;;;:::o;13012:::-;13154:3;13175:67;13239:2;13234:3;13175:67;:::i;:::-;13168:74;;13251:93;13340:3;13251:93;:::i;:::-;13369:2;13364:3;13360:12;13353:19;;13012:366;;;:::o;13384:::-;13526:3;13547:67;13611:2;13606:3;13547:67;:::i;:::-;13540:74;;13623:93;13712:3;13623:93;:::i;:::-;13741:2;13736:3;13732:12;13725:19;;13384:366;;;:::o;13756:::-;13898:3;13919:67;13983:2;13978:3;13919:67;:::i;:::-;13912:74;;13995:93;14084:3;13995:93;:::i;:::-;14113:2;14108:3;14104:12;14097:19;;13756:366;;;:::o;14128:::-;14270:3;14291:67;14355:2;14350:3;14291:67;:::i;:::-;14284:74;;14367:93;14456:3;14367:93;:::i;:::-;14485:2;14480:3;14476:12;14469:19;;14128:366;;;:::o;14500:::-;14642:3;14663:67;14727:2;14722:3;14663:67;:::i;:::-;14656:74;;14739:93;14828:3;14739:93;:::i;:::-;14857:2;14852:3;14848:12;14841:19;;14500:366;;;:::o;14872:::-;15014:3;15035:67;15099:2;15094:3;15035:67;:::i;:::-;15028:74;;15111:93;15200:3;15111:93;:::i;:::-;15229:2;15224:3;15220:12;15213:19;;14872:366;;;:::o;15244:::-;15386:3;15407:67;15471:2;15466:3;15407:67;:::i;:::-;15400:74;;15483:93;15572:3;15483:93;:::i;:::-;15601:2;15596:3;15592:12;15585:19;;15244:366;;;:::o;15616:::-;15758:3;15779:67;15843:2;15838:3;15779:67;:::i;:::-;15772:74;;15855:93;15944:3;15855:93;:::i;:::-;15973:2;15968:3;15964:12;15957:19;;15616:366;;;:::o;15988:::-;16130:3;16151:67;16215:2;16210:3;16151:67;:::i;:::-;16144:74;;16227:93;16316:3;16227:93;:::i;:::-;16345:2;16340:3;16336:12;16329:19;;15988:366;;;:::o;16360:::-;16502:3;16523:67;16587:2;16582:3;16523:67;:::i;:::-;16516:74;;16599:93;16688:3;16599:93;:::i;:::-;16717:2;16712:3;16708:12;16701:19;;16360:366;;;:::o;16732:::-;16874:3;16895:67;16959:2;16954:3;16895:67;:::i;:::-;16888:74;;16971:93;17060:3;16971:93;:::i;:::-;17089:2;17084:3;17080:12;17073:19;;16732:366;;;:::o;17104:398::-;17263:3;17284:83;17365:1;17360:3;17284:83;:::i;:::-;17277:90;;17376:93;17465:3;17376:93;:::i;:::-;17494:1;17489:3;17485:11;17478:18;;17104:398;;;:::o;17508:366::-;17650:3;17671:67;17735:2;17730:3;17671:67;:::i;:::-;17664:74;;17747:93;17836:3;17747:93;:::i;:::-;17865:2;17860:3;17856:12;17849:19;;17508:366;;;:::o;17880:::-;18022:3;18043:67;18107:2;18102:3;18043:67;:::i;:::-;18036:74;;18119:93;18208:3;18119:93;:::i;:::-;18237:2;18232:3;18228:12;18221:19;;17880:366;;;:::o;18252:::-;18394:3;18415:67;18479:2;18474:3;18415:67;:::i;:::-;18408:74;;18491:93;18580:3;18491:93;:::i;:::-;18609:2;18604:3;18600:12;18593:19;;18252:366;;;:::o;18624:::-;18766:3;18787:67;18851:2;18846:3;18787:67;:::i;:::-;18780:74;;18863:93;18952:3;18863:93;:::i;:::-;18981:2;18976:3;18972:12;18965:19;;18624:366;;;:::o;18996:118::-;19083:24;19101:5;19083:24;:::i;:::-;19078:3;19071:37;18996:118;;:::o;19120:256::-;19232:3;19247:75;19318:3;19309:6;19247:75;:::i;:::-;19347:2;19342:3;19338:12;19331:19;;19367:3;19360:10;;19120:256;;;;:::o;19382:589::-;19607:3;19629:95;19720:3;19711:6;19629:95;:::i;:::-;19622:102;;19741:95;19832:3;19823:6;19741:95;:::i;:::-;19734:102;;19853:92;19941:3;19932:6;19853:92;:::i;:::-;19846:99;;19962:3;19955:10;;19382:589;;;;;;:::o;19977:379::-;20161:3;20183:147;20326:3;20183:147;:::i;:::-;20176:154;;20347:3;20340:10;;19977:379;;;:::o;20362:222::-;20455:4;20493:2;20482:9;20478:18;20470:26;;20506:71;20574:1;20563:9;20559:17;20550:6;20506:71;:::i;:::-;20362:222;;;;:::o;20590:640::-;20785:4;20823:3;20812:9;20808:19;20800:27;;20837:71;20905:1;20894:9;20890:17;20881:6;20837:71;:::i;:::-;20918:72;20986:2;20975:9;20971:18;20962:6;20918:72;:::i;:::-;21000;21068:2;21057:9;21053:18;21044:6;21000:72;:::i;:::-;21119:9;21113:4;21109:20;21104:2;21093:9;21089:18;21082:48;21147:76;21218:4;21209:6;21147:76;:::i;:::-;21139:84;;20590:640;;;;;;;:::o;21236:210::-;21323:4;21361:2;21350:9;21346:18;21338:26;;21374:65;21436:1;21425:9;21421:17;21412:6;21374:65;:::i;:::-;21236:210;;;;:::o;21452:222::-;21545:4;21583:2;21572:9;21568:18;21560:26;;21596:71;21664:1;21653:9;21649:17;21640:6;21596:71;:::i;:::-;21452:222;;;;:::o;21680:313::-;21793:4;21831:2;21820:9;21816:18;21808:26;;21880:9;21874:4;21870:20;21866:1;21855:9;21851:17;21844:47;21908:78;21981:4;21972:6;21908:78;:::i;:::-;21900:86;;21680:313;;;;:::o;21999:419::-;22165:4;22203:2;22192:9;22188:18;22180:26;;22252:9;22246:4;22242:20;22238:1;22227:9;22223:17;22216:47;22280:131;22406:4;22280:131;:::i;:::-;22272:139;;21999:419;;;:::o;22424:::-;22590:4;22628:2;22617:9;22613:18;22605:26;;22677:9;22671:4;22667:20;22663:1;22652:9;22648:17;22641:47;22705:131;22831:4;22705:131;:::i;:::-;22697:139;;22424:419;;;:::o;22849:::-;23015:4;23053:2;23042:9;23038:18;23030:26;;23102:9;23096:4;23092:20;23088:1;23077:9;23073:17;23066:47;23130:131;23256:4;23130:131;:::i;:::-;23122:139;;22849:419;;;:::o;23274:::-;23440:4;23478:2;23467:9;23463:18;23455:26;;23527:9;23521:4;23517:20;23513:1;23502:9;23498:17;23491:47;23555:131;23681:4;23555:131;:::i;:::-;23547:139;;23274:419;;;:::o;23699:::-;23865:4;23903:2;23892:9;23888:18;23880:26;;23952:9;23946:4;23942:20;23938:1;23927:9;23923:17;23916:47;23980:131;24106:4;23980:131;:::i;:::-;23972:139;;23699:419;;;:::o;24124:::-;24290:4;24328:2;24317:9;24313:18;24305:26;;24377:9;24371:4;24367:20;24363:1;24352:9;24348:17;24341:47;24405:131;24531:4;24405:131;:::i;:::-;24397:139;;24124:419;;;:::o;24549:::-;24715:4;24753:2;24742:9;24738:18;24730:26;;24802:9;24796:4;24792:20;24788:1;24777:9;24773:17;24766:47;24830:131;24956:4;24830:131;:::i;:::-;24822:139;;24549:419;;;:::o;24974:::-;25140:4;25178:2;25167:9;25163:18;25155:26;;25227:9;25221:4;25217:20;25213:1;25202:9;25198:17;25191:47;25255:131;25381:4;25255:131;:::i;:::-;25247:139;;24974:419;;;:::o;25399:::-;25565:4;25603:2;25592:9;25588:18;25580:26;;25652:9;25646:4;25642:20;25638:1;25627:9;25623:17;25616:47;25680:131;25806:4;25680:131;:::i;:::-;25672:139;;25399:419;;;:::o;25824:::-;25990:4;26028:2;26017:9;26013:18;26005:26;;26077:9;26071:4;26067:20;26063:1;26052:9;26048:17;26041:47;26105:131;26231:4;26105:131;:::i;:::-;26097:139;;25824:419;;;:::o;26249:::-;26415:4;26453:2;26442:9;26438:18;26430:26;;26502:9;26496:4;26492:20;26488:1;26477:9;26473:17;26466:47;26530:131;26656:4;26530:131;:::i;:::-;26522:139;;26249:419;;;:::o;26674:::-;26840:4;26878:2;26867:9;26863:18;26855:26;;26927:9;26921:4;26917:20;26913:1;26902:9;26898:17;26891:47;26955:131;27081:4;26955:131;:::i;:::-;26947:139;;26674:419;;;:::o;27099:::-;27265:4;27303:2;27292:9;27288:18;27280:26;;27352:9;27346:4;27342:20;27338:1;27327:9;27323:17;27316:47;27380:131;27506:4;27380:131;:::i;:::-;27372:139;;27099:419;;;:::o;27524:::-;27690:4;27728:2;27717:9;27713:18;27705:26;;27777:9;27771:4;27767:20;27763:1;27752:9;27748:17;27741:47;27805:131;27931:4;27805:131;:::i;:::-;27797:139;;27524:419;;;:::o;27949:::-;28115:4;28153:2;28142:9;28138:18;28130:26;;28202:9;28196:4;28192:20;28188:1;28177:9;28173:17;28166:47;28230:131;28356:4;28230:131;:::i;:::-;28222:139;;27949:419;;;:::o;28374:::-;28540:4;28578:2;28567:9;28563:18;28555:26;;28627:9;28621:4;28617:20;28613:1;28602:9;28598:17;28591:47;28655:131;28781:4;28655:131;:::i;:::-;28647:139;;28374:419;;;:::o;28799:::-;28965:4;29003:2;28992:9;28988:18;28980:26;;29052:9;29046:4;29042:20;29038:1;29027:9;29023:17;29016:47;29080:131;29206:4;29080:131;:::i;:::-;29072:139;;28799:419;;;:::o;29224:222::-;29317:4;29355:2;29344:9;29340:18;29332:26;;29368:71;29436:1;29425:9;29421:17;29412:6;29368:71;:::i;:::-;29224:222;;;;:::o;29452:129::-;29486:6;29513:20;;:::i;:::-;29503:30;;29542:33;29570:4;29562:6;29542:33;:::i;:::-;29452:129;;;:::o;29587:75::-;29620:6;29653:2;29647:9;29637:19;;29587:75;:::o;29668:307::-;29729:4;29819:18;29811:6;29808:30;29805:56;;;29841:18;;:::i;:::-;29805:56;29879:29;29901:6;29879:29;:::i;:::-;29871:37;;29963:4;29957;29953:15;29945:23;;29668:307;;;:::o;29981:308::-;30043:4;30133:18;30125:6;30122:30;30119:56;;;30155:18;;:::i;:::-;30119:56;30193:29;30215:6;30193:29;:::i;:::-;30185:37;;30277:4;30271;30267:15;30259:23;;29981:308;;;:::o;30295:141::-;30344:4;30367:3;30359:11;;30390:3;30387:1;30380:14;30424:4;30421:1;30411:18;30403:26;;30295:141;;;:::o;30442:98::-;30493:6;30527:5;30521:12;30511:22;;30442:98;;;:::o;30546:99::-;30598:6;30632:5;30626:12;30616:22;;30546:99;;;:::o;30651:168::-;30734:11;30768:6;30763:3;30756:19;30808:4;30803:3;30799:14;30784:29;;30651:168;;;;:::o;30825:147::-;30926:11;30963:3;30948:18;;30825:147;;;;:::o;30978:169::-;31062:11;31096:6;31091:3;31084:19;31136:4;31131:3;31127:14;31112:29;;30978:169;;;;:::o;31153:148::-;31255:11;31292:3;31277:18;;31153:148;;;;:::o;31307:305::-;31347:3;31366:20;31384:1;31366:20;:::i;:::-;31361:25;;31400:20;31418:1;31400:20;:::i;:::-;31395:25;;31554:1;31486:66;31482:74;31479:1;31476:81;31473:107;;;31560:18;;:::i;:::-;31473:107;31604:1;31601;31597:9;31590:16;;31307:305;;;;:::o;31618:348::-;31658:7;31681:20;31699:1;31681:20;:::i;:::-;31676:25;;31715:20;31733:1;31715:20;:::i;:::-;31710:25;;31903:1;31835:66;31831:74;31828:1;31825:81;31820:1;31813:9;31806:17;31802:105;31799:131;;;31910:18;;:::i;:::-;31799:131;31958:1;31955;31951:9;31940:20;;31618:348;;;;:::o;31972:96::-;32009:7;32038:24;32056:5;32038:24;:::i;:::-;32027:35;;31972:96;;;:::o;32074:90::-;32108:7;32151:5;32144:13;32137:21;32126:32;;32074:90;;;:::o;32170:77::-;32207:7;32236:5;32225:16;;32170:77;;;:::o;32253:149::-;32289:7;32329:66;32322:5;32318:78;32307:89;;32253:149;;;:::o;32408:126::-;32445:7;32485:42;32478:5;32474:54;32463:65;;32408:126;;;:::o;32540:77::-;32577:7;32606:5;32595:16;;32540:77;;;:::o;32623:154::-;32707:6;32702:3;32697;32684:30;32769:1;32760:6;32755:3;32751:16;32744:27;32623:154;;;:::o;32783:307::-;32851:1;32861:113;32875:6;32872:1;32869:13;32861:113;;;32960:1;32955:3;32951:11;32945:18;32941:1;32936:3;32932:11;32925:39;32897:2;32894:1;32890:10;32885:15;;32861:113;;;32992:6;32989:1;32986:13;32983:101;;;33072:1;33063:6;33058:3;33054:16;33047:27;32983:101;32832:258;32783:307;;;:::o;33096:320::-;33140:6;33177:1;33171:4;33167:12;33157:22;;33224:1;33218:4;33214:12;33245:18;33235:81;;33301:4;33293:6;33289:17;33279:27;;33235:81;33363:2;33355:6;33352:14;33332:18;33329:38;33326:84;;;33382:18;;:::i;:::-;33326:84;33147:269;33096:320;;;:::o;33422:281::-;33505:27;33527:4;33505:27;:::i;:::-;33497:6;33493:40;33635:6;33623:10;33620:22;33599:18;33587:10;33584:34;33581:62;33578:88;;;33646:18;;:::i;:::-;33578:88;33686:10;33682:2;33675:22;33465:238;33422:281;;:::o;33709:233::-;33748:3;33771:24;33789:5;33771:24;:::i;:::-;33762:33;;33817:66;33810:5;33807:77;33804:103;;;33887:18;;:::i;:::-;33804:103;33934:1;33927:5;33923:13;33916:20;;33709:233;;;:::o;33948:100::-;33987:7;34016:26;34036:5;34016:26;:::i;:::-;34005:37;;33948:100;;;:::o;34054:94::-;34093:7;34122:20;34136:5;34122:20;:::i;:::-;34111:31;;34054:94;;;:::o;34154:180::-;34202:77;34199:1;34192:88;34299:4;34296:1;34289:15;34323:4;34320:1;34313:15;34340:180;34388:77;34385:1;34378:88;34485:4;34482:1;34475:15;34509:4;34506:1;34499:15;34526:180;34574:77;34571:1;34564:88;34671:4;34668:1;34661:15;34695:4;34692:1;34685:15;34712:180;34760:77;34757:1;34750:88;34857:4;34854:1;34847:15;34881:4;34878:1;34871:15;34898:180;34946:77;34943:1;34936:88;35043:4;35040:1;35033:15;35067:4;35064:1;35057:15;35084:117;35193:1;35190;35183:12;35207:117;35316:1;35313;35306:12;35330:117;35439:1;35436;35429:12;35453:117;35562:1;35559;35552:12;35576:117;35685:1;35682;35675:12;35699:117;35808:1;35805;35798:12;35822:102;35863:6;35914:2;35910:7;35905:2;35898:5;35894:14;35890:28;35880:38;;35822:102;;;:::o;35930:94::-;35963:8;36011:5;36007:2;36003:14;35982:35;;35930:94;;;:::o;36030:235::-;36170:34;36166:1;36158:6;36154:14;36147:58;36239:18;36234:2;36226:6;36222:15;36215:43;36030:235;:::o;36271:173::-;36411:25;36407:1;36399:6;36395:14;36388:49;36271:173;:::o;36450:225::-;36590:34;36586:1;36578:6;36574:14;36567:58;36659:8;36654:2;36646:6;36642:15;36635:33;36450:225;:::o;36681:223::-;36821:34;36817:1;36809:6;36805:14;36798:58;36890:6;36885:2;36877:6;36873:15;36866:31;36681:223;:::o;36910:178::-;37050:30;37046:1;37038:6;37034:14;37027:54;36910:178;:::o;37094:182::-;37234:34;37230:1;37222:6;37218:14;37211:58;37094:182;:::o;37282:178::-;37422:30;37418:1;37410:6;37406:14;37399:54;37282:178;:::o;37466:172::-;37606:24;37602:1;37594:6;37590:14;37583:48;37466:172;:::o;37644:220::-;37784:34;37780:1;37772:6;37768:14;37761:58;37853:3;37848:2;37840:6;37836:15;37829:28;37644:220;:::o;37870:182::-;38010:34;38006:1;37998:6;37994:14;37987:58;37870:182;:::o;38058:179::-;38198:31;38194:1;38186:6;38182:14;38175:55;38058:179;:::o;38243:182::-;38383:34;38379:1;38371:6;38367:14;38360:58;38243:182;:::o;38431:178::-;38571:30;38567:1;38559:6;38555:14;38548:54;38431:178;:::o;38615:114::-;;:::o;38735:165::-;38875:17;38871:1;38863:6;38859:14;38852:41;38735:165;:::o;38906:181::-;39046:33;39042:1;39034:6;39030:14;39023:57;38906:181;:::o;39093:177::-;39233:29;39229:1;39221:6;39217:14;39210:53;39093:177;:::o;39276:181::-;39416:33;39412:1;39404:6;39400:14;39393:57;39276:181;:::o;39463:122::-;39536:24;39554:5;39536:24;:::i;:::-;39529:5;39526:35;39516:63;;39575:1;39572;39565:12;39516:63;39463:122;:::o;39591:116::-;39661:21;39676:5;39661:21;:::i;:::-;39654:5;39651:32;39641:60;;39697:1;39694;39687:12;39641:60;39591:116;:::o;39713:122::-;39786:24;39804:5;39786:24;:::i;:::-;39779:5;39776:35;39766:63;;39825:1;39822;39815:12;39766:63;39713:122;:::o;39841:120::-;39913:23;39930:5;39913:23;:::i;:::-;39906:5;39903:34;39893:62;;39951:1;39948;39941:12;39893:62;39841:120;:::o;39967:122::-;40040:24;40058:5;40040:24;:::i;:::-;40033:5;40030:35;40020:63;;40079:1;40076;40069:12;40020:63;39967:122;:::o
Swarm Source
ipfs://4b78aeeb1977f4684bcbbc7284a5f5c6187bd0f53ddd2c5f42fb1104cfa22415
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.