Token THC - Public Invite
Overview ERC-1155
Total Supply:
0 THCP
Holders:
291,718 addresses
Contract:
Balance
0 THCP
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xe84bd615cdf4328cedb44a388637574e99fe6d05
Contract Name:
THCPublicInvite
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-12 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } // File: THCPublicInvite.sol ///////////// //// //// /////////// //// //// //// /// //// //// //// /// //// //////////////// /// //// //// //// /// //// //// //// /// //// //// //// /////////// //// //// ////////////// ///////////// //// //// //// //// //// //// //// //// //// //// //// //// //// //// //////////////// //// //// /////// //////////////// //// //// //// //// //// //// //// //// //// //// //// //// //// //// //// //// ///////////// ////////////// //// //// ///// ///////////// ////////////// //////////////// //// //// /// /// //// //// //// //// /// /// //// //// /// /// /// /// //// //// /////////////// ///////////// /////////// //////////////// /// /////// /// /// //// //// /// /// /// //// //// /// /// /// ////////////// //////////////// //By: JayyWETH //Twitter: https://www.twitter.com/jayyweth //www.hypemeup.io //The High Apes Club //Webiste: https://www.thehighapesclub.com //Discord: https://www.discord.com/invite/thac //Twitter: https://www.twitter.com/thehighapesclub pragma solidity ^0.8.7; contract THCPublicInvite is ERC1155, Ownable { string public name; string public symbol; uint256 public constant royaltyPercent = 10; uint256 public cost = 1.00 ether; uint256 public mintingid = 1; uint256 public maxmint = 50; bool public paused = false; mapping (uint256 => string) private _uris; constructor() ERC1155("https://www.thehighapesclub.com/assets/nft/invite/{id}.json") { setName("THC - Public Invite"); setSymbol("THCP"); _mint(msg.sender, mintingid, 100, ""); } function setName(string memory _name) public onlyOwner { name = _name; } function setSymbol(string memory _symbol) public onlyOwner { symbol = _symbol; } function uri(uint256 tokenId) override public view returns (string memory) { return( string(abi.encodePacked( "https://www.thehighapesclub.com/assets/nft/invite/", Strings.toString(tokenId), ".json" )) ); } function mint(address _to, uint256 _mintAmount) public payable { require(!paused); require(_mintAmount > 0); if (msg.sender != owner()) { require(balanceOf(_to,mintingid) < maxmint); require(msg.value >= cost * _mintAmount); } _mint(_to, mintingid, _mintAmount, ''); } function burn(address _to) public { require(_to == msg.sender); _burn(_to, mintingid, balanceOf(msg.sender,mintingid)); } //Only the THC Boss function setMintingID(uint256 _newMintingID) public onlyOwner { mintingid = _newMintingID; } function setMaxMint(uint256 _newMax) public onlyOwner { maxmint = _newMax; } function pause(bool _state) public onlyOwner { paused = _state; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setTokenUri(uint256 tokenId, string memory uriset) public onlyOwner { _uris[tokenId] = uriset; } function mintBatch(address[] memory _accountlist) public onlyOwner{ for(uint i = 0; i < _accountlist.length; i++) { _mint(_accountlist[i], mintingid, 1, ''); } } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxmint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accountlist","type":"address[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyPercent","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintingID","type":"uint256"}],"name":"setMintingID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_symbol","type":"string"}],"name":"setSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uriset","type":"string"}],"name":"setTokenUri","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052670de0b6b3a7640000600655600160075560326008556009805460ff191690553480156200003157600080fd5b506040518060600160405280603b815260200162002b22603b91396200005781620000f4565b5062000063336200010d565b60408051808201909152601381527f544843202d205075626c696320496e76697465000000000000000000000000006020820152620000a2906200015f565b6040805180820190915260048152630544843560e41b6020820152620000c890620001c3565b620000ee336007546064604051806020016040528060008152506200022360201b60201c565b62000870565b8051620001099060029060208401906200058a565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6003546001600160a01b03163314620001ae5760405162461bcd60e51b8152602060048201819052602482015260008051602062002b0283398151915260448201526064015b60405180910390fd5b8051620001099060049060208401906200058a565b6003546001600160a01b031633146200020e5760405162461bcd60e51b8152602060048201819052602482015260008051602062002b028339815191526044820152606401620001a5565b8051620001099060059060208401906200058a565b6001600160a01b038416620002855760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401620001a5565b33620002ab8160008762000299886200033f565b620002a4886200033f565b5050505050565b6000848152602081815260408083206001600160a01b038916845290915281208054859290620002dd9084906200070f565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4620002a48160008787878762000395565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106200037c576200037c620007ae565b602090810291909101015292915050565b505050505050565b620003b4846001600160a01b03166200057b60201b62000d7a1760201c565b156200038d5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190620003f09089908990889088908890600401620006b3565b602060405180830381600087803b1580156200040b57600080fd5b505af19250505080156200043e575060408051601f3d908101601f191682019092526200043b9181019062000630565b60015b620004ff576200044d620007c4565b806308c379a014156200048e575062000465620007e1565b8062000472575062000490565b8060405162461bcd60e51b8152600401620001a59190620006fa565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401620001a5565b6001600160e01b0319811663f23a6e6160e01b14620005725760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401620001a5565b50505050505050565b6001600160a01b03163b151590565b828054620005989062000736565b90600052602060002090601f016020900481019282620005bc576000855562000607565b82601f10620005d757805160ff191683800117855562000607565b8280016001018555821562000607579182015b8281111562000607578251825591602001919060010190620005ea565b506200061592915062000619565b5090565b5b808211156200061557600081556001016200061a565b6000602082840312156200064357600080fd5b81516001600160e01b0319811681146200065c57600080fd5b9392505050565b6000815180845260005b818110156200068b576020818501810151868301820152016200066d565b818111156200069e576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090620006ef9083018462000663565b979650505050505050565b6020815260006200065c602083018462000663565b600082198211156200073157634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200074b57607f821691505b602082108114156200076d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715620007a757634e487b7160e01b600052604160045260246000fd5b6040525050565b634e487b7160e01b600052603260045260246000fd5b600060033d1115620007de5760046000803e5060005160e01c5b90565b600060443d1015620007f05790565b6040516003193d81016004833e81513d6001600160401b0380831160248401831017156200082057505050505090565b8285019150815181811115620008395750505050505090565b843d8701016020828501011115620008545750505050505090565b620008656020828601018762000773565b509095945050505050565b61228280620008806000396000f3fe6080604052600436106101c15760003560e01c8063715018a6116100f75780639c4bbad511610095578063c47f002711610064578063c47f0027146104b8578063e985e9c5146104d8578063f242432a14610521578063f2fde38b1461054157600080fd5b80639c4bbad51461044d5780639f67756d14610463578063a22cb46514610478578063b84c82461461049857600080fd5b80638aa80ea5116100d15780638aa80ea5146103da5780638da5cb5b146103f0578063927f59ba1461041857806395d89b411461043857600080fd5b8063715018a614610385578063717916c21461039a57806389afcb44146103ba57600080fd5b80633ccfd60b116101645780634e1273f41161013e5780634e1273f4146102fe578063547520fe1461032b57806357f7789e1461034b5780635c975abb1461036b57600080fd5b80633ccfd60b146102c357806340c10f19146102cb57806344a0d68a146102de57600080fd5b806306fdde03116101a057806306fdde031461024b5780630e89341c1461026d57806313faede61461028d5780632eb2c2d6146102a357600080fd5b8062fdd58e146101c657806301ffc9a7146101f957806302329a2914610229575b600080fd5b3480156101d257600080fd5b506101e66101e1366004611b6f565b610561565b6040519081526020015b60405180910390f35b34801561020557600080fd5b50610219610214366004611c4d565b6105f8565b60405190151581526020016101f0565b34801561023557600080fd5b50610249610244366004611c32565b61064a565b005b34801561025757600080fd5b50610260610687565b6040516101f09190611ecc565b34801561027957600080fd5b50610260610288366004611cbc565b610715565b34801561029957600080fd5b506101e660065481565b3480156102af57600080fd5b506102496102be366004611a36565b610746565b6102496107dd565b6102496102d9366004611b6f565b61085f565b3480156102ea57600080fd5b506102496102f9366004611cbc565b6108e2565b34801561030a57600080fd5b5061031e610319366004611bce565b610911565b6040516101f09190611e8b565b34801561033757600080fd5b50610249610346366004611cbc565b610a3b565b34801561035757600080fd5b50610249610366366004611cd5565b610a6a565b34801561037757600080fd5b506009546102199060ff1681565b34801561039157600080fd5b50610249610ab8565b3480156103a657600080fd5b506102496103b5366004611cbc565b610aee565b3480156103c657600080fd5b506102496103d53660046119e1565b610b1d565b3480156103e657600080fd5b506101e660085481565b3480156103fc57600080fd5b506003546040516001600160a01b0390911681526020016101f0565b34801561042457600080fd5b50610249610433366004611b99565b610b4a565b34801561044457600080fd5b50610260610bc9565b34801561045957600080fd5b506101e660075481565b34801561046f57600080fd5b506101e6600a81565b34801561048457600080fd5b50610249610493366004611b45565b610bd6565b3480156104a457600080fd5b506102496104b3366004611c87565b610be1565b3480156104c457600080fd5b506102496104d3366004611c87565b610c1e565b3480156104e457600080fd5b506102196104f3366004611a03565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561052d57600080fd5b5061024961053c366004611ae0565b610c5b565b34801561054d57600080fd5b5061024961055c3660046119e1565b610ce2565b60006001600160a01b0383166105d25760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061062957506001600160e01b031982166303a24d0760e21b145b8061064457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146106745760405162461bcd60e51b81526004016105c990611fb6565b6009805460ff1916911515919091179055565b60048054610694906120a1565b80601f01602080910402602001604051908101604052809291908181526020018280546106c0906120a1565b801561070d5780601f106106e25761010080835404028352916020019161070d565b820191906000526020600020905b8154815290600101906020018083116106f057829003601f168201915b505050505081565b606061072082610d89565b6040516020016107309190611d79565b6040516020818303038152906040529050919050565b6001600160a01b038516331480610762575061076285336104f3565b6107c95760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016105c9565b6107d68585858585610e8f565b5050505050565b6003546001600160a01b031633146108075760405162461bcd60e51b81526004016105c990611fb6565b604051600090339047908381818185875af1925050503d8060008114610849576040519150601f19603f3d011682016040523d82523d6000602084013e61084e565b606091505b505090508061085c57600080fd5b50565b60095460ff161561086f57600080fd5b6000811161087c57600080fd5b6003546001600160a01b031633146108c15760085461089d83600754610561565b106108a757600080fd5b806006546108b5919061203b565b3410156108c157600080fd5b6108de82600754836040518060200160405280600081525061106c565b5050565b6003546001600160a01b0316331461090c5760405162461bcd60e51b81526004016105c990611fb6565b600655565b606081518351146109765760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016105c9565b6000835167ffffffffffffffff8111156109925761099261217a565b6040519080825280602002602001820160405280156109bb578160200160208202803683370190505b50905060005b8451811015610a3357610a068582815181106109df576109df612164565b60200260200101518583815181106109f9576109f9612164565b6020026020010151610561565b828281518110610a1857610a18612164565b6020908102919091010152610a2c81612109565b90506109c1565b509392505050565b6003546001600160a01b03163314610a655760405162461bcd60e51b81526004016105c990611fb6565b600855565b6003546001600160a01b03163314610a945760405162461bcd60e51b81526004016105c990611fb6565b6000828152600a602090815260409091208251610ab3928401906117c0565b505050565b6003546001600160a01b03163314610ae25760405162461bcd60e51b81526004016105c990611fb6565b610aec6000611176565b565b6003546001600160a01b03163314610b185760405162461bcd60e51b81526004016105c990611fb6565b600755565b6001600160a01b0381163314610b3257600080fd5b61085c81600754610b4533600754610561565b6111c8565b6003546001600160a01b03163314610b745760405162461bcd60e51b81526004016105c990611fb6565b60005b81518110156108de57610bb7828281518110610b9557610b95612164565b602002602001015160075460016040518060200160405280600081525061106c565b80610bc181612109565b915050610b77565b60058054610694906120a1565b6108de338383611342565b6003546001600160a01b03163314610c0b5760405162461bcd60e51b81526004016105c990611fb6565b80516108de9060059060208401906117c0565b6003546001600160a01b03163314610c485760405162461bcd60e51b81526004016105c990611fb6565b80516108de9060049060208401906117c0565b6001600160a01b038516331480610c775750610c7785336104f3565b610cd55760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016105c9565b6107d68585858585611423565b6003546001600160a01b03163314610d0c5760405162461bcd60e51b81526004016105c990611fb6565b6001600160a01b038116610d715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c9565b61085c81611176565b6001600160a01b03163b151590565b606081610dad5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610dd75780610dc181612109565b9150610dd09050600a83612027565b9150610db1565b60008167ffffffffffffffff811115610df257610df261217a565b6040519080825280601f01601f191660200182016040528015610e1c576020820181803683370190505b5090505b8415610e8757610e3160018361205a565b9150610e3e600a86612124565b610e4990603061200f565b60f81b818381518110610e5e57610e5e612164565b60200101906001600160f81b031916908160001a905350610e80600a86612027565b9450610e20565b949350505050565b8151835114610ef15760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016105c9565b6001600160a01b038416610f175760405162461bcd60e51b81526004016105c990611f27565b3360005b8451811015610ffe576000858281518110610f3857610f38612164565b602002602001015190506000858381518110610f5657610f56612164565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610fa65760405162461bcd60e51b81526004016105c990611f6c565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610fe390849061200f565b9250508190555050505080610ff790612109565b9050610f1b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161104e929190611e9e565b60405180910390a4611064818787878787611540565b505050505050565b6001600160a01b0384166110cc5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105c9565b336110e6816000876110dd886116ab565b6107d6886116ab565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061111690849061200f565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46107d6816000878787876116f6565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661122a5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b60648201526084016105c9565b3361125a8185600061123b876116ab565b611244876116ab565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156112d75760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b60648201526084016105c9565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b816001600160a01b0316836001600160a01b031614156113b65760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016105c9565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166114495760405162461bcd60e51b81526004016105c990611f27565b336114598187876110dd886116ab565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561149a5760405162461bcd60e51b81526004016105c990611f6c565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906114d790849061200f565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46115378288888888886116f6565b50505050505050565b6001600160a01b0384163b156110645760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906115849089908990889088908890600401611de8565b602060405180830381600087803b15801561159e57600080fd5b505af19250505080156115ce575060408051601f3d908101601f191682019092526115cb91810190611c6a565b60015b61167b576115da612190565b806308c379a0141561161457506115ef6121ac565b806115fa5750611616565b8060405162461bcd60e51b81526004016105c99190611ecc565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016105c9565b6001600160e01b0319811663bc197c8160e01b146115375760405162461bcd60e51b81526004016105c990611edf565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106116e5576116e5612164565b602090810291909101015292915050565b6001600160a01b0384163b156110645760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061173a9089908990889088908890600401611e46565b602060405180830381600087803b15801561175457600080fd5b505af1925050508015611784575060408051601f3d908101601f1916820190925261178191810190611c6a565b60015b611790576115da612190565b6001600160e01b0319811663f23a6e6160e01b146115375760405162461bcd60e51b81526004016105c990611edf565b8280546117cc906120a1565b90600052602060002090601f0160209004810192826117ee5760008555611834565b82601f1061180757805160ff1916838001178555611834565b82800160010185558215611834579182015b82811115611834578251825591602001919060010190611819565b50611840929150611844565b5090565b5b808211156118405760008155600101611845565b80356001600160a01b038116811461187057600080fd5b919050565b600082601f83011261188657600080fd5b8135602061189382611feb565b6040516118a082826120dc565b8381528281019150858301600585901b870184018810156118c057600080fd5b60005b858110156118e6576118d482611859565b845292840192908401906001016118c3565b5090979650505050505050565b600082601f83011261190457600080fd5b8135602061191182611feb565b60405161191e82826120dc565b8381528281019150858301600585901b8701840188101561193e57600080fd5b60005b858110156118e657813584529284019290840190600101611941565b8035801515811461187057600080fd5b600082601f83011261197e57600080fd5b813567ffffffffffffffff8111156119985761199861217a565b6040516119af601f8301601f1916602001826120dc565b8181528460208386010111156119c457600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156119f357600080fd5b6119fc82611859565b9392505050565b60008060408385031215611a1657600080fd5b611a1f83611859565b9150611a2d60208401611859565b90509250929050565b600080600080600060a08688031215611a4e57600080fd5b611a5786611859565b9450611a6560208701611859565b9350604086013567ffffffffffffffff80821115611a8257600080fd5b611a8e89838a016118f3565b94506060880135915080821115611aa457600080fd5b611ab089838a016118f3565b93506080880135915080821115611ac657600080fd5b50611ad38882890161196d565b9150509295509295909350565b600080600080600060a08688031215611af857600080fd5b611b0186611859565b9450611b0f60208701611859565b93506040860135925060608601359150608086013567ffffffffffffffff811115611b3957600080fd5b611ad38882890161196d565b60008060408385031215611b5857600080fd5b611b6183611859565b9150611a2d6020840161195d565b60008060408385031215611b8257600080fd5b611b8b83611859565b946020939093013593505050565b600060208284031215611bab57600080fd5b813567ffffffffffffffff811115611bc257600080fd5b610e8784828501611875565b60008060408385031215611be157600080fd5b823567ffffffffffffffff80821115611bf957600080fd5b611c0586838701611875565b93506020850135915080821115611c1b57600080fd5b50611c28858286016118f3565b9150509250929050565b600060208284031215611c4457600080fd5b6119fc8261195d565b600060208284031215611c5f57600080fd5b81356119fc81612236565b600060208284031215611c7c57600080fd5b81516119fc81612236565b600060208284031215611c9957600080fd5b813567ffffffffffffffff811115611cb057600080fd5b610e878482850161196d565b600060208284031215611cce57600080fd5b5035919050565b60008060408385031215611ce857600080fd5b82359150602083013567ffffffffffffffff811115611d0657600080fd5b611c288582860161196d565b600081518084526020808501945080840160005b83811015611d4257815187529582019590820190600101611d26565b509495945050505050565b60008151808452611d65816020860160208601612071565b601f01601f19169290920160200192915050565b7f68747470733a2f2f7777772e7468656869676861706573636c75622e636f6d2f8152716173736574732f6e66742f696e766974652f60701b602082015260008251611dcc816032850160208701612071565b64173539b7b760d91b6032939091019283015250603701919050565b6001600160a01b0386811682528516602082015260a060408201819052600090611e1490830186611d12565b8281036060840152611e268186611d12565b90508281036080840152611e3a8185611d4d565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611e8090830184611d4d565b979650505050505050565b6020815260006119fc6020830184611d12565b604081526000611eb16040830185611d12565b8281036020840152611ec38185611d12565b95945050505050565b6020815260006119fc6020830184611d4d565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156120055761200561217a565b5060051b60200190565b6000821982111561202257612022612138565b500190565b6000826120365761203661214e565b500490565b600081600019048311821515161561205557612055612138565b500290565b60008282101561206c5761206c612138565b500390565b60005b8381101561208c578181015183820152602001612074565b8381111561209b576000848401525b50505050565b600181811c908216806120b557607f821691505b602082108114156120d657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156121025761210261217a565b6040525050565b600060001982141561211d5761211d612138565b5060010190565b6000826121335761213361214e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156121a95760046000803e5060005160e01c5b90565b600060443d10156121ba5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156121ea57505050505090565b82850191508151818111156122025750505050505090565b843d870101602082850101111561221c5750505050505090565b61222b602082860101876120dc565b509095945050505050565b6001600160e01b03198116811461085c57600080fdfea26469706673582212209d48c8bdf91b589ac2e5ddc028b3da8df34a3940f53649a22d863d10fa773d1964736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657268747470733a2f2f7777772e7468656869676861706573636c75622e636f6d2f6173736574732f6e66742f696e766974652f7b69647d2e6a736f6e
Deployed ByteCode Sourcemap
40756:2316:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25501:231;;;;;;;;;;-1:-1:-1;25501:231:0;;;;;:::i;:::-;;:::i;:::-;;;18057:25:1;;;18045:2;18030:18;25501:231:0;;;;;;;;24524:310;;;;;;;;;;-1:-1:-1;24524:310:0;;;;;:::i;:::-;;:::i;:::-;;;11564:14:1;;11557:22;11539:41;;11527:2;11512:18;24524:310:0;11399:187:1;42419:75:0;;;;;;;;;;-1:-1:-1;42419:75:0;;;;;:::i;:::-;;:::i;:::-;;40810:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41485:254::-;;;;;;;;;;-1:-1:-1;41485:254:0;;;;;:::i;:::-;;:::i;40916:32::-;;;;;;;;;;;;;;;;27440:442;;;;;;;;;;-1:-1:-1;27440:442:0;;;;;:::i;:::-;;:::i;42879:188::-;;;:::i;41744:317::-;;;;;;:::i;:::-;;:::i;42498:82::-;;;;;;;;;;-1:-1:-1;42498:82:0;;;;;:::i;:::-;;:::i;25898:524::-;;;;;;;;;;-1:-1:-1;25898:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42329:86::-;;;;;;;;;;-1:-1:-1;42329:86:0;;;;;:::i;:::-;;:::i;42584:110::-;;;;;;;;;;-1:-1:-1;42584:110:0;;;;;:::i;:::-;;:::i;41025:26::-;;;;;;;;;;-1:-1:-1;41025:26:0;;;;;;;;4730:103;;;;;;;;;;;;;:::i;42223:102::-;;;;;;;;;;-1:-1:-1;42223:102:0;;;;;:::i;:::-;;:::i;42065:131::-;;;;;;;;;;-1:-1:-1;42065:131:0;;;;;:::i;:::-;;:::i;40992:27::-;;;;;;;;;;;;;;;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;4079:87;;-1:-1:-1;;;;;4152:6:0;;;9205:51:1;;9193:2;9178:18;4079:87:0;9059:203:1;42698:177:0;;;;;;;;;;-1:-1:-1;42698:177:0;;;;;:::i;:::-;;:::i;40835:20::-;;;;;;;;;;;;;:::i;40957:28::-;;;;;;;;;;;;;;;;40864:43;;;;;;;;;;;;40905:2;40864:43;;26495:155;;;;;;;;;;-1:-1:-1;26495:155:0;;;;;:::i;:::-;;:::i;41396:85::-;;;;;;;;;;-1:-1:-1;41396:85:0;;;;;:::i;:::-;;:::i;41313:77::-;;;;;;;;;;-1:-1:-1;41313:77:0;;;;;:::i;:::-;;:::i;26722:168::-;;;;;;;;;;-1:-1:-1;26722:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;26845:27:0;;;26821:4;26845:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;26722:168;26962:401;;;;;;;;;;-1:-1:-1;26962:401:0;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;25501:231::-;25587:7;-1:-1:-1;;;;;25615:21:0;;25607:77;;;;-1:-1:-1;;;25607:77:0;;12847:2:1;25607:77:0;;;12829:21:1;12886:2;12866:18;;;12859:30;12925:34;12905:18;;;12898:62;-1:-1:-1;;;12976:18:1;;;12969:41;13027:19;;25607:77:0;;;;;;;;;-1:-1:-1;25702:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;25702:22:0;;;;;;;;;;;;25501:231::o;24524:310::-;24626:4;-1:-1:-1;;;;;;24663:41:0;;-1:-1:-1;;;24663:41:0;;:110;;-1:-1:-1;;;;;;;24721:52:0;;-1:-1:-1;;;24721:52:0;24663:110;:163;;;-1:-1:-1;;;;;;;;;;15941:40:0;;;24790:36;24643:183;24524:310;-1:-1:-1;;24524:310:0:o;42419:75::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;42475:6:::1;:15:::0;;-1:-1:-1;;42475:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42419:75::o;40810:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41485:254::-;41545:13;41677:25;41694:7;41677:16;:25::i;:::-;41588:139;;;;;;;;:::i;:::-;;;;;;;;;;;;;41565:169;;41485:254;;;:::o;27440:442::-;-1:-1:-1;;;;;27673:20:0;;2883:10;27673:20;;:60;;-1:-1:-1;27697:36:0;27714:4;2883:10;26722:168;:::i;27697:36::-;27651:160;;;;-1:-1:-1;;;27651:160:0;;14887:2:1;27651:160:0;;;14869:21:1;14926:2;14906:18;;;14899:30;14965:34;14945:18;;;14938:62;-1:-1:-1;;;15016:18:1;;;15009:48;15074:19;;27651:160:0;14685:414:1;27651:160:0;27822:52;27845:4;27851:2;27855:3;27860:7;27869:4;27822:22;:52::i;:::-;27440:442;;;;;:::o;42879:188::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;42954:82:::1;::::0;42936:12:::1;::::0;42962:10:::1;::::0;43000:21:::1;::::0;42936:12;42954:82;42936:12;42954:82;43000:21;42962:10;42954:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42935:101;;;43055:7;43047:16;;;::::0;::::1;;42924:143;42879:188::o:0;41744:317::-;41824:6;;;;41823:7;41815:16;;;;;;41859:1;41845:11;:15;41837:24;;;;;;4152:6;;-1:-1:-1;;;;;4152:6:0;41876:10;:21;41872:137;;41944:7;;41917:24;41927:3;41931:9;;41917;:24::i;:::-;:34;41909:43;;;;;;41990:11;41983:4;;:18;;;;:::i;:::-;41970:9;:31;;41962:40;;;;;;42019:38;42025:3;42030:9;;42041:11;42019:38;;;;;;;;;;;;:5;:38::i;:::-;41744:317;;:::o;42498:82::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;42561:4:::1;:15:::0;42498:82::o;25898:524::-;26054:16;26115:3;:10;26096:8;:15;:29;26088:83;;;;-1:-1:-1;;;26088:83:0;;16892:2:1;26088:83:0;;;16874:21:1;16931:2;16911:18;;;16904:30;16970:34;16950:18;;;16943:62;-1:-1:-1;;;17021:18:1;;;17014:39;17070:19;;26088:83:0;16690:405:1;26088:83:0;26184:30;26231:8;:15;26217:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26217:30:0;;26184:63;;26265:9;26260:122;26284:8;:15;26280:1;:19;26260:122;;;26340:30;26350:8;26359:1;26350:11;;;;;;;;:::i;:::-;;;;;;;26363:3;26367:1;26363:6;;;;;;;;:::i;:::-;;;;;;;26340:9;:30::i;:::-;26321:13;26335:1;26321:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;26301:3;;;:::i;:::-;;;26260:122;;;-1:-1:-1;26401:13:0;25898:524;-1:-1:-1;;;25898:524:0:o;42329:86::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;42394:7:::1;:17:::0;42329:86::o;42584:110::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;42667:14:::1;::::0;;;:5:::1;:14;::::0;;;;;;;:23;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;42584:110:::0;;:::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;42223:102::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;42296:9:::1;:25:::0;42223:102::o;42065:131::-;-1:-1:-1;;;;;42114:17:0;;42121:10;42114:17;42106:26;;;;;;42138:54;42144:3;42149:9;;42160:31;42170:10;42181:9;;42160;:31::i;:::-;42138:5;:54::i;42698:177::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;42775:6:::1;42771:101;42791:12;:19;42787:1;:23;42771:101;;;42824:40;42830:12;42843:1;42830:15;;;;;;;;:::i;:::-;;;;;;;42847:9;;42858:1;42824:40;;;;;;;;;;;::::0;:5:::1;:40::i;:::-;42812:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42771:101;;40835:20:::0;;;;;;;:::i;26495:155::-;26590:52;2883:10;26623:8;26633;26590:18;:52::i;41396:85::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;41461:16;;::::1;::::0;:6:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;41313:77::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;41374:12;;::::1;::::0;:4:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;26962:401::-:0;-1:-1:-1;;;;;27170:20:0;;2883:10;27170:20;;:60;;-1:-1:-1;27194:36:0;27211:4;2883:10;26722:168;:::i;27194:36::-;27148:151;;;;-1:-1:-1;;;27148:151:0;;14071:2:1;27148:151:0;;;14053:21:1;14110:2;14090:18;;;14083:30;14149:34;14129:18;;;14122:62;-1:-1:-1;;;14200:18:1;;;14193:39;14249:19;;27148:151:0;13869:405:1;27148:151:0;27310:45;27328:4;27334:2;27338;27342:6;27350:4;27310:17;:45::i;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;13259:2:1;5069:73:0::1;::::0;::::1;13241:21:1::0;13298:2;13278:18;;;13271:30;13337:34;13317:18;;;13310:62;-1:-1:-1;;;13388:18:1;;;13381:36;13434:19;;5069:73:0::1;13057:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;6780:326::-:0;-1:-1:-1;;;;;7075:19:0;;:23;;;6780:326::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;;1073:6;365:723;-1:-1:-1;;;;365:723:0:o;29524:1074::-;29751:7;:14;29737:3;:10;:28;29729:81;;;;-1:-1:-1;;;29729:81:0;;17302:2:1;29729:81:0;;;17284:21:1;17341:2;17321:18;;;17314:30;17380:34;17360:18;;;17353:62;-1:-1:-1;;;17431:18:1;;;17424:38;17479:19;;29729:81:0;17100:404:1;29729:81:0;-1:-1:-1;;;;;29829:16:0;;29821:66;;;;-1:-1:-1;;;29821:66:0;;;;;;;:::i;:::-;2883:10;29900:16;30017:421;30041:3;:10;30037:1;:14;30017:421;;;30073:10;30086:3;30090:1;30086:6;;;;;;;;:::i;:::-;;;;;;;30073:19;;30107:14;30124:7;30132:1;30124:10;;;;;;;;:::i;:::-;;;;;;;;;;;;30151:19;30173:13;;;;;;;;;;-1:-1:-1;;;;;30173:19:0;;;;;;;;;;;;30124:10;;-1:-1:-1;30215:21:0;;;;30207:76;;;;-1:-1:-1;;;30207:76:0;;;;;;;:::i;:::-;30327:9;:13;;;;;;;;;;;-1:-1:-1;;;;;30327:19:0;;;;;;;;;;30349:20;;;30327:42;;30399:17;;;;;;;:27;;30349:20;;30327:9;30399:27;;30349:20;;30399:27;:::i;:::-;;;;;;;;30058:380;;;30053:3;;;;:::i;:::-;;;30017:421;;;;30485:2;-1:-1:-1;;;;;30455:47:0;30479:4;-1:-1:-1;;;;;30455:47:0;30469:8;-1:-1:-1;;;;;30455:47:0;;30489:3;30494:7;30455:47;;;;;;;:::i;:::-;;;;;;;;30515:75;30551:8;30561:4;30567:2;30571:3;30576:7;30585:4;30515:35;:75::i;:::-;29718:880;29524:1074;;;;;:::o;31916:569::-;-1:-1:-1;;;;;32069:16:0;;32061:62;;;;-1:-1:-1;;;32061:62:0;;17711:2:1;32061:62:0;;;17693:21:1;17750:2;17730:18;;;17723:30;17789:34;17769:18;;;17762:62;-1:-1:-1;;;17840:18:1;;;17833:31;17881:19;;32061:62:0;17509:397:1;32061:62:0;2883:10;32180:102;2883:10;32136:16;32223:2;32227:21;32245:2;32227:17;:21::i;:::-;32250:25;32268:6;32250:17;:25::i;32180:102::-;32295:9;:13;;;;;;;;;;;-1:-1:-1;;;;;32295:17:0;;;;;;;;;:27;;32316:6;;32295:9;:27;;32316:6;;32295:27;:::i;:::-;;;;-1:-1:-1;;32338:52:0;;;18267:25:1;;;18323:2;18308:18;;18301:34;;;-1:-1:-1;;;;;32338:52:0;;;;32371:1;;32338:52;;;;;;18240:18:1;32338:52:0;;;;;;;32403:74;32434:8;32452:1;32456:2;32460;32464:6;32472:4;32403:30;:74::i;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;33826:648::-;-1:-1:-1;;;;;33953:18:0;;33945:66;;;;-1:-1:-1;;;33945:66:0;;15306:2:1;33945:66:0;;;15288:21:1;15345:2;15325:18;;;15318:30;15384:34;15364:18;;;15357:62;-1:-1:-1;;;15435:18:1;;;15428:33;15478:19;;33945:66:0;15104:399:1;33945:66:0;2883:10;34068:102;2883:10;34099:4;34024:16;34117:21;34135:2;34117:17;:21::i;:::-;34140:25;34158:6;34140:17;:25::i;:::-;-1:-1:-1;;34068:102:0;;;;;;;;;-1:-1:-1;34068:102:0;;-1:-1:-1;;;29524:1074:0;34068:102;34183:19;34205:13;;;;;;;;;;;-1:-1:-1;;;;;34205:19:0;;;;;;;;;;34243:21;;;;34235:70;;;;-1:-1:-1;;;34235:70:0;;13666:2:1;34235:70:0;;;13648:21:1;13705:2;13685:18;;;13678:30;13744:34;13724:18;;;13717:62;-1:-1:-1;;;13795:18:1;;;13788:34;13839:19;;34235:70:0;13464:400:1;34235:70:0;34341:9;:13;;;;;;;;;;;-1:-1:-1;;;;;34341:19:0;;;;;;;;;;;;34363:20;;;34341:42;;34412:54;;18267:25:1;;;18308:18;;;18301:34;;;34341:19:0;;34412:54;;;;;;18240:18:1;34412:54:0;;;;;;;33934:540;;33826:648;;;:::o;35710:331::-;35865:8;-1:-1:-1;;;;;35856:17:0;:5;-1:-1:-1;;;;;35856:17:0;;;35848:71;;;;-1:-1:-1;;;35848:71:0;;16482:2:1;35848:71:0;;;16464:21:1;16521:2;16501:18;;;16494:30;16560:34;16540:18;;;16533:62;-1:-1:-1;;;16611:18:1;;;16604:39;16660:19;;35848:71:0;16280:405:1;35848:71:0;-1:-1:-1;;;;;35930:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35930:46:0;;;;;;;;;;35992:41;;11539::1;;;35992::0;;11512:18:1;35992:41:0;;;;;;;35710:331;;;:::o;28346:820::-;-1:-1:-1;;;;;28534:16:0;;28526:66;;;;-1:-1:-1;;;28526:66:0;;;;;;;:::i;:::-;2883:10;28649:96;2883:10;28680:4;28686:2;28690:21;28708:2;28690:17;:21::i;28649:96::-;28758:19;28780:13;;;;;;;;;;;-1:-1:-1;;;;;28780:19:0;;;;;;;;;;28818:21;;;;28810:76;;;;-1:-1:-1;;;28810:76:0;;;;;;;:::i;:::-;28922:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28922:19:0;;;;;;;;;;28944:20;;;28922:42;;28986:17;;;;;;;:27;;28944:20;;28922:9;28986:27;;28944:20;;28986:27;:::i;:::-;;;;-1:-1:-1;;29031:46:0;;;18267:25:1;;;18323:2;18308:18;;18301:34;;;-1:-1:-1;;;;;29031:46:0;;;;;;;;;;;;;;18240:18:1;29031:46:0;;;;;;;29090:68;29121:8;29131:4;29137:2;29141;29145:6;29153:4;29090:30;:68::i;:::-;28515:651;;28346:820;;;;;:::o;37978:813::-;-1:-1:-1;;;;;38218:13:0;;7075:19;:23;38214:570;;38254:79;;-1:-1:-1;;;38254:79:0;;-1:-1:-1;;;;;38254:43:0;;;;;:79;;38298:8;;38308:4;;38314:3;;38319:7;;38328:4;;38254:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38254:79:0;;;;;;;;-1:-1:-1;;38254:79:0;;;;;;;;;;;;:::i;:::-;;;38250:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;38646:6;38639:14;;-1:-1:-1;;;38639:14:0;;;;;;;;:::i;38250:523::-;;;38695:62;;-1:-1:-1;;;38695:62:0;;12017:2:1;38695:62:0;;;11999:21:1;12056:2;12036:18;;;12029:30;12095:34;12075:18;;;12068:62;-1:-1:-1;;;12146:18:1;;;12139:50;12206:19;;38695:62:0;11815:416:1;38250:523:0;-1:-1:-1;;;;;;38415:60:0;;-1:-1:-1;;;38415:60:0;38411:159;;38500:50;;-1:-1:-1;;;38500:50:0;;;;;;;:::i;38799:198::-;38919:16;;;38933:1;38919:16;;;;;;;;;38865;;38894:22;;38919:16;;;;;;;;;;;;-1:-1:-1;38919:16:0;38894:41;;38957:7;38946:5;38952:1;38946:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;38984:5;38799:198;-1:-1:-1;;38799:198:0:o;37226:744::-;-1:-1:-1;;;;;37441:13:0;;7075:19;:23;37437:526;;37477:72;;-1:-1:-1;;;37477:72:0;;-1:-1:-1;;;;;37477:38:0;;;;;:72;;37516:8;;37526:4;;37532:2;;37536:6;;37544:4;;37477:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37477:72:0;;;;;;;;-1:-1:-1;;37477:72:0;;;;;;;;;;;;:::i;:::-;;;37473:479;;;;:::i;:::-;-1:-1:-1;;;;;;37599:55:0;;-1:-1:-1;;;37599:55:0;37595:154;;37679:50;;-1:-1:-1;;;37679:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:741::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;402:43;442:2;402:43;:::i;:::-;474:2;468:9;486:31;514:2;506:6;486:31;:::i;:::-;552:18;;;586:15;;;;-1:-1:-1;621:15:1;;;671:1;667:10;;;655:23;;651:32;;648:41;-1:-1:-1;645:61:1;;;702:1;699;692:12;645:61;724:1;734:169;748:2;745:1;742:9;734:169;;;805:23;824:3;805:23;:::i;:::-;793:36;;849:12;;;;881;;;;766:1;759:9;734:169;;;-1:-1:-1;921:6:1;;192:741;-1:-1:-1;;;;;;;192:741:1:o;938:735::-;992:5;1045:3;1038:4;1030:6;1026:17;1022:27;1012:55;;1063:1;1060;1053:12;1012:55;1099:6;1086:20;1125:4;1148:43;1188:2;1148:43;:::i;:::-;1220:2;1214:9;1232:31;1260:2;1252:6;1232:31;:::i;:::-;1298:18;;;1332:15;;;;-1:-1:-1;1367:15:1;;;1417:1;1413:10;;;1401:23;;1397:32;;1394:41;-1:-1:-1;1391:61:1;;;1448:1;1445;1438:12;1391:61;1470:1;1480:163;1494:2;1491:1;1488:9;1480:163;;;1551:17;;1539:30;;1589:12;;;;1621;;;;1512:1;1505:9;1480:163;;1678:160;1743:20;;1799:13;;1792:21;1782:32;;1772:60;;1828:1;1825;1818:12;1843:555;1885:5;1938:3;1931:4;1923:6;1919:17;1915:27;1905:55;;1956:1;1953;1946:12;1905:55;1992:6;1979:20;2018:18;2014:2;2011:26;2008:52;;;2040:18;;:::i;:::-;2089:2;2083:9;2101:67;2156:2;2137:13;;-1:-1:-1;;2133:27:1;2162:4;2129:38;2083:9;2101:67;:::i;:::-;2192:2;2184:6;2177:18;2238:3;2231:4;2226:2;2218:6;2214:15;2210:26;2207:35;2204:55;;;2255:1;2252;2245:12;2204:55;2319:2;2312:4;2304:6;2300:17;2293:4;2285:6;2281:17;2268:54;2366:1;2342:15;;;2359:4;2338:26;2331:37;;;;2346:6;1843:555;-1:-1:-1;;;1843:555:1:o;2403:186::-;2462:6;2515:2;2503:9;2494:7;2490:23;2486:32;2483:52;;;2531:1;2528;2521:12;2483:52;2554:29;2573:9;2554:29;:::i;:::-;2544:39;2403:186;-1:-1:-1;;;2403:186:1:o;2594:260::-;2662:6;2670;2723:2;2711:9;2702:7;2698:23;2694:32;2691:52;;;2739:1;2736;2729:12;2691:52;2762:29;2781:9;2762:29;:::i;:::-;2752:39;;2810:38;2844:2;2833:9;2829:18;2810:38;:::i;:::-;2800:48;;2594:260;;;;;:::o;2859:943::-;3013:6;3021;3029;3037;3045;3098:3;3086:9;3077:7;3073:23;3069:33;3066:53;;;3115:1;3112;3105:12;3066:53;3138:29;3157:9;3138:29;:::i;:::-;3128:39;;3186:38;3220:2;3209:9;3205:18;3186:38;:::i;:::-;3176:48;;3275:2;3264:9;3260:18;3247:32;3298:18;3339:2;3331:6;3328:14;3325:34;;;3355:1;3352;3345:12;3325:34;3378:61;3431:7;3422:6;3411:9;3407:22;3378:61;:::i;:::-;3368:71;;3492:2;3481:9;3477:18;3464:32;3448:48;;3521:2;3511:8;3508:16;3505:36;;;3537:1;3534;3527:12;3505:36;3560:63;3615:7;3604:8;3593:9;3589:24;3560:63;:::i;:::-;3550:73;;3676:3;3665:9;3661:19;3648:33;3632:49;;3706:2;3696:8;3693:16;3690:36;;;3722:1;3719;3712:12;3690:36;;3745:51;3788:7;3777:8;3766:9;3762:24;3745:51;:::i;:::-;3735:61;;;2859:943;;;;;;;;:::o;3807:606::-;3911:6;3919;3927;3935;3943;3996:3;3984:9;3975:7;3971:23;3967:33;3964:53;;;4013:1;4010;4003:12;3964:53;4036:29;4055:9;4036:29;:::i;:::-;4026:39;;4084:38;4118:2;4107:9;4103:18;4084:38;:::i;:::-;4074:48;;4169:2;4158:9;4154:18;4141:32;4131:42;;4220:2;4209:9;4205:18;4192:32;4182:42;;4275:3;4264:9;4260:19;4247:33;4303:18;4295:6;4292:30;4289:50;;;4335:1;4332;4325:12;4289:50;4358:49;4399:7;4390:6;4379:9;4375:22;4358:49;:::i;4418:254::-;4483:6;4491;4544:2;4532:9;4523:7;4519:23;4515:32;4512:52;;;4560:1;4557;4550:12;4512:52;4583:29;4602:9;4583:29;:::i;:::-;4573:39;;4631:35;4662:2;4651:9;4647:18;4631:35;:::i;4677:254::-;4745:6;4753;4806:2;4794:9;4785:7;4781:23;4777:32;4774:52;;;4822:1;4819;4812:12;4774:52;4845:29;4864:9;4845:29;:::i;:::-;4835:39;4921:2;4906:18;;;;4893:32;;-1:-1:-1;;;4677:254:1:o;4936:348::-;5020:6;5073:2;5061:9;5052:7;5048:23;5044:32;5041:52;;;5089:1;5086;5079:12;5041:52;5129:9;5116:23;5162:18;5154:6;5151:30;5148:50;;;5194:1;5191;5184:12;5148:50;5217:61;5270:7;5261:6;5250:9;5246:22;5217:61;:::i;5289:595::-;5407:6;5415;5468:2;5456:9;5447:7;5443:23;5439:32;5436:52;;;5484:1;5481;5474:12;5436:52;5524:9;5511:23;5553:18;5594:2;5586:6;5583:14;5580:34;;;5610:1;5607;5600:12;5580:34;5633:61;5686:7;5677:6;5666:9;5662:22;5633:61;:::i;:::-;5623:71;;5747:2;5736:9;5732:18;5719:32;5703:48;;5776:2;5766:8;5763:16;5760:36;;;5792:1;5789;5782:12;5760:36;;5815:63;5870:7;5859:8;5848:9;5844:24;5815:63;:::i;:::-;5805:73;;;5289:595;;;;;:::o;5889:180::-;5945:6;5998:2;5986:9;5977:7;5973:23;5969:32;5966:52;;;6014:1;6011;6004:12;5966:52;6037:26;6053:9;6037:26;:::i;6074:245::-;6132:6;6185:2;6173:9;6164:7;6160:23;6156:32;6153:52;;;6201:1;6198;6191:12;6153:52;6240:9;6227:23;6259:30;6283:5;6259:30;:::i;6324:249::-;6393:6;6446:2;6434:9;6425:7;6421:23;6417:32;6414:52;;;6462:1;6459;6452:12;6414:52;6494:9;6488:16;6513:30;6537:5;6513:30;:::i;6578:321::-;6647:6;6700:2;6688:9;6679:7;6675:23;6671:32;6668:52;;;6716:1;6713;6706:12;6668:52;6756:9;6743:23;6789:18;6781:6;6778:30;6775:50;;;6821:1;6818;6811:12;6775:50;6844:49;6885:7;6876:6;6865:9;6861:22;6844:49;:::i;6904:180::-;6963:6;7016:2;7004:9;6995:7;6991:23;6987:32;6984:52;;;7032:1;7029;7022:12;6984:52;-1:-1:-1;7055:23:1;;6904:180;-1:-1:-1;6904:180:1:o;7089:389::-;7167:6;7175;7228:2;7216:9;7207:7;7203:23;7199:32;7196:52;;;7244:1;7241;7234:12;7196:52;7280:9;7267:23;7257:33;;7341:2;7330:9;7326:18;7313:32;7368:18;7360:6;7357:30;7354:50;;;7400:1;7397;7390:12;7354:50;7423:49;7464:7;7455:6;7444:9;7440:22;7423:49;:::i;7483:435::-;7536:3;7574:5;7568:12;7601:6;7596:3;7589:19;7627:4;7656:2;7651:3;7647:12;7640:19;;7693:2;7686:5;7682:14;7714:1;7724:169;7738:6;7735:1;7732:13;7724:169;;;7799:13;;7787:26;;7833:12;;;;7868:15;;;;7760:1;7753:9;7724:169;;;-1:-1:-1;7909:3:1;;7483:435;-1:-1:-1;;;;;7483:435:1:o;7923:257::-;7964:3;8002:5;7996:12;8029:6;8024:3;8017:19;8045:63;8101:6;8094:4;8089:3;8085:14;8078:4;8071:5;8067:16;8045:63;:::i;:::-;8162:2;8141:15;-1:-1:-1;;8137:29:1;8128:39;;;;8169:4;8124:50;;7923:257;-1:-1:-1;;7923:257:1:o;8395:659::-;8758:34;8753:3;8746:47;-1:-1:-1;;;8818:2:1;8813:3;8809:12;8802:42;8728:3;8873:6;8867:13;8889:60;8942:6;8937:2;8932:3;8928:12;8923:2;8915:6;8911:15;8889:60;:::i;:::-;-1:-1:-1;;;9008:2:1;8968:16;;;;9000:11;;;8993:28;-1:-1:-1;9045:2:1;9037:11;;8395:659;-1:-1:-1;8395:659:1:o;9267:826::-;-1:-1:-1;;;;;9664:15:1;;;9646:34;;9716:15;;9711:2;9696:18;;9689:43;9626:3;9763:2;9748:18;;9741:31;;;9589:4;;9795:57;;9832:19;;9824:6;9795:57;:::i;:::-;9900:9;9892:6;9888:22;9883:2;9872:9;9868:18;9861:50;9934:44;9971:6;9963;9934:44;:::i;:::-;9920:58;;10027:9;10019:6;10015:22;10009:3;9998:9;9994:19;9987:51;10055:32;10080:6;10072;10055:32;:::i;:::-;10047:40;9267:826;-1:-1:-1;;;;;;;;9267:826:1:o;10098:560::-;-1:-1:-1;;;;;10395:15:1;;;10377:34;;10447:15;;10442:2;10427:18;;10420:43;10494:2;10479:18;;10472:34;;;10537:2;10522:18;;10515:34;;;10357:3;10580;10565:19;;10558:32;;;10320:4;;10607:45;;10632:19;;10624:6;10607:45;:::i;:::-;10599:53;10098:560;-1:-1:-1;;;;;;;10098:560:1:o;10663:261::-;10842:2;10831:9;10824:21;10805:4;10862:56;10914:2;10903:9;10899:18;10891:6;10862:56;:::i;10929:465::-;11186:2;11175:9;11168:21;11149:4;11212:56;11264:2;11253:9;11249:18;11241:6;11212:56;:::i;:::-;11316:9;11308:6;11304:22;11299:2;11288:9;11284:18;11277:50;11344:44;11381:6;11373;11344:44;:::i;:::-;11336:52;10929:465;-1:-1:-1;;;;;10929:465:1:o;11591:219::-;11740:2;11729:9;11722:21;11703:4;11760:44;11800:2;11789:9;11785:18;11777:6;11760:44;:::i;12236:404::-;12438:2;12420:21;;;12477:2;12457:18;;;12450:30;12516:34;12511:2;12496:18;;12489:62;-1:-1:-1;;;12582:2:1;12567:18;;12560:38;12630:3;12615:19;;12236:404::o;14279:401::-;14481:2;14463:21;;;14520:2;14500:18;;;14493:30;14559:34;14554:2;14539:18;;14532:62;-1:-1:-1;;;14625:2:1;14610:18;;14603:35;14670:3;14655:19;;14279:401::o;15508:406::-;15710:2;15692:21;;;15749:2;15729:18;;;15722:30;15788:34;15783:2;15768:18;;15761:62;-1:-1:-1;;;15854:2:1;15839:18;;15832:40;15904:3;15889:19;;15508:406::o;15919:356::-;16121:2;16103:21;;;16140:18;;;16133:30;16199:34;16194:2;16179:18;;16172:62;16266:2;16251:18;;15919:356::o;18346:183::-;18406:4;18439:18;18431:6;18428:30;18425:56;;;18461:18;;:::i;:::-;-1:-1:-1;18506:1:1;18502:14;18518:4;18498:25;;18346:183::o;18534:128::-;18574:3;18605:1;18601:6;18598:1;18595:13;18592:39;;;18611:18;;:::i;:::-;-1:-1:-1;18647:9:1;;18534:128::o;18667:120::-;18707:1;18733;18723:35;;18738:18;;:::i;:::-;-1:-1:-1;18772:9:1;;18667:120::o;18792:168::-;18832:7;18898:1;18894;18890:6;18886:14;18883:1;18880:21;18875:1;18868:9;18861:17;18857:45;18854:71;;;18905:18;;:::i;:::-;-1:-1:-1;18945:9:1;;18792:168::o;18965:125::-;19005:4;19033:1;19030;19027:8;19024:34;;;19038:18;;:::i;:::-;-1:-1:-1;19075:9:1;;18965:125::o;19095:258::-;19167:1;19177:113;19191:6;19188:1;19185:13;19177:113;;;19267:11;;;19261:18;19248:11;;;19241:39;19213:2;19206:10;19177:113;;;19308:6;19305:1;19302:13;19299:48;;;19343:1;19334:6;19329:3;19325:16;19318:27;19299:48;;19095:258;;;:::o;19358:380::-;19437:1;19433:12;;;;19480;;;19501:61;;19555:4;19547:6;19543:17;19533:27;;19501:61;19608:2;19600:6;19597:14;19577:18;19574:38;19571:161;;;19654:10;19649:3;19645:20;19642:1;19635:31;19689:4;19686:1;19679:15;19717:4;19714:1;19707:15;19571:161;;19358:380;;;:::o;19743:249::-;19853:2;19834:13;;-1:-1:-1;;19830:27:1;19818:40;;19888:18;19873:34;;19909:22;;;19870:62;19867:88;;;19935:18;;:::i;:::-;19971:2;19964:22;-1:-1:-1;;19743:249:1:o;19997:135::-;20036:3;-1:-1:-1;;20057:17:1;;20054:43;;;20077:18;;:::i;:::-;-1:-1:-1;20124:1:1;20113:13;;19997:135::o;20137:112::-;20169:1;20195;20185:35;;20200:18;;:::i;:::-;-1:-1:-1;20234:9:1;;20137:112::o;20254:127::-;20315:10;20310:3;20306:20;20303:1;20296:31;20346:4;20343:1;20336:15;20370:4;20367:1;20360:15;20386:127;20447:10;20442:3;20438:20;20435:1;20428:31;20478:4;20475:1;20468:15;20502:4;20499:1;20492:15;20518:127;20579:10;20574:3;20570:20;20567:1;20560:31;20610:4;20607:1;20600:15;20634:4;20631:1;20624:15;20650:127;20711:10;20706:3;20702:20;20699:1;20692:31;20742:4;20739:1;20732:15;20766:4;20763:1;20756:15;20782:179;20817:3;20859:1;20841:16;20838:23;20835:120;;;20905:1;20902;20899;20884:23;-1:-1:-1;20942:1:1;20936:8;20931:3;20927:18;20835:120;20782:179;:::o;20966:671::-;21005:3;21047:4;21029:16;21026:26;21023:39;;;20966:671;:::o;21023:39::-;21089:2;21083:9;-1:-1:-1;;21154:16:1;21150:25;;21147:1;21083:9;21126:50;21205:4;21199:11;21229:16;21264:18;21335:2;21328:4;21320:6;21316:17;21313:25;21308:2;21300:6;21297:14;21294:45;21291:58;;;21342:5;;;;;20966:671;:::o;21291:58::-;21379:6;21373:4;21369:17;21358:28;;21415:3;21409:10;21442:2;21434:6;21431:14;21428:27;;;21448:5;;;;;;20966:671;:::o;21428:27::-;21532:2;21513:16;21507:4;21503:27;21499:36;21492:4;21483:6;21478:3;21474:16;21470:27;21467:69;21464:82;;;21539:5;;;;;;20966:671;:::o;21464:82::-;21555:57;21606:4;21597:6;21589;21585:19;21581:30;21575:4;21555:57;:::i;:::-;-1:-1:-1;21628:3:1;;20966:671;-1:-1:-1;;;;;20966:671:1:o;21642:131::-;-1:-1:-1;;;;;;21716:32:1;;21706:43;;21696:71;;21763:1;21760;21753:12
Swarm Source
ipfs://9d48c8bdf91b589ac2e5ddc028b3da8df34a3940f53649a22d863d10fa773d19