ERC-1155
NFT
Overview
Max Total Supply
3,000 OceidonNFT
Holders
956
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OceidonNFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-19 */ // Sources flattened with hardhat v2.8.0 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC1155/[email protected] // 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/[email protected] // OpenZeppelin Contracts v4.4.1 (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. 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. 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/extensions/[email protected] // 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/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/introspection/[email protected] // 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/[email protected] // 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 @openzeppelin/contracts/access/[email protected] // 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/[email protected] // 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 contracts/OceidonNFT.sol pragma solidity ^0.8.4; contract OceidonNFT is ERC1155, Ownable { bool public locked; mapping (uint256 => string) private _uris; string public name = "OceidonNFT"; string public symbol = "OceidonNFT"; constructor() ERC1155("") { locked = false; _mint(msg.sender, 2, 1000, ""); _mint(msg.sender, 3, 2000, ""); setTokenUri(2, "https://ipfs.io/ipfs/bafkreibm3sbzve7g5r5su33qxkc5ztkqgicbiqg6btjnmbhyv7vpzccdee"); setTokenUri(3, "https://ipfs.io/ipfs/bafkreiavqdjvz5so2kiynjpwt5yaukakncejbsyudc2jkfjtym3erpf2ba"); } function uri(uint256 tokenId) override public view returns (string memory) { return(_uris[tokenId]); } function setTokenUri(uint256 tokenId, string memory uri) public onlyOwner { require(locked == false, "Cannot change URIs in locked contract"); _uris[tokenId] = uri; } function lock() public onlyOwner { require(locked == false, "Cannot lock locked contract"); locked = true; } function batchTransfer( uint256 tokenId, address[] memory addrs, uint256[] memory amounts, bytes memory data ) public onlyOwner { for (uint256 i = 0; i < addrs.length; ++i) { address addr = addrs[i]; uint256 amount = amounts[i]; _safeTransferFrom(msg.sender, addr, tokenId, amount, data); } } }
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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"batchTransfer","outputs":[],"stateMutability":"nonpayable","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":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","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"}]
Contract Creation Code
60806040526040518060400160405280600a81526020017f4f636569646f6e4e465400000000000000000000000000000000000000000000815250600590805190602001906200005192919062000892565b506040518060400160405280600a81526020017f4f636569646f6e4e465400000000000000000000000000000000000000000000815250600690805190602001906200009f92919062000892565b50348015620000ad57600080fd5b5060405180602001604052806000815250620000cf81620001b560201b60201c565b50620000f0620000e4620001d160201b60201c565b620001d960201b60201c565b6000600360146101000a81548160ff021916908315150217905550620001313360026103e8604051806020016040528060008152506200029f60201b60201c565b620001573360036107d0604051806020016040528060008152506200029f60201b60201c565b620001836002604051806080016040528060508152602001620043ed605091396200046460201b60201c565b620001af60036040518060800160405280605081526020016200443d605091396200046460201b60201c565b620010e7565b8060029080519060200190620001cd92919062000892565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003099062000bda565b60405180910390fd5b600062000324620001d160201b60201c565b90506200035d816000876200033f886200057a60201b60201c565b62000350886200057a60201b60201c565b876200064360201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003be919062000c8d565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516200043e92919062000c1e565b60405180910390a46200045d816000878787876200064b60201b60201c565b5050505050565b62000474620001d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200049a6200085560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ea9062000bb8565b60405180910390fd5b60001515600360149054906101000a900460ff161515146200054c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005439062000bfc565b60405180910390fd5b806004600084815260200190815260200160002090805190602001906200057592919062000892565b505050565b60606000600167ffffffffffffffff811115620005c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015620005ef5781602001602082028036833780820191505090505b50905082816000815181106200062e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b620006778473ffffffffffffffffffffffffffffffffffffffff166200087f60201b62000f1f1760201c565b156200084d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401620006c095949392919062000aec565b602060405180830381600087803b158015620006db57600080fd5b505af19250505080156200070f57506040513d601f19601f820116820180604052508101906200070c919062000959565b60015b620007c1576200071e62000e83565b806308c379a01415620007825750620007366200102b565b8062000743575062000784565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000779919062000b50565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b89062000b74565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146200084b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008429062000b96565b60405180910390fd5b505b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080823b905060008111915050919050565b828054620008a09062000d8a565b90600052602060002090601f016020900481019282620008c4576000855562000910565b82601f10620008df57805160ff191683800117855562000910565b8280016001018555821562000910579182015b828111156200090f578251825591602001919060010190620008f2565b5b5090506200091f919062000923565b5090565b5b808211156200093e57600081600090555060010162000924565b5090565b6000815190506200095381620010cd565b92915050565b6000602082840312156200096c57600080fd5b60006200097c8482850162000942565b91505092915050565b620009908162000cea565b82525050565b6000620009a38262000c55565b620009af818562000c6b565b9350620009c181856020860162000d54565b620009cc8162000ea8565b840191505092915050565b6000620009e48262000c60565b620009f0818562000c7c565b935062000a0281856020860162000d54565b62000a0d8162000ea8565b840191505092915050565b600062000a2760348362000c7c565b915062000a348262000ec6565b604082019050919050565b600062000a4e60288362000c7c565b915062000a5b8262000f15565b604082019050919050565b600062000a7560208362000c7c565b915062000a828262000f64565b602082019050919050565b600062000a9c60218362000c7c565b915062000aa98262000f8d565b604082019050919050565b600062000ac360258362000c7c565b915062000ad08262000fdc565b604082019050919050565b62000ae68162000d4a565b82525050565b600060a08201905062000b03600083018862000985565b62000b12602083018762000985565b62000b21604083018662000adb565b62000b30606083018562000adb565b818103608083015262000b44818462000996565b90509695505050505050565b6000602082019050818103600083015262000b6c8184620009d7565b905092915050565b6000602082019050818103600083015262000b8f8162000a18565b9050919050565b6000602082019050818103600083015262000bb18162000a3f565b9050919050565b6000602082019050818103600083015262000bd38162000a66565b9050919050565b6000602082019050818103600083015262000bf58162000a8d565b9050919050565b6000602082019050818103600083015262000c178162000ab4565b9050919050565b600060408201905062000c35600083018562000adb565b62000c44602083018462000adb565b9392505050565b6000604051905090565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000c9a8262000d4a565b915062000ca78362000d4a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000cdf5762000cde62000df6565b5b828201905092915050565b600062000cf78262000d2a565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000d7457808201518184015260208101905062000d57565b8381111562000d84576000848401525b50505050565b6000600282049050600182168062000da357607f821691505b6020821081141562000dba5762000db962000e25565b5b50919050565b62000dcb8262000ea8565b810181811067ffffffffffffffff8211171562000ded5762000dec62000e54565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111562000ea55760046000803e62000ea260005162000eb9565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206368616e6765205552497320696e206c6f636b656420636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156200103d57620010ca565b6200104762000c4b565b60043d036004823e80513d602482011167ffffffffffffffff8211171562001071575050620010ca565b808201805167ffffffffffffffff811115620010915750505050620010ca565b80602083010160043d038501811115620010b0575050505050620010ca565b620010c18260200185018662000dc0565b82955050505050505b90565b620010d88162000cfe565b8114620010e457600080fd5b50565b6132f680620010f76000396000f3fe608060405234801561001057600080fd5b506004361061010a5760003560e01c8063715018a6116100a2578063cf30901211610071578063cf309012146102a3578063e985e9c5146102c1578063f242432a146102f1578063f2fde38b1461030d578063f83d08ba146103295761010a565b8063715018a6146102415780638da5cb5b1461024b57806395d89b4114610269578063a22cb465146102875761010a565b80632eb2c2d6116100de5780632eb2c2d6146101bd5780634e1273f4146101d957806357f7789e146102095780635cfcad24146102255761010a565b8062fdd58e1461010f57806301ffc9a71461013f57806306fdde031461016f5780630e89341c1461018d575b600080fd5b6101296004803603810190610124919061214c565b610333565b60405161013691906129af565b60405180910390f35b610159600480360381019061015491906121f4565b6103fc565b60405161016691906127b2565b60405180910390f35b6101776104de565b60405161018491906127cd565b60405180910390f35b6101a760048036038101906101a29190612246565b61056c565b6040516101b491906127cd565b60405180910390f35b6101d760048036038101906101d29190611fc2565b610611565b005b6101f360048036038101906101ee9190612188565b6106b2565b6040516102009190612759565b60405180910390f35b610223600480360381019061021e919061231a565b610863565b005b61023f600480360381019061023a919061226f565b610961565b005b610249610a9a565b005b610253610b22565b604051610260919061267c565b60405180910390f35b610271610b4c565b60405161027e91906127cd565b60405180910390f35b6102a1600480360381019061029c9190612110565b610bda565b005b6102ab610bf0565b6040516102b891906127b2565b60405180910390f35b6102db60048036038101906102d69190611f86565b610c03565b6040516102e891906127b2565b60405180910390f35b61030b60048036038101906103069190612081565b610c97565b005b61032760048036038101906103229190611f5d565b610d38565b005b610331610e30565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156103a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039b9061282f565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d757506104d682610f32565b5b9050919050565b600580546104eb90612c4f565b80601f016020809104026020016040519081016040528092919081815260200182805461051790612c4f565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b505050505081565b606060046000838152602001908152602001600020805461058c90612c4f565b80601f01602080910402602001604051908101604052809291908181526020018280546105b890612c4f565b80156106055780601f106105da57610100808354040283529160200191610605565b820191906000526020600020905b8154815290600101906020018083116105e857829003601f168201915b50505050509050919050565b610619610f9c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061065f575061065e85610659610f9c565b610c03565b5b61069e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610695906128cf565b60405180910390fd5b6106ab8585858585610fa4565b5050505050565b606081518351146106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef9061294f565b60405180910390fd5b6000835167ffffffffffffffff81111561073b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156107695781602001602082028036833780820191505090505b50905060005b8451811015610858576108028582815181106107b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518583815181106107f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610333565b82828151811061083b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061085190612cb2565b905061076f565b508091505092915050565b61086b610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610889610b22565b73ffffffffffffffffffffffffffffffffffffffff16146108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d69061290f565b60405180910390fd5b60001515600360149054906101000a900460ff16151514610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c9061298f565b60405180910390fd5b8060046000848152602001908152602001600020908051906020019061095c929190611c55565b505050565b610969610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610987610b22565b73ffffffffffffffffffffffffffffffffffffffff16146109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d49061290f565b60405180910390fd5b60005b8351811015610a93576000848281518110610a24577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000848381518110610a69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050610a803383898488611304565b505080610a8c90612cb2565b90506109e0565b5050505050565b610aa2610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610ac0610b22565b73ffffffffffffffffffffffffffffffffffffffff1614610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d9061290f565b60405180910390fd5b610b206000611586565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60068054610b5990612c4f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8590612c4f565b8015610bd25780601f10610ba757610100808354040283529160200191610bd2565b820191906000526020600020905b815481529060010190602001808311610bb557829003601f168201915b505050505081565b610bec610be5610f9c565b838361164c565b5050565b600360149054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c9f610f9c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ce55750610ce485610cdf610f9c565b610c03565b5b610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b9061288f565b60405180910390fd5b610d318585858585611304565b5050505050565b610d40610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610d5e610b22565b73ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061290f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b9061284f565b60405180910390fd5b610e2d81611586565b50565b610e38610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610e56610b22565b73ffffffffffffffffffffffffffffffffffffffff1614610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea39061290f565b60405180910390fd5b60001515600360149054906101000a900460ff16151514610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef99061286f565b60405180910390fd5b6001600360146101000a81548160ff021916908315150217905550565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf9061296f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f906128af565b60405180910390fd5b6000611062610f9c565b90506110728187878787876117b9565b60005b845181101561126f5760008582815181106110b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106110fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561119f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611196906128ef565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112549190612b43565b925050819055505050508061126890612cb2565b9050611075565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112e692919061277b565b60405180910390a46112fc8187878787876117c1565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b906128af565b60405180910390fd5b600061137e610f9c565b905061139e81878761138f886119a8565b611398886119a8565b876117b9565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c906128ef565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ea9190612b43565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516115679291906129ca565b60405180910390a461157d828888888888611a6e565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b29061292f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ac91906127b2565b60405180910390a3505050565b505050505050565b6117e08473ffffffffffffffffffffffffffffffffffffffff16610f1f565b156119a0578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611826959493929190612697565b602060405180830381600087803b15801561184057600080fd5b505af192505050801561187157506040513d601f19601f8201168201806040525081019061186e919061221d565b60015b6119175761187d612d88565b806308c379a014156118da57506118926131ce565b8061189d57506118dc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d191906127cd565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e906127ef565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461199e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119959061280f565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156119ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611a1b5781602001602082028036833780820191505090505b5090508281600081518110611a59577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b611a8d8473ffffffffffffffffffffffffffffffffffffffff16610f1f565b15611c4d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611ad39594939291906126ff565b602060405180830381600087803b158015611aed57600080fd5b505af1925050508015611b1e57506040513d601f19601f82011682018060405250810190611b1b919061221d565b60015b611bc457611b2a612d88565b806308c379a01415611b875750611b3f6131ce565b80611b4a5750611b89565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e91906127cd565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb906127ef565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c429061280f565b60405180910390fd5b505b505050505050565b828054611c6190612c4f565b90600052602060002090601f016020900481019282611c835760008555611cca565b82601f10611c9c57805160ff1916838001178555611cca565b82800160010185558215611cca579182015b82811115611cc9578251825591602001919060010190611cae565b5b509050611cd79190611cdb565b5090565b5b80821115611cf4576000816000905550600101611cdc565b5090565b6000611d0b611d0684612a18565b6129f3565b90508083825260208201905082856020860282011115611d2a57600080fd5b60005b85811015611d5a5781611d408882611e4c565b845260208401935060208301925050600181019050611d2d565b5050509392505050565b6000611d77611d7284612a44565b6129f3565b90508083825260208201905082856020860282011115611d9657600080fd5b60005b85811015611dc65781611dac8882611f48565b845260208401935060208301925050600181019050611d99565b5050509392505050565b6000611de3611dde84612a70565b6129f3565b905082815260208101848484011115611dfb57600080fd5b611e06848285612c0d565b509392505050565b6000611e21611e1c84612aa1565b6129f3565b905082815260208101848484011115611e3957600080fd5b611e44848285612c0d565b509392505050565b600081359050611e5b81613264565b92915050565b600082601f830112611e7257600080fd5b8135611e82848260208601611cf8565b91505092915050565b600082601f830112611e9c57600080fd5b8135611eac848260208601611d64565b91505092915050565b600081359050611ec48161327b565b92915050565b600081359050611ed981613292565b92915050565b600081519050611eee81613292565b92915050565b600082601f830112611f0557600080fd5b8135611f15848260208601611dd0565b91505092915050565b600082601f830112611f2f57600080fd5b8135611f3f848260208601611e0e565b91505092915050565b600081359050611f57816132a9565b92915050565b600060208284031215611f6f57600080fd5b6000611f7d84828501611e4c565b91505092915050565b60008060408385031215611f9957600080fd5b6000611fa785828601611e4c565b9250506020611fb885828601611e4c565b9150509250929050565b600080600080600060a08688031215611fda57600080fd5b6000611fe888828901611e4c565b9550506020611ff988828901611e4c565b945050604086013567ffffffffffffffff81111561201657600080fd5b61202288828901611e8b565b935050606086013567ffffffffffffffff81111561203f57600080fd5b61204b88828901611e8b565b925050608086013567ffffffffffffffff81111561206857600080fd5b61207488828901611ef4565b9150509295509295909350565b600080600080600060a0868803121561209957600080fd5b60006120a788828901611e4c565b95505060206120b888828901611e4c565b94505060406120c988828901611f48565b93505060606120da88828901611f48565b925050608086013567ffffffffffffffff8111156120f757600080fd5b61210388828901611ef4565b9150509295509295909350565b6000806040838503121561212357600080fd5b600061213185828601611e4c565b925050602061214285828601611eb5565b9150509250929050565b6000806040838503121561215f57600080fd5b600061216d85828601611e4c565b925050602061217e85828601611f48565b9150509250929050565b6000806040838503121561219b57600080fd5b600083013567ffffffffffffffff8111156121b557600080fd5b6121c185828601611e61565b925050602083013567ffffffffffffffff8111156121de57600080fd5b6121ea85828601611e8b565b9150509250929050565b60006020828403121561220657600080fd5b600061221484828501611eca565b91505092915050565b60006020828403121561222f57600080fd5b600061223d84828501611edf565b91505092915050565b60006020828403121561225857600080fd5b600061226684828501611f48565b91505092915050565b6000806000806080858703121561228557600080fd5b600061229387828801611f48565b945050602085013567ffffffffffffffff8111156122b057600080fd5b6122bc87828801611e61565b935050604085013567ffffffffffffffff8111156122d957600080fd5b6122e587828801611e8b565b925050606085013567ffffffffffffffff81111561230257600080fd5b61230e87828801611ef4565b91505092959194509250565b6000806040838503121561232d57600080fd5b600061233b85828601611f48565b925050602083013567ffffffffffffffff81111561235857600080fd5b61236485828601611f1e565b9150509250929050565b600061237a838361265e565b60208301905092915050565b61238f81612b99565b82525050565b60006123a082612ae2565b6123aa8185612b10565b93506123b583612ad2565b8060005b838110156123e65781516123cd888261236e565b97506123d883612b03565b9250506001810190506123b9565b5085935050505092915050565b6123fc81612bab565b82525050565b600061240d82612aed565b6124178185612b21565b9350612427818560208601612c1c565b61243081612daa565b840191505092915050565b600061244682612af8565b6124508185612b32565b9350612460818560208601612c1c565b61246981612daa565b840191505092915050565b6000612481603483612b32565b915061248c82612dc8565b604082019050919050565b60006124a4602883612b32565b91506124af82612e17565b604082019050919050565b60006124c7602b83612b32565b91506124d282612e66565b604082019050919050565b60006124ea602683612b32565b91506124f582612eb5565b604082019050919050565b600061250d601b83612b32565b915061251882612f04565b602082019050919050565b6000612530602983612b32565b915061253b82612f2d565b604082019050919050565b6000612553602583612b32565b915061255e82612f7c565b604082019050919050565b6000612576603283612b32565b915061258182612fcb565b604082019050919050565b6000612599602a83612b32565b91506125a48261301a565b604082019050919050565b60006125bc602083612b32565b91506125c782613069565b602082019050919050565b60006125df602983612b32565b91506125ea82613092565b604082019050919050565b6000612602602983612b32565b915061260d826130e1565b604082019050919050565b6000612625602883612b32565b915061263082613130565b604082019050919050565b6000612648602583612b32565b91506126538261317f565b604082019050919050565b61266781612c03565b82525050565b61267681612c03565b82525050565b60006020820190506126916000830184612386565b92915050565b600060a0820190506126ac6000830188612386565b6126b96020830187612386565b81810360408301526126cb8186612395565b905081810360608301526126df8185612395565b905081810360808301526126f38184612402565b90509695505050505050565b600060a0820190506127146000830188612386565b6127216020830187612386565b61272e604083018661266d565b61273b606083018561266d565b818103608083015261274d8184612402565b90509695505050505050565b600060208201905081810360008301526127738184612395565b905092915050565b600060408201905081810360008301526127958185612395565b905081810360208301526127a98184612395565b90509392505050565b60006020820190506127c760008301846123f3565b92915050565b600060208201905081810360008301526127e7818461243b565b905092915050565b6000602082019050818103600083015261280881612474565b9050919050565b6000602082019050818103600083015261282881612497565b9050919050565b60006020820190508181036000830152612848816124ba565b9050919050565b60006020820190508181036000830152612868816124dd565b9050919050565b6000602082019050818103600083015261288881612500565b9050919050565b600060208201905081810360008301526128a881612523565b9050919050565b600060208201905081810360008301526128c881612546565b9050919050565b600060208201905081810360008301526128e881612569565b9050919050565b600060208201905081810360008301526129088161258c565b9050919050565b60006020820190508181036000830152612928816125af565b9050919050565b60006020820190508181036000830152612948816125d2565b9050919050565b60006020820190508181036000830152612968816125f5565b9050919050565b6000602082019050818103600083015261298881612618565b9050919050565b600060208201905081810360008301526129a88161263b565b9050919050565b60006020820190506129c4600083018461266d565b92915050565b60006040820190506129df600083018561266d565b6129ec602083018461266d565b9392505050565b60006129fd612a0e565b9050612a098282612c81565b919050565b6000604051905090565b600067ffffffffffffffff821115612a3357612a32612d59565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612a5f57612a5e612d59565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612a8b57612a8a612d59565b5b612a9482612daa565b9050602081019050919050565b600067ffffffffffffffff821115612abc57612abb612d59565b5b612ac582612daa565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612b4e82612c03565b9150612b5983612c03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b8e57612b8d612cfb565b5b828201905092915050565b6000612ba482612be3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c3a578082015181840152602081019050612c1f565b83811115612c49576000848401525b50505050565b60006002820490506001821680612c6757607f821691505b60208210811415612c7b57612c7a612d2a565b5b50919050565b612c8a82612daa565b810181811067ffffffffffffffff82111715612ca957612ca8612d59565b5b80604052505050565b6000612cbd82612c03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cf057612cef612cfb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612da75760046000803e612da4600051612dbb565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206c6f636b206c6f636b656420636f6e74726163740000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206368616e6765205552497320696e206c6f636b656420636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156131de57613261565b6131e6612a0e565b60043d036004823e80513d602482011167ffffffffffffffff8211171561320e575050613261565b808201805167ffffffffffffffff81111561322c5750505050613261565b80602083010160043d038501811115613249575050505050613261565b61325882602001850186612c81565b82955050505050505b90565b61326d81612b99565b811461327857600080fd5b50565b61328481612bab565b811461328f57600080fd5b50565b61329b81612bb7565b81146132a657600080fd5b50565b6132b281612c03565b81146132bd57600080fd5b5056fea26469706673582212201e250f5fa04079aa0f96c9d0b35f2f169143215ccfd4ebfa59b414bacb1afbaf64736f6c6343000804003368747470733a2f2f697066732e696f2f697066732f6261666b726569626d3373627a766537673572357375333371786b63357a746b71676963626971673662746a6e6d626879763776707a636364656568747470733a2f2f697066732e696f2f697066732f6261666b726569617671646a767a35736f326b69796e6a707774357961756b616b6e63656a627379756463326a6b666a74796d3365727066326261
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010a5760003560e01c8063715018a6116100a2578063cf30901211610071578063cf309012146102a3578063e985e9c5146102c1578063f242432a146102f1578063f2fde38b1461030d578063f83d08ba146103295761010a565b8063715018a6146102415780638da5cb5b1461024b57806395d89b4114610269578063a22cb465146102875761010a565b80632eb2c2d6116100de5780632eb2c2d6146101bd5780634e1273f4146101d957806357f7789e146102095780635cfcad24146102255761010a565b8062fdd58e1461010f57806301ffc9a71461013f57806306fdde031461016f5780630e89341c1461018d575b600080fd5b6101296004803603810190610124919061214c565b610333565b60405161013691906129af565b60405180910390f35b610159600480360381019061015491906121f4565b6103fc565b60405161016691906127b2565b60405180910390f35b6101776104de565b60405161018491906127cd565b60405180910390f35b6101a760048036038101906101a29190612246565b61056c565b6040516101b491906127cd565b60405180910390f35b6101d760048036038101906101d29190611fc2565b610611565b005b6101f360048036038101906101ee9190612188565b6106b2565b6040516102009190612759565b60405180910390f35b610223600480360381019061021e919061231a565b610863565b005b61023f600480360381019061023a919061226f565b610961565b005b610249610a9a565b005b610253610b22565b604051610260919061267c565b60405180910390f35b610271610b4c565b60405161027e91906127cd565b60405180910390f35b6102a1600480360381019061029c9190612110565b610bda565b005b6102ab610bf0565b6040516102b891906127b2565b60405180910390f35b6102db60048036038101906102d69190611f86565b610c03565b6040516102e891906127b2565b60405180910390f35b61030b60048036038101906103069190612081565b610c97565b005b61032760048036038101906103229190611f5d565b610d38565b005b610331610e30565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156103a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039b9061282f565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d757506104d682610f32565b5b9050919050565b600580546104eb90612c4f565b80601f016020809104026020016040519081016040528092919081815260200182805461051790612c4f565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b505050505081565b606060046000838152602001908152602001600020805461058c90612c4f565b80601f01602080910402602001604051908101604052809291908181526020018280546105b890612c4f565b80156106055780601f106105da57610100808354040283529160200191610605565b820191906000526020600020905b8154815290600101906020018083116105e857829003601f168201915b50505050509050919050565b610619610f9c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061065f575061065e85610659610f9c565b610c03565b5b61069e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610695906128cf565b60405180910390fd5b6106ab8585858585610fa4565b5050505050565b606081518351146106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef9061294f565b60405180910390fd5b6000835167ffffffffffffffff81111561073b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156107695781602001602082028036833780820191505090505b50905060005b8451811015610858576108028582815181106107b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518583815181106107f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610333565b82828151811061083b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061085190612cb2565b905061076f565b508091505092915050565b61086b610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610889610b22565b73ffffffffffffffffffffffffffffffffffffffff16146108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d69061290f565b60405180910390fd5b60001515600360149054906101000a900460ff16151514610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c9061298f565b60405180910390fd5b8060046000848152602001908152602001600020908051906020019061095c929190611c55565b505050565b610969610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610987610b22565b73ffffffffffffffffffffffffffffffffffffffff16146109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d49061290f565b60405180910390fd5b60005b8351811015610a93576000848281518110610a24577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000848381518110610a69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050610a803383898488611304565b505080610a8c90612cb2565b90506109e0565b5050505050565b610aa2610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610ac0610b22565b73ffffffffffffffffffffffffffffffffffffffff1614610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d9061290f565b60405180910390fd5b610b206000611586565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60068054610b5990612c4f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8590612c4f565b8015610bd25780601f10610ba757610100808354040283529160200191610bd2565b820191906000526020600020905b815481529060010190602001808311610bb557829003601f168201915b505050505081565b610bec610be5610f9c565b838361164c565b5050565b600360149054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c9f610f9c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ce55750610ce485610cdf610f9c565b610c03565b5b610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b9061288f565b60405180910390fd5b610d318585858585611304565b5050505050565b610d40610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610d5e610b22565b73ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061290f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b9061284f565b60405180910390fd5b610e2d81611586565b50565b610e38610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610e56610b22565b73ffffffffffffffffffffffffffffffffffffffff1614610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea39061290f565b60405180910390fd5b60001515600360149054906101000a900460ff16151514610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef99061286f565b60405180910390fd5b6001600360146101000a81548160ff021916908315150217905550565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf9061296f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f906128af565b60405180910390fd5b6000611062610f9c565b90506110728187878787876117b9565b60005b845181101561126f5760008582815181106110b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106110fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561119f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611196906128ef565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112549190612b43565b925050819055505050508061126890612cb2565b9050611075565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112e692919061277b565b60405180910390a46112fc8187878787876117c1565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b906128af565b60405180910390fd5b600061137e610f9c565b905061139e81878761138f886119a8565b611398886119a8565b876117b9565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c906128ef565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ea9190612b43565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516115679291906129ca565b60405180910390a461157d828888888888611a6e565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b29061292f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ac91906127b2565b60405180910390a3505050565b505050505050565b6117e08473ffffffffffffffffffffffffffffffffffffffff16610f1f565b156119a0578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611826959493929190612697565b602060405180830381600087803b15801561184057600080fd5b505af192505050801561187157506040513d601f19601f8201168201806040525081019061186e919061221d565b60015b6119175761187d612d88565b806308c379a014156118da57506118926131ce565b8061189d57506118dc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d191906127cd565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e906127ef565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461199e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119959061280f565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156119ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611a1b5781602001602082028036833780820191505090505b5090508281600081518110611a59577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b611a8d8473ffffffffffffffffffffffffffffffffffffffff16610f1f565b15611c4d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611ad39594939291906126ff565b602060405180830381600087803b158015611aed57600080fd5b505af1925050508015611b1e57506040513d601f19601f82011682018060405250810190611b1b919061221d565b60015b611bc457611b2a612d88565b806308c379a01415611b875750611b3f6131ce565b80611b4a5750611b89565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e91906127cd565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb906127ef565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c429061280f565b60405180910390fd5b505b505050505050565b828054611c6190612c4f565b90600052602060002090601f016020900481019282611c835760008555611cca565b82601f10611c9c57805160ff1916838001178555611cca565b82800160010185558215611cca579182015b82811115611cc9578251825591602001919060010190611cae565b5b509050611cd79190611cdb565b5090565b5b80821115611cf4576000816000905550600101611cdc565b5090565b6000611d0b611d0684612a18565b6129f3565b90508083825260208201905082856020860282011115611d2a57600080fd5b60005b85811015611d5a5781611d408882611e4c565b845260208401935060208301925050600181019050611d2d565b5050509392505050565b6000611d77611d7284612a44565b6129f3565b90508083825260208201905082856020860282011115611d9657600080fd5b60005b85811015611dc65781611dac8882611f48565b845260208401935060208301925050600181019050611d99565b5050509392505050565b6000611de3611dde84612a70565b6129f3565b905082815260208101848484011115611dfb57600080fd5b611e06848285612c0d565b509392505050565b6000611e21611e1c84612aa1565b6129f3565b905082815260208101848484011115611e3957600080fd5b611e44848285612c0d565b509392505050565b600081359050611e5b81613264565b92915050565b600082601f830112611e7257600080fd5b8135611e82848260208601611cf8565b91505092915050565b600082601f830112611e9c57600080fd5b8135611eac848260208601611d64565b91505092915050565b600081359050611ec48161327b565b92915050565b600081359050611ed981613292565b92915050565b600081519050611eee81613292565b92915050565b600082601f830112611f0557600080fd5b8135611f15848260208601611dd0565b91505092915050565b600082601f830112611f2f57600080fd5b8135611f3f848260208601611e0e565b91505092915050565b600081359050611f57816132a9565b92915050565b600060208284031215611f6f57600080fd5b6000611f7d84828501611e4c565b91505092915050565b60008060408385031215611f9957600080fd5b6000611fa785828601611e4c565b9250506020611fb885828601611e4c565b9150509250929050565b600080600080600060a08688031215611fda57600080fd5b6000611fe888828901611e4c565b9550506020611ff988828901611e4c565b945050604086013567ffffffffffffffff81111561201657600080fd5b61202288828901611e8b565b935050606086013567ffffffffffffffff81111561203f57600080fd5b61204b88828901611e8b565b925050608086013567ffffffffffffffff81111561206857600080fd5b61207488828901611ef4565b9150509295509295909350565b600080600080600060a0868803121561209957600080fd5b60006120a788828901611e4c565b95505060206120b888828901611e4c565b94505060406120c988828901611f48565b93505060606120da88828901611f48565b925050608086013567ffffffffffffffff8111156120f757600080fd5b61210388828901611ef4565b9150509295509295909350565b6000806040838503121561212357600080fd5b600061213185828601611e4c565b925050602061214285828601611eb5565b9150509250929050565b6000806040838503121561215f57600080fd5b600061216d85828601611e4c565b925050602061217e85828601611f48565b9150509250929050565b6000806040838503121561219b57600080fd5b600083013567ffffffffffffffff8111156121b557600080fd5b6121c185828601611e61565b925050602083013567ffffffffffffffff8111156121de57600080fd5b6121ea85828601611e8b565b9150509250929050565b60006020828403121561220657600080fd5b600061221484828501611eca565b91505092915050565b60006020828403121561222f57600080fd5b600061223d84828501611edf565b91505092915050565b60006020828403121561225857600080fd5b600061226684828501611f48565b91505092915050565b6000806000806080858703121561228557600080fd5b600061229387828801611f48565b945050602085013567ffffffffffffffff8111156122b057600080fd5b6122bc87828801611e61565b935050604085013567ffffffffffffffff8111156122d957600080fd5b6122e587828801611e8b565b925050606085013567ffffffffffffffff81111561230257600080fd5b61230e87828801611ef4565b91505092959194509250565b6000806040838503121561232d57600080fd5b600061233b85828601611f48565b925050602083013567ffffffffffffffff81111561235857600080fd5b61236485828601611f1e565b9150509250929050565b600061237a838361265e565b60208301905092915050565b61238f81612b99565b82525050565b60006123a082612ae2565b6123aa8185612b10565b93506123b583612ad2565b8060005b838110156123e65781516123cd888261236e565b97506123d883612b03565b9250506001810190506123b9565b5085935050505092915050565b6123fc81612bab565b82525050565b600061240d82612aed565b6124178185612b21565b9350612427818560208601612c1c565b61243081612daa565b840191505092915050565b600061244682612af8565b6124508185612b32565b9350612460818560208601612c1c565b61246981612daa565b840191505092915050565b6000612481603483612b32565b915061248c82612dc8565b604082019050919050565b60006124a4602883612b32565b91506124af82612e17565b604082019050919050565b60006124c7602b83612b32565b91506124d282612e66565b604082019050919050565b60006124ea602683612b32565b91506124f582612eb5565b604082019050919050565b600061250d601b83612b32565b915061251882612f04565b602082019050919050565b6000612530602983612b32565b915061253b82612f2d565b604082019050919050565b6000612553602583612b32565b915061255e82612f7c565b604082019050919050565b6000612576603283612b32565b915061258182612fcb565b604082019050919050565b6000612599602a83612b32565b91506125a48261301a565b604082019050919050565b60006125bc602083612b32565b91506125c782613069565b602082019050919050565b60006125df602983612b32565b91506125ea82613092565b604082019050919050565b6000612602602983612b32565b915061260d826130e1565b604082019050919050565b6000612625602883612b32565b915061263082613130565b604082019050919050565b6000612648602583612b32565b91506126538261317f565b604082019050919050565b61266781612c03565b82525050565b61267681612c03565b82525050565b60006020820190506126916000830184612386565b92915050565b600060a0820190506126ac6000830188612386565b6126b96020830187612386565b81810360408301526126cb8186612395565b905081810360608301526126df8185612395565b905081810360808301526126f38184612402565b90509695505050505050565b600060a0820190506127146000830188612386565b6127216020830187612386565b61272e604083018661266d565b61273b606083018561266d565b818103608083015261274d8184612402565b90509695505050505050565b600060208201905081810360008301526127738184612395565b905092915050565b600060408201905081810360008301526127958185612395565b905081810360208301526127a98184612395565b90509392505050565b60006020820190506127c760008301846123f3565b92915050565b600060208201905081810360008301526127e7818461243b565b905092915050565b6000602082019050818103600083015261280881612474565b9050919050565b6000602082019050818103600083015261282881612497565b9050919050565b60006020820190508181036000830152612848816124ba565b9050919050565b60006020820190508181036000830152612868816124dd565b9050919050565b6000602082019050818103600083015261288881612500565b9050919050565b600060208201905081810360008301526128a881612523565b9050919050565b600060208201905081810360008301526128c881612546565b9050919050565b600060208201905081810360008301526128e881612569565b9050919050565b600060208201905081810360008301526129088161258c565b9050919050565b60006020820190508181036000830152612928816125af565b9050919050565b60006020820190508181036000830152612948816125d2565b9050919050565b60006020820190508181036000830152612968816125f5565b9050919050565b6000602082019050818103600083015261298881612618565b9050919050565b600060208201905081810360008301526129a88161263b565b9050919050565b60006020820190506129c4600083018461266d565b92915050565b60006040820190506129df600083018561266d565b6129ec602083018461266d565b9392505050565b60006129fd612a0e565b9050612a098282612c81565b919050565b6000604051905090565b600067ffffffffffffffff821115612a3357612a32612d59565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612a5f57612a5e612d59565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612a8b57612a8a612d59565b5b612a9482612daa565b9050602081019050919050565b600067ffffffffffffffff821115612abc57612abb612d59565b5b612ac582612daa565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612b4e82612c03565b9150612b5983612c03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b8e57612b8d612cfb565b5b828201905092915050565b6000612ba482612be3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c3a578082015181840152602081019050612c1f565b83811115612c49576000848401525b50505050565b60006002820490506001821680612c6757607f821691505b60208210811415612c7b57612c7a612d2a565b5b50919050565b612c8a82612daa565b810181811067ffffffffffffffff82111715612ca957612ca8612d59565b5b80604052505050565b6000612cbd82612c03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cf057612cef612cfb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612da75760046000803e612da4600051612dbb565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206c6f636b206c6f636b656420636f6e74726163740000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206368616e6765205552497320696e206c6f636b656420636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156131de57613261565b6131e6612a0e565b60043d036004823e80513d602482011167ffffffffffffffff8211171561320e575050613261565b808201805167ffffffffffffffff81111561322c5750505050613261565b80602083010160043d038501811115613249575050505050613261565b61325882602001850186612c81565b82955050505050505b90565b61326d81612b99565b811461327857600080fd5b50565b61328481612bab565b811461328f57600080fd5b50565b61329b81612bb7565b81146132a657600080fd5b50565b6132b281612c03565b81146132bd57600080fd5b5056fea26469706673582212201e250f5fa04079aa0f96c9d0b35f2f169143215ccfd4ebfa59b414bacb1afbaf64736f6c63430008040033
Deployed Bytecode Sourcemap
38815:1433:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20579:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19602:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38935:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39386:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22518:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20976:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39510:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39846:397;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35799:103;;;:::i;:::-;;35148:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38975:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21573:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38862:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21800:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22040:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36057:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39707:131;;;:::i;:::-;;20579:231;20665:7;20712:1;20693:21;;:7;:21;;;;20685:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;20780:9;:13;20790:2;20780:13;;;;;;;;;;;:22;20794:7;20780:22;;;;;;;;;;;;;;;;20773:29;;20579:231;;;;:::o;19602:310::-;19704:4;19756:26;19741:41;;;:11;:41;;;;:110;;;;19814:37;19799:52;;;:11;:52;;;;19741:110;:163;;;;19868:36;19892:11;19868:23;:36::i;:::-;19741:163;19721:183;;19602:310;;;:::o;38935:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39386:116::-;39446:13;39479:5;:14;39485:7;39479:14;;;;;;;;;;;39472:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39386:116;;;:::o;22518:442::-;22759:12;:10;:12::i;:::-;22751:20;;:4;:20;;;:60;;;;22775:36;22792:4;22798:12;:10;:12::i;:::-;22775:16;:36::i;:::-;22751:60;22729:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;22900:52;22923:4;22929:2;22933:3;22938:7;22947:4;22900:22;:52::i;:::-;22518:442;;;;;:::o;20976:524::-;21132:16;21193:3;:10;21174:8;:15;:29;21166:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;21262:30;21309:8;:15;21295:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21262:63;;21343:9;21338:122;21362:8;:15;21358:1;:19;21338:122;;;21418:30;21428:8;21437:1;21428:11;;;;;;;;;;;;;;;;;;;;;;21441:3;21445:1;21441:6;;;;;;;;;;;;;;;;;;;;;;21418:9;:30::i;:::-;21399:13;21413:1;21399:16;;;;;;;;;;;;;;;;;;;;;:49;;;;;21379:3;;;;:::i;:::-;;;21338:122;;;;21479:13;21472:20;;;20976:524;;;;:::o;39510:189::-;35379:12;:10;:12::i;:::-;35368:23;;:7;:5;:7::i;:::-;:23;;;35360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39613:5:::1;39603:15;;:6;;;;;;;;;;;:15;;;39595:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39688:3;39671:5;:14;39677:7;39671:14;;;;;;;;;;;:20;;;;;;;;;;;;:::i;:::-;;39510:189:::0;;:::o;39846:397::-;35379:12;:10;:12::i;:::-;35368:23;;:7;:5;:7::i;:::-;:23;;;35360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40031:9:::1;40026:210;40050:5;:12;40046:1;:16;40026:210;;;40084:12;40099:5;40105:1;40099:8;;;;;;;;;;;;;;;;;;;;;;40084:23;;40122:14;40139:7;40147:1;40139:10;;;;;;;;;;;;;;;;;;;;;;40122:27;;40166:58;40184:10;40196:4;40202:7;40211:6;40219:4;40166:17;:58::i;:::-;40026:210;;40064:3;;;;:::i;:::-;;;40026:210;;;;39846:397:::0;;;;:::o;35799:103::-;35379:12;:10;:12::i;:::-;35368:23;;:7;:5;:7::i;:::-;:23;;;35360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35864:30:::1;35891:1;35864:18;:30::i;:::-;35799:103::o:0;35148:87::-;35194:7;35221:6;;;;;;;;;;;35214:13;;35148:87;:::o;38975:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21573:155::-;21668:52;21687:12;:10;:12::i;:::-;21701:8;21711;21668:18;:52::i;:::-;21573:155;;:::o;38862:18::-;;;;;;;;;;;;;:::o;21800:168::-;21899:4;21923:18;:27;21942:7;21923:27;;;;;;;;;;;;;;;:37;21951:8;21923:37;;;;;;;;;;;;;;;;;;;;;;;;;21916:44;;21800:168;;;;:::o;22040:401::-;22256:12;:10;:12::i;:::-;22248:20;;:4;:20;;;:60;;;;22272:36;22289:4;22295:12;:10;:12::i;:::-;22272:16;:36::i;:::-;22248:60;22226:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;22388:45;22406:4;22412:2;22416;22420:6;22428:4;22388:17;:45::i;:::-;22040:401;;;;;:::o;36057:201::-;35379:12;:10;:12::i;:::-;35368:23;;:7;:5;:7::i;:::-;:23;;;35360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36166:1:::1;36146:22;;:8;:22;;;;36138:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36222:28;36241:8;36222:18;:28::i;:::-;36057:201:::0;:::o;39707:131::-;35379:12;:10;:12::i;:::-;35368:23;;:7;:5;:7::i;:::-;:23;;;35360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39769:5:::1;39759:15;;:6;;;;;;;;;;;:15;;;39751:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;39826:4;39817:6;;:13;;;;;;;;;;;;;;;;;;39707:131::o:0;9258:387::-;9318:4;9526:12;9593:7;9581:20;9573:28;;9636:1;9629:4;:8;9622:15;;;9258:387;;;:::o;18357:157::-;18442:4;18481:25;18466:40;;;:11;:40;;;;18459:47;;18357:157;;;:::o;17274:98::-;17327:7;17354:10;17347:17;;17274:98;:::o;24602:1074::-;24829:7;:14;24815:3;:10;:28;24807:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;24921:1;24907:16;;:2;:16;;;;24899:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;24978:16;24997:12;:10;:12::i;:::-;24978:31;;25022:60;25043:8;25053:4;25059:2;25063:3;25068:7;25077:4;25022:20;:60::i;:::-;25100:9;25095:421;25119:3;:10;25115:1;:14;25095:421;;;25151:10;25164:3;25168:1;25164:6;;;;;;;;;;;;;;;;;;;;;;25151:19;;25185:14;25202:7;25210:1;25202:10;;;;;;;;;;;;;;;;;;;;;;25185:27;;25229:19;25251:9;:13;25261:2;25251:13;;;;;;;;;;;:19;25265:4;25251:19;;;;;;;;;;;;;;;;25229:41;;25308:6;25293:11;:21;;25285:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25441:6;25427:11;:20;25405:9;:13;25415:2;25405:13;;;;;;;;;;;:19;25419:4;25405:19;;;;;;;;;;;;;;;:42;;;;25498:6;25477:9;:13;25487:2;25477:13;;;;;;;;;;;:17;25491:2;25477:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;25095:421;;;25131:3;;;;:::i;:::-;;;25095:421;;;;25563:2;25533:47;;25557:4;25533:47;;25547:8;25533:47;;;25567:3;25572:7;25533:47;;;;;;;:::i;:::-;;;;;;;;25593:75;25629:8;25639:4;25645:2;25649:3;25654:7;25663:4;25593:35;:75::i;:::-;24602:1074;;;;;;:::o;23424:820::-;23626:1;23612:16;;:2;:16;;;;23604:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;23683:16;23702:12;:10;:12::i;:::-;23683:31;;23727:96;23748:8;23758:4;23764:2;23768:21;23786:2;23768:17;:21::i;:::-;23791:25;23809:6;23791:17;:25::i;:::-;23818:4;23727:20;:96::i;:::-;23836:19;23858:9;:13;23868:2;23858:13;;;;;;;;;;;:19;23872:4;23858:19;;;;;;;;;;;;;;;;23836:41;;23911:6;23896:11;:21;;23888:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24036:6;24022:11;:20;24000:9;:13;24010:2;24000:13;;;;;;;;;;;:19;24014:4;24000:19;;;;;;;;;;;;;;;:42;;;;24085:6;24064:9;:13;24074:2;24064:13;;;;;;;;;;;:17;24078:2;24064:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;24140:2;24109:46;;24134:4;24109:46;;24124:8;24109:46;;;24144:2;24148:6;24109:46;;;;;;;:::i;:::-;;;;;;;;24168:68;24199:8;24209:4;24215:2;24219;24223:6;24231:4;24168:30;:68::i;:::-;23424:820;;;;;;;:::o;36418:191::-;36492:16;36511:6;;;;;;;;;;;36492:25;;36537:8;36528:6;;:17;;;;;;;;;;;;;;;;;;36592:8;36561:40;;36582:8;36561:40;;;;;;;;;;;;36418:191;;:::o;30788:331::-;30943:8;30934:17;;:5;:17;;;;30926:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31046:8;31008:18;:25;31027:5;31008:25;;;;;;;;;;;;;;;:35;31034:8;31008:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31092:8;31070:41;;31085:5;31070:41;;;31102:8;31070:41;;;;;;:::i;:::-;;;;;;;;30788:331;;;:::o;32075:221::-;;;;;;;:::o;33056:813::-;33296:15;:2;:13;;;:15::i;:::-;33292:570;;;33349:2;33332:43;;;33376:8;33386:4;33392:3;33397:7;33406:4;33332:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33328:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;33724:6;33717:14;;;;;;;;;;;:::i;:::-;;;;;;;;33328:523;;;33773:62;;;;;;;;;;:::i;:::-;;;;;;;;33328:523;33505:48;;;33493:60;;;:8;:60;;;;33489:159;;33578:50;;;;;;;;;;:::i;:::-;;;;;;;;33489:159;33412:251;33292:570;33056:813;;;;;;:::o;33877:198::-;33943:16;33972:22;34011:1;33997:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33972:41;;34035:7;34024:5;34030:1;34024:8;;;;;;;;;;;;;;;;;;;;;:18;;;;;34062:5;34055:12;;;33877:198;;;:::o;32304:744::-;32519:15;:2;:13;;;:15::i;:::-;32515:526;;;32572:2;32555:38;;;32594:8;32604:4;32610:2;32614:6;32622:4;32555:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32551:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;32903:6;32896:14;;;;;;;;;;;:::i;:::-;;;;;;;;32551:479;;;32952:62;;;;;;;;;;:::i;:::-;;;;;;;;32551:479;32689:43;;;32677:55;;;:8;:55;;;;32673:154;;32757:50;;;;;;;;;;:::i;:::-;;;;;;;;32673:154;32628:214;32515:526;32304:744;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;702:655::-;798:5;823:81;839:64;896:6;839:64;:::i;:::-;823:81;:::i;:::-;814:90;;924:5;953:6;946:5;939:21;987:4;980:5;976:16;969:23;;1013:6;1063:3;1055:4;1047:6;1043:17;1038:3;1034:27;1031:36;1028:2;;;1092:1;1089;1082:12;1028:2;1128:1;1113:238;1138:6;1135:1;1132:13;1113:238;;;1206:3;1235:37;1268:3;1256:10;1235:37;:::i;:::-;1230:3;1223:50;1302:4;1297:3;1293:14;1286:21;;1336:4;1331:3;1327:14;1320:21;;1173:178;1160:1;1157;1153:9;1148:14;;1113:238;;;1117:14;804:553;;;;;;;:::o;1363:343::-;1440:5;1465:65;1481:48;1522:6;1481:48;:::i;:::-;1465:65;:::i;:::-;1456:74;;1553:6;1546:5;1539:21;1591:4;1584:5;1580:16;1629:3;1620:6;1615:3;1611:16;1608:25;1605:2;;;1646:1;1643;1636:12;1605:2;1659:41;1693:6;1688:3;1683;1659:41;:::i;:::-;1446:260;;;;;;:::o;1712:345::-;1790:5;1815:66;1831:49;1873:6;1831:49;:::i;:::-;1815:66;:::i;:::-;1806:75;;1904:6;1897:5;1890:21;1942:4;1935:5;1931:16;1980:3;1971:6;1966:3;1962:16;1959:25;1956:2;;;1997:1;1994;1987:12;1956:2;2010:41;2044:6;2039:3;2034;2010:41;:::i;:::-;1796:261;;;;;;:::o;2063:139::-;2109:5;2147:6;2134:20;2125:29;;2163:33;2190:5;2163:33;:::i;:::-;2115:87;;;;:::o;2225:303::-;2296:5;2345:3;2338:4;2330:6;2326:17;2322:27;2312:2;;2363:1;2360;2353:12;2312:2;2403:6;2390:20;2428:94;2518:3;2510:6;2503:4;2495:6;2491:17;2428:94;:::i;:::-;2419:103;;2302:226;;;;;:::o;2551:303::-;2622:5;2671:3;2664:4;2656:6;2652:17;2648:27;2638:2;;2689:1;2686;2679:12;2638:2;2729:6;2716:20;2754:94;2844:3;2836:6;2829:4;2821:6;2817:17;2754:94;:::i;:::-;2745:103;;2628:226;;;;;:::o;2860:133::-;2903:5;2941:6;2928:20;2919:29;;2957:30;2981:5;2957:30;:::i;:::-;2909:84;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;3050:86;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3204:79;;;;:::o;3302:271::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:2;;3424:1;3421;3414:12;3373:2;3464:6;3451:20;3489:78;3563:3;3555:6;3548:4;3540:6;3536:17;3489:78;:::i;:::-;3480:87;;3363:210;;;;;:::o;3593:273::-;3649:5;3698:3;3691:4;3683:6;3679:17;3675:27;3665:2;;3716:1;3713;3706:12;3665:2;3756:6;3743:20;3781:79;3856:3;3848:6;3841:4;3833:6;3829:17;3781:79;:::i;:::-;3772:88;;3655:211;;;;;:::o;3872:139::-;3918:5;3956:6;3943:20;3934:29;;3972:33;3999:5;3972:33;:::i;:::-;3924:87;;;;:::o;4017:262::-;4076:6;4125:2;4113:9;4104:7;4100:23;4096:32;4093:2;;;4141:1;4138;4131:12;4093:2;4184:1;4209:53;4254:7;4245:6;4234:9;4230:22;4209:53;:::i;:::-;4199:63;;4155:117;4083:196;;;;:::o;4285:407::-;4353:6;4361;4410:2;4398:9;4389:7;4385:23;4381:32;4378:2;;;4426:1;4423;4416:12;4378:2;4469:1;4494:53;4539:7;4530:6;4519:9;4515:22;4494:53;:::i;:::-;4484:63;;4440:117;4596:2;4622:53;4667:7;4658:6;4647:9;4643:22;4622:53;:::i;:::-;4612:63;;4567:118;4368:324;;;;;:::o;4698:1241::-;4852:6;4860;4868;4876;4884;4933:3;4921:9;4912:7;4908:23;4904:33;4901:2;;;4950:1;4947;4940:12;4901:2;4993:1;5018:53;5063:7;5054:6;5043:9;5039:22;5018:53;:::i;:::-;5008:63;;4964:117;5120:2;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5091:118;5276:2;5265:9;5261:18;5248:32;5307:18;5299:6;5296:30;5293:2;;;5339:1;5336;5329:12;5293:2;5367:78;5437:7;5428:6;5417:9;5413:22;5367:78;:::i;:::-;5357:88;;5219:236;5522:2;5511:9;5507:18;5494:32;5553:18;5545:6;5542:30;5539:2;;;5585:1;5582;5575:12;5539:2;5613:78;5683:7;5674:6;5663:9;5659:22;5613:78;:::i;:::-;5603:88;;5465:236;5768:3;5757:9;5753:19;5740:33;5800:18;5792:6;5789:30;5786:2;;;5832:1;5829;5822:12;5786:2;5860:62;5914:7;5905:6;5894:9;5890:22;5860:62;:::i;:::-;5850:72;;5711:221;4891:1048;;;;;;;;:::o;5945:955::-;6049:6;6057;6065;6073;6081;6130:3;6118:9;6109:7;6105:23;6101:33;6098:2;;;6147:1;6144;6137:12;6098:2;6190:1;6215:53;6260:7;6251:6;6240:9;6236:22;6215:53;:::i;:::-;6205:63;;6161:117;6317:2;6343:53;6388:7;6379:6;6368:9;6364:22;6343:53;:::i;:::-;6333:63;;6288:118;6445:2;6471:53;6516:7;6507:6;6496:9;6492:22;6471:53;:::i;:::-;6461:63;;6416:118;6573:2;6599:53;6644:7;6635:6;6624:9;6620:22;6599:53;:::i;:::-;6589:63;;6544:118;6729:3;6718:9;6714:19;6701:33;6761:18;6753:6;6750:30;6747:2;;;6793:1;6790;6783:12;6747:2;6821:62;6875:7;6866:6;6855:9;6851:22;6821:62;:::i;:::-;6811:72;;6672:221;6088:812;;;;;;;;:::o;6906:401::-;6971:6;6979;7028:2;7016:9;7007:7;7003:23;6999:32;6996:2;;;7044:1;7041;7034:12;6996:2;7087:1;7112:53;7157:7;7148:6;7137:9;7133:22;7112:53;:::i;:::-;7102:63;;7058:117;7214:2;7240:50;7282:7;7273:6;7262:9;7258:22;7240:50;:::i;:::-;7230:60;;7185:115;6986:321;;;;;:::o;7313:407::-;7381:6;7389;7438:2;7426:9;7417:7;7413:23;7409:32;7406:2;;;7454:1;7451;7444:12;7406:2;7497:1;7522:53;7567:7;7558:6;7547:9;7543:22;7522:53;:::i;:::-;7512:63;;7468:117;7624:2;7650:53;7695:7;7686:6;7675:9;7671:22;7650:53;:::i;:::-;7640:63;;7595:118;7396:324;;;;;:::o;7726:693::-;7844:6;7852;7901:2;7889:9;7880:7;7876:23;7872:32;7869:2;;;7917:1;7914;7907:12;7869:2;7988:1;7977:9;7973:17;7960:31;8018:18;8010:6;8007:30;8004:2;;;8050:1;8047;8040:12;8004:2;8078:78;8148:7;8139:6;8128:9;8124:22;8078:78;:::i;:::-;8068:88;;7931:235;8233:2;8222:9;8218:18;8205:32;8264:18;8256:6;8253:30;8250:2;;;8296:1;8293;8286:12;8250:2;8324:78;8394:7;8385:6;8374:9;8370:22;8324:78;:::i;:::-;8314:88;;8176:236;7859:560;;;;;:::o;8425:260::-;8483:6;8532:2;8520:9;8511:7;8507:23;8503:32;8500:2;;;8548:1;8545;8538:12;8500:2;8591:1;8616:52;8660:7;8651:6;8640:9;8636:22;8616:52;:::i;:::-;8606:62;;8562:116;8490:195;;;;:::o;8691:282::-;8760:6;8809:2;8797:9;8788:7;8784:23;8780:32;8777:2;;;8825:1;8822;8815:12;8777:2;8868:1;8893:63;8948:7;8939:6;8928:9;8924:22;8893:63;:::i;:::-;8883:73;;8839:127;8767:206;;;;:::o;8979:262::-;9038:6;9087:2;9075:9;9066:7;9062:23;9058:32;9055:2;;;9103:1;9100;9093:12;9055:2;9146:1;9171:53;9216:7;9207:6;9196:9;9192:22;9171:53;:::i;:::-;9161:63;;9117:117;9045:196;;;;:::o;9247:1095::-;9392:6;9400;9408;9416;9465:3;9453:9;9444:7;9440:23;9436:33;9433:2;;;9482:1;9479;9472:12;9433:2;9525:1;9550:53;9595:7;9586:6;9575:9;9571:22;9550:53;:::i;:::-;9540:63;;9496:117;9680:2;9669:9;9665:18;9652:32;9711:18;9703:6;9700:30;9697:2;;;9743:1;9740;9733:12;9697:2;9771:78;9841:7;9832:6;9821:9;9817:22;9771:78;:::i;:::-;9761:88;;9623:236;9926:2;9915:9;9911:18;9898:32;9957:18;9949:6;9946:30;9943:2;;;9989:1;9986;9979:12;9943:2;10017:78;10087:7;10078:6;10067:9;10063:22;10017:78;:::i;:::-;10007:88;;9869:236;10172:2;10161:9;10157:18;10144:32;10203:18;10195:6;10192:30;10189:2;;;10235:1;10232;10225:12;10189:2;10263:62;10317:7;10308:6;10297:9;10293:22;10263:62;:::i;:::-;10253:72;;10115:220;9423:919;;;;;;;:::o;10348:520::-;10426:6;10434;10483:2;10471:9;10462:7;10458:23;10454:32;10451:2;;;10499:1;10496;10489:12;10451:2;10542:1;10567:53;10612:7;10603:6;10592:9;10588:22;10567:53;:::i;:::-;10557:63;;10513:117;10697:2;10686:9;10682:18;10669:32;10728:18;10720:6;10717:30;10714:2;;;10760:1;10757;10750:12;10714:2;10788:63;10843:7;10834:6;10823:9;10819:22;10788:63;:::i;:::-;10778:73;;10640:221;10441:427;;;;;:::o;10874:179::-;10943:10;10964:46;11006:3;10998:6;10964:46;:::i;:::-;11042:4;11037:3;11033:14;11019:28;;10954:99;;;;:::o;11059:118::-;11146:24;11164:5;11146:24;:::i;:::-;11141:3;11134:37;11124:53;;:::o;11213:732::-;11332:3;11361:54;11409:5;11361:54;:::i;:::-;11431:86;11510:6;11505:3;11431:86;:::i;:::-;11424:93;;11541:56;11591:5;11541:56;:::i;:::-;11620:7;11651:1;11636:284;11661:6;11658:1;11655:13;11636:284;;;11737:6;11731:13;11764:63;11823:3;11808:13;11764:63;:::i;:::-;11757:70;;11850:60;11903:6;11850:60;:::i;:::-;11840:70;;11696:224;11683:1;11680;11676:9;11671:14;;11636:284;;;11640:14;11936:3;11929:10;;11337:608;;;;;;;:::o;11951:109::-;12032:21;12047:5;12032:21;:::i;:::-;12027:3;12020:34;12010:50;;:::o;12066:360::-;12152:3;12180:38;12212:5;12180:38;:::i;:::-;12234:70;12297:6;12292:3;12234:70;:::i;:::-;12227:77;;12313:52;12358:6;12353:3;12346:4;12339:5;12335:16;12313:52;:::i;:::-;12390:29;12412:6;12390:29;:::i;:::-;12385:3;12381:39;12374:46;;12156:270;;;;;:::o;12432:364::-;12520:3;12548:39;12581:5;12548:39;:::i;:::-;12603:71;12667:6;12662:3;12603:71;:::i;:::-;12596:78;;12683:52;12728:6;12723:3;12716:4;12709:5;12705:16;12683:52;:::i;:::-;12760:29;12782:6;12760:29;:::i;:::-;12755:3;12751:39;12744:46;;12524:272;;;;;:::o;12802:366::-;12944:3;12965:67;13029:2;13024:3;12965:67;:::i;:::-;12958:74;;13041:93;13130:3;13041:93;:::i;:::-;13159:2;13154:3;13150:12;13143:19;;12948:220;;;:::o;13174:366::-;13316:3;13337:67;13401:2;13396:3;13337:67;:::i;:::-;13330:74;;13413:93;13502:3;13413:93;:::i;:::-;13531:2;13526:3;13522:12;13515:19;;13320:220;;;:::o;13546:366::-;13688:3;13709:67;13773:2;13768:3;13709:67;:::i;:::-;13702:74;;13785:93;13874:3;13785:93;:::i;:::-;13903:2;13898:3;13894:12;13887:19;;13692:220;;;:::o;13918:366::-;14060:3;14081:67;14145:2;14140:3;14081:67;:::i;:::-;14074:74;;14157:93;14246:3;14157:93;:::i;:::-;14275:2;14270:3;14266:12;14259:19;;14064:220;;;:::o;14290:366::-;14432:3;14453:67;14517:2;14512:3;14453:67;:::i;:::-;14446:74;;14529:93;14618:3;14529:93;:::i;:::-;14647:2;14642:3;14638:12;14631:19;;14436:220;;;:::o;14662:366::-;14804:3;14825:67;14889:2;14884:3;14825:67;:::i;:::-;14818:74;;14901:93;14990:3;14901:93;:::i;:::-;15019:2;15014:3;15010:12;15003:19;;14808:220;;;:::o;15034:366::-;15176:3;15197:67;15261:2;15256:3;15197:67;:::i;:::-;15190:74;;15273:93;15362:3;15273:93;:::i;:::-;15391:2;15386:3;15382:12;15375:19;;15180:220;;;:::o;15406:366::-;15548:3;15569:67;15633:2;15628:3;15569:67;:::i;:::-;15562:74;;15645:93;15734:3;15645:93;:::i;:::-;15763:2;15758:3;15754:12;15747:19;;15552:220;;;:::o;15778:366::-;15920:3;15941:67;16005:2;16000:3;15941:67;:::i;:::-;15934:74;;16017:93;16106:3;16017:93;:::i;:::-;16135:2;16130:3;16126:12;16119:19;;15924:220;;;:::o;16150:366::-;16292:3;16313:67;16377:2;16372:3;16313:67;:::i;:::-;16306:74;;16389:93;16478:3;16389:93;:::i;:::-;16507:2;16502:3;16498:12;16491:19;;16296:220;;;:::o;16522:366::-;16664:3;16685:67;16749:2;16744:3;16685:67;:::i;:::-;16678:74;;16761:93;16850:3;16761:93;:::i;:::-;16879:2;16874:3;16870:12;16863:19;;16668:220;;;:::o;16894:366::-;17036:3;17057:67;17121:2;17116:3;17057:67;:::i;:::-;17050:74;;17133:93;17222:3;17133:93;:::i;:::-;17251:2;17246:3;17242:12;17235:19;;17040:220;;;:::o;17266:366::-;17408:3;17429:67;17493:2;17488:3;17429:67;:::i;:::-;17422:74;;17505:93;17594:3;17505:93;:::i;:::-;17623:2;17618:3;17614:12;17607:19;;17412:220;;;:::o;17638:366::-;17780:3;17801:67;17865:2;17860:3;17801:67;:::i;:::-;17794:74;;17877:93;17966:3;17877:93;:::i;:::-;17995:2;17990:3;17986:12;17979:19;;17784:220;;;:::o;18010:108::-;18087:24;18105:5;18087:24;:::i;:::-;18082:3;18075:37;18065:53;;:::o;18124:118::-;18211:24;18229:5;18211:24;:::i;:::-;18206:3;18199:37;18189:53;;:::o;18248:222::-;18341:4;18379:2;18368:9;18364:18;18356:26;;18392:71;18460:1;18449:9;18445:17;18436:6;18392:71;:::i;:::-;18346:124;;;;:::o;18476:1053::-;18799:4;18837:3;18826:9;18822:19;18814:27;;18851:71;18919:1;18908:9;18904:17;18895:6;18851:71;:::i;:::-;18932:72;19000:2;18989:9;18985:18;18976:6;18932:72;:::i;:::-;19051:9;19045:4;19041:20;19036:2;19025:9;19021:18;19014:48;19079:108;19182:4;19173:6;19079:108;:::i;:::-;19071:116;;19234:9;19228:4;19224:20;19219:2;19208:9;19204:18;19197:48;19262:108;19365:4;19356:6;19262:108;:::i;:::-;19254:116;;19418:9;19412:4;19408:20;19402:3;19391:9;19387:19;19380:49;19446:76;19517:4;19508:6;19446:76;:::i;:::-;19438:84;;18804:725;;;;;;;;:::o;19535:751::-;19758:4;19796:3;19785:9;19781:19;19773:27;;19810:71;19878:1;19867:9;19863:17;19854:6;19810:71;:::i;:::-;19891:72;19959:2;19948:9;19944:18;19935:6;19891:72;:::i;:::-;19973;20041:2;20030:9;20026:18;20017:6;19973:72;:::i;:::-;20055;20123:2;20112:9;20108:18;20099:6;20055:72;:::i;:::-;20175:9;20169:4;20165:20;20159:3;20148:9;20144:19;20137:49;20203:76;20274:4;20265:6;20203:76;:::i;:::-;20195:84;;19763:523;;;;;;;;:::o;20292:373::-;20435:4;20473:2;20462:9;20458:18;20450:26;;20522:9;20516:4;20512:20;20508:1;20497:9;20493:17;20486:47;20550:108;20653:4;20644:6;20550:108;:::i;:::-;20542:116;;20440:225;;;;:::o;20671:634::-;20892:4;20930:2;20919:9;20915:18;20907:26;;20979:9;20973:4;20969:20;20965:1;20954:9;20950:17;20943:47;21007:108;21110:4;21101:6;21007:108;:::i;:::-;20999:116;;21162:9;21156:4;21152:20;21147:2;21136:9;21132:18;21125:48;21190:108;21293:4;21284:6;21190:108;:::i;:::-;21182:116;;20897:408;;;;;:::o;21311:210::-;21398:4;21436:2;21425:9;21421:18;21413:26;;21449:65;21511:1;21500:9;21496:17;21487:6;21449:65;:::i;:::-;21403:118;;;;:::o;21527:313::-;21640:4;21678:2;21667:9;21663:18;21655:26;;21727:9;21721:4;21717:20;21713:1;21702:9;21698:17;21691:47;21755:78;21828:4;21819:6;21755:78;:::i;:::-;21747:86;;21645:195;;;;:::o;21846:419::-;22012:4;22050:2;22039:9;22035:18;22027:26;;22099:9;22093:4;22089:20;22085:1;22074:9;22070:17;22063:47;22127:131;22253:4;22127:131;:::i;:::-;22119:139;;22017:248;;;:::o;22271:419::-;22437:4;22475:2;22464:9;22460:18;22452:26;;22524:9;22518:4;22514:20;22510:1;22499:9;22495:17;22488:47;22552:131;22678:4;22552:131;:::i;:::-;22544:139;;22442:248;;;:::o;22696:419::-;22862:4;22900:2;22889:9;22885:18;22877:26;;22949:9;22943:4;22939:20;22935:1;22924:9;22920:17;22913:47;22977:131;23103:4;22977:131;:::i;:::-;22969:139;;22867:248;;;:::o;23121:419::-;23287:4;23325:2;23314:9;23310:18;23302:26;;23374:9;23368:4;23364:20;23360:1;23349:9;23345:17;23338:47;23402:131;23528:4;23402:131;:::i;:::-;23394:139;;23292:248;;;:::o;23546:419::-;23712:4;23750:2;23739:9;23735:18;23727:26;;23799:9;23793:4;23789:20;23785:1;23774:9;23770:17;23763:47;23827:131;23953:4;23827:131;:::i;:::-;23819:139;;23717:248;;;:::o;23971:419::-;24137:4;24175:2;24164:9;24160:18;24152:26;;24224:9;24218:4;24214:20;24210:1;24199:9;24195:17;24188:47;24252:131;24378:4;24252:131;:::i;:::-;24244:139;;24142:248;;;:::o;24396:419::-;24562:4;24600:2;24589:9;24585:18;24577:26;;24649:9;24643:4;24639:20;24635:1;24624:9;24620:17;24613:47;24677:131;24803:4;24677:131;:::i;:::-;24669:139;;24567:248;;;:::o;24821:419::-;24987:4;25025:2;25014:9;25010:18;25002:26;;25074:9;25068:4;25064:20;25060:1;25049:9;25045:17;25038:47;25102:131;25228:4;25102:131;:::i;:::-;25094:139;;24992:248;;;:::o;25246:419::-;25412:4;25450:2;25439:9;25435:18;25427:26;;25499:9;25493:4;25489:20;25485:1;25474:9;25470:17;25463:47;25527:131;25653:4;25527:131;:::i;:::-;25519:139;;25417:248;;;:::o;25671:419::-;25837:4;25875:2;25864:9;25860:18;25852:26;;25924:9;25918:4;25914:20;25910:1;25899:9;25895:17;25888:47;25952:131;26078:4;25952:131;:::i;:::-;25944:139;;25842:248;;;:::o;26096:419::-;26262:4;26300:2;26289:9;26285:18;26277:26;;26349:9;26343:4;26339:20;26335:1;26324:9;26320:17;26313:47;26377:131;26503:4;26377:131;:::i;:::-;26369:139;;26267:248;;;:::o;26521:419::-;26687:4;26725:2;26714:9;26710:18;26702:26;;26774:9;26768:4;26764:20;26760:1;26749:9;26745:17;26738:47;26802:131;26928:4;26802:131;:::i;:::-;26794:139;;26692:248;;;:::o;26946:419::-;27112:4;27150:2;27139:9;27135:18;27127:26;;27199:9;27193:4;27189:20;27185:1;27174:9;27170:17;27163:47;27227:131;27353:4;27227:131;:::i;:::-;27219:139;;27117:248;;;:::o;27371:419::-;27537:4;27575:2;27564:9;27560:18;27552:26;;27624:9;27618:4;27614:20;27610:1;27599:9;27595:17;27588:47;27652:131;27778:4;27652:131;:::i;:::-;27644:139;;27542:248;;;:::o;27796:222::-;27889:4;27927:2;27916:9;27912:18;27904:26;;27940:71;28008:1;27997:9;27993:17;27984:6;27940:71;:::i;:::-;27894:124;;;;:::o;28024:332::-;28145:4;28183:2;28172:9;28168:18;28160:26;;28196:71;28264:1;28253:9;28249:17;28240:6;28196:71;:::i;:::-;28277:72;28345:2;28334:9;28330:18;28321:6;28277:72;:::i;:::-;28150:206;;;;;:::o;28362:129::-;28396:6;28423:20;;:::i;:::-;28413:30;;28452:33;28480:4;28472:6;28452:33;:::i;:::-;28403:88;;;:::o;28497:75::-;28530:6;28563:2;28557:9;28547:19;;28537:35;:::o;28578:311::-;28655:4;28745:18;28737:6;28734:30;28731:2;;;28767:18;;:::i;:::-;28731:2;28817:4;28809:6;28805:17;28797:25;;28877:4;28871;28867:15;28859:23;;28660:229;;;:::o;28895:311::-;28972:4;29062:18;29054:6;29051:30;29048:2;;;29084:18;;:::i;:::-;29048:2;29134:4;29126:6;29122:17;29114:25;;29194:4;29188;29184:15;29176:23;;28977:229;;;:::o;29212:307::-;29273:4;29363:18;29355:6;29352:30;29349:2;;;29385:18;;:::i;:::-;29349:2;29423:29;29445:6;29423:29;:::i;:::-;29415:37;;29507:4;29501;29497:15;29489:23;;29278:241;;;:::o;29525:308::-;29587:4;29677:18;29669:6;29666:30;29663:2;;;29699:18;;:::i;:::-;29663:2;29737:29;29759:6;29737:29;:::i;:::-;29729:37;;29821:4;29815;29811:15;29803:23;;29592:241;;;:::o;29839:132::-;29906:4;29929:3;29921:11;;29959:4;29954:3;29950:14;29942:22;;29911:60;;;:::o;29977:114::-;30044:6;30078:5;30072:12;30062:22;;30051:40;;;:::o;30097:98::-;30148:6;30182:5;30176:12;30166:22;;30155:40;;;:::o;30201:99::-;30253:6;30287:5;30281:12;30271:22;;30260:40;;;:::o;30306:113::-;30376:4;30408;30403:3;30399:14;30391:22;;30381:38;;;:::o;30425:184::-;30524:11;30558:6;30553:3;30546:19;30598:4;30593:3;30589:14;30574:29;;30536:73;;;;:::o;30615:168::-;30698:11;30732:6;30727:3;30720:19;30772:4;30767:3;30763:14;30748:29;;30710:73;;;;:::o;30789:169::-;30873:11;30907:6;30902:3;30895:19;30947:4;30942:3;30938:14;30923:29;;30885:73;;;;:::o;30964:305::-;31004:3;31023:20;31041:1;31023:20;:::i;:::-;31018:25;;31057:20;31075:1;31057:20;:::i;:::-;31052:25;;31211:1;31143:66;31139:74;31136:1;31133:81;31130:2;;;31217:18;;:::i;:::-;31130:2;31261:1;31258;31254:9;31247:16;;31008:261;;;;:::o;31275:96::-;31312:7;31341:24;31359:5;31341:24;:::i;:::-;31330:35;;31320:51;;;:::o;31377:90::-;31411:7;31454:5;31447:13;31440:21;31429:32;;31419:48;;;:::o;31473:149::-;31509:7;31549:66;31542:5;31538:78;31527:89;;31517:105;;;:::o;31628:126::-;31665:7;31705:42;31698:5;31694:54;31683:65;;31673:81;;;:::o;31760:77::-;31797:7;31826:5;31815:16;;31805:32;;;:::o;31843:154::-;31927:6;31922:3;31917;31904:30;31989:1;31980:6;31975:3;31971:16;31964:27;31894:103;;;:::o;32003:307::-;32071:1;32081:113;32095:6;32092:1;32089:13;32081:113;;;32180:1;32175:3;32171:11;32165:18;32161:1;32156:3;32152:11;32145:39;32117:2;32114:1;32110:10;32105:15;;32081:113;;;32212:6;32209:1;32206:13;32203:2;;;32292:1;32283:6;32278:3;32274:16;32267:27;32203:2;32052:258;;;;:::o;32316:320::-;32360:6;32397:1;32391:4;32387:12;32377:22;;32444:1;32438:4;32434:12;32465:18;32455:2;;32521:4;32513:6;32509:17;32499:27;;32455:2;32583;32575:6;32572:14;32552:18;32549:38;32546:2;;;32602:18;;:::i;:::-;32546:2;32367:269;;;;:::o;32642:281::-;32725:27;32747:4;32725:27;:::i;:::-;32717:6;32713:40;32855:6;32843:10;32840:22;32819:18;32807:10;32804:34;32801:62;32798:2;;;32866:18;;:::i;:::-;32798:2;32906:10;32902:2;32895:22;32685:238;;;:::o;32929:233::-;32968:3;32991:24;33009:5;32991:24;:::i;:::-;32982:33;;33037:66;33030:5;33027:77;33024:2;;;33107:18;;:::i;:::-;33024:2;33154:1;33147:5;33143:13;33136:20;;32972:190;;;:::o;33168:180::-;33216:77;33213:1;33206:88;33313:4;33310:1;33303:15;33337:4;33334:1;33327:15;33354:180;33402:77;33399:1;33392:88;33499:4;33496:1;33489:15;33523:4;33520:1;33513:15;33540:180;33588:77;33585:1;33578:88;33685:4;33682:1;33675:15;33709:4;33706:1;33699:15;33726:183;33761:3;33799:1;33781:16;33778:23;33775:2;;;33837:1;33834;33831;33816:23;33859:34;33890:1;33884:8;33859:34;:::i;:::-;33852:41;;33775:2;33765:144;:::o;33915:102::-;33956:6;34007:2;34003:7;33998:2;33991:5;33987:14;33983:28;33973:38;;33963:54;;;:::o;34023:106::-;34067:8;34116:5;34111:3;34107:15;34086:36;;34076:53;;;:::o;34135:239::-;34275:34;34271:1;34263:6;34259:14;34252:58;34344:22;34339:2;34331:6;34327:15;34320:47;34241:133;:::o;34380:227::-;34520:34;34516:1;34508:6;34504:14;34497:58;34589:10;34584:2;34576:6;34572:15;34565:35;34486:121;:::o;34613:230::-;34753:34;34749:1;34741:6;34737:14;34730:58;34822:13;34817:2;34809:6;34805:15;34798:38;34719:124;:::o;34849:225::-;34989:34;34985:1;34977:6;34973:14;34966:58;35058:8;35053:2;35045:6;35041:15;35034:33;34955:119;:::o;35080:177::-;35220:29;35216:1;35208:6;35204:14;35197:53;35186:71;:::o;35263:228::-;35403:34;35399:1;35391:6;35387:14;35380:58;35472:11;35467:2;35459:6;35455:15;35448:36;35369:122;:::o;35497:224::-;35637:34;35633:1;35625:6;35621:14;35614:58;35706:7;35701:2;35693:6;35689:15;35682:32;35603:118;:::o;35727:237::-;35867:34;35863:1;35855:6;35851:14;35844:58;35936:20;35931:2;35923:6;35919:15;35912:45;35833:131;:::o;35970:229::-;36110:34;36106:1;36098:6;36094:14;36087:58;36179:12;36174:2;36166:6;36162:15;36155:37;36076:123;:::o;36205:182::-;36345:34;36341:1;36333:6;36329:14;36322:58;36311:76;:::o;36393:228::-;36533:34;36529:1;36521:6;36517:14;36510:58;36602:11;36597:2;36589:6;36585:15;36578:36;36499:122;:::o;36627:228::-;36767:34;36763:1;36755:6;36751:14;36744:58;36836:11;36831:2;36823:6;36819:15;36812:36;36733:122;:::o;36861:227::-;37001:34;36997:1;36989:6;36985:14;36978:58;37070:10;37065:2;37057:6;37053:15;37046:35;36967:121;:::o;37094:224::-;37234:34;37230:1;37222:6;37218:14;37211:58;37303:7;37298:2;37290:6;37286:15;37279:32;37200:118;:::o;37324:711::-;37363:3;37401:4;37383:16;37380:26;37377:2;;;37409:5;;37377:2;37438:20;;:::i;:::-;37513:1;37495:16;37491:24;37488:1;37482:4;37467:49;37546:4;37540:11;37645:16;37638:4;37630:6;37626:17;37623:39;37590:18;37582:6;37579:30;37563:113;37560:2;;;37691:5;;;;37560:2;37737:6;37731:4;37727:17;37773:3;37767:10;37800:18;37792:6;37789:30;37786:2;;;37822:5;;;;;;37786:2;37870:6;37863:4;37858:3;37854:14;37850:27;37929:1;37911:16;37907:24;37901:4;37897:35;37892:3;37889:44;37886:2;;;37936:5;;;;;;;37886:2;37953:57;38001:6;37995:4;37991:17;37983:6;37979:30;37973:4;37953:57;:::i;:::-;38026:3;38019:10;;37367:668;;;;;;;:::o;38041:122::-;38114:24;38132:5;38114:24;:::i;:::-;38107:5;38104:35;38094:2;;38153:1;38150;38143:12;38094:2;38084:79;:::o;38169:116::-;38239:21;38254:5;38239:21;:::i;:::-;38232:5;38229:32;38219:2;;38275:1;38272;38265:12;38219:2;38209:76;:::o;38291:120::-;38363:23;38380:5;38363:23;:::i;:::-;38356:5;38353:34;38343:2;;38401:1;38398;38391:12;38343:2;38333:78;:::o;38417:122::-;38490:24;38508:5;38490:24;:::i;:::-;38483:5;38480:35;38470:2;;38529:1;38526;38519:12;38470:2;38460:79;:::o
Swarm Source
ipfs://1e250f5fa04079aa0f96c9d0b35f2f169143215ccfd4ebfa59b414bacb1afbaf
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.