ERC-721
Overview
Max Total Supply
8,888 TMC
Holders
3,012
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TMCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TroublemakerClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-26 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // 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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @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; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // 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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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 { // Reference type for token approval. 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 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 { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _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]`. 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 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 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 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. 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`. ) 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 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // 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) } } } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: contracts/TroublemakerClub.sol pragma solidity ^0.8.4; contract TroublemakerClub is ERC721AQueryable, Ownable, ReentrancyGuard { bytes32 public merkleRoot; bytes32 public holderMerkleRoot; mapping(address => bool) public listClaimed; string public uriPrefix = ''; uint256 public cost = 0.003 ether; uint256 public maxSupply = 8888; uint256 public maxMintAmountPerTx = 5; bool public holderMintEnabled = false; bool public whitelistMintEnabled = false; bool public publicMintEnabled = false; IERC721A public MachineSoldier = IERC721A(address(0x856b5eFe21CF134924f40F0124631298bB2204f6)); constructor( string memory _tokenName, string memory _tokenSymbol ) ERC721A(_tokenName, _tokenSymbol) { _safeMint(msg.sender, 128); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!'); require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!'); _; } function holderMint(bytes32[] calldata _merkleProof) public { require(holderMintEnabled, 'The holder mint is not enabled!'); require(!listClaimed[_msgSender()], 'Address already claimed!'); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require(MerkleProof.verify(_merkleProof, holderMerkleRoot, leaf), 'Invalid proof!'); uint256 _mintAmount = 1; uint256 msCount = MachineSoldier.balanceOf(address(msg.sender)); if (msCount >= 10) { uint256 multiplier = 10; _mintAmount += (msCount * multiplier) / 100; } require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!'); listClaimed[_msgSender()] = true; _safeMint(_msgSender(), _mintAmount); } function whitelistMint(bytes32[] calldata _merkleProof) public { require(whitelistMintEnabled, 'The WL mint is not enabled!'); require(!listClaimed[_msgSender()], 'Address already claimed!'); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!'); require(totalSupply() + 1 <= maxSupply, 'Max supply exceeded!'); listClaimed[_msgSender()] = true; _safeMint(_msgSender(), 1); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(publicMintEnabled, 'The contract is paused!'); require(msg.value >= cost * _mintAmount, 'Insufficient funds!'); if (random(100) < _mintAmount) { _mintAmount += 1; } _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _toString(_tokenId))) : ''; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setPublicMintEnabled(bool _state) public onlyOwner { publicMintEnabled = _state; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setWhitelistMintEnabled(bool _state) public onlyOwner { whitelistMintEnabled = _state; } function setHolderMerkleRoot(bytes32 _merkleRoot) public onlyOwner { holderMerkleRoot = _merkleRoot; } function setHolderMintEnabled(bool _state) public onlyOwner { holderMintEnabled = _state; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function random(uint number) internal view returns(uint) { return uint(keccak256(abi.encodePacked(block.timestamp, block.difficulty, msg.sender))) % number; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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":"MachineSoldier","outputs":[{"internalType":"contract IERC721A","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holderMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"holderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"holderMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"listClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setHolderMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setHolderMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","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":"bool","name":"_state","type":"bool"}],"name":"setPublicMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600d90805190602001906200002b92919062000737565b50660aa87bee538000600e556122b8600f5560056010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff02191690831515021790555073856b5efe21cf134924f40f0124631298bb2204f6601160036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000f557600080fd5b50604051620053ca380380620053ca83398181016040528101906200011b9190620008ae565b818181600290805190602001906200013592919062000737565b5080600390805190602001906200014e92919062000737565b506200015f620001aa60201b60201c565b6000819055505050620001876200017b620001af60201b60201c565b620001b760201b60201c565b6001600981905550620001a23360806200027d60201b60201c565b505062000c0e565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200029f828260405180602001604052806000815250620002a360201b60201c565b5050565b620002b583836200035460201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200034f57600080549050600083820390505b620002fe60008683806001019450866200053d60201b60201c565b62000335576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002e35781600054146200034c57600080fd5b50505b505050565b600080549050600082141562000396576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003ab6000848385620006af60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200043a836200041c6000866000620006b560201b60201c565b6200042d85620006e560201b60201c565b17620006f560201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620004dd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620004a0565b5060008214156200051a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200053860008483856200072060201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200056b6200072660201b60201c565b8786866040518563ffffffff1660e01b81526004016200058f949392919062000996565b602060405180830381600087803b158015620005aa57600080fd5b505af1925050508015620005de57506040513d601f19601f82011682018060405250810190620005db91906200087c565b60015b6200065c573d806000811462000611576040519150601f19603f3d011682016040523d82523d6000602084013e62000616565b606091505b5060008151141562000654576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620006d48686846200072e60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620007459062000b05565b90600052602060002090601f016020900481019282620007695760008555620007b5565b82601f106200078457805160ff1916838001178555620007b5565b82800160010185558215620007b5579182015b82811115620007b457825182559160200191906001019062000797565b5b509050620007c49190620007c8565b5090565b5b80821115620007e3576000816000905550600101620007c9565b5090565b6000620007fe620007f88462000a13565b620009ea565b9050828152602081018484840111156200081d576200081c62000bd4565b5b6200082a84828562000acf565b509392505050565b600081519050620008438162000bf4565b92915050565b600082601f83011262000861576200086062000bcf565b5b815162000873848260208601620007e7565b91505092915050565b60006020828403121562000895576200089462000bde565b5b6000620008a58482850162000832565b91505092915050565b60008060408385031215620008c857620008c762000bde565b5b600083015167ffffffffffffffff811115620008e957620008e862000bd9565b5b620008f78582860162000849565b925050602083015167ffffffffffffffff8111156200091b576200091a62000bd9565b5b620009298582860162000849565b9150509250929050565b6200093e8162000a65565b82525050565b6000620009518262000a49565b6200095d818562000a54565b93506200096f81856020860162000acf565b6200097a8162000be3565b840191505092915050565b620009908162000ac5565b82525050565b6000608082019050620009ad600083018762000933565b620009bc602083018662000933565b620009cb604083018562000985565b8181036060830152620009df818462000944565b905095945050505050565b6000620009f662000a09565b905062000a04828262000b3b565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a315762000a3062000ba0565b5b62000a3c8262000be3565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a728262000aa5565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000aef57808201518184015260208101905062000ad2565b8381111562000aff576000848401525b50505050565b6000600282049050600182168062000b1e57607f821691505b6020821081141562000b355762000b3462000b71565b5b50919050565b62000b468262000be3565b810181811067ffffffffffffffff8211171562000b685762000b6762000ba0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000bff8162000a79565b811462000c0b57600080fd5b50565b6147ac8062000c1e6000396000f3fe60806040526004361061027d5760003560e01c80637cb647591161014f578063b071401b116100c1578063d5abeb011161007a578063d5abeb0114610987578063e2b9e128146109b2578063e2ee78fb146109ef578063e985e9c514610a18578063efbd73f414610a55578063f2fde38b14610a7e5761027d565b8063b071401b14610869578063b767a09814610892578063b88d4fde146108bb578063c23dc68f146108e4578063c87b56dd14610921578063d4c977361461095e5761027d565b80638e1b57cb116101135780638e1b57cb1461076657806394354fd01461079157806395d89b41146107bc57806399a2557a146107e7578063a0712d6814610824578063a22cb465146108405761027d565b80637cb64759146106835780637ec4a659146106ac578063818668d7146106d55780638462151c146106fe5780638da5cb5b1461073b5761027d565b8063372f657c116101f357806362b99ad4116101ac57806362b99ad4146105735780636352211e1461059e5780636caede3d146105db5780636f8b44b01461060657806370a082311461062f578063715018a61461066c5761027d565b8063372f657c146104795780633ccfd60b146104a257806342842e0e146104b957806344a0d68a146104e257806359f9e4311461050b5780635bbb2177146105365761027d565b8063137ae1fe11610245578063137ae1fe1461037b57806313faede6146103a4578063143efd1c146103cf57806318160ddd146103fa57806323b872dd146104255780632eb4a7ab1461044e5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630f4161aa14610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906135ef565b610aa7565b6040516102b69190613d2c565b60405180910390f35b3480156102cb57600080fd5b506102d4610b39565b6040516102e19190613d7d565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613692565b610bcb565b60405161031e9190613c81565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613468565b610c4a565b005b34801561035c57600080fd5b50610365610d8e565b6040516103729190613d2c565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d91906134fb565b610da1565b005b3480156103b057600080fd5b506103b96110fb565b6040516103c69190613f3a565b60405180910390f35b3480156103db57600080fd5b506103e4611101565b6040516103f19190613d47565b60405180910390f35b34801561040657600080fd5b5061040f611107565b60405161041c9190613f3a565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613352565b61111e565b005b34801561045a57600080fd5b50610463611443565b6040516104709190613d47565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906134fb565b611449565b005b3480156104ae57600080fd5b506104b76116b9565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613352565b611797565b005b3480156104ee57600080fd5b5061050960048036038101906105049190613692565b6117b7565b005b34801561051757600080fd5b506105206117c9565b60405161052d9190613d62565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613548565b6117ef565b60405161056a9190613ce8565b60405180910390f35b34801561057f57600080fd5b506105886118b2565b6040516105959190613d7d565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190613692565b611940565b6040516105d29190613c81565b60405180910390f35b3480156105e757600080fd5b506105f0611952565b6040516105fd9190613d2c565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190613692565b611965565b005b34801561063b57600080fd5b50610656600480360381019061065191906132e5565b611977565b6040516106639190613f3a565b60405180910390f35b34801561067857600080fd5b50610681611a30565b005b34801561068f57600080fd5b506106aa60048036038101906106a591906135c2565b611a44565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613649565b611a56565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613595565b611a78565b005b34801561070a57600080fd5b50610725600480360381019061072091906132e5565b611a9d565b6040516107329190613d0a565b60405180910390f35b34801561074757600080fd5b50610750611be7565b60405161075d9190613c81565b60405180910390f35b34801561077257600080fd5b5061077b611c11565b6040516107889190613d2c565b60405180910390f35b34801561079d57600080fd5b506107a6611c24565b6040516107b39190613f3a565b60405180910390f35b3480156107c857600080fd5b506107d1611c2a565b6040516107de9190613d7d565b60405180910390f35b3480156107f357600080fd5b5061080e600480360381019061080991906134a8565b611cbc565b60405161081b9190613d0a565b60405180910390f35b61083e60048036038101906108399190613692565b611ed0565b005b34801561084c57600080fd5b5061086760048036038101906108629190613428565b61204e565b005b34801561087557600080fd5b50610890600480360381019061088b9190613692565b6121c6565b005b34801561089e57600080fd5b506108b960048036038101906108b49190613595565b6121d8565b005b3480156108c757600080fd5b506108e260048036038101906108dd91906133a5565b6121fd565b005b3480156108f057600080fd5b5061090b60048036038101906109069190613692565b612270565b6040516109189190613f1f565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190613692565b6122da565b6040516109559190613d7d565b60405180910390f35b34801561096a57600080fd5b5061098560048036038101906109809190613595565b612381565b005b34801561099357600080fd5b5061099c6123a6565b6040516109a99190613f3a565b60405180910390f35b3480156109be57600080fd5b506109d960048036038101906109d491906132e5565b6123ac565b6040516109e69190613d2c565b60405180910390f35b3480156109fb57600080fd5b50610a166004803603810190610a1191906135c2565b6123cc565b005b348015610a2457600080fd5b50610a3f6004803603810190610a3a9190613312565b6123de565b604051610a4c9190613d2c565b60405180910390f35b348015610a6157600080fd5b50610a7c6004803603810190610a7791906136ec565b612472565b005b348015610a8a57600080fd5b50610aa56004803603810190610aa091906132e5565b612532565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b4890614296565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7490614296565b8015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b6000610bd6826125b6565b610c0c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c5582611940565b90508073ffffffffffffffffffffffffffffffffffffffff16610c76612615565b73ffffffffffffffffffffffffffffffffffffffff1614610cd957610ca281610c9d612615565b6123de565b610cd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601160029054906101000a900460ff1681565b601160009054906101000a900460ff16610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613dff565b60405180910390fd5b600c6000610dfc61261d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90613e7f565b60405180910390fd5b6000610e8e61261d565b604051602001610e9e9190613bf0565b604051602081830303815290604052805190602001209050610f04838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b5483612625565b610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a90613d9f565b60405180910390fd5b6000600190506000601160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610fa69190613c81565b60206040518083038186803b158015610fbe57600080fd5b505afa158015610fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff691906136bf565b9050600a811061102d576000600a9050606481836110149190614123565b61101e91906140f2565b83611029919061409c565b9250505b600f5482611039611107565b611043919061409c565b1115611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90613ebf565b60405180910390fd5b6001600c600061109261261d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506110f46110ee61261d565b8361263c565b5050505050565b600e5481565b600b5481565b600061111161265a565b6001546000540303905090565b60006111298261265f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611190576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061119c8461272d565b915091506111b281876111ad612615565b612754565b6111fe576111c7866111c2612615565b6123de565b6111fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611265576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112728686866001612798565b801561127d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061134b8561132788888761279e565b7c0200000000000000000000000000000000000000000000000000000000176127c6565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156113d35760006001850190506000600460008381526020019081526020016000205414156113d15760005481146113d0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461143b86868660016127f1565b505050505050565b600a5481565b601160019054906101000a900460ff16611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90613e1f565b60405180910390fd5b600c60006114a461261d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561152c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152390613e7f565b60405180910390fd5b600061153661261d565b6040516020016115469190613bf0565b6040516020818303038152906040528051906020012090506115ac838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612625565b6115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e290613d9f565b60405180910390fd5b600f5460016115f8611107565b611602919061409c565b1115611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90613ebf565b60405180910390fd5b6001600c600061165161261d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116b46116ad61261d565b600161263c565b505050565b6116c16127f7565b60026009541415611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90613edf565b60405180910390fd5b60026009819055506000611719611be7565b73ffffffffffffffffffffffffffffffffffffffff164760405161173c90613c2f565b60006040518083038185875af1925050503d8060008114611779576040519150601f19603f3d011682016040523d82523d6000602084013e61177e565b606091505b505090508061178c57600080fd5b506001600981905550565b6117b2838383604051806020016040528060008152506121fd565b505050565b6117bf6127f7565b80600e8190555050565b601160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600083839050905060008167ffffffffffffffff8111156118155761181461445d565b5b60405190808252806020026020018201604052801561184e57816020015b61183b612fd4565b8152602001906001900390816118335790505b50905060005b8281146118a65761187d8686838181106118715761187061442e565b5b90506020020135612270565b8282815181106118905761188f61442e565b5b6020026020010181905250806001019050611854565b50809250505092915050565b600d80546118bf90614296565b80601f01602080910402602001604051908101604052809291908181526020018280546118eb90614296565b80156119385780601f1061190d57610100808354040283529160200191611938565b820191906000526020600020905b81548152906001019060200180831161191b57829003601f168201915b505050505081565b600061194b8261265f565b9050919050565b601160019054906101000a900460ff1681565b61196d6127f7565b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119df576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611a386127f7565b611a426000612875565b565b611a4c6127f7565b80600a8190555050565b611a5e6127f7565b80600d9080519060200190611a74929190613023565b5050565b611a806127f7565b80601160026101000a81548160ff02191690831515021790555050565b60606000806000611aad85611977565b905060008167ffffffffffffffff811115611acb57611aca61445d565b5b604051908082528060200260200182016040528015611af95781602001602082028036833780820191505090505b509050611b04612fd4565b6000611b0e61265a565b90505b838614611bd957611b218161293b565b9150816040015115611b3257611bce565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b7257816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611bcd5780838780600101985081518110611bc057611bbf61442e565b5b6020026020010181815250505b5b806001019050611b11565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601160009054906101000a900460ff1681565b60105481565b606060038054611c3990614296565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6590614296565b8015611cb25780601f10611c8757610100808354040283529160200191611cb2565b820191906000526020600020905b815481529060010190602001808311611c9557829003601f168201915b5050505050905090565b6060818310611cf7576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611d02612966565b9050611d0c61265a565b851015611d1e57611d1b61265a565b94505b80841115611d2a578093505b6000611d3587611977565b905084861015611d58576000868603905081811015611d52578091505b50611d5d565b600090505b60008167ffffffffffffffff811115611d7957611d7861445d565b5b604051908082528060200260200182016040528015611da75781602001602082028036833780820191505090505b5090506000821415611dbf5780945050505050611ec9565b6000611dca88612270565b905060008160400151611ddf57816000015190505b60008990505b888114158015611df55750848714155b15611ebb57611e038161293b565b9250826040015115611e1457611eb0565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611e5457826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eaf5780848880600101995081518110611ea257611ea161442e565b5b6020026020010181815250505b5b806001019050611de5565b508583528296505050505050505b9392505050565b80600081118015611ee357506010548111155b611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990613ddf565b60405180910390fd5b600f5481611f2e611107565b611f38919061409c565b1115611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090613ebf565b60405180910390fd5b601160029054906101000a900460ff16611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90613e5f565b60405180910390fd5b81600e54611fd69190614123565b341015612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613eff565b60405180910390fd5b81612023606461296f565b101561203957600182612036919061409c565b91505b61204a61204461261d565b8361263c565b5050565b612056612615565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006120c8612615565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612175612615565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121ba9190613d2c565b60405180910390a35050565b6121ce6127f7565b8060108190555050565b6121e06127f7565b80601160016101000a81548160ff02191690831515021790555050565b61220884848461111e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461226a57612233848484846129b1565b612269576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612278612fd4565b612280612fd4565b61228861265a565b83108061229c5750612298612966565b8310155b156122aa57809150506122d5565b6122b38361293b565b90508060400151156122c857809150506122d5565b6122d183612b11565b9150505b919050565b60606122e5826125b6565b612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b90613e9f565b60405180910390fd5b600061232e612b31565b9050600081511161234e5760405180602001604052806000815250612379565b8061235884612bc3565b604051602001612369929190613c0b565b6040516020818303038152906040525b915050919050565b6123896127f7565b80601160006101000a81548160ff02191690831515021790555050565b600f5481565b600c6020528060005260406000206000915054906101000a900460ff1681565b6123d46127f7565b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561248557506010548111155b6124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90613ddf565b60405180910390fd5b600f54816124d0611107565b6124da919061409c565b111561251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290613ebf565b60405180910390fd5b6125236127f7565b61252d828461263c565b505050565b61253a6127f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a190613dbf565b60405180910390fd5b6125b381612875565b50565b6000816125c161265a565b111580156125d0575060005482105b801561260e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b6000826126328584612c13565b1490509392505050565b612656828260405180602001604052806000815250612c69565b5050565b600090565b6000808290508061266e61265a565b116126f6576000548110156126f55760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156126f3575b60008114156126e95760046000836001900393508381526020019081526020016000205490506126be565b8092505050612728565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86127b5868684612d06565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6127ff61261d565b73ffffffffffffffffffffffffffffffffffffffff1661281d611be7565b73ffffffffffffffffffffffffffffffffffffffff1614612873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286a90613e3f565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612943612fd4565b61295f6004600084815260200190815260200160002054612d0f565b9050919050565b60008054905090565b60008142443360405160200161298793929190613c44565b6040516020818303038152906040528051906020012060001c6129aa9190614370565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d7612615565b8786866040518563ffffffff1660e01b81526004016129f99493929190613c9c565b602060405180830381600087803b158015612a1357600080fd5b505af1925050508015612a4457506040513d601f19601f82011682018060405250810190612a41919061361c565b60015b612abe573d8060008114612a74576040519150601f19603f3d011682016040523d82523d6000602084013e612a79565b606091505b50600081511415612ab6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612b19612fd4565b612b2a612b258361265f565b612d0f565b9050919050565b6060600d8054612b4090614296565b80601f0160208091040260200160405190810160405280929190818152602001828054612b6c90614296565b8015612bb95780601f10612b8e57610100808354040283529160200191612bb9565b820191906000526020600020905b815481529060010190602001808311612b9c57829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115612bff57600183039250600a81066030018353600a8104905080612bfa57612bff565b612bd4565b508181036020830392508083525050919050565b60008082905060005b8451811015612c5e57612c4982868381518110612c3c57612c3b61442e565b5b6020026020010151612dc5565b91508080612c56906142f9565b915050612c1c565b508091505092915050565b612c738383612df0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612d0157600080549050600083820390505b612cb360008683806001019450866129b1565b612ce9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612ca0578160005414612cfe57600080fd5b50505b505050565b60009392505050565b612d17612fd4565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000818310612ddd57612dd88284612fad565b612de8565b612de78383612fad565b5b905092915050565b6000805490506000821415612e31576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e3e6000848385612798565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612eb583612ea6600086600061279e565b612eaf85612fc4565b176127c6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612f5657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612f1b565b506000821415612f92576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612fa860008483856127f1565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b82805461302f90614296565b90600052602060002090601f0160209004810192826130515760008555613098565b82601f1061306a57805160ff1916838001178555613098565b82800160010185558215613098579182015b8281111561309757825182559160200191906001019061307c565b5b5090506130a591906130a9565b5090565b5b808211156130c25760008160009055506001016130aa565b5090565b60006130d96130d484613f7a565b613f55565b9050828152602081018484840111156130f5576130f461449b565b5b613100848285614254565b509392505050565b600061311b61311684613fab565b613f55565b9050828152602081018484840111156131375761313661449b565b5b613142848285614254565b509392505050565b60008135905061315981614703565b92915050565b60008083601f84011261317557613174614491565b5b8235905067ffffffffffffffff8111156131925761319161448c565b5b6020830191508360208202830111156131ae576131ad614496565b5b9250929050565b60008083601f8401126131cb576131ca614491565b5b8235905067ffffffffffffffff8111156131e8576131e761448c565b5b60208301915083602082028301111561320457613203614496565b5b9250929050565b60008135905061321a8161471a565b92915050565b60008135905061322f81614731565b92915050565b60008135905061324481614748565b92915050565b60008151905061325981614748565b92915050565b600082601f83011261327457613273614491565b5b81356132848482602086016130c6565b91505092915050565b600082601f8301126132a2576132a1614491565b5b81356132b2848260208601613108565b91505092915050565b6000813590506132ca8161475f565b92915050565b6000815190506132df8161475f565b92915050565b6000602082840312156132fb576132fa6144a5565b5b60006133098482850161314a565b91505092915050565b60008060408385031215613329576133286144a5565b5b60006133378582860161314a565b92505060206133488582860161314a565b9150509250929050565b60008060006060848603121561336b5761336a6144a5565b5b60006133798682870161314a565b935050602061338a8682870161314a565b925050604061339b868287016132bb565b9150509250925092565b600080600080608085870312156133bf576133be6144a5565b5b60006133cd8782880161314a565b94505060206133de8782880161314a565b93505060406133ef878288016132bb565b925050606085013567ffffffffffffffff8111156134105761340f6144a0565b5b61341c8782880161325f565b91505092959194509250565b6000806040838503121561343f5761343e6144a5565b5b600061344d8582860161314a565b925050602061345e8582860161320b565b9150509250929050565b6000806040838503121561347f5761347e6144a5565b5b600061348d8582860161314a565b925050602061349e858286016132bb565b9150509250929050565b6000806000606084860312156134c1576134c06144a5565b5b60006134cf8682870161314a565b93505060206134e0868287016132bb565b92505060406134f1868287016132bb565b9150509250925092565b60008060208385031215613512576135116144a5565b5b600083013567ffffffffffffffff8111156135305761352f6144a0565b5b61353c8582860161315f565b92509250509250929050565b6000806020838503121561355f5761355e6144a5565b5b600083013567ffffffffffffffff81111561357d5761357c6144a0565b5b613589858286016131b5565b92509250509250929050565b6000602082840312156135ab576135aa6144a5565b5b60006135b98482850161320b565b91505092915050565b6000602082840312156135d8576135d76144a5565b5b60006135e684828501613220565b91505092915050565b600060208284031215613605576136046144a5565b5b600061361384828501613235565b91505092915050565b600060208284031215613632576136316144a5565b5b60006136408482850161324a565b91505092915050565b60006020828403121561365f5761365e6144a5565b5b600082013567ffffffffffffffff81111561367d5761367c6144a0565b5b6136898482850161328d565b91505092915050565b6000602082840312156136a8576136a76144a5565b5b60006136b6848285016132bb565b91505092915050565b6000602082840312156136d5576136d46144a5565b5b60006136e3848285016132d0565b91505092915050565b60008060408385031215613703576137026144a5565b5b6000613711858286016132bb565b92505060206137228582860161314a565b9150509250929050565b60006137388383613af3565b60808301905092915050565b60006137508383613bac565b60208301905092915050565b6137658161417d565b82525050565b6137748161417d565b82525050565b61378b6137868261417d565b614342565b82525050565b600061379c82613ffc565b6137a68185614042565b93506137b183613fdc565b8060005b838110156137e25781516137c9888261372c565b97506137d483614028565b9250506001810190506137b5565b5085935050505092915050565b60006137fa82614007565b6138048185614053565b935061380f83613fec565b8060005b838110156138405781516138278882613744565b975061383283614035565b925050600181019050613813565b5085935050505092915050565b6138568161418f565b82525050565b6138658161418f565b82525050565b6138748161419b565b82525050565b600061388582614012565b61388f8185614064565b935061389f818560208601614263565b6138a8816144aa565b840191505092915050565b6138bc8161421e565b82525050565b60006138cd8261401d565b6138d78185614080565b93506138e7818560208601614263565b6138f0816144aa565b840191505092915050565b60006139068261401d565b6139108185614091565b9350613920818560208601614263565b80840191505092915050565b6000613939600e83614080565b9150613944826144c8565b602082019050919050565b600061395c602683614080565b9150613967826144f1565b604082019050919050565b600061397f601483614080565b915061398a82614540565b602082019050919050565b60006139a2601f83614080565b91506139ad82614569565b602082019050919050565b60006139c5601b83614080565b91506139d082614592565b602082019050919050565b60006139e8602083614080565b91506139f3826145bb565b602082019050919050565b6000613a0b601783614080565b9150613a16826145e4565b602082019050919050565b6000613a2e601883614080565b9150613a398261460d565b602082019050919050565b6000613a51602f83614080565b9150613a5c82614636565b604082019050919050565b6000613a74600083614075565b9150613a7f82614685565b600082019050919050565b6000613a97601483614080565b9150613aa282614688565b602082019050919050565b6000613aba601f83614080565b9150613ac5826146b1565b602082019050919050565b6000613add601383614080565b9150613ae8826146da565b602082019050919050565b608082016000820151613b09600085018261375c565b506020820151613b1c6020850182613be1565b506040820151613b2f604085018261384d565b506060820151613b426060850182613b9d565b50505050565b608082016000820151613b5e600085018261375c565b506020820151613b716020850182613be1565b506040820151613b84604085018261384d565b506060820151613b976060850182613b9d565b50505050565b613ba6816141f1565b82525050565b613bb581614200565b82525050565b613bc481614200565b82525050565b613bdb613bd682614200565b614366565b82525050565b613bea8161420a565b82525050565b6000613bfc828461377a565b60148201915081905092915050565b6000613c1782856138fb565b9150613c2382846138fb565b91508190509392505050565b6000613c3a82613a67565b9150819050919050565b6000613c508286613bca565b602082019150613c608285613bca565b602082019150613c70828461377a565b601482019150819050949350505050565b6000602082019050613c96600083018461376b565b92915050565b6000608082019050613cb1600083018761376b565b613cbe602083018661376b565b613ccb6040830185613bbb565b8181036060830152613cdd818461387a565b905095945050505050565b60006020820190508181036000830152613d028184613791565b905092915050565b60006020820190508181036000830152613d2481846137ef565b905092915050565b6000602082019050613d41600083018461385c565b92915050565b6000602082019050613d5c600083018461386b565b92915050565b6000602082019050613d7760008301846138b3565b92915050565b60006020820190508181036000830152613d9781846138c2565b905092915050565b60006020820190508181036000830152613db88161392c565b9050919050565b60006020820190508181036000830152613dd88161394f565b9050919050565b60006020820190508181036000830152613df881613972565b9050919050565b60006020820190508181036000830152613e1881613995565b9050919050565b60006020820190508181036000830152613e38816139b8565b9050919050565b60006020820190508181036000830152613e58816139db565b9050919050565b60006020820190508181036000830152613e78816139fe565b9050919050565b60006020820190508181036000830152613e9881613a21565b9050919050565b60006020820190508181036000830152613eb881613a44565b9050919050565b60006020820190508181036000830152613ed881613a8a565b9050919050565b60006020820190508181036000830152613ef881613aad565b9050919050565b60006020820190508181036000830152613f1881613ad0565b9050919050565b6000608082019050613f346000830184613b48565b92915050565b6000602082019050613f4f6000830184613bbb565b92915050565b6000613f5f613f70565b9050613f6b82826142c8565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9557613f9461445d565b5b613f9e826144aa565b9050602081019050919050565b600067ffffffffffffffff821115613fc657613fc561445d565b5b613fcf826144aa565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140a782614200565b91506140b283614200565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140e7576140e66143a1565b5b828201905092915050565b60006140fd82614200565b915061410883614200565b925082614118576141176143d0565b5b828204905092915050565b600061412e82614200565b915061413983614200565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614172576141716143a1565b5b828202905092915050565b6000614188826141d1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600061422982614230565b9050919050565b600061423b82614242565b9050919050565b600061424d826141d1565b9050919050565b82818337600083830152505050565b60005b83811015614281578082015181840152602081019050614266565b83811115614290576000848401525b50505050565b600060028204905060018216806142ae57607f821691505b602082108114156142c2576142c16143ff565b5b50919050565b6142d1826144aa565b810181811067ffffffffffffffff821117156142f0576142ef61445d565b5b80604052505050565b600061430482614200565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614337576143366143a1565b5b600182019050919050565b600061434d82614354565b9050919050565b600061435f826144bb565b9050919050565b6000819050919050565b600061437b82614200565b915061438683614200565b925082614396576143956143d0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f54686520686f6c646572206d696e74206973206e6f7420656e61626c65642100600082015250565b7f54686520574c206d696e74206973206e6f7420656e61626c6564210000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61470c8161417d565b811461471757600080fd5b50565b6147238161418f565b811461472e57600080fd5b50565b61473a8161419b565b811461474557600080fd5b50565b614751816141a5565b811461475c57600080fd5b50565b61476881614200565b811461477357600080fd5b5056fea2646970667358221220ed0a8b1427ac45203963edd7694843706fd5b2c5fdd1f8081f48f7adf118f3d864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001154726f75626c656d616b657220436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544d430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061027d5760003560e01c80637cb647591161014f578063b071401b116100c1578063d5abeb011161007a578063d5abeb0114610987578063e2b9e128146109b2578063e2ee78fb146109ef578063e985e9c514610a18578063efbd73f414610a55578063f2fde38b14610a7e5761027d565b8063b071401b14610869578063b767a09814610892578063b88d4fde146108bb578063c23dc68f146108e4578063c87b56dd14610921578063d4c977361461095e5761027d565b80638e1b57cb116101135780638e1b57cb1461076657806394354fd01461079157806395d89b41146107bc57806399a2557a146107e7578063a0712d6814610824578063a22cb465146108405761027d565b80637cb64759146106835780637ec4a659146106ac578063818668d7146106d55780638462151c146106fe5780638da5cb5b1461073b5761027d565b8063372f657c116101f357806362b99ad4116101ac57806362b99ad4146105735780636352211e1461059e5780636caede3d146105db5780636f8b44b01461060657806370a082311461062f578063715018a61461066c5761027d565b8063372f657c146104795780633ccfd60b146104a257806342842e0e146104b957806344a0d68a146104e257806359f9e4311461050b5780635bbb2177146105365761027d565b8063137ae1fe11610245578063137ae1fe1461037b57806313faede6146103a4578063143efd1c146103cf57806318160ddd146103fa57806323b872dd146104255780632eb4a7ab1461044e5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630f4161aa14610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906135ef565b610aa7565b6040516102b69190613d2c565b60405180910390f35b3480156102cb57600080fd5b506102d4610b39565b6040516102e19190613d7d565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613692565b610bcb565b60405161031e9190613c81565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613468565b610c4a565b005b34801561035c57600080fd5b50610365610d8e565b6040516103729190613d2c565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d91906134fb565b610da1565b005b3480156103b057600080fd5b506103b96110fb565b6040516103c69190613f3a565b60405180910390f35b3480156103db57600080fd5b506103e4611101565b6040516103f19190613d47565b60405180910390f35b34801561040657600080fd5b5061040f611107565b60405161041c9190613f3a565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613352565b61111e565b005b34801561045a57600080fd5b50610463611443565b6040516104709190613d47565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906134fb565b611449565b005b3480156104ae57600080fd5b506104b76116b9565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613352565b611797565b005b3480156104ee57600080fd5b5061050960048036038101906105049190613692565b6117b7565b005b34801561051757600080fd5b506105206117c9565b60405161052d9190613d62565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613548565b6117ef565b60405161056a9190613ce8565b60405180910390f35b34801561057f57600080fd5b506105886118b2565b6040516105959190613d7d565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190613692565b611940565b6040516105d29190613c81565b60405180910390f35b3480156105e757600080fd5b506105f0611952565b6040516105fd9190613d2c565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190613692565b611965565b005b34801561063b57600080fd5b50610656600480360381019061065191906132e5565b611977565b6040516106639190613f3a565b60405180910390f35b34801561067857600080fd5b50610681611a30565b005b34801561068f57600080fd5b506106aa60048036038101906106a591906135c2565b611a44565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613649565b611a56565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613595565b611a78565b005b34801561070a57600080fd5b50610725600480360381019061072091906132e5565b611a9d565b6040516107329190613d0a565b60405180910390f35b34801561074757600080fd5b50610750611be7565b60405161075d9190613c81565b60405180910390f35b34801561077257600080fd5b5061077b611c11565b6040516107889190613d2c565b60405180910390f35b34801561079d57600080fd5b506107a6611c24565b6040516107b39190613f3a565b60405180910390f35b3480156107c857600080fd5b506107d1611c2a565b6040516107de9190613d7d565b60405180910390f35b3480156107f357600080fd5b5061080e600480360381019061080991906134a8565b611cbc565b60405161081b9190613d0a565b60405180910390f35b61083e60048036038101906108399190613692565b611ed0565b005b34801561084c57600080fd5b5061086760048036038101906108629190613428565b61204e565b005b34801561087557600080fd5b50610890600480360381019061088b9190613692565b6121c6565b005b34801561089e57600080fd5b506108b960048036038101906108b49190613595565b6121d8565b005b3480156108c757600080fd5b506108e260048036038101906108dd91906133a5565b6121fd565b005b3480156108f057600080fd5b5061090b60048036038101906109069190613692565b612270565b6040516109189190613f1f565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190613692565b6122da565b6040516109559190613d7d565b60405180910390f35b34801561096a57600080fd5b5061098560048036038101906109809190613595565b612381565b005b34801561099357600080fd5b5061099c6123a6565b6040516109a99190613f3a565b60405180910390f35b3480156109be57600080fd5b506109d960048036038101906109d491906132e5565b6123ac565b6040516109e69190613d2c565b60405180910390f35b3480156109fb57600080fd5b50610a166004803603810190610a1191906135c2565b6123cc565b005b348015610a2457600080fd5b50610a3f6004803603810190610a3a9190613312565b6123de565b604051610a4c9190613d2c565b60405180910390f35b348015610a6157600080fd5b50610a7c6004803603810190610a7791906136ec565b612472565b005b348015610a8a57600080fd5b50610aa56004803603810190610aa091906132e5565b612532565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b4890614296565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7490614296565b8015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b6000610bd6826125b6565b610c0c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c5582611940565b90508073ffffffffffffffffffffffffffffffffffffffff16610c76612615565b73ffffffffffffffffffffffffffffffffffffffff1614610cd957610ca281610c9d612615565b6123de565b610cd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601160029054906101000a900460ff1681565b601160009054906101000a900460ff16610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613dff565b60405180910390fd5b600c6000610dfc61261d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90613e7f565b60405180910390fd5b6000610e8e61261d565b604051602001610e9e9190613bf0565b604051602081830303815290604052805190602001209050610f04838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b5483612625565b610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a90613d9f565b60405180910390fd5b6000600190506000601160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610fa69190613c81565b60206040518083038186803b158015610fbe57600080fd5b505afa158015610fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff691906136bf565b9050600a811061102d576000600a9050606481836110149190614123565b61101e91906140f2565b83611029919061409c565b9250505b600f5482611039611107565b611043919061409c565b1115611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90613ebf565b60405180910390fd5b6001600c600061109261261d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506110f46110ee61261d565b8361263c565b5050505050565b600e5481565b600b5481565b600061111161265a565b6001546000540303905090565b60006111298261265f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611190576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061119c8461272d565b915091506111b281876111ad612615565b612754565b6111fe576111c7866111c2612615565b6123de565b6111fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611265576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112728686866001612798565b801561127d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061134b8561132788888761279e565b7c0200000000000000000000000000000000000000000000000000000000176127c6565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156113d35760006001850190506000600460008381526020019081526020016000205414156113d15760005481146113d0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461143b86868660016127f1565b505050505050565b600a5481565b601160019054906101000a900460ff16611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90613e1f565b60405180910390fd5b600c60006114a461261d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561152c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152390613e7f565b60405180910390fd5b600061153661261d565b6040516020016115469190613bf0565b6040516020818303038152906040528051906020012090506115ac838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612625565b6115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e290613d9f565b60405180910390fd5b600f5460016115f8611107565b611602919061409c565b1115611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90613ebf565b60405180910390fd5b6001600c600061165161261d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116b46116ad61261d565b600161263c565b505050565b6116c16127f7565b60026009541415611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90613edf565b60405180910390fd5b60026009819055506000611719611be7565b73ffffffffffffffffffffffffffffffffffffffff164760405161173c90613c2f565b60006040518083038185875af1925050503d8060008114611779576040519150601f19603f3d011682016040523d82523d6000602084013e61177e565b606091505b505090508061178c57600080fd5b506001600981905550565b6117b2838383604051806020016040528060008152506121fd565b505050565b6117bf6127f7565b80600e8190555050565b601160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600083839050905060008167ffffffffffffffff8111156118155761181461445d565b5b60405190808252806020026020018201604052801561184e57816020015b61183b612fd4565b8152602001906001900390816118335790505b50905060005b8281146118a65761187d8686838181106118715761187061442e565b5b90506020020135612270565b8282815181106118905761188f61442e565b5b6020026020010181905250806001019050611854565b50809250505092915050565b600d80546118bf90614296565b80601f01602080910402602001604051908101604052809291908181526020018280546118eb90614296565b80156119385780601f1061190d57610100808354040283529160200191611938565b820191906000526020600020905b81548152906001019060200180831161191b57829003601f168201915b505050505081565b600061194b8261265f565b9050919050565b601160019054906101000a900460ff1681565b61196d6127f7565b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119df576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611a386127f7565b611a426000612875565b565b611a4c6127f7565b80600a8190555050565b611a5e6127f7565b80600d9080519060200190611a74929190613023565b5050565b611a806127f7565b80601160026101000a81548160ff02191690831515021790555050565b60606000806000611aad85611977565b905060008167ffffffffffffffff811115611acb57611aca61445d565b5b604051908082528060200260200182016040528015611af95781602001602082028036833780820191505090505b509050611b04612fd4565b6000611b0e61265a565b90505b838614611bd957611b218161293b565b9150816040015115611b3257611bce565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b7257816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611bcd5780838780600101985081518110611bc057611bbf61442e565b5b6020026020010181815250505b5b806001019050611b11565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601160009054906101000a900460ff1681565b60105481565b606060038054611c3990614296565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6590614296565b8015611cb25780601f10611c8757610100808354040283529160200191611cb2565b820191906000526020600020905b815481529060010190602001808311611c9557829003601f168201915b5050505050905090565b6060818310611cf7576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611d02612966565b9050611d0c61265a565b851015611d1e57611d1b61265a565b94505b80841115611d2a578093505b6000611d3587611977565b905084861015611d58576000868603905081811015611d52578091505b50611d5d565b600090505b60008167ffffffffffffffff811115611d7957611d7861445d565b5b604051908082528060200260200182016040528015611da75781602001602082028036833780820191505090505b5090506000821415611dbf5780945050505050611ec9565b6000611dca88612270565b905060008160400151611ddf57816000015190505b60008990505b888114158015611df55750848714155b15611ebb57611e038161293b565b9250826040015115611e1457611eb0565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611e5457826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eaf5780848880600101995081518110611ea257611ea161442e565b5b6020026020010181815250505b5b806001019050611de5565b508583528296505050505050505b9392505050565b80600081118015611ee357506010548111155b611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990613ddf565b60405180910390fd5b600f5481611f2e611107565b611f38919061409c565b1115611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090613ebf565b60405180910390fd5b601160029054906101000a900460ff16611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90613e5f565b60405180910390fd5b81600e54611fd69190614123565b341015612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613eff565b60405180910390fd5b81612023606461296f565b101561203957600182612036919061409c565b91505b61204a61204461261d565b8361263c565b5050565b612056612615565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006120c8612615565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612175612615565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121ba9190613d2c565b60405180910390a35050565b6121ce6127f7565b8060108190555050565b6121e06127f7565b80601160016101000a81548160ff02191690831515021790555050565b61220884848461111e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461226a57612233848484846129b1565b612269576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612278612fd4565b612280612fd4565b61228861265a565b83108061229c5750612298612966565b8310155b156122aa57809150506122d5565b6122b38361293b565b90508060400151156122c857809150506122d5565b6122d183612b11565b9150505b919050565b60606122e5826125b6565b612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b90613e9f565b60405180910390fd5b600061232e612b31565b9050600081511161234e5760405180602001604052806000815250612379565b8061235884612bc3565b604051602001612369929190613c0b565b6040516020818303038152906040525b915050919050565b6123896127f7565b80601160006101000a81548160ff02191690831515021790555050565b600f5481565b600c6020528060005260406000206000915054906101000a900460ff1681565b6123d46127f7565b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561248557506010548111155b6124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90613ddf565b60405180910390fd5b600f54816124d0611107565b6124da919061409c565b111561251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290613ebf565b60405180910390fd5b6125236127f7565b61252d828461263c565b505050565b61253a6127f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a190613dbf565b60405180910390fd5b6125b381612875565b50565b6000816125c161265a565b111580156125d0575060005482105b801561260e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b6000826126328584612c13565b1490509392505050565b612656828260405180602001604052806000815250612c69565b5050565b600090565b6000808290508061266e61265a565b116126f6576000548110156126f55760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156126f3575b60008114156126e95760046000836001900393508381526020019081526020016000205490506126be565b8092505050612728565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86127b5868684612d06565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6127ff61261d565b73ffffffffffffffffffffffffffffffffffffffff1661281d611be7565b73ffffffffffffffffffffffffffffffffffffffff1614612873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286a90613e3f565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612943612fd4565b61295f6004600084815260200190815260200160002054612d0f565b9050919050565b60008054905090565b60008142443360405160200161298793929190613c44565b6040516020818303038152906040528051906020012060001c6129aa9190614370565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d7612615565b8786866040518563ffffffff1660e01b81526004016129f99493929190613c9c565b602060405180830381600087803b158015612a1357600080fd5b505af1925050508015612a4457506040513d601f19601f82011682018060405250810190612a41919061361c565b60015b612abe573d8060008114612a74576040519150601f19603f3d011682016040523d82523d6000602084013e612a79565b606091505b50600081511415612ab6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612b19612fd4565b612b2a612b258361265f565b612d0f565b9050919050565b6060600d8054612b4090614296565b80601f0160208091040260200160405190810160405280929190818152602001828054612b6c90614296565b8015612bb95780601f10612b8e57610100808354040283529160200191612bb9565b820191906000526020600020905b815481529060010190602001808311612b9c57829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115612bff57600183039250600a81066030018353600a8104905080612bfa57612bff565b612bd4565b508181036020830392508083525050919050565b60008082905060005b8451811015612c5e57612c4982868381518110612c3c57612c3b61442e565b5b6020026020010151612dc5565b91508080612c56906142f9565b915050612c1c565b508091505092915050565b612c738383612df0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612d0157600080549050600083820390505b612cb360008683806001019450866129b1565b612ce9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612ca0578160005414612cfe57600080fd5b50505b505050565b60009392505050565b612d17612fd4565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000818310612ddd57612dd88284612fad565b612de8565b612de78383612fad565b5b905092915050565b6000805490506000821415612e31576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e3e6000848385612798565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612eb583612ea6600086600061279e565b612eaf85612fc4565b176127c6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612f5657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612f1b565b506000821415612f92576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612fa860008483856127f1565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b82805461302f90614296565b90600052602060002090601f0160209004810192826130515760008555613098565b82601f1061306a57805160ff1916838001178555613098565b82800160010185558215613098579182015b8281111561309757825182559160200191906001019061307c565b5b5090506130a591906130a9565b5090565b5b808211156130c25760008160009055506001016130aa565b5090565b60006130d96130d484613f7a565b613f55565b9050828152602081018484840111156130f5576130f461449b565b5b613100848285614254565b509392505050565b600061311b61311684613fab565b613f55565b9050828152602081018484840111156131375761313661449b565b5b613142848285614254565b509392505050565b60008135905061315981614703565b92915050565b60008083601f84011261317557613174614491565b5b8235905067ffffffffffffffff8111156131925761319161448c565b5b6020830191508360208202830111156131ae576131ad614496565b5b9250929050565b60008083601f8401126131cb576131ca614491565b5b8235905067ffffffffffffffff8111156131e8576131e761448c565b5b60208301915083602082028301111561320457613203614496565b5b9250929050565b60008135905061321a8161471a565b92915050565b60008135905061322f81614731565b92915050565b60008135905061324481614748565b92915050565b60008151905061325981614748565b92915050565b600082601f83011261327457613273614491565b5b81356132848482602086016130c6565b91505092915050565b600082601f8301126132a2576132a1614491565b5b81356132b2848260208601613108565b91505092915050565b6000813590506132ca8161475f565b92915050565b6000815190506132df8161475f565b92915050565b6000602082840312156132fb576132fa6144a5565b5b60006133098482850161314a565b91505092915050565b60008060408385031215613329576133286144a5565b5b60006133378582860161314a565b92505060206133488582860161314a565b9150509250929050565b60008060006060848603121561336b5761336a6144a5565b5b60006133798682870161314a565b935050602061338a8682870161314a565b925050604061339b868287016132bb565b9150509250925092565b600080600080608085870312156133bf576133be6144a5565b5b60006133cd8782880161314a565b94505060206133de8782880161314a565b93505060406133ef878288016132bb565b925050606085013567ffffffffffffffff8111156134105761340f6144a0565b5b61341c8782880161325f565b91505092959194509250565b6000806040838503121561343f5761343e6144a5565b5b600061344d8582860161314a565b925050602061345e8582860161320b565b9150509250929050565b6000806040838503121561347f5761347e6144a5565b5b600061348d8582860161314a565b925050602061349e858286016132bb565b9150509250929050565b6000806000606084860312156134c1576134c06144a5565b5b60006134cf8682870161314a565b93505060206134e0868287016132bb565b92505060406134f1868287016132bb565b9150509250925092565b60008060208385031215613512576135116144a5565b5b600083013567ffffffffffffffff8111156135305761352f6144a0565b5b61353c8582860161315f565b92509250509250929050565b6000806020838503121561355f5761355e6144a5565b5b600083013567ffffffffffffffff81111561357d5761357c6144a0565b5b613589858286016131b5565b92509250509250929050565b6000602082840312156135ab576135aa6144a5565b5b60006135b98482850161320b565b91505092915050565b6000602082840312156135d8576135d76144a5565b5b60006135e684828501613220565b91505092915050565b600060208284031215613605576136046144a5565b5b600061361384828501613235565b91505092915050565b600060208284031215613632576136316144a5565b5b60006136408482850161324a565b91505092915050565b60006020828403121561365f5761365e6144a5565b5b600082013567ffffffffffffffff81111561367d5761367c6144a0565b5b6136898482850161328d565b91505092915050565b6000602082840312156136a8576136a76144a5565b5b60006136b6848285016132bb565b91505092915050565b6000602082840312156136d5576136d46144a5565b5b60006136e3848285016132d0565b91505092915050565b60008060408385031215613703576137026144a5565b5b6000613711858286016132bb565b92505060206137228582860161314a565b9150509250929050565b60006137388383613af3565b60808301905092915050565b60006137508383613bac565b60208301905092915050565b6137658161417d565b82525050565b6137748161417d565b82525050565b61378b6137868261417d565b614342565b82525050565b600061379c82613ffc565b6137a68185614042565b93506137b183613fdc565b8060005b838110156137e25781516137c9888261372c565b97506137d483614028565b9250506001810190506137b5565b5085935050505092915050565b60006137fa82614007565b6138048185614053565b935061380f83613fec565b8060005b838110156138405781516138278882613744565b975061383283614035565b925050600181019050613813565b5085935050505092915050565b6138568161418f565b82525050565b6138658161418f565b82525050565b6138748161419b565b82525050565b600061388582614012565b61388f8185614064565b935061389f818560208601614263565b6138a8816144aa565b840191505092915050565b6138bc8161421e565b82525050565b60006138cd8261401d565b6138d78185614080565b93506138e7818560208601614263565b6138f0816144aa565b840191505092915050565b60006139068261401d565b6139108185614091565b9350613920818560208601614263565b80840191505092915050565b6000613939600e83614080565b9150613944826144c8565b602082019050919050565b600061395c602683614080565b9150613967826144f1565b604082019050919050565b600061397f601483614080565b915061398a82614540565b602082019050919050565b60006139a2601f83614080565b91506139ad82614569565b602082019050919050565b60006139c5601b83614080565b91506139d082614592565b602082019050919050565b60006139e8602083614080565b91506139f3826145bb565b602082019050919050565b6000613a0b601783614080565b9150613a16826145e4565b602082019050919050565b6000613a2e601883614080565b9150613a398261460d565b602082019050919050565b6000613a51602f83614080565b9150613a5c82614636565b604082019050919050565b6000613a74600083614075565b9150613a7f82614685565b600082019050919050565b6000613a97601483614080565b9150613aa282614688565b602082019050919050565b6000613aba601f83614080565b9150613ac5826146b1565b602082019050919050565b6000613add601383614080565b9150613ae8826146da565b602082019050919050565b608082016000820151613b09600085018261375c565b506020820151613b1c6020850182613be1565b506040820151613b2f604085018261384d565b506060820151613b426060850182613b9d565b50505050565b608082016000820151613b5e600085018261375c565b506020820151613b716020850182613be1565b506040820151613b84604085018261384d565b506060820151613b976060850182613b9d565b50505050565b613ba6816141f1565b82525050565b613bb581614200565b82525050565b613bc481614200565b82525050565b613bdb613bd682614200565b614366565b82525050565b613bea8161420a565b82525050565b6000613bfc828461377a565b60148201915081905092915050565b6000613c1782856138fb565b9150613c2382846138fb565b91508190509392505050565b6000613c3a82613a67565b9150819050919050565b6000613c508286613bca565b602082019150613c608285613bca565b602082019150613c70828461377a565b601482019150819050949350505050565b6000602082019050613c96600083018461376b565b92915050565b6000608082019050613cb1600083018761376b565b613cbe602083018661376b565b613ccb6040830185613bbb565b8181036060830152613cdd818461387a565b905095945050505050565b60006020820190508181036000830152613d028184613791565b905092915050565b60006020820190508181036000830152613d2481846137ef565b905092915050565b6000602082019050613d41600083018461385c565b92915050565b6000602082019050613d5c600083018461386b565b92915050565b6000602082019050613d7760008301846138b3565b92915050565b60006020820190508181036000830152613d9781846138c2565b905092915050565b60006020820190508181036000830152613db88161392c565b9050919050565b60006020820190508181036000830152613dd88161394f565b9050919050565b60006020820190508181036000830152613df881613972565b9050919050565b60006020820190508181036000830152613e1881613995565b9050919050565b60006020820190508181036000830152613e38816139b8565b9050919050565b60006020820190508181036000830152613e58816139db565b9050919050565b60006020820190508181036000830152613e78816139fe565b9050919050565b60006020820190508181036000830152613e9881613a21565b9050919050565b60006020820190508181036000830152613eb881613a44565b9050919050565b60006020820190508181036000830152613ed881613a8a565b9050919050565b60006020820190508181036000830152613ef881613aad565b9050919050565b60006020820190508181036000830152613f1881613ad0565b9050919050565b6000608082019050613f346000830184613b48565b92915050565b6000602082019050613f4f6000830184613bbb565b92915050565b6000613f5f613f70565b9050613f6b82826142c8565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9557613f9461445d565b5b613f9e826144aa565b9050602081019050919050565b600067ffffffffffffffff821115613fc657613fc561445d565b5b613fcf826144aa565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140a782614200565b91506140b283614200565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140e7576140e66143a1565b5b828201905092915050565b60006140fd82614200565b915061410883614200565b925082614118576141176143d0565b5b828204905092915050565b600061412e82614200565b915061413983614200565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614172576141716143a1565b5b828202905092915050565b6000614188826141d1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600061422982614230565b9050919050565b600061423b82614242565b9050919050565b600061424d826141d1565b9050919050565b82818337600083830152505050565b60005b83811015614281578082015181840152602081019050614266565b83811115614290576000848401525b50505050565b600060028204905060018216806142ae57607f821691505b602082108114156142c2576142c16143ff565b5b50919050565b6142d1826144aa565b810181811067ffffffffffffffff821117156142f0576142ef61445d565b5b80604052505050565b600061430482614200565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614337576143366143a1565b5b600182019050919050565b600061434d82614354565b9050919050565b600061435f826144bb565b9050919050565b6000819050919050565b600061437b82614200565b915061438683614200565b925082614396576143956143d0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f54686520686f6c646572206d696e74206973206e6f7420656e61626c65642100600082015250565b7f54686520574c206d696e74206973206e6f7420656e61626c6564210000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61470c8161417d565b811461471757600080fd5b50565b6147238161418f565b811461472e57600080fd5b50565b61473a8161419b565b811461474557600080fd5b50565b614751816141a5565b811461475c57600080fd5b50565b61476881614200565b811461477357600080fd5b5056fea2646970667358221220ed0a8b1427ac45203963edd7694843706fd5b2c5fdd1f8081f48f7adf118f3d864736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001154726f75626c656d616b657220436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544d430000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): Troublemaker Club
Arg [1] : _tokenSymbol (string): TMC
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [3] : 54726f75626c656d616b657220436c7562000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 544d430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
74993:4498:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33545:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34447:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40930:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40371:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75428:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75970:748;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75223:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75100:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30198:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44637:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75070:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76724:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79056:150;;;;;;;;;;;;;:::i;:::-;;47550:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78093:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75472:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70128:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75186:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35840:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75383:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78956:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31382:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14293:103;;;;;;;;;;;;;:::i;:::-;;78520:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78309:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78415:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74004:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13645:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75341:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75297;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34623:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71044:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77227:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41488:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78173:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78624:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48333:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69541:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77725:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78851:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75261:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75136:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78735:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41953:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77564:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14551:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33545:639;33630:4;33969:10;33954:25;;:11;:25;;;;:102;;;;34046:10;34031:25;;:11;:25;;;;33954:102;:179;;;;34123:10;34108:25;;:11;:25;;;;33954:179;33934:199;;33545:639;;;:::o;34447:100::-;34501:13;34534:5;34527:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34447:100;:::o;40930:218::-;41006:7;41031:16;41039:7;41031;:16::i;:::-;41026:64;;41056:34;;;;;;;;;;;;;;41026:64;41110:15;:24;41126:7;41110:24;;;;;;;;;;;:30;;;;;;;;;;;;41103:37;;40930:218;;;:::o;40371:400::-;40452:13;40468:16;40476:7;40468;:16::i;:::-;40452:32;;40524:5;40501:28;;:19;:17;:19::i;:::-;:28;;;40497:175;;40549:44;40566:5;40573:19;:17;:19::i;:::-;40549:16;:44::i;:::-;40544:128;;40621:35;;;;;;;;;;;;;;40544:128;40497:175;40717:2;40684:15;:24;40700:7;40684:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40755:7;40751:2;40735:28;;40744:5;40735:28;;;;;;;;;;;;40441:330;40371:400;;:::o;75428:37::-;;;;;;;;;;;;;:::o;75970:748::-;76045:17;;;;;;;;;;;76037:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;76114:11;:25;76126:12;:10;:12::i;:::-;76114:25;;;;;;;;;;;;;;;;;;;;;;;;;76113:26;76105:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;76175:12;76217;:10;:12::i;:::-;76200:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;76190:41;;;;;;76175:56;;76246;76265:12;;76246:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76279:16;;76297:4;76246:18;:56::i;:::-;76238:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;76330:19;76352:1;76330:23;;76360:15;76378:14;;;;;;;;;;;:24;;;76411:10;76378:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76360:63;;76451:2;76440:7;:13;76436:111;;76464:18;76485:2;76464:23;;76536:3;76522:10;76512:7;:20;;;;:::i;:::-;76511:28;;;;:::i;:::-;76496:43;;;;;:::i;:::-;;;76455:92;76436:111;76594:9;;76579:11;76563:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;76555:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;76663:4;76635:11;:25;76647:12;:10;:12::i;:::-;76635:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;76676:36;76686:12;:10;:12::i;:::-;76700:11;76676:9;:36::i;:::-;76030:688;;;75970:748;;:::o;75223:33::-;;;;:::o;75100:31::-;;;;:::o;30198:323::-;30259:7;30487:15;:13;:15::i;:::-;30472:12;;30456:13;;:28;:46;30449:53;;30198:323;:::o;44637:2817::-;44771:27;44801;44820:7;44801:18;:27::i;:::-;44771:57;;44886:4;44845:45;;44861:19;44845:45;;;44841:86;;44899:28;;;;;;;;;;;;;;44841:86;44941:27;44970:23;44997:35;45024:7;44997:26;:35::i;:::-;44940:92;;;;45132:68;45157:15;45174:4;45180:19;:17;:19::i;:::-;45132:24;:68::i;:::-;45127:180;;45220:43;45237:4;45243:19;:17;:19::i;:::-;45220:16;:43::i;:::-;45215:92;;45272:35;;;;;;;;;;;;;;45215:92;45127:180;45338:1;45324:16;;:2;:16;;;45320:52;;;45349:23;;;;;;;;;;;;;;45320:52;45385:43;45407:4;45413:2;45417:7;45426:1;45385:21;:43::i;:::-;45521:15;45518:160;;;45661:1;45640:19;45633:30;45518:160;46058:18;:24;46077:4;46058:24;;;;;;;;;;;;;;;;46056:26;;;;;;;;;;;;46127:18;:22;46146:2;46127:22;;;;;;;;;;;;;;;;46125:24;;;;;;;;;;;46449:146;46486:2;46535:45;46550:4;46556:2;46560:19;46535:14;:45::i;:::-;26597:8;46507:73;46449:18;:146::i;:::-;46420:17;:26;46438:7;46420:26;;;;;;;;;;;:175;;;;46766:1;26597:8;46715:19;:47;:52;46711:627;;;46788:19;46820:1;46810:7;:11;46788:33;;46977:1;46943:17;:30;46961:11;46943:30;;;;;;;;;;;;:35;46939:384;;;47081:13;;47066:11;:28;47062:242;;47261:19;47228:17;:30;47246:11;47228:30;;;;;;;;;;;:52;;;;47062:242;46939:384;46769:569;46711:627;47385:7;47381:2;47366:27;;47375:4;47366:27;;;;;;;;;;;;47404:42;47425:4;47431:2;47435:7;47444:1;47404:20;:42::i;:::-;44760:2694;;;44637:2817;;;:::o;75070:25::-;;;;:::o;76724:497::-;76802:20;;;;;;;;;;;76794:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;76870:11;:25;76882:12;:10;:12::i;:::-;76870:25;;;;;;;;;;;;;;;;;;;;;;;;;76869:26;76861:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;76931:12;76973;:10;:12::i;:::-;76956:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;76946:41;;;;;;76931:56;;77002:50;77021:12;;77002:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77035:10;;77047:4;77002:18;:50::i;:::-;76994:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;77107:9;;77102:1;77086:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;77078:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;77178:4;77150:11;:25;77162:12;:10;:12::i;:::-;77150:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;77189:26;77199:12;:10;:12::i;:::-;77213:1;77189:9;:26::i;:::-;76787:434;76724:497;;:::o;79056:150::-;13531:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;79114:7:::2;79135;:5;:7::i;:::-;79127:21;;79156;79127:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79113:69;;;79197:2;79189:11;;;::::0;::::2;;79106:100;1801:1:::1;2755:7;:22;;;;79056:150::o:0;47550:185::-;47688:39;47705:4;47711:2;47715:7;47688:39;;;;;;;;;;;;:16;:39::i;:::-;47550:185;;;:::o;78093:74::-;13531:13;:11;:13::i;:::-;78156:5:::1;78149:4;:12;;;;78093:74:::0;:::o;75472:94::-;;;;;;;;;;;;;:::o;70128:528::-;70272:23;70338:22;70363:8;;:15;;70338:40;;70393:34;70451:14;70430:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;70393:73;;70486:9;70481:125;70502:14;70497:1;:19;70481:125;;70558:32;70578:8;;70587:1;70578:11;;;;;;;:::i;:::-;;;;;;;;70558:19;:32::i;:::-;70542:10;70553:1;70542:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;70518:3;;;;;70481:125;;;;70627:10;70620:17;;;;70128:528;;;;:::o;75186:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35840:152::-;35912:7;35955:27;35974:7;35955:18;:27::i;:::-;35932:52;;35840:152;;;:::o;75383:40::-;;;;;;;;;;;;;:::o;78956:94::-;13531:13;:11;:13::i;:::-;79034:10:::1;79022:9;:22;;;;78956:94:::0;:::o;31382:233::-;31454:7;31495:1;31478:19;;:5;:19;;;31474:60;;;31506:28;;;;;;;;;;;;;;31474:60;25541:13;31552:18;:25;31571:5;31552:25;;;;;;;;;;;;;;;;:55;31545:62;;31382:233;;;:::o;14293:103::-;13531:13;:11;:13::i;:::-;14358:30:::1;14385:1;14358:18;:30::i;:::-;14293:103::o:0;78520:98::-;13531:13;:11;:13::i;:::-;78601:11:::1;78588:10;:24;;;;78520:98:::0;:::o;78309:100::-;13531:13;:11;:13::i;:::-;78393:10:::1;78381:9;:22;;;;;;;;;;;;:::i;:::-;;78309:100:::0;:::o;78415:99::-;13531:13;:11;:13::i;:::-;78502:6:::1;78482:17;;:26;;;;;;;;;;;;;;;;;;78415:99:::0;:::o;74004:900::-;74082:16;74136:19;74170:25;74210:22;74235:16;74245:5;74235:9;:16::i;:::-;74210:41;;74266:25;74308:14;74294:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74266:57;;74338:31;;:::i;:::-;74389:9;74401:15;:13;:15::i;:::-;74389:27;;74384:472;74433:14;74418:11;:29;74384:472;;74485:15;74498:1;74485:12;:15::i;:::-;74473:27;;74523:9;:16;;;74519:73;;;74564:8;;74519:73;74640:1;74614:28;;:9;:14;;;:28;;;74610:111;;74687:9;:14;;;74667:34;;74610:111;74764:5;74743:26;;:17;:26;;;74739:102;;;74820:1;74794:8;74803:13;;;;;;74794:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;74739:102;74384:472;74449:3;;;;;74384:472;;;;74877:8;74870:15;;;;;;;74004:900;;;:::o;13645:87::-;13691:7;13718:6;;;;;;;;;;;13711:13;;13645:87;:::o;75341:37::-;;;;;;;;;;;;;:::o;75297:::-;;;;:::o;34623:104::-;34679:13;34712:7;34705:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34623:104;:::o;71044:2513::-;71187:16;71254:4;71245:5;:13;71241:45;;71267:19;;;;;;;;;;;;;;71241:45;71301:19;71335:17;71355:14;:12;:14::i;:::-;71335:34;;71455:15;:13;:15::i;:::-;71447:5;:23;71443:87;;;71499:15;:13;:15::i;:::-;71491:23;;71443:87;71606:9;71599:4;:16;71595:73;;;71643:9;71636:16;;71595:73;71682:25;71710:16;71720:5;71710:9;:16::i;:::-;71682:44;;71904:4;71896:5;:12;71892:278;;;71929:19;71958:5;71951:4;:12;71929:34;;72000:17;71986:11;:31;71982:111;;;72062:11;72042:31;;71982:111;71910:198;71892:278;;;72153:1;72133:21;;71892:278;72184:25;72226:17;72212:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72184:60;;72284:1;72263:17;:22;72259:78;;;72313:8;72306:15;;;;;;;;72259:78;72481:31;72515:26;72535:5;72515:19;:26::i;:::-;72481:60;;72556:25;72801:9;:16;;;72796:92;;72858:9;:14;;;72838:34;;72796:92;72907:9;72919:5;72907:17;;72902:478;72931:4;72926:1;:9;;:45;;;;;72954:17;72939:11;:32;;72926:45;72902:478;;;73009:15;73022:1;73009:12;:15::i;:::-;72997:27;;73047:9;:16;;;73043:73;;;73088:8;;73043:73;73164:1;73138:28;;:9;:14;;;:28;;;73134:111;;73211:9;:14;;;73191:34;;73134:111;73288:5;73267:26;;:17;:26;;;73263:102;;;73344:1;73318:8;73327:13;;;;;;73318:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;73263:102;72902:478;72973:3;;;;;72902:478;;;;73482:11;73472:8;73465:29;73530:8;73523:15;;;;;;;;71044:2513;;;;;;:::o;77227:329::-;77292:11;75807:1;75793:11;:15;:52;;;;;75827:18;;75812:11;:33;;75793:52;75785:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;75916:9;;75901:11;75885:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;75877:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;77320:17:::1;;;;;;;;;;;77312:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;77400:11;77393:4;;:18;;;;:::i;:::-;77380:9;:31;;77372:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;77460:11;77446;77453:3;77446:6;:11::i;:::-;:25;77442:64;;;77497:1;77482:16;;;;;:::i;:::-;;;77442:64;77514:36;77524:12;:10;:12::i;:::-;77538:11;77514:9;:36::i;:::-;77227:329:::0;;:::o;41488:308::-;41599:19;:17;:19::i;:::-;41587:31;;:8;:31;;;41583:61;;;41627:17;;;;;;;;;;;;;;41583:61;41709:8;41657:18;:39;41676:19;:17;:19::i;:::-;41657:39;;;;;;;;;;;;;;;:49;41697:8;41657:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41769:8;41733:55;;41748:19;:17;:19::i;:::-;41733:55;;;41779:8;41733:55;;;;;;:::i;:::-;;;;;;;;41488:308;;:::o;78173:130::-;13531:13;:11;:13::i;:::-;78278:19:::1;78257:18;:40;;;;78173:130:::0;:::o;78624:105::-;13531:13;:11;:13::i;:::-;78717:6:::1;78694:20;;:29;;;;;;;;;;;;;;;;;;78624:105:::0;:::o;48333:399::-;48500:31;48513:4;48519:2;48523:7;48500:12;:31::i;:::-;48564:1;48546:2;:14;;;:19;48542:183;;48585:56;48616:4;48622:2;48626:7;48635:5;48585:30;:56::i;:::-;48580:145;;48669:40;;;;;;;;;;;;;;48580:145;48542:183;48333:399;;;;:::o;69541:428::-;69625:21;;:::i;:::-;69659:31;;:::i;:::-;69715:15;:13;:15::i;:::-;69705:7;:25;:54;;;;69745:14;:12;:14::i;:::-;69734:7;:25;;69705:54;69701:103;;;69783:9;69776:16;;;;;69701:103;69826:21;69839:7;69826:12;:21::i;:::-;69814:33;;69862:9;:16;;;69858:65;;;69902:9;69895:16;;;;;69858:65;69940:21;69953:7;69940:12;:21::i;:::-;69933:28;;;69541:428;;;;:::o;77725:362::-;77799:13;77829:17;77837:8;77829:7;:17::i;:::-;77821:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;77907:28;77938:10;:8;:10::i;:::-;77907:41;;77993:1;77968:14;77962:28;:32;:119;;;;;;;;;;;;;;;;;78030:14;78046:19;78056:8;78046:9;:19::i;:::-;78013:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77962:119;77955:126;;;77725:362;;;:::o;78851:99::-;13531:13;:11;:13::i;:::-;78938:6:::1;78918:17;;:26;;;;;;;;;;;;;;;;;;78851:99:::0;:::o;75261:31::-;;;;:::o;75136:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;78735:110::-;13531:13;:11;:13::i;:::-;78828:11:::1;78809:16;:30;;;;78735:110:::0;:::o;41953:164::-;42050:4;42074:18;:25;42093:5;42074:25;;;;;;;;;;;;;;;:35;42100:8;42074:35;;;;;;;;;;;;;;;;;;;;;;;;;42067:42;;41953:164;;;;:::o;77564:155::-;77650:11;75807:1;75793:11;:15;:52;;;;;75827:18;;75812:11;:33;;75793:52;75785:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;75916:9;;75901:11;75885:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;75877:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13531:13:::1;:11;:13::i;:::-;77680:33:::2;77690:9;77701:11;77680:9;:33::i;:::-;77564:155:::0;;;:::o;14551:201::-;13531:13;:11;:13::i;:::-;14660:1:::1;14640:22;;:8;:22;;;;14632:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14716:28;14735:8;14716:18;:28::i;:::-;14551:201:::0;:::o;42375:282::-;42440:4;42496:7;42477:15;:13;:15::i;:::-;:26;;:66;;;;;42530:13;;42520:7;:23;42477:66;:153;;;;;42629:1;26317:8;42581:17;:26;42599:7;42581:26;;;;;;;;;;;;:44;:49;42477:153;42457:173;;42375:282;;;:::o;64141:105::-;64201:7;64228:10;64221:17;;64141:105;:::o;12196:98::-;12249:7;12276:10;12269:17;;12196:98;:::o;4011:190::-;4136:4;4189;4160:25;4173:5;4180:4;4160:12;:25::i;:::-;:33;4153:40;;4011:190;;;;;:::o;57973:112::-;58050:27;58060:2;58064:8;58050:27;;;;;;;;;;;;:9;:27::i;:::-;57973:112;;:::o;29714:92::-;29770:7;29714:92;:::o;36995:1275::-;37062:7;37082:12;37097:7;37082:22;;37165:4;37146:15;:13;:15::i;:::-;:23;37142:1061;;37199:13;;37192:4;:20;37188:1015;;;37237:14;37254:17;:23;37272:4;37254:23;;;;;;;;;;;;37237:40;;37371:1;26317:8;37343:6;:24;:29;37339:845;;;38008:113;38025:1;38015:6;:11;38008:113;;;38068:17;:25;38086:6;;;;;;;38068:25;;;;;;;;;;;;38059:34;;38008:113;;;38154:6;38147:13;;;;;;37339:845;37214:989;37188:1015;37142:1061;38231:31;;;;;;;;;;;;;;36995:1275;;;;:::o;43538:479::-;43640:27;43669:23;43710:38;43751:15;:24;43767:7;43751:24;;;;;;;;;;;43710:65;;43922:18;43899:41;;43979:19;43973:26;43954:45;;43884:126;43538:479;;;:::o;42766:659::-;42915:11;43080:16;43073:5;43069:28;43060:37;;43240:16;43229:9;43225:32;43212:45;;43390:15;43379:9;43376:30;43368:5;43357:9;43354:20;43351:56;43341:66;;42766:659;;;;;:::o;49394:159::-;;;;;:::o;63450:311::-;63585:7;63605:16;26721:3;63631:19;:41;;63605:68;;26721:3;63699:31;63710:4;63716:2;63720:9;63699:10;:31::i;:::-;63691:40;;:62;;63684:69;;;63450:311;;;;;:::o;38818:450::-;38898:14;39066:16;39059:5;39055:28;39046:37;;39243:5;39229:11;39204:23;39200:41;39197:52;39190:5;39187:63;39177:73;;38818:450;;;;:::o;50218:158::-;;;;;:::o;13810:132::-;13885:12;:10;:12::i;:::-;13874:23;;:7;:5;:7::i;:::-;:23;;;13866:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13810:132::o;14912:191::-;14986:16;15005:6;;;;;;;;;;;14986:25;;15031:8;15022:6;;:17;;;;;;;;;;;;;;;;;;15086:8;15055:40;;15076:8;15055:40;;;;;;;;;;;;14975:128;14912:191;:::o;36443:161::-;36511:21;;:::i;:::-;36552:44;36571:17;:24;36589:5;36571:24;;;;;;;;;;;;36552:18;:44::i;:::-;36545:51;;36443:161;;;:::o;29885:103::-;29940:7;29967:13;;29960:20;;29885:103;:::o;79322:166::-;79373:4;79476:6;79425:15;79442:16;79460:10;79408:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79398:74;;;;;;79393:80;;:89;;;;:::i;:::-;79386:96;;79322:166;;;:::o;50816:716::-;50979:4;51025:2;51000:45;;;51046:19;:17;:19::i;:::-;51067:4;51073:7;51082:5;51000:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50996:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51300:1;51283:6;:13;:18;51279:235;;;51329:40;;;;;;;;;;;;;;51279:235;51472:6;51466:13;51457:6;51453:2;51449:15;51442:38;50996:529;51169:54;;;51159:64;;;:6;:64;;;;51152:71;;;50816:716;;;;;;:::o;36181:166::-;36251:21;;:::i;:::-;36292:47;36311:27;36330:7;36311:18;:27::i;:::-;36292:18;:47::i;:::-;36285:54;;36181:166;;;:::o;79212:104::-;79272:13;79301:9;79294:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79212:104;:::o;64348:1581::-;64413:17;64838:4;64831;64825:11;64821:22;64814:29;;64930:3;64924:4;64917:17;65036:3;65275:5;65257:428;65283:1;65257:428;;;65323:1;65318:3;65314:11;65307:18;;65494:2;65488:4;65484:13;65480:2;65476:22;65471:3;65463:36;65588:2;65582:4;65578:13;65570:21;;65655:4;65645:25;;65663:5;;65645:25;65257:428;;;65261:21;65724:3;65719;65715:13;65839:4;65834:3;65830:14;65823:21;;65904:6;65899:3;65892:19;64452:1470;;64348:1581;;;:::o;4878:296::-;4961:7;4981:20;5004:4;4981:27;;5024:9;5019:118;5043:5;:12;5039:1;:16;5019:118;;;5092:33;5102:12;5116:5;5122:1;5116:8;;;;;;;;:::i;:::-;;;;;;;;5092:9;:33::i;:::-;5077:48;;5057:3;;;;;:::i;:::-;;;;5019:118;;;;5154:12;5147:19;;;4878:296;;;;:::o;57200:689::-;57331:19;57337:2;57341:8;57331:5;:19::i;:::-;57410:1;57392:2;:14;;;:19;57388:483;;57432:11;57446:13;;57432:27;;57478:13;57500:8;57494:3;:14;57478:30;;57527:233;57558:62;57597:1;57601:2;57605:7;;;;;;57614:5;57558:30;:62::i;:::-;57553:167;;57656:40;;;;;;;;;;;;;;57553:167;57755:3;57747:5;:11;57527:233;;57842:3;57825:13;;:20;57821:34;;57847:8;;;57821:34;57413:458;;57388:483;57200:689;;;:::o;63151:147::-;63288:6;63151:147;;;;;:::o;38369:366::-;38435:31;;:::i;:::-;38512:6;38479:9;:14;;:41;;;;;;;;;;;26200:3;38565:6;:33;;38531:9;:24;;:68;;;;;;;;;;;38657:1;26317:8;38629:6;:24;:29;;38610:9;:16;;:48;;;;;;;;;;;26721:3;38698:6;:28;;38669:9;:19;;:58;;;;;;;;;;;38369:366;;;:::o;11085:149::-;11148:7;11179:1;11175;:5;:51;;11206:20;11221:1;11224;11206:14;:20::i;:::-;11175:51;;;11183:20;11198:1;11201;11183:14;:20::i;:::-;11175:51;11168:58;;11085:149;;;;:::o;51994:2454::-;52067:20;52090:13;;52067:36;;52130:1;52118:8;:13;52114:44;;;52140:18;;;;;;;;;;;;;;52114:44;52171:61;52201:1;52205:2;52209:12;52223:8;52171:21;:61::i;:::-;52715:1;25679:2;52685:1;:26;;52684:32;52672:8;:45;52646:18;:22;52665:2;52646:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52994:139;53031:2;53085:33;53108:1;53112:2;53116:1;53085:14;:33::i;:::-;53052:30;53073:8;53052:20;:30::i;:::-;:66;52994:18;:139::i;:::-;52960:17;:31;52978:12;52960:31;;;;;;;;;;;:173;;;;53150:16;53181:11;53210:8;53195:12;:23;53181:37;;53465:16;53461:2;53457:25;53445:37;;53837:12;53797:8;53756:1;53694:25;53635:1;53574;53547:335;53962:1;53948:12;53944:20;53902:346;54003:3;53994:7;53991:16;53902:346;;54221:7;54211:8;54208:1;54181:25;54178:1;54175;54170:59;54056:1;54047:7;54043:15;54032:26;;53902:346;;;53906:77;54293:1;54281:8;:13;54277:45;;;54303:19;;;;;;;;;;;;;;54277:45;54355:3;54339:13;:19;;;;52420:1950;;54380:60;54409:1;54413:2;54417:12;54431:8;54380:20;:60::i;:::-;52056:2392;51994:2454;;:::o;11242:268::-;11310:13;11417:1;11411:4;11404:15;11446:1;11440:4;11433:15;11487:4;11481;11471:21;11462:30;;11242:268;;;;:::o;39370:324::-;39440:14;39673:1;39663:8;39660:15;39634:24;39630:46;39620:56;;39370:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:139::-;2353:5;2391:6;2378:20;2369:29;;2407:33;2434:5;2407:33;:::i;:::-;2307:139;;;;:::o;2452:137::-;2497:5;2535:6;2522:20;2513:29;;2551:32;2577:5;2551:32;:::i;:::-;2452:137;;;;:::o;2595:141::-;2651:5;2682:6;2676:13;2667:22;;2698:32;2724:5;2698:32;:::i;:::-;2595:141;;;;:::o;2755:338::-;2810:5;2859:3;2852:4;2844:6;2840:17;2836:27;2826:122;;2867:79;;:::i;:::-;2826:122;2984:6;2971:20;3009:78;3083:3;3075:6;3068:4;3060:6;3056:17;3009:78;:::i;:::-;3000:87;;2816:277;2755:338;;;;:::o;3113:340::-;3169:5;3218:3;3211:4;3203:6;3199:17;3195:27;3185:122;;3226:79;;:::i;:::-;3185:122;3343:6;3330:20;3368:79;3443:3;3435:6;3428:4;3420:6;3416:17;3368:79;:::i;:::-;3359:88;;3175:278;3113:340;;;;:::o;3459:139::-;3505:5;3543:6;3530:20;3521:29;;3559:33;3586:5;3559:33;:::i;:::-;3459:139;;;;:::o;3604:143::-;3661:5;3692:6;3686:13;3677:22;;3708:33;3735:5;3708:33;:::i;:::-;3604:143;;;;:::o;3753:329::-;3812:6;3861:2;3849:9;3840:7;3836:23;3832:32;3829:119;;;3867:79;;:::i;:::-;3829:119;3987:1;4012:53;4057:7;4048:6;4037:9;4033:22;4012:53;:::i;:::-;4002:63;;3958:117;3753:329;;;;:::o;4088:474::-;4156:6;4164;4213:2;4201:9;4192:7;4188:23;4184:32;4181:119;;;4219:79;;:::i;:::-;4181:119;4339:1;4364:53;4409:7;4400:6;4389:9;4385:22;4364:53;:::i;:::-;4354:63;;4310:117;4466:2;4492:53;4537:7;4528:6;4517:9;4513:22;4492:53;:::i;:::-;4482:63;;4437:118;4088:474;;;;;:::o;4568:619::-;4645:6;4653;4661;4710:2;4698:9;4689:7;4685:23;4681:32;4678:119;;;4716:79;;:::i;:::-;4678:119;4836:1;4861:53;4906:7;4897:6;4886:9;4882:22;4861:53;:::i;:::-;4851:63;;4807:117;4963:2;4989:53;5034:7;5025:6;5014:9;5010:22;4989:53;:::i;:::-;4979:63;;4934:118;5091:2;5117:53;5162:7;5153:6;5142:9;5138:22;5117:53;:::i;:::-;5107:63;;5062:118;4568:619;;;;;:::o;5193:943::-;5288:6;5296;5304;5312;5361:3;5349:9;5340:7;5336:23;5332:33;5329:120;;;5368:79;;:::i;:::-;5329:120;5488:1;5513:53;5558:7;5549:6;5538:9;5534:22;5513:53;:::i;:::-;5503:63;;5459:117;5615:2;5641:53;5686:7;5677:6;5666:9;5662:22;5641:53;:::i;:::-;5631:63;;5586:118;5743:2;5769:53;5814:7;5805:6;5794:9;5790:22;5769:53;:::i;:::-;5759:63;;5714:118;5899:2;5888:9;5884:18;5871:32;5930:18;5922:6;5919:30;5916:117;;;5952:79;;:::i;:::-;5916:117;6057:62;6111:7;6102:6;6091:9;6087:22;6057:62;:::i;:::-;6047:72;;5842:287;5193:943;;;;;;;:::o;6142:468::-;6207:6;6215;6264:2;6252:9;6243:7;6239:23;6235:32;6232:119;;;6270:79;;:::i;:::-;6232:119;6390:1;6415:53;6460:7;6451:6;6440:9;6436:22;6415:53;:::i;:::-;6405:63;;6361:117;6517:2;6543:50;6585:7;6576:6;6565:9;6561:22;6543:50;:::i;:::-;6533:60;;6488:115;6142:468;;;;;:::o;6616:474::-;6684:6;6692;6741:2;6729:9;6720:7;6716:23;6712:32;6709:119;;;6747:79;;:::i;:::-;6709:119;6867:1;6892:53;6937:7;6928:6;6917:9;6913:22;6892:53;:::i;:::-;6882:63;;6838:117;6994:2;7020:53;7065:7;7056:6;7045:9;7041:22;7020:53;:::i;:::-;7010:63;;6965:118;6616:474;;;;;:::o;7096:619::-;7173:6;7181;7189;7238:2;7226:9;7217:7;7213:23;7209:32;7206:119;;;7244:79;;:::i;:::-;7206:119;7364:1;7389:53;7434:7;7425:6;7414:9;7410:22;7389:53;:::i;:::-;7379:63;;7335:117;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;7619:2;7645:53;7690:7;7681:6;7670:9;7666:22;7645:53;:::i;:::-;7635:63;;7590:118;7096:619;;;;;:::o;7721:559::-;7807:6;7815;7864:2;7852:9;7843:7;7839:23;7835:32;7832:119;;;7870:79;;:::i;:::-;7832:119;8018:1;8007:9;8003:17;7990:31;8048:18;8040:6;8037:30;8034:117;;;8070:79;;:::i;:::-;8034:117;8183:80;8255:7;8246:6;8235:9;8231:22;8183:80;:::i;:::-;8165:98;;;;7961:312;7721:559;;;;;:::o;8286:::-;8372:6;8380;8429:2;8417:9;8408:7;8404:23;8400:32;8397:119;;;8435:79;;:::i;:::-;8397:119;8583:1;8572:9;8568:17;8555:31;8613:18;8605:6;8602:30;8599:117;;;8635:79;;:::i;:::-;8599:117;8748:80;8820:7;8811:6;8800:9;8796:22;8748:80;:::i;:::-;8730:98;;;;8526:312;8286:559;;;;;:::o;8851:323::-;8907:6;8956:2;8944:9;8935:7;8931:23;8927:32;8924:119;;;8962:79;;:::i;:::-;8924:119;9082:1;9107:50;9149:7;9140:6;9129:9;9125:22;9107:50;:::i;:::-;9097:60;;9053:114;8851:323;;;;:::o;9180:329::-;9239:6;9288:2;9276:9;9267:7;9263:23;9259:32;9256:119;;;9294:79;;:::i;:::-;9256:119;9414:1;9439:53;9484:7;9475:6;9464:9;9460:22;9439:53;:::i;:::-;9429:63;;9385:117;9180:329;;;;:::o;9515:327::-;9573:6;9622:2;9610:9;9601:7;9597:23;9593:32;9590:119;;;9628:79;;:::i;:::-;9590:119;9748:1;9773:52;9817:7;9808:6;9797:9;9793:22;9773:52;:::i;:::-;9763:62;;9719:116;9515:327;;;;:::o;9848:349::-;9917:6;9966:2;9954:9;9945:7;9941:23;9937:32;9934:119;;;9972:79;;:::i;:::-;9934:119;10092:1;10117:63;10172:7;10163:6;10152:9;10148:22;10117:63;:::i;:::-;10107:73;;10063:127;9848:349;;;;:::o;10203:509::-;10272:6;10321:2;10309:9;10300:7;10296:23;10292:32;10289:119;;;10327:79;;:::i;:::-;10289:119;10475:1;10464:9;10460:17;10447:31;10505:18;10497:6;10494:30;10491:117;;;10527:79;;:::i;:::-;10491:117;10632:63;10687:7;10678:6;10667:9;10663:22;10632:63;:::i;:::-;10622:73;;10418:287;10203:509;;;;:::o;10718:329::-;10777:6;10826:2;10814:9;10805:7;10801:23;10797:32;10794:119;;;10832:79;;:::i;:::-;10794:119;10952:1;10977:53;11022:7;11013:6;11002:9;10998:22;10977:53;:::i;:::-;10967:63;;10923:117;10718:329;;;;:::o;11053:351::-;11123:6;11172:2;11160:9;11151:7;11147:23;11143:32;11140:119;;;11178:79;;:::i;:::-;11140:119;11298:1;11323:64;11379:7;11370:6;11359:9;11355:22;11323:64;:::i;:::-;11313:74;;11269:128;11053:351;;;;:::o;11410:474::-;11478:6;11486;11535:2;11523:9;11514:7;11510:23;11506:32;11503:119;;;11541:79;;:::i;:::-;11503:119;11661:1;11686:53;11731:7;11722:6;11711:9;11707:22;11686:53;:::i;:::-;11676:63;;11632:117;11788:2;11814:53;11859:7;11850:6;11839:9;11835:22;11814:53;:::i;:::-;11804:63;;11759:118;11410:474;;;;;:::o;11890:303::-;12021:10;12042:108;12146:3;12138:6;12042:108;:::i;:::-;12182:4;12177:3;12173:14;12159:28;;11890:303;;;;:::o;12199:179::-;12268:10;12289:46;12331:3;12323:6;12289:46;:::i;:::-;12367:4;12362:3;12358:14;12344:28;;12199:179;;;;:::o;12384:108::-;12461:24;12479:5;12461:24;:::i;:::-;12456:3;12449:37;12384:108;;:::o;12498:118::-;12585:24;12603:5;12585:24;:::i;:::-;12580:3;12573:37;12498:118;;:::o;12622:157::-;12727:45;12747:24;12765:5;12747:24;:::i;:::-;12727:45;:::i;:::-;12722:3;12715:58;12622:157;;:::o;12861:980::-;13042:3;13071:85;13150:5;13071:85;:::i;:::-;13172:117;13282:6;13277:3;13172:117;:::i;:::-;13165:124;;13313:87;13394:5;13313:87;:::i;:::-;13423:7;13454:1;13439:377;13464:6;13461:1;13458:13;13439:377;;;13540:6;13534:13;13567:125;13688:3;13673:13;13567:125;:::i;:::-;13560:132;;13715:91;13799:6;13715:91;:::i;:::-;13705:101;;13499:317;13486:1;13483;13479:9;13474:14;;13439:377;;;13443:14;13832:3;13825:10;;13047:794;;;12861:980;;;;:::o;13877:732::-;13996:3;14025:54;14073:5;14025:54;:::i;:::-;14095:86;14174:6;14169:3;14095:86;:::i;:::-;14088:93;;14205:56;14255:5;14205:56;:::i;:::-;14284:7;14315:1;14300:284;14325:6;14322:1;14319:13;14300:284;;;14401:6;14395:13;14428:63;14487:3;14472:13;14428:63;:::i;:::-;14421:70;;14514:60;14567:6;14514:60;:::i;:::-;14504:70;;14360:224;14347:1;14344;14340:9;14335:14;;14300:284;;;14304:14;14600:3;14593:10;;14001:608;;;13877:732;;;;:::o;14615:99::-;14686:21;14701:5;14686:21;:::i;:::-;14681:3;14674:34;14615:99;;:::o;14720:109::-;14801:21;14816:5;14801:21;:::i;:::-;14796:3;14789:34;14720:109;;:::o;14835:118::-;14922:24;14940:5;14922:24;:::i;:::-;14917:3;14910:37;14835:118;;:::o;14959:360::-;15045:3;15073:38;15105:5;15073:38;:::i;:::-;15127:70;15190:6;15185:3;15127:70;:::i;:::-;15120:77;;15206:52;15251:6;15246:3;15239:4;15232:5;15228:16;15206:52;:::i;:::-;15283:29;15305:6;15283:29;:::i;:::-;15278:3;15274:39;15267:46;;15049:270;14959:360;;;;:::o;15325:163::-;15428:53;15475:5;15428:53;:::i;:::-;15423:3;15416:66;15325:163;;:::o;15494:364::-;15582:3;15610:39;15643:5;15610:39;:::i;:::-;15665:71;15729:6;15724:3;15665:71;:::i;:::-;15658:78;;15745:52;15790:6;15785:3;15778:4;15771:5;15767:16;15745:52;:::i;:::-;15822:29;15844:6;15822:29;:::i;:::-;15817:3;15813:39;15806:46;;15586:272;15494:364;;;;:::o;15864:377::-;15970:3;15998:39;16031:5;15998:39;:::i;:::-;16053:89;16135:6;16130:3;16053:89;:::i;:::-;16046:96;;16151:52;16196:6;16191:3;16184:4;16177:5;16173:16;16151:52;:::i;:::-;16228:6;16223:3;16219:16;16212:23;;15974:267;15864:377;;;;:::o;16247:366::-;16389:3;16410:67;16474:2;16469:3;16410:67;:::i;:::-;16403:74;;16486:93;16575:3;16486:93;:::i;:::-;16604:2;16599:3;16595:12;16588:19;;16247:366;;;:::o;16619:::-;16761:3;16782:67;16846:2;16841:3;16782:67;:::i;:::-;16775:74;;16858:93;16947:3;16858:93;:::i;:::-;16976:2;16971:3;16967:12;16960:19;;16619:366;;;:::o;16991:::-;17133:3;17154:67;17218:2;17213:3;17154:67;:::i;:::-;17147:74;;17230:93;17319:3;17230:93;:::i;:::-;17348:2;17343:3;17339:12;17332:19;;16991:366;;;:::o;17363:::-;17505:3;17526:67;17590:2;17585:3;17526:67;:::i;:::-;17519:74;;17602:93;17691:3;17602:93;:::i;:::-;17720:2;17715:3;17711:12;17704:19;;17363:366;;;:::o;17735:::-;17877:3;17898:67;17962:2;17957:3;17898:67;:::i;:::-;17891:74;;17974:93;18063:3;17974:93;:::i;:::-;18092:2;18087:3;18083:12;18076:19;;17735:366;;;:::o;18107:::-;18249:3;18270:67;18334:2;18329:3;18270:67;:::i;:::-;18263:74;;18346:93;18435:3;18346:93;:::i;:::-;18464:2;18459:3;18455:12;18448:19;;18107:366;;;:::o;18479:::-;18621:3;18642:67;18706:2;18701:3;18642:67;:::i;:::-;18635:74;;18718:93;18807:3;18718:93;:::i;:::-;18836:2;18831:3;18827:12;18820:19;;18479:366;;;:::o;18851:::-;18993:3;19014:67;19078:2;19073:3;19014:67;:::i;:::-;19007:74;;19090:93;19179:3;19090:93;:::i;:::-;19208:2;19203:3;19199:12;19192:19;;18851:366;;;:::o;19223:::-;19365:3;19386:67;19450:2;19445:3;19386:67;:::i;:::-;19379:74;;19462:93;19551:3;19462:93;:::i;:::-;19580:2;19575:3;19571:12;19564:19;;19223:366;;;:::o;19595:398::-;19754:3;19775:83;19856:1;19851:3;19775:83;:::i;:::-;19768:90;;19867:93;19956:3;19867:93;:::i;:::-;19985:1;19980:3;19976:11;19969:18;;19595:398;;;:::o;19999:366::-;20141:3;20162:67;20226:2;20221:3;20162:67;:::i;:::-;20155:74;;20238:93;20327:3;20238:93;:::i;:::-;20356:2;20351:3;20347:12;20340:19;;19999:366;;;:::o;20371:::-;20513:3;20534:67;20598:2;20593:3;20534:67;:::i;:::-;20527:74;;20610:93;20699:3;20610:93;:::i;:::-;20728:2;20723:3;20719:12;20712:19;;20371:366;;;:::o;20743:::-;20885:3;20906:67;20970:2;20965:3;20906:67;:::i;:::-;20899:74;;20982:93;21071:3;20982:93;:::i;:::-;21100:2;21095:3;21091:12;21084:19;;20743:366;;;:::o;21187:864::-;21336:4;21331:3;21327:14;21423:4;21416:5;21412:16;21406:23;21442:63;21499:4;21494:3;21490:14;21476:12;21442:63;:::i;:::-;21351:164;21607:4;21600:5;21596:16;21590:23;21626:61;21681:4;21676:3;21672:14;21658:12;21626:61;:::i;:::-;21525:172;21781:4;21774:5;21770:16;21764:23;21800:57;21851:4;21846:3;21842:14;21828:12;21800:57;:::i;:::-;21707:160;21954:4;21947:5;21943:16;21937:23;21973:61;22028:4;22023:3;22019:14;22005:12;21973:61;:::i;:::-;21877:167;21305:746;21187:864;;:::o;22129:874::-;22288:4;22283:3;22279:14;22375:4;22368:5;22364:16;22358:23;22394:63;22451:4;22446:3;22442:14;22428:12;22394:63;:::i;:::-;22303:164;22559:4;22552:5;22548:16;22542:23;22578:61;22633:4;22628:3;22624:14;22610:12;22578:61;:::i;:::-;22477:172;22733:4;22726:5;22722:16;22716:23;22752:57;22803:4;22798:3;22794:14;22780:12;22752:57;:::i;:::-;22659:160;22906:4;22899:5;22895:16;22889:23;22925:61;22980:4;22975:3;22971:14;22957:12;22925:61;:::i;:::-;22829:167;22257:746;22129:874;;:::o;23009:105::-;23084:23;23101:5;23084:23;:::i;:::-;23079:3;23072:36;23009:105;;:::o;23120:108::-;23197:24;23215:5;23197:24;:::i;:::-;23192:3;23185:37;23120:108;;:::o;23234:118::-;23321:24;23339:5;23321:24;:::i;:::-;23316:3;23309:37;23234:118;;:::o;23358:157::-;23463:45;23483:24;23501:5;23483:24;:::i;:::-;23463:45;:::i;:::-;23458:3;23451:58;23358:157;;:::o;23521:105::-;23596:23;23613:5;23596:23;:::i;:::-;23591:3;23584:36;23521:105;;:::o;23632:256::-;23744:3;23759:75;23830:3;23821:6;23759:75;:::i;:::-;23859:2;23854:3;23850:12;23843:19;;23879:3;23872:10;;23632:256;;;;:::o;23894:435::-;24074:3;24096:95;24187:3;24178:6;24096:95;:::i;:::-;24089:102;;24208:95;24299:3;24290:6;24208:95;:::i;:::-;24201:102;;24320:3;24313:10;;23894:435;;;;;:::o;24335:379::-;24519:3;24541:147;24684:3;24541:147;:::i;:::-;24534:154;;24705:3;24698:10;;24335:379;;;:::o;24720:538::-;24888:3;24903:75;24974:3;24965:6;24903:75;:::i;:::-;25003:2;24998:3;24994:12;24987:19;;25016:75;25087:3;25078:6;25016:75;:::i;:::-;25116:2;25111:3;25107:12;25100:19;;25129:75;25200:3;25191:6;25129:75;:::i;:::-;25229:2;25224:3;25220:12;25213:19;;25249:3;25242:10;;24720:538;;;;;;:::o;25264:222::-;25357:4;25395:2;25384:9;25380:18;25372:26;;25408:71;25476:1;25465:9;25461:17;25452:6;25408:71;:::i;:::-;25264:222;;;;:::o;25492:640::-;25687:4;25725:3;25714:9;25710:19;25702:27;;25739:71;25807:1;25796:9;25792:17;25783:6;25739:71;:::i;:::-;25820:72;25888:2;25877:9;25873:18;25864:6;25820:72;:::i;:::-;25902;25970:2;25959:9;25955:18;25946:6;25902:72;:::i;:::-;26021:9;26015:4;26011:20;26006:2;25995:9;25991:18;25984:48;26049:76;26120:4;26111:6;26049:76;:::i;:::-;26041:84;;25492:640;;;;;;;:::o;26138:497::-;26343:4;26381:2;26370:9;26366:18;26358:26;;26430:9;26424:4;26420:20;26416:1;26405:9;26401:17;26394:47;26458:170;26623:4;26614:6;26458:170;:::i;:::-;26450:178;;26138:497;;;;:::o;26641:373::-;26784:4;26822:2;26811:9;26807:18;26799:26;;26871:9;26865:4;26861:20;26857:1;26846:9;26842:17;26835:47;26899:108;27002:4;26993:6;26899:108;:::i;:::-;26891:116;;26641:373;;;;:::o;27020:210::-;27107:4;27145:2;27134:9;27130:18;27122:26;;27158:65;27220:1;27209:9;27205:17;27196:6;27158:65;:::i;:::-;27020:210;;;;:::o;27236:222::-;27329:4;27367:2;27356:9;27352:18;27344:26;;27380:71;27448:1;27437:9;27433:17;27424:6;27380:71;:::i;:::-;27236:222;;;;:::o;27464:254::-;27573:4;27611:2;27600:9;27596:18;27588:26;;27624:87;27708:1;27697:9;27693:17;27684:6;27624:87;:::i;:::-;27464:254;;;;:::o;27724:313::-;27837:4;27875:2;27864:9;27860:18;27852:26;;27924:9;27918:4;27914:20;27910:1;27899:9;27895:17;27888:47;27952:78;28025:4;28016:6;27952:78;:::i;:::-;27944:86;;27724:313;;;;:::o;28043:419::-;28209:4;28247:2;28236:9;28232:18;28224:26;;28296:9;28290:4;28286:20;28282:1;28271:9;28267:17;28260:47;28324:131;28450:4;28324:131;:::i;:::-;28316:139;;28043:419;;;:::o;28468:::-;28634:4;28672:2;28661:9;28657:18;28649:26;;28721:9;28715:4;28711:20;28707:1;28696:9;28692:17;28685:47;28749:131;28875:4;28749:131;:::i;:::-;28741:139;;28468:419;;;:::o;28893:::-;29059:4;29097:2;29086:9;29082:18;29074:26;;29146:9;29140:4;29136:20;29132:1;29121:9;29117:17;29110:47;29174:131;29300:4;29174:131;:::i;:::-;29166:139;;28893:419;;;:::o;29318:::-;29484:4;29522:2;29511:9;29507:18;29499:26;;29571:9;29565:4;29561:20;29557:1;29546:9;29542:17;29535:47;29599:131;29725:4;29599:131;:::i;:::-;29591:139;;29318:419;;;:::o;29743:::-;29909:4;29947:2;29936:9;29932:18;29924:26;;29996:9;29990:4;29986:20;29982:1;29971:9;29967:17;29960:47;30024:131;30150:4;30024:131;:::i;:::-;30016:139;;29743:419;;;:::o;30168:::-;30334:4;30372:2;30361:9;30357:18;30349:26;;30421:9;30415:4;30411:20;30407:1;30396:9;30392:17;30385:47;30449:131;30575:4;30449:131;:::i;:::-;30441:139;;30168:419;;;:::o;30593:::-;30759:4;30797:2;30786:9;30782:18;30774:26;;30846:9;30840:4;30836:20;30832:1;30821:9;30817:17;30810:47;30874:131;31000:4;30874:131;:::i;:::-;30866:139;;30593:419;;;:::o;31018:::-;31184:4;31222:2;31211:9;31207:18;31199:26;;31271:9;31265:4;31261:20;31257:1;31246:9;31242:17;31235:47;31299:131;31425:4;31299:131;:::i;:::-;31291:139;;31018:419;;;:::o;31443:::-;31609:4;31647:2;31636:9;31632:18;31624:26;;31696:9;31690:4;31686:20;31682:1;31671:9;31667:17;31660:47;31724:131;31850:4;31724:131;:::i;:::-;31716:139;;31443:419;;;:::o;31868:::-;32034:4;32072:2;32061:9;32057:18;32049:26;;32121:9;32115:4;32111:20;32107:1;32096:9;32092:17;32085:47;32149:131;32275:4;32149:131;:::i;:::-;32141:139;;31868:419;;;:::o;32293:::-;32459:4;32497:2;32486:9;32482:18;32474:26;;32546:9;32540:4;32536:20;32532:1;32521:9;32517:17;32510:47;32574:131;32700:4;32574:131;:::i;:::-;32566:139;;32293:419;;;:::o;32718:::-;32884:4;32922:2;32911:9;32907:18;32899:26;;32971:9;32965:4;32961:20;32957:1;32946:9;32942:17;32935:47;32999:131;33125:4;32999:131;:::i;:::-;32991:139;;32718:419;;;:::o;33143:347::-;33298:4;33336:3;33325:9;33321:19;33313:27;;33350:133;33480:1;33469:9;33465:17;33456:6;33350:133;:::i;:::-;33143:347;;;;:::o;33496:222::-;33589:4;33627:2;33616:9;33612:18;33604:26;;33640:71;33708:1;33697:9;33693:17;33684:6;33640:71;:::i;:::-;33496:222;;;;:::o;33724:129::-;33758:6;33785:20;;:::i;:::-;33775:30;;33814:33;33842:4;33834:6;33814:33;:::i;:::-;33724:129;;;:::o;33859:75::-;33892:6;33925:2;33919:9;33909:19;;33859:75;:::o;33940:307::-;34001:4;34091:18;34083:6;34080:30;34077:56;;;34113:18;;:::i;:::-;34077:56;34151:29;34173:6;34151:29;:::i;:::-;34143:37;;34235:4;34229;34225:15;34217:23;;33940:307;;;:::o;34253:308::-;34315:4;34405:18;34397:6;34394:30;34391:56;;;34427:18;;:::i;:::-;34391:56;34465:29;34487:6;34465:29;:::i;:::-;34457:37;;34549:4;34543;34539:15;34531:23;;34253:308;;;:::o;34567:163::-;34665:4;34688:3;34680:11;;34718:4;34713:3;34709:14;34701:22;;34567:163;;;:::o;34736:132::-;34803:4;34826:3;34818:11;;34856:4;34851:3;34847:14;34839:22;;34736:132;;;:::o;34874:145::-;34972:6;35006:5;35000:12;34990:22;;34874:145;;;:::o;35025:114::-;35092:6;35126:5;35120:12;35110:22;;35025:114;;;:::o;35145:98::-;35196:6;35230:5;35224:12;35214:22;;35145:98;;;:::o;35249:99::-;35301:6;35335:5;35329:12;35319:22;;35249:99;;;:::o;35354:144::-;35455:4;35487;35482:3;35478:14;35470:22;;35354:144;;;:::o;35504:113::-;35574:4;35606;35601:3;35597:14;35589:22;;35504:113;;;:::o;35623:215::-;35753:11;35787:6;35782:3;35775:19;35827:4;35822:3;35818:14;35803:29;;35623:215;;;;:::o;35844:184::-;35943:11;35977:6;35972:3;35965:19;36017:4;36012:3;36008:14;35993:29;;35844:184;;;;:::o;36034:168::-;36117:11;36151:6;36146:3;36139:19;36191:4;36186:3;36182:14;36167:29;;36034:168;;;;:::o;36208:147::-;36309:11;36346:3;36331:18;;36208:147;;;;:::o;36361:169::-;36445:11;36479:6;36474:3;36467:19;36519:4;36514:3;36510:14;36495:29;;36361:169;;;;:::o;36536:148::-;36638:11;36675:3;36660:18;;36536:148;;;;:::o;36690:305::-;36730:3;36749:20;36767:1;36749:20;:::i;:::-;36744:25;;36783:20;36801:1;36783:20;:::i;:::-;36778:25;;36937:1;36869:66;36865:74;36862:1;36859:81;36856:107;;;36943:18;;:::i;:::-;36856:107;36987:1;36984;36980:9;36973:16;;36690:305;;;;:::o;37001:185::-;37041:1;37058:20;37076:1;37058:20;:::i;:::-;37053:25;;37092:20;37110:1;37092:20;:::i;:::-;37087:25;;37131:1;37121:35;;37136:18;;:::i;:::-;37121:35;37178:1;37175;37171:9;37166:14;;37001:185;;;;:::o;37192:348::-;37232:7;37255:20;37273:1;37255:20;:::i;:::-;37250:25;;37289:20;37307:1;37289:20;:::i;:::-;37284:25;;37477:1;37409:66;37405:74;37402:1;37399:81;37394:1;37387:9;37380:17;37376:105;37373:131;;;37484:18;;:::i;:::-;37373:131;37532:1;37529;37525:9;37514:20;;37192:348;;;;:::o;37546:96::-;37583:7;37612:24;37630:5;37612:24;:::i;:::-;37601:35;;37546:96;;;:::o;37648:90::-;37682:7;37725:5;37718:13;37711:21;37700:32;;37648:90;;;:::o;37744:77::-;37781:7;37810:5;37799:16;;37744:77;;;:::o;37827:149::-;37863:7;37903:66;37896:5;37892:78;37881:89;;37827:149;;;:::o;37982:126::-;38019:7;38059:42;38052:5;38048:54;38037:65;;37982:126;;;:::o;38114:91::-;38150:7;38190:8;38183:5;38179:20;38168:31;;38114:91;;;:::o;38211:77::-;38248:7;38277:5;38266:16;;38211:77;;;:::o;38294:101::-;38330:7;38370:18;38363:5;38359:30;38348:41;;38294:101;;;:::o;38401:142::-;38467:9;38500:37;38531:5;38500:37;:::i;:::-;38487:50;;38401:142;;;:::o;38549:126::-;38599:9;38632:37;38663:5;38632:37;:::i;:::-;38619:50;;38549:126;;;:::o;38681:113::-;38731:9;38764:24;38782:5;38764:24;:::i;:::-;38751:37;;38681:113;;;:::o;38800:154::-;38884:6;38879:3;38874;38861:30;38946:1;38937:6;38932:3;38928:16;38921:27;38800:154;;;:::o;38960:307::-;39028:1;39038:113;39052:6;39049:1;39046:13;39038:113;;;39137:1;39132:3;39128:11;39122:18;39118:1;39113:3;39109:11;39102:39;39074:2;39071:1;39067:10;39062:15;;39038:113;;;39169:6;39166:1;39163:13;39160:101;;;39249:1;39240:6;39235:3;39231:16;39224:27;39160:101;39009:258;38960:307;;;:::o;39273:320::-;39317:6;39354:1;39348:4;39344:12;39334:22;;39401:1;39395:4;39391:12;39422:18;39412:81;;39478:4;39470:6;39466:17;39456:27;;39412:81;39540:2;39532:6;39529:14;39509:18;39506:38;39503:84;;;39559:18;;:::i;:::-;39503:84;39324:269;39273:320;;;:::o;39599:281::-;39682:27;39704:4;39682:27;:::i;:::-;39674:6;39670:40;39812:6;39800:10;39797:22;39776:18;39764:10;39761:34;39758:62;39755:88;;;39823:18;;:::i;:::-;39755:88;39863:10;39859:2;39852:22;39642:238;39599:281;;:::o;39886:233::-;39925:3;39948:24;39966:5;39948:24;:::i;:::-;39939:33;;39994:66;39987:5;39984:77;39981:103;;;40064:18;;:::i;:::-;39981:103;40111:1;40104:5;40100:13;40093:20;;39886:233;;;:::o;40125:100::-;40164:7;40193:26;40213:5;40193:26;:::i;:::-;40182:37;;40125:100;;;:::o;40231:94::-;40270:7;40299:20;40313:5;40299:20;:::i;:::-;40288:31;;40231:94;;;:::o;40331:79::-;40370:7;40399:5;40388:16;;40331:79;;;:::o;40416:176::-;40448:1;40465:20;40483:1;40465:20;:::i;:::-;40460:25;;40499:20;40517:1;40499:20;:::i;:::-;40494:25;;40538:1;40528:35;;40543:18;;:::i;:::-;40528:35;40584:1;40581;40577:9;40572:14;;40416:176;;;;:::o;40598:180::-;40646:77;40643:1;40636:88;40743:4;40740:1;40733:15;40767:4;40764:1;40757:15;40784:180;40832:77;40829:1;40822:88;40929:4;40926:1;40919:15;40953:4;40950:1;40943:15;40970:180;41018:77;41015:1;41008:88;41115:4;41112:1;41105:15;41139:4;41136:1;41129:15;41156:180;41204:77;41201:1;41194:88;41301:4;41298:1;41291:15;41325:4;41322:1;41315:15;41342:180;41390:77;41387:1;41380:88;41487:4;41484:1;41477:15;41511:4;41508:1;41501:15;41528:117;41637:1;41634;41627:12;41651:117;41760:1;41757;41750:12;41774:117;41883:1;41880;41873:12;41897:117;42006:1;42003;41996:12;42020:117;42129:1;42126;42119:12;42143:117;42252:1;42249;42242:12;42266:102;42307:6;42358:2;42354:7;42349:2;42342:5;42338:14;42334:28;42324:38;;42266:102;;;:::o;42374:94::-;42407:8;42455:5;42451:2;42447:14;42426:35;;42374:94;;;:::o;42474:164::-;42614:16;42610:1;42602:6;42598:14;42591:40;42474:164;:::o;42644:225::-;42784:34;42780:1;42772:6;42768:14;42761:58;42853:8;42848:2;42840:6;42836:15;42829:33;42644:225;:::o;42875:170::-;43015:22;43011:1;43003:6;42999:14;42992:46;42875:170;:::o;43051:181::-;43191:33;43187:1;43179:6;43175:14;43168:57;43051:181;:::o;43238:177::-;43378:29;43374:1;43366:6;43362:14;43355:53;43238:177;:::o;43421:182::-;43561:34;43557:1;43549:6;43545:14;43538:58;43421:182;:::o;43609:173::-;43749:25;43745:1;43737:6;43733:14;43726:49;43609:173;:::o;43788:174::-;43928:26;43924:1;43916:6;43912:14;43905:50;43788:174;:::o;43968:234::-;44108:34;44104:1;44096:6;44092:14;44085:58;44177:17;44172:2;44164:6;44160:15;44153:42;43968:234;:::o;44208:114::-;;:::o;44328:170::-;44468:22;44464:1;44456:6;44452:14;44445:46;44328:170;:::o;44504:181::-;44644:33;44640:1;44632:6;44628:14;44621:57;44504:181;:::o;44691:169::-;44831:21;44827:1;44819:6;44815:14;44808:45;44691:169;:::o;44866:122::-;44939:24;44957:5;44939:24;:::i;:::-;44932:5;44929:35;44919:63;;44978:1;44975;44968:12;44919:63;44866:122;:::o;44994:116::-;45064:21;45079:5;45064:21;:::i;:::-;45057:5;45054:32;45044:60;;45100:1;45097;45090:12;45044:60;44994:116;:::o;45116:122::-;45189:24;45207:5;45189:24;:::i;:::-;45182:5;45179:35;45169:63;;45228:1;45225;45218:12;45169:63;45116:122;:::o;45244:120::-;45316:23;45333:5;45316:23;:::i;:::-;45309:5;45306:34;45296:62;;45354:1;45351;45344:12;45296:62;45244:120;:::o;45370:122::-;45443:24;45461:5;45443:24;:::i;:::-;45436:5;45433:35;45423:63;;45482:1;45479;45472:12;45423:63;45370:122;:::o
Swarm Source
ipfs://ed0a8b1427ac45203963edd7694843706fd5b2c5fdd1f8081f48f7adf118f3d8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.