ERC-1155
Overview
Max Total Supply
500 WFN
Holders
3
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 Source Code Verified (Exact Match)
Contract Name:
WAGMI_Network_Pass
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-01 */ // SPDX-License-Identifier: MIT /** $$\ $$\ $$$$$$\ $$$$$$\ $$\ $$\ $$$$$$\ $$\ $$\ $$\ $$\ $$ | $\ $$ |$$ __$$\ $$ __$$\ $$$\ $$$ |\_$$ _| $$$\ $$ | $$ | $$ | $$ |$$$\ $$ |$$ / $$ |$$ / \__|$$$$\ $$$$ | $$ | $$$$\ $$ | $$$$$$\ $$$$$$\ $$\ $$\ $$\ $$$$$$\ $$$$$$\ $$ | $$\ $$ $$ $$\$$ |$$$$$$$$ |$$ |$$$$\ $$\$$\$$ $$ | $$ | $$ $$\$$ |$$ __$$\\_$$ _| $$ | $$ | $$ |$$ __$$\ $$ __$$\ $$ | $$ | $$$$ _$$$$ |$$ __$$ |$$ |\_$$ |$$ \$$$ $$ | $$ | $$ \$$$$ |$$$$$$$$ | $$ | $$ | $$ | $$ |$$ / $$ |$$ | \__|$$$$$$ / $$$ / \$$$ |$$ | $$ |$$ | $$ |$$ |\$ /$$ | $$ | $$ |\$$$ |$$ ____| $$ |$$\ $$ | $$ | $$ |$$ | $$ |$$ | $$ _$$< $$ / \$$ |$$ | $$ |\$$$$$$ |$$ | \_/ $$ |$$$$$$\ $$ | \$$ |\$$$$$$$\ \$$$$ |\$$$$$\$$$$ |\$$$$$$ |$$ | $$ | \$$\ \__/ \__|\__| \__| \______/ \__| \__|\______| \__| \__| \_______| \____/ \_____\____/ \______/ \__| \__| \__| */ // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts (last updated v4.7.0) (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 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol // OpenZeppelin Contracts (last updated v4.7.0) (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: address zero is not a valid owner"); 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 token owner or 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: caller is not token owner or 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(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, 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); _afterTokenTransfer(operator, from, to, ids, amounts, data); _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); _afterTokenTransfer(operator, from, to, ids, amounts, data); _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(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * 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 _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); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * 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(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); 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); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * 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); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {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 `ids` and `amounts` 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 {} /** * @dev Hook that is called after 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 _afterTokenTransfer( 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: contracts/WFNP.sol // Amended by HashLips pragma solidity ^0.8.0; contract WAGMI_Network_Pass is ERC1155, Ownable { string public name; string public symbol; mapping(uint => string) public tokenURI; constructor() ERC1155("") { name = "WAGMI Fund Network Pass"; symbol = "WFN"; } function mint(address _to, uint _id, uint _amount) external onlyOwner { _mint(_to, _id, _amount, ""); } function mintBatch(address _to, uint[] memory _ids, uint[] memory _amounts) external onlyOwner { _mintBatch(_to, _ids, _amounts, ""); } function burn(uint _id, uint _amount) external { _burn(msg.sender, _id, _amount); } function burnBatch(uint[] memory _ids, uint[] memory _amounts) external { _burnBatch(msg.sender, _ids, _amounts); } function burnForMint(address _from, uint[] memory _burnIds, uint[] memory _burnAmounts, uint[] memory _mintIds, uint[] memory _mintAmounts) external onlyOwner { _burnBatch(_from, _burnIds, _burnAmounts); _mintBatch(_from, _mintIds, _mintAmounts, ""); } function setURI(uint _id, string memory _uri) external onlyOwner { tokenURI[_id] = _uri; emit URI(_uri, _id); } function uri(uint _id) public override view returns (string memory) { return tokenURI[_id]; } }
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":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256[]","name":"_burnIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_burnAmounts","type":"uint256[]"},{"internalType":"uint256[]","name":"_mintIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"}],"name":"burnForMint","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"_id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","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":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051806020016040528060008152506200003381620000f660201b60201c565b5062000054620000486200011260201b60201c565b6200011a60201b60201c565b6040518060400160405280601781526020017f5741474d492046756e64204e6574776f726b205061737300000000000000000081525060049080519060200190620000a1929190620001e0565b506040518060400160405280600381526020017f57464e000000000000000000000000000000000000000000000000000000000081525060059080519060200190620000ef929190620001e0565b50620002f5565b80600290805190602001906200010e929190620001e0565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ee9062000290565b90600052602060002090601f0160209004810192826200021257600085556200025e565b82601f106200022d57805160ff19168380011785556200025e565b828001600101855582156200025e579182015b828111156200025d57825182559160200191906001019062000240565b5b5090506200026d919062000271565b5090565b5b808211156200028c57600081600090555060010162000272565b5090565b60006002820490506001821680620002a957607f821691505b60208210811415620002c057620002bf620002c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c4b80620003056000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c8063862440e2116100ad578063c87b56dd11610071578063c87b56dd14610318578063d81d0a1514610348578063e985e9c514610364578063f242432a14610394578063f2fde38b146103b05761012b565b8063862440e2146102885780638da5cb5b146102a457806395d89b41146102c2578063a22cb465146102e0578063b390c0ab146102fc5761012b565b80632eb2c2d6116100f45780632eb2c2d6146101fa5780634e1273f414610216578063510f410414610246578063715018a61461026257806383ca4b6f1461026c5761012b565b8062fdd58e1461013057806301ffc9a71461016057806306fdde03146101905780630e89341c146101ae578063156e29f6146101de575b600080fd5b61014a600480360381019061014591906129af565b6103cc565b6040516101579190613296565b60405180910390f35b61017a60048036038101906101759190612b32565b610495565b6040516101879190613099565b60405180910390f35b610198610577565b6040516101a591906130b4565b60405180910390f35b6101c860048036038101906101c39190612b8c565b610605565b6040516101d591906130b4565b60405180910390f35b6101f860048036038101906101f391906129ef565b6106aa565b005b610214600480360381019061020f9190612693565b6106d2565b005b610230600480360381019061022b9190612a42565b610773565b60405161023d9190613040565b60405180910390f35b610260600480360381019061025b9190612884565b61088c565b005b61026a6108c1565b005b61028660048036038101906102819190612aba565b6108d5565b005b6102a2600480360381019061029d9190612bb9565b6108e4565b005b6102ac610950565b6040516102b99190612f63565b60405180910390f35b6102ca61097a565b6040516102d791906130b4565b60405180910390f35b6102fa60048036038101906102f5919061296f565b610a08565b005b61031660048036038101906103119190612c15565b610a1e565b005b610332600480360381019061032d9190612b8c565b610a2d565b60405161033f91906130b4565b60405180910390f35b610362600480360381019061035d91906127f9565b610acd565b005b61037e60048036038101906103799190612653565b610af5565b60405161038b9190613099565b60405180910390f35b6103ae60048036038101906103a99190612762565b610b89565b005b6103ca60048036038101906103c59190612626565b610c2a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561043d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043490613136565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610570575061056f82610cae565b5b9050919050565b6004805461058490613536565b80601f01602080910402602001604051908101604052809291908181526020018280546105b090613536565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b505050505081565b606060066000838152602001908152602001600020805461062590613536565b80601f016020809104026020016040519081016040528092919081815260200182805461065190613536565b801561069e5780601f106106735761010080835404028352916020019161069e565b820191906000526020600020905b81548152906001019060200180831161068157829003601f168201915b50505050509050919050565b6106b2610d18565b6106cd83838360405180602001604052806000815250610d96565b505050565b6106da610f47565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610720575061071f8561071a610f47565b610af5565b5b61075f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075690613156565b60405180910390fd5b61076c8585858585610f4f565b5050505050565b606081518351146107b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b090613216565b60405180910390fd5b6000835167ffffffffffffffff8111156107d6576107d561366f565b5b6040519080825280602002602001820160405280156108045781602001602082028036833780820191505090505b50905060005b84518110156108815761085185828151811061082957610828613640565b5b602002602001015185838151811061084457610843613640565b5b60200260200101516103cc565b82828151811061086457610863613640565b5b6020026020010181815250508061087a90613599565b905061080a565b508091505092915050565b610894610d18565b61089f858585611271565b6108ba85838360405180602001604052806000815250611540565b5050505050565b6108c9610d18565b6108d3600061176d565b565b6108e0338383611271565b5050565b6108ec610d18565b806006600084815260200190815260200160002090805190602001906109139291906122fe565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8260405161094491906130b4565b60405180910390a25050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6005805461098790613536565b80601f01602080910402602001604051908101604052809291908181526020018280546109b390613536565b8015610a005780601f106109d557610100808354040283529160200191610a00565b820191906000526020600020905b8154815290600101906020018083116109e357829003601f168201915b505050505081565b610a1a610a13610f47565b8383611833565b5050565b610a293383836119a0565b5050565b60066020528060005260406000206000915090508054610a4c90613536565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7890613536565b8015610ac55780601f10610a9a57610100808354040283529160200191610ac5565b820191906000526020600020905b815481529060010190602001808311610aa857829003601f168201915b505050505081565b610ad5610d18565b610af083838360405180602001604052806000815250611540565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b91610f47565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610bd75750610bd685610bd1610f47565b610af5565b5b610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90613156565b60405180910390fd5b610c238585858585611be7565b5050505050565b610c32610d18565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906130f6565b60405180910390fd5b610cab8161176d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d20610f47565b73ffffffffffffffffffffffffffffffffffffffff16610d3e610950565b73ffffffffffffffffffffffffffffffffffffffff1614610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b906131d6565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90613256565b60405180910390fd5b6000610e10610f47565b90506000610e1d85611e83565b90506000610e2a85611e83565b9050610e3b83600089858589611efd565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e9a919061342a565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051610f189291906132b1565b60405180910390a4610f2f83600089858589611f05565b610f3e83600089898989611f0d565b50505050505050565b600033905090565b8151835114610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90613236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613176565b60405180910390fd5b600061100d610f47565b905061101d818787878787611efd565b60005b84518110156111ce57600085828151811061103e5761103d613640565b5b60200260200101519050600085838151811061105d5761105c613640565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f5906131b6565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111b3919061342a565b92505081905550505050806111c790613599565b9050611020565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611245929190613062565b60405180910390a461125b818787878787611f05565b6112698187878787876120f4565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890613196565b60405180910390fd5b8051825114611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c90613236565b60405180910390fd5b600061132f610f47565b905061134f81856000868660405180602001604052806000815250611efd565b60005b835181101561149c5760008482815181106113705761136f613640565b5b60200260200101519050600084838151811061138f5761138e613640565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790613116565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061149490613599565b915050611352565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611514929190613062565b60405180910390a461153a81856000868660405180602001604052806000815250611f05565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790613256565b60405180910390fd5b81518351146115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90613236565b60405180910390fd5b60006115fe610f47565b905061160f81600087878787611efd565b60005b84518110156116c85783818151811061162e5761162d613640565b5b602002602001015160008087848151811061164c5761164b613640565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ae919061342a565b9250508190555080806116c090613599565b915050611612565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611740929190613062565b60405180910390a461175781600087878787611f05565b611766816000878787876120f4565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611899906131f6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119939190613099565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0790613196565b60405180910390fd5b6000611a1a610f47565b90506000611a2784611e83565b90506000611a3484611e83565b9050611a5483876000858560405180602001604052806000815250611efd565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae290613116565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611bb89291906132b1565b60405180910390a4611bde84886000868660405180602001604052806000815250611f05565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613176565b60405180910390fd5b6000611c61610f47565b90506000611c6e85611e83565b90506000611c7b85611e83565b9050611c8b838989858589611efd565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d19906131b6565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd7919061342a565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611e549291906132b1565b60405180910390a4611e6a848a8a86868a611f05565b611e78848a8a8a8a8a611f0d565b505050505050505050565b60606000600167ffffffffffffffff811115611ea257611ea161366f565b5b604051908082528060200260200182016040528015611ed05781602001602082028036833780820191505090505b5090508281600081518110611ee857611ee7613640565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b611f2c8473ffffffffffffffffffffffffffffffffffffffff166122db565b156120ec578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611f72959493929190612fe6565b602060405180830381600087803b158015611f8c57600080fd5b505af1925050508015611fbd57506040513d601f19601f82011682018060405250810190611fba9190612b5f565b60015b61206357611fc961369e565b806308c379a014156120265750611fde613b23565b80611fe95750612028565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d91906130b4565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90613276565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e1906130d6565b60405180910390fd5b505b505050505050565b6121138473ffffffffffffffffffffffffffffffffffffffff166122db565b156122d3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612159959493929190612f7e565b602060405180830381600087803b15801561217357600080fd5b505af19250505080156121a457506040513d601f19601f820116820180604052508101906121a19190612b5f565b60015b61224a576121b061369e565b806308c379a0141561220d57506121c5613b23565b806121d0575061220f565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220491906130b4565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224190613276565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c8906130d6565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461230a90613536565b90600052602060002090601f01602090048101928261232c5760008555612373565b82601f1061234557805160ff1916838001178555612373565b82800160010185558215612373579182015b82811115612372578251825591602001919060010190612357565b5b5090506123809190612384565b5090565b5b8082111561239d576000816000905550600101612385565b5090565b60006123b46123af846132ff565b6132da565b905080838252602082019050828560208602820111156123d7576123d66136c5565b5b60005b8581101561240757816123ed8882612505565b8452602084019350602083019250506001810190506123da565b5050509392505050565b600061242461241f8461332b565b6132da565b90508083825260208201905082856020860282011115612447576124466136c5565b5b60005b85811015612477578161245d8882612611565b84526020840193506020830192505060018101905061244a565b5050509392505050565b600061249461248f84613357565b6132da565b9050828152602081018484840111156124b0576124af6136ca565b5b6124bb8482856134f4565b509392505050565b60006124d66124d184613388565b6132da565b9050828152602081018484840111156124f2576124f16136ca565b5b6124fd8482856134f4565b509392505050565b60008135905061251481613bb9565b92915050565b600082601f83011261252f5761252e6136c0565b5b813561253f8482602086016123a1565b91505092915050565b600082601f83011261255d5761255c6136c0565b5b813561256d848260208601612411565b91505092915050565b60008135905061258581613bd0565b92915050565b60008135905061259a81613be7565b92915050565b6000815190506125af81613be7565b92915050565b600082601f8301126125ca576125c96136c0565b5b81356125da848260208601612481565b91505092915050565b600082601f8301126125f8576125f76136c0565b5b81356126088482602086016124c3565b91505092915050565b60008135905061262081613bfe565b92915050565b60006020828403121561263c5761263b6136d4565b5b600061264a84828501612505565b91505092915050565b6000806040838503121561266a576126696136d4565b5b600061267885828601612505565b925050602061268985828601612505565b9150509250929050565b600080600080600060a086880312156126af576126ae6136d4565b5b60006126bd88828901612505565b95505060206126ce88828901612505565b945050604086013567ffffffffffffffff8111156126ef576126ee6136cf565b5b6126fb88828901612548565b935050606086013567ffffffffffffffff81111561271c5761271b6136cf565b5b61272888828901612548565b925050608086013567ffffffffffffffff811115612749576127486136cf565b5b612755888289016125b5565b9150509295509295909350565b600080600080600060a0868803121561277e5761277d6136d4565b5b600061278c88828901612505565b955050602061279d88828901612505565b94505060406127ae88828901612611565b93505060606127bf88828901612611565b925050608086013567ffffffffffffffff8111156127e0576127df6136cf565b5b6127ec888289016125b5565b9150509295509295909350565b600080600060608486031215612812576128116136d4565b5b600061282086828701612505565b935050602084013567ffffffffffffffff811115612841576128406136cf565b5b61284d86828701612548565b925050604084013567ffffffffffffffff81111561286e5761286d6136cf565b5b61287a86828701612548565b9150509250925092565b600080600080600060a086880312156128a05761289f6136d4565b5b60006128ae88828901612505565b955050602086013567ffffffffffffffff8111156128cf576128ce6136cf565b5b6128db88828901612548565b945050604086013567ffffffffffffffff8111156128fc576128fb6136cf565b5b61290888828901612548565b935050606086013567ffffffffffffffff811115612929576129286136cf565b5b61293588828901612548565b925050608086013567ffffffffffffffff811115612956576129556136cf565b5b61296288828901612548565b9150509295509295909350565b60008060408385031215612986576129856136d4565b5b600061299485828601612505565b92505060206129a585828601612576565b9150509250929050565b600080604083850312156129c6576129c56136d4565b5b60006129d485828601612505565b92505060206129e585828601612611565b9150509250929050565b600080600060608486031215612a0857612a076136d4565b5b6000612a1686828701612505565b9350506020612a2786828701612611565b9250506040612a3886828701612611565b9150509250925092565b60008060408385031215612a5957612a586136d4565b5b600083013567ffffffffffffffff811115612a7757612a766136cf565b5b612a838582860161251a565b925050602083013567ffffffffffffffff811115612aa457612aa36136cf565b5b612ab085828601612548565b9150509250929050565b60008060408385031215612ad157612ad06136d4565b5b600083013567ffffffffffffffff811115612aef57612aee6136cf565b5b612afb85828601612548565b925050602083013567ffffffffffffffff811115612b1c57612b1b6136cf565b5b612b2885828601612548565b9150509250929050565b600060208284031215612b4857612b476136d4565b5b6000612b568482850161258b565b91505092915050565b600060208284031215612b7557612b746136d4565b5b6000612b83848285016125a0565b91505092915050565b600060208284031215612ba257612ba16136d4565b5b6000612bb084828501612611565b91505092915050565b60008060408385031215612bd057612bcf6136d4565b5b6000612bde85828601612611565b925050602083013567ffffffffffffffff811115612bff57612bfe6136cf565b5b612c0b858286016125e3565b9150509250929050565b60008060408385031215612c2c57612c2b6136d4565b5b6000612c3a85828601612611565b9250506020612c4b85828601612611565b9150509250929050565b6000612c618383612f45565b60208301905092915050565b612c7681613480565b82525050565b6000612c87826133c9565b612c9181856133f7565b9350612c9c836133b9565b8060005b83811015612ccd578151612cb48882612c55565b9750612cbf836133ea565b925050600181019050612ca0565b5085935050505092915050565b612ce381613492565b82525050565b6000612cf4826133d4565b612cfe8185613408565b9350612d0e818560208601613503565b612d17816136d9565b840191505092915050565b6000612d2d826133df565b612d378185613419565b9350612d47818560208601613503565b612d50816136d9565b840191505092915050565b6000612d68602883613419565b9150612d73826136f7565b604082019050919050565b6000612d8b602683613419565b9150612d9682613746565b604082019050919050565b6000612dae602483613419565b9150612db982613795565b604082019050919050565b6000612dd1602a83613419565b9150612ddc826137e4565b604082019050919050565b6000612df4602e83613419565b9150612dff82613833565b604082019050919050565b6000612e17602583613419565b9150612e2282613882565b604082019050919050565b6000612e3a602383613419565b9150612e45826138d1565b604082019050919050565b6000612e5d602a83613419565b9150612e6882613920565b604082019050919050565b6000612e80602083613419565b9150612e8b8261396f565b602082019050919050565b6000612ea3602983613419565b9150612eae82613998565b604082019050919050565b6000612ec6602983613419565b9150612ed1826139e7565b604082019050919050565b6000612ee9602883613419565b9150612ef482613a36565b604082019050919050565b6000612f0c602183613419565b9150612f1782613a85565b604082019050919050565b6000612f2f603483613419565b9150612f3a82613ad4565b604082019050919050565b612f4e816134ea565b82525050565b612f5d816134ea565b82525050565b6000602082019050612f786000830184612c6d565b92915050565b600060a082019050612f936000830188612c6d565b612fa06020830187612c6d565b8181036040830152612fb28186612c7c565b90508181036060830152612fc68185612c7c565b90508181036080830152612fda8184612ce9565b90509695505050505050565b600060a082019050612ffb6000830188612c6d565b6130086020830187612c6d565b6130156040830186612f54565b6130226060830185612f54565b81810360808301526130348184612ce9565b90509695505050505050565b6000602082019050818103600083015261305a8184612c7c565b905092915050565b6000604082019050818103600083015261307c8185612c7c565b905081810360208301526130908184612c7c565b90509392505050565b60006020820190506130ae6000830184612cda565b92915050565b600060208201905081810360008301526130ce8184612d22565b905092915050565b600060208201905081810360008301526130ef81612d5b565b9050919050565b6000602082019050818103600083015261310f81612d7e565b9050919050565b6000602082019050818103600083015261312f81612da1565b9050919050565b6000602082019050818103600083015261314f81612dc4565b9050919050565b6000602082019050818103600083015261316f81612de7565b9050919050565b6000602082019050818103600083015261318f81612e0a565b9050919050565b600060208201905081810360008301526131af81612e2d565b9050919050565b600060208201905081810360008301526131cf81612e50565b9050919050565b600060208201905081810360008301526131ef81612e73565b9050919050565b6000602082019050818103600083015261320f81612e96565b9050919050565b6000602082019050818103600083015261322f81612eb9565b9050919050565b6000602082019050818103600083015261324f81612edc565b9050919050565b6000602082019050818103600083015261326f81612eff565b9050919050565b6000602082019050818103600083015261328f81612f22565b9050919050565b60006020820190506132ab6000830184612f54565b92915050565b60006040820190506132c66000830185612f54565b6132d36020830184612f54565b9392505050565b60006132e46132f5565b90506132f08282613568565b919050565b6000604051905090565b600067ffffffffffffffff82111561331a5761331961366f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133465761334561366f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133725761337161366f565b5b61337b826136d9565b9050602081019050919050565b600067ffffffffffffffff8211156133a3576133a261366f565b5b6133ac826136d9565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613435826134ea565b9150613440836134ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613475576134746135e2565b5b828201905092915050565b600061348b826134ca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613521578082015181840152602081019050613506565b83811115613530576000848401525b50505050565b6000600282049050600182168061354e57607f821691505b6020821081141561356257613561613611565b5b50919050565b613571826136d9565b810181811067ffffffffffffffff821117156135905761358f61366f565b5b80604052505050565b60006135a4826134ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135d7576135d66135e2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156136bd5760046000803e6136ba6000516136ea565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600060443d1015613b3357613bb6565b613b3b6132f5565b60043d036004823e80513d602482011167ffffffffffffffff82111715613b63575050613bb6565b808201805167ffffffffffffffff811115613b815750505050613bb6565b80602083010160043d038501811115613b9e575050505050613bb6565b613bad82602001850186613568565b82955050505050505b90565b613bc281613480565b8114613bcd57600080fd5b50565b613bd981613492565b8114613be457600080fd5b50565b613bf08161349e565b8114613bfb57600080fd5b50565b613c07816134ea565b8114613c1257600080fd5b5056fea26469706673582212200e631dc0943e797bd19bb0021c3ec470e0a1506e66ee458ca569bb93cff1b7ea64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012b5760003560e01c8063862440e2116100ad578063c87b56dd11610071578063c87b56dd14610318578063d81d0a1514610348578063e985e9c514610364578063f242432a14610394578063f2fde38b146103b05761012b565b8063862440e2146102885780638da5cb5b146102a457806395d89b41146102c2578063a22cb465146102e0578063b390c0ab146102fc5761012b565b80632eb2c2d6116100f45780632eb2c2d6146101fa5780634e1273f414610216578063510f410414610246578063715018a61461026257806383ca4b6f1461026c5761012b565b8062fdd58e1461013057806301ffc9a71461016057806306fdde03146101905780630e89341c146101ae578063156e29f6146101de575b600080fd5b61014a600480360381019061014591906129af565b6103cc565b6040516101579190613296565b60405180910390f35b61017a60048036038101906101759190612b32565b610495565b6040516101879190613099565b60405180910390f35b610198610577565b6040516101a591906130b4565b60405180910390f35b6101c860048036038101906101c39190612b8c565b610605565b6040516101d591906130b4565b60405180910390f35b6101f860048036038101906101f391906129ef565b6106aa565b005b610214600480360381019061020f9190612693565b6106d2565b005b610230600480360381019061022b9190612a42565b610773565b60405161023d9190613040565b60405180910390f35b610260600480360381019061025b9190612884565b61088c565b005b61026a6108c1565b005b61028660048036038101906102819190612aba565b6108d5565b005b6102a2600480360381019061029d9190612bb9565b6108e4565b005b6102ac610950565b6040516102b99190612f63565b60405180910390f35b6102ca61097a565b6040516102d791906130b4565b60405180910390f35b6102fa60048036038101906102f5919061296f565b610a08565b005b61031660048036038101906103119190612c15565b610a1e565b005b610332600480360381019061032d9190612b8c565b610a2d565b60405161033f91906130b4565b60405180910390f35b610362600480360381019061035d91906127f9565b610acd565b005b61037e60048036038101906103799190612653565b610af5565b60405161038b9190613099565b60405180910390f35b6103ae60048036038101906103a99190612762565b610b89565b005b6103ca60048036038101906103c59190612626565b610c2a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561043d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043490613136565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610570575061056f82610cae565b5b9050919050565b6004805461058490613536565b80601f01602080910402602001604051908101604052809291908181526020018280546105b090613536565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b505050505081565b606060066000838152602001908152602001600020805461062590613536565b80601f016020809104026020016040519081016040528092919081815260200182805461065190613536565b801561069e5780601f106106735761010080835404028352916020019161069e565b820191906000526020600020905b81548152906001019060200180831161068157829003601f168201915b50505050509050919050565b6106b2610d18565b6106cd83838360405180602001604052806000815250610d96565b505050565b6106da610f47565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610720575061071f8561071a610f47565b610af5565b5b61075f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075690613156565b60405180910390fd5b61076c8585858585610f4f565b5050505050565b606081518351146107b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b090613216565b60405180910390fd5b6000835167ffffffffffffffff8111156107d6576107d561366f565b5b6040519080825280602002602001820160405280156108045781602001602082028036833780820191505090505b50905060005b84518110156108815761085185828151811061082957610828613640565b5b602002602001015185838151811061084457610843613640565b5b60200260200101516103cc565b82828151811061086457610863613640565b5b6020026020010181815250508061087a90613599565b905061080a565b508091505092915050565b610894610d18565b61089f858585611271565b6108ba85838360405180602001604052806000815250611540565b5050505050565b6108c9610d18565b6108d3600061176d565b565b6108e0338383611271565b5050565b6108ec610d18565b806006600084815260200190815260200160002090805190602001906109139291906122fe565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8260405161094491906130b4565b60405180910390a25050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6005805461098790613536565b80601f01602080910402602001604051908101604052809291908181526020018280546109b390613536565b8015610a005780601f106109d557610100808354040283529160200191610a00565b820191906000526020600020905b8154815290600101906020018083116109e357829003601f168201915b505050505081565b610a1a610a13610f47565b8383611833565b5050565b610a293383836119a0565b5050565b60066020528060005260406000206000915090508054610a4c90613536565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7890613536565b8015610ac55780601f10610a9a57610100808354040283529160200191610ac5565b820191906000526020600020905b815481529060010190602001808311610aa857829003601f168201915b505050505081565b610ad5610d18565b610af083838360405180602001604052806000815250611540565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b91610f47565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610bd75750610bd685610bd1610f47565b610af5565b5b610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90613156565b60405180910390fd5b610c238585858585611be7565b5050505050565b610c32610d18565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906130f6565b60405180910390fd5b610cab8161176d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d20610f47565b73ffffffffffffffffffffffffffffffffffffffff16610d3e610950565b73ffffffffffffffffffffffffffffffffffffffff1614610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b906131d6565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90613256565b60405180910390fd5b6000610e10610f47565b90506000610e1d85611e83565b90506000610e2a85611e83565b9050610e3b83600089858589611efd565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e9a919061342a565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051610f189291906132b1565b60405180910390a4610f2f83600089858589611f05565b610f3e83600089898989611f0d565b50505050505050565b600033905090565b8151835114610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90613236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613176565b60405180910390fd5b600061100d610f47565b905061101d818787878787611efd565b60005b84518110156111ce57600085828151811061103e5761103d613640565b5b60200260200101519050600085838151811061105d5761105c613640565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f5906131b6565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111b3919061342a565b92505081905550505050806111c790613599565b9050611020565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611245929190613062565b60405180910390a461125b818787878787611f05565b6112698187878787876120f4565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890613196565b60405180910390fd5b8051825114611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c90613236565b60405180910390fd5b600061132f610f47565b905061134f81856000868660405180602001604052806000815250611efd565b60005b835181101561149c5760008482815181106113705761136f613640565b5b60200260200101519050600084838151811061138f5761138e613640565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790613116565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061149490613599565b915050611352565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611514929190613062565b60405180910390a461153a81856000868660405180602001604052806000815250611f05565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790613256565b60405180910390fd5b81518351146115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90613236565b60405180910390fd5b60006115fe610f47565b905061160f81600087878787611efd565b60005b84518110156116c85783818151811061162e5761162d613640565b5b602002602001015160008087848151811061164c5761164b613640565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ae919061342a565b9250508190555080806116c090613599565b915050611612565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611740929190613062565b60405180910390a461175781600087878787611f05565b611766816000878787876120f4565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611899906131f6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119939190613099565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0790613196565b60405180910390fd5b6000611a1a610f47565b90506000611a2784611e83565b90506000611a3484611e83565b9050611a5483876000858560405180602001604052806000815250611efd565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae290613116565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611bb89291906132b1565b60405180910390a4611bde84886000868660405180602001604052806000815250611f05565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613176565b60405180910390fd5b6000611c61610f47565b90506000611c6e85611e83565b90506000611c7b85611e83565b9050611c8b838989858589611efd565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d19906131b6565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd7919061342a565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611e549291906132b1565b60405180910390a4611e6a848a8a86868a611f05565b611e78848a8a8a8a8a611f0d565b505050505050505050565b60606000600167ffffffffffffffff811115611ea257611ea161366f565b5b604051908082528060200260200182016040528015611ed05781602001602082028036833780820191505090505b5090508281600081518110611ee857611ee7613640565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b611f2c8473ffffffffffffffffffffffffffffffffffffffff166122db565b156120ec578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611f72959493929190612fe6565b602060405180830381600087803b158015611f8c57600080fd5b505af1925050508015611fbd57506040513d601f19601f82011682018060405250810190611fba9190612b5f565b60015b61206357611fc961369e565b806308c379a014156120265750611fde613b23565b80611fe95750612028565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d91906130b4565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90613276565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e1906130d6565b60405180910390fd5b505b505050505050565b6121138473ffffffffffffffffffffffffffffffffffffffff166122db565b156122d3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612159959493929190612f7e565b602060405180830381600087803b15801561217357600080fd5b505af19250505080156121a457506040513d601f19601f820116820180604052508101906121a19190612b5f565b60015b61224a576121b061369e565b806308c379a0141561220d57506121c5613b23565b806121d0575061220f565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220491906130b4565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224190613276565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c8906130d6565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461230a90613536565b90600052602060002090601f01602090048101928261232c5760008555612373565b82601f1061234557805160ff1916838001178555612373565b82800160010185558215612373579182015b82811115612372578251825591602001919060010190612357565b5b5090506123809190612384565b5090565b5b8082111561239d576000816000905550600101612385565b5090565b60006123b46123af846132ff565b6132da565b905080838252602082019050828560208602820111156123d7576123d66136c5565b5b60005b8581101561240757816123ed8882612505565b8452602084019350602083019250506001810190506123da565b5050509392505050565b600061242461241f8461332b565b6132da565b90508083825260208201905082856020860282011115612447576124466136c5565b5b60005b85811015612477578161245d8882612611565b84526020840193506020830192505060018101905061244a565b5050509392505050565b600061249461248f84613357565b6132da565b9050828152602081018484840111156124b0576124af6136ca565b5b6124bb8482856134f4565b509392505050565b60006124d66124d184613388565b6132da565b9050828152602081018484840111156124f2576124f16136ca565b5b6124fd8482856134f4565b509392505050565b60008135905061251481613bb9565b92915050565b600082601f83011261252f5761252e6136c0565b5b813561253f8482602086016123a1565b91505092915050565b600082601f83011261255d5761255c6136c0565b5b813561256d848260208601612411565b91505092915050565b60008135905061258581613bd0565b92915050565b60008135905061259a81613be7565b92915050565b6000815190506125af81613be7565b92915050565b600082601f8301126125ca576125c96136c0565b5b81356125da848260208601612481565b91505092915050565b600082601f8301126125f8576125f76136c0565b5b81356126088482602086016124c3565b91505092915050565b60008135905061262081613bfe565b92915050565b60006020828403121561263c5761263b6136d4565b5b600061264a84828501612505565b91505092915050565b6000806040838503121561266a576126696136d4565b5b600061267885828601612505565b925050602061268985828601612505565b9150509250929050565b600080600080600060a086880312156126af576126ae6136d4565b5b60006126bd88828901612505565b95505060206126ce88828901612505565b945050604086013567ffffffffffffffff8111156126ef576126ee6136cf565b5b6126fb88828901612548565b935050606086013567ffffffffffffffff81111561271c5761271b6136cf565b5b61272888828901612548565b925050608086013567ffffffffffffffff811115612749576127486136cf565b5b612755888289016125b5565b9150509295509295909350565b600080600080600060a0868803121561277e5761277d6136d4565b5b600061278c88828901612505565b955050602061279d88828901612505565b94505060406127ae88828901612611565b93505060606127bf88828901612611565b925050608086013567ffffffffffffffff8111156127e0576127df6136cf565b5b6127ec888289016125b5565b9150509295509295909350565b600080600060608486031215612812576128116136d4565b5b600061282086828701612505565b935050602084013567ffffffffffffffff811115612841576128406136cf565b5b61284d86828701612548565b925050604084013567ffffffffffffffff81111561286e5761286d6136cf565b5b61287a86828701612548565b9150509250925092565b600080600080600060a086880312156128a05761289f6136d4565b5b60006128ae88828901612505565b955050602086013567ffffffffffffffff8111156128cf576128ce6136cf565b5b6128db88828901612548565b945050604086013567ffffffffffffffff8111156128fc576128fb6136cf565b5b61290888828901612548565b935050606086013567ffffffffffffffff811115612929576129286136cf565b5b61293588828901612548565b925050608086013567ffffffffffffffff811115612956576129556136cf565b5b61296288828901612548565b9150509295509295909350565b60008060408385031215612986576129856136d4565b5b600061299485828601612505565b92505060206129a585828601612576565b9150509250929050565b600080604083850312156129c6576129c56136d4565b5b60006129d485828601612505565b92505060206129e585828601612611565b9150509250929050565b600080600060608486031215612a0857612a076136d4565b5b6000612a1686828701612505565b9350506020612a2786828701612611565b9250506040612a3886828701612611565b9150509250925092565b60008060408385031215612a5957612a586136d4565b5b600083013567ffffffffffffffff811115612a7757612a766136cf565b5b612a838582860161251a565b925050602083013567ffffffffffffffff811115612aa457612aa36136cf565b5b612ab085828601612548565b9150509250929050565b60008060408385031215612ad157612ad06136d4565b5b600083013567ffffffffffffffff811115612aef57612aee6136cf565b5b612afb85828601612548565b925050602083013567ffffffffffffffff811115612b1c57612b1b6136cf565b5b612b2885828601612548565b9150509250929050565b600060208284031215612b4857612b476136d4565b5b6000612b568482850161258b565b91505092915050565b600060208284031215612b7557612b746136d4565b5b6000612b83848285016125a0565b91505092915050565b600060208284031215612ba257612ba16136d4565b5b6000612bb084828501612611565b91505092915050565b60008060408385031215612bd057612bcf6136d4565b5b6000612bde85828601612611565b925050602083013567ffffffffffffffff811115612bff57612bfe6136cf565b5b612c0b858286016125e3565b9150509250929050565b60008060408385031215612c2c57612c2b6136d4565b5b6000612c3a85828601612611565b9250506020612c4b85828601612611565b9150509250929050565b6000612c618383612f45565b60208301905092915050565b612c7681613480565b82525050565b6000612c87826133c9565b612c9181856133f7565b9350612c9c836133b9565b8060005b83811015612ccd578151612cb48882612c55565b9750612cbf836133ea565b925050600181019050612ca0565b5085935050505092915050565b612ce381613492565b82525050565b6000612cf4826133d4565b612cfe8185613408565b9350612d0e818560208601613503565b612d17816136d9565b840191505092915050565b6000612d2d826133df565b612d378185613419565b9350612d47818560208601613503565b612d50816136d9565b840191505092915050565b6000612d68602883613419565b9150612d73826136f7565b604082019050919050565b6000612d8b602683613419565b9150612d9682613746565b604082019050919050565b6000612dae602483613419565b9150612db982613795565b604082019050919050565b6000612dd1602a83613419565b9150612ddc826137e4565b604082019050919050565b6000612df4602e83613419565b9150612dff82613833565b604082019050919050565b6000612e17602583613419565b9150612e2282613882565b604082019050919050565b6000612e3a602383613419565b9150612e45826138d1565b604082019050919050565b6000612e5d602a83613419565b9150612e6882613920565b604082019050919050565b6000612e80602083613419565b9150612e8b8261396f565b602082019050919050565b6000612ea3602983613419565b9150612eae82613998565b604082019050919050565b6000612ec6602983613419565b9150612ed1826139e7565b604082019050919050565b6000612ee9602883613419565b9150612ef482613a36565b604082019050919050565b6000612f0c602183613419565b9150612f1782613a85565b604082019050919050565b6000612f2f603483613419565b9150612f3a82613ad4565b604082019050919050565b612f4e816134ea565b82525050565b612f5d816134ea565b82525050565b6000602082019050612f786000830184612c6d565b92915050565b600060a082019050612f936000830188612c6d565b612fa06020830187612c6d565b8181036040830152612fb28186612c7c565b90508181036060830152612fc68185612c7c565b90508181036080830152612fda8184612ce9565b90509695505050505050565b600060a082019050612ffb6000830188612c6d565b6130086020830187612c6d565b6130156040830186612f54565b6130226060830185612f54565b81810360808301526130348184612ce9565b90509695505050505050565b6000602082019050818103600083015261305a8184612c7c565b905092915050565b6000604082019050818103600083015261307c8185612c7c565b905081810360208301526130908184612c7c565b90509392505050565b60006020820190506130ae6000830184612cda565b92915050565b600060208201905081810360008301526130ce8184612d22565b905092915050565b600060208201905081810360008301526130ef81612d5b565b9050919050565b6000602082019050818103600083015261310f81612d7e565b9050919050565b6000602082019050818103600083015261312f81612da1565b9050919050565b6000602082019050818103600083015261314f81612dc4565b9050919050565b6000602082019050818103600083015261316f81612de7565b9050919050565b6000602082019050818103600083015261318f81612e0a565b9050919050565b600060208201905081810360008301526131af81612e2d565b9050919050565b600060208201905081810360008301526131cf81612e50565b9050919050565b600060208201905081810360008301526131ef81612e73565b9050919050565b6000602082019050818103600083015261320f81612e96565b9050919050565b6000602082019050818103600083015261322f81612eb9565b9050919050565b6000602082019050818103600083015261324f81612edc565b9050919050565b6000602082019050818103600083015261326f81612eff565b9050919050565b6000602082019050818103600083015261328f81612f22565b9050919050565b60006020820190506132ab6000830184612f54565b92915050565b60006040820190506132c66000830185612f54565b6132d36020830184612f54565b9392505050565b60006132e46132f5565b90506132f08282613568565b919050565b6000604051905090565b600067ffffffffffffffff82111561331a5761331961366f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133465761334561366f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133725761337161366f565b5b61337b826136d9565b9050602081019050919050565b600067ffffffffffffffff8211156133a3576133a261366f565b5b6133ac826136d9565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613435826134ea565b9150613440836134ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613475576134746135e2565b5b828201905092915050565b600061348b826134ca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613521578082015181840152602081019050613506565b83811115613530576000848401525b50505050565b6000600282049050600182168061354e57607f821691505b6020821081141561356257613561613611565b5b50919050565b613571826136d9565b810181811067ffffffffffffffff821117156135905761358f61366f565b5b80604052505050565b60006135a4826134ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135d7576135d66135e2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156136bd5760046000803e6136ba6000516136ea565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600060443d1015613b3357613bb6565b613b3b6132f5565b60043d036004823e80513d602482011167ffffffffffffffff82111715613b63575050613bb6565b808201805167ffffffffffffffff811115613b815750505050613bb6565b80602083010160043d038501811115613b9e575050505050613bb6565b613bad82602001850186613568565b82955050505050505b90565b613bc281613480565b8114613bcd57600080fd5b50565b613bd981613492565b8114613be457600080fd5b50565b613bf08161349e565b8114613bfb57600080fd5b50565b613c07816134ea565b8114613c1257600080fd5b5056fea26469706673582212200e631dc0943e797bd19bb0021c3ec470e0a1506e66ee458ca569bb93cff1b7ea64736f6c63430008070033
Deployed Bytecode Sourcemap
41711:1252:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26102:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25125:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41770:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42857:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41964:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28045:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26498:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42456:265;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4008:103;;;:::i;:::-;;42327:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42727:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3360:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41793:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27095:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42230:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41820:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42081:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27322:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27562:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4266:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26102:230;26188:7;26235:1;26216:21;;:7;:21;;;;26208:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26302:9;:13;26312:2;26302:13;;;;;;;;;;;:22;26316:7;26302:22;;;;;;;;;;;;;;;;26295:29;;26102:230;;;;:::o;25125:310::-;25227:4;25279:26;25264:41;;;:11;:41;;;;:110;;;;25337:37;25322:52;;;:11;:52;;;;25264:110;:163;;;;25391:36;25415:11;25391:23;:36::i;:::-;25264:163;25244:183;;25125:310;;;:::o;41770:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42857:101::-;42910:13;42939:8;:13;42948:3;42939:13;;;;;;;;;;;42932:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42857:101;;;:::o;41964:111::-;3246:13;:11;:13::i;:::-;42041:28:::1;42047:3;42052;42057:7;42041:28;;;;;;;;;;;::::0;:5:::1;:28::i;:::-;41964:111:::0;;;:::o;28045:438::-;28286:12;:10;:12::i;:::-;28278:20;;:4;:20;;;:60;;;;28302:36;28319:4;28325:12;:10;:12::i;:::-;28302:16;:36::i;:::-;28278:60;28256:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;28423:52;28446:4;28452:2;28456:3;28461:7;28470:4;28423:22;:52::i;:::-;28045:438;;;;;:::o;26498:524::-;26654:16;26715:3;:10;26696:8;:15;:29;26688:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;26784:30;26831:8;:15;26817:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26784:63;;26865:9;26860:122;26884:8;:15;26880:1;:19;26860:122;;;26940:30;26950:8;26959:1;26950:11;;;;;;;;:::i;:::-;;;;;;;;26963:3;26967:1;26963:6;;;;;;;;:::i;:::-;;;;;;;;26940:9;:30::i;:::-;26921:13;26935:1;26921:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;26901:3;;;;:::i;:::-;;;26860:122;;;;27001:13;26994:20;;;26498:524;;;;:::o;42456:265::-;3246:13;:11;:13::i;:::-;42622:41:::1;42633:5;42640:8;42650:12;42622:10;:41::i;:::-;42670:45;42681:5;42688:8;42698:12;42670:45;;;;;;;;;;;::::0;:10:::1;:45::i;:::-;42456:265:::0;;;;;:::o;4008:103::-;3246:13;:11;:13::i;:::-;4073:30:::1;4100:1;4073:18;:30::i;:::-;4008:103::o:0;42327:123::-;42406:38;42417:10;42429:4;42435:8;42406:10;:38::i;:::-;42327:123;;:::o;42727:124::-;3246:13;:11;:13::i;:::-;42815:4:::1;42799:8;:13;42808:3;42799:13;;;;;;;;;;;:20;;;;;;;;;;;;:::i;:::-;;42841:3;42831:14;42835:4;42831:14;;;;;;:::i;:::-;;;;;;;;42727:124:::0;;:::o;3360:87::-;3406:7;3433:6;;;;;;;;;;;3426:13;;3360:87;:::o;41793:20::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27095:155::-;27190:52;27209:12;:10;:12::i;:::-;27223:8;27233;27190:18;:52::i;:::-;27095:155;;:::o;42230:91::-;42284:31;42290:10;42302:3;42307:7;42284:5;:31::i;:::-;42230:91;;:::o;41820:39::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42081:143::-;3246:13;:11;:13::i;:::-;42183:35:::1;42194:3;42199:4;42205:8;42183:35;;;;;;;;;;;::::0;:10:::1;:35::i;:::-;42081:143:::0;;;:::o;27322:168::-;27421:4;27445:18;:27;27464:7;27445:27;;;;;;;;;;;;;;;:37;27473:8;27445:37;;;;;;;;;;;;;;;;;;;;;;;;;27438:44;;27322:168;;;;:::o;27562:406::-;27778:12;:10;:12::i;:::-;27770:20;;:4;:20;;;:60;;;;27794:36;27811:4;27817:12;:10;:12::i;:::-;27794:16;:36::i;:::-;27770:60;27748:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;27915:45;27933:4;27939:2;27943;27947:6;27955:4;27915:17;:45::i;:::-;27562:406;;;;;:::o;4266:201::-;3246:13;:11;:13::i;:::-;4375:1:::1;4355:22;;:8;:22;;;;4347:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4431:28;4450:8;4431:18;:28::i;:::-;4266:201:::0;:::o;16194:157::-;16279:4;16318:25;16303:40;;;:11;:40;;;;16296:47;;16194:157;;;:::o;3525:132::-;3600:12;:10;:12::i;:::-;3589:23;;:7;:5;:7::i;:::-;:23;;;3581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3525:132::o;32743:729::-;32910:1;32896:16;;:2;:16;;;;32888:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32963:16;32982:12;:10;:12::i;:::-;32963:31;;33005:20;33028:21;33046:2;33028:17;:21::i;:::-;33005:44;;33060:24;33087:25;33105:6;33087:17;:25::i;:::-;33060:52;;33125:66;33146:8;33164:1;33168:2;33172:3;33177:7;33186:4;33125:20;:66::i;:::-;33225:6;33204:9;:13;33214:2;33204:13;;;;;;;;;;;:17;33218:2;33204:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;33284:2;33247:52;;33280:1;33247:52;;33262:8;33247:52;;;33288:2;33292:6;33247:52;;;;;;;:::i;:::-;;;;;;;;33312:65;33332:8;33350:1;33354:2;33358:3;33363:7;33372:4;33312:19;:65::i;:::-;33390:74;33421:8;33439:1;33443:2;33447;33451:6;33459:4;33390:30;:74::i;:::-;32877:595;;;32743:729;;;;:::o;1858:98::-;1911:7;1938:10;1931:17;;1858:98;:::o;30279:1146::-;30506:7;:14;30492:3;:10;:28;30484:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;30598:1;30584:16;;:2;:16;;;;30576:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;30655:16;30674:12;:10;:12::i;:::-;30655:31;;30699:60;30720:8;30730:4;30736:2;30740:3;30745:7;30754:4;30699:20;:60::i;:::-;30777:9;30772:421;30796:3;:10;30792:1;:14;30772:421;;;30828:10;30841:3;30845:1;30841:6;;;;;;;;:::i;:::-;;;;;;;;30828:19;;30862:14;30879:7;30887:1;30879:10;;;;;;;;:::i;:::-;;;;;;;;30862:27;;30906:19;30928:9;:13;30938:2;30928:13;;;;;;;;;;;:19;30942:4;30928:19;;;;;;;;;;;;;;;;30906:41;;30985:6;30970:11;:21;;30962:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31118:6;31104:11;:20;31082:9;:13;31092:2;31082:13;;;;;;;;;;;:19;31096:4;31082:19;;;;;;;;;;;;;;;:42;;;;31175:6;31154:9;:13;31164:2;31154:13;;;;;;;;;;;:17;31168:2;31154:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;30813:380;;;30808:3;;;;:::i;:::-;;;30772:421;;;;31240:2;31210:47;;31234:4;31210:47;;31224:8;31210:47;;;31244:3;31249:7;31210:47;;;;;;;:::i;:::-;;;;;;;;31270:59;31290:8;31300:4;31306:2;31310:3;31315:7;31324:4;31270:19;:59::i;:::-;31342:75;31378:8;31388:4;31394:2;31398:3;31403:7;31412:4;31342:35;:75::i;:::-;30473:952;30279:1146;;;;;:::o;36044:969::-;36212:1;36196:18;;:4;:18;;;;36188:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36287:7;:14;36273:3;:10;:28;36265:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;36359:16;36378:12;:10;:12::i;:::-;36359:31;;36403:66;36424:8;36434:4;36448:1;36452:3;36457:7;36403:66;;;;;;;;;;;;:20;:66::i;:::-;36487:9;36482:373;36506:3;:10;36502:1;:14;36482:373;;;36538:10;36551:3;36555:1;36551:6;;;;;;;;:::i;:::-;;;;;;;;36538:19;;36572:14;36589:7;36597:1;36589:10;;;;;;;;:::i;:::-;;;;;;;;36572:27;;36616:19;36638:9;:13;36648:2;36638:13;;;;;;;;;;;:19;36652:4;36638:19;;;;;;;;;;;;;;;;36616:41;;36695:6;36680:11;:21;;36672:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;36822:6;36808:11;:20;36786:9;:13;36796:2;36786:13;;;;;;;;;;;:19;36800:4;36786:19;;;;;;;;;;;;;;;:42;;;;36523:332;;;36518:3;;;;;:::i;:::-;;;;36482:373;;;;36910:1;36872:55;;36896:4;36872:55;;36886:8;36872:55;;;36914:3;36919:7;36872:55;;;;;;;:::i;:::-;;;;;;;;36940:65;36960:8;36970:4;36984:1;36988:3;36993:7;36940:65;;;;;;;;;;;;:19;:65::i;:::-;36177:836;36044:969;;;:::o;33875:813::-;34067:1;34053:16;;:2;:16;;;;34045:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34140:7;:14;34126:3;:10;:28;34118:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34212:16;34231:12;:10;:12::i;:::-;34212:31;;34256:66;34277:8;34295:1;34299:2;34303:3;34308:7;34317:4;34256:20;:66::i;:::-;34340:9;34335:103;34359:3;:10;34355:1;:14;34335:103;;;34416:7;34424:1;34416:10;;;;;;;;:::i;:::-;;;;;;;;34391:9;:17;34401:3;34405:1;34401:6;;;;;;;;:::i;:::-;;;;;;;;34391:17;;;;;;;;;;;:21;34409:2;34391:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;34371:3;;;;;:::i;:::-;;;;34335:103;;;;34491:2;34455:53;;34487:1;34455:53;;34469:8;34455:53;;;34495:3;34500:7;34455:53;;;;;;;:::i;:::-;;;;;;;;34521:65;34541:8;34559:1;34563:2;34567:3;34572:7;34581:4;34521:19;:65::i;:::-;34599:81;34635:8;34653:1;34657:2;34661:3;34666:7;34675:4;34599:35;:81::i;:::-;34034:654;33875:813;;;;:::o;4627:191::-;4701:16;4720:6;;;;;;;;;;;4701:25;;4746:8;4737:6;;:17;;;;;;;;;;;;;;;;;;4801:8;4770:40;;4791:8;4770:40;;;;;;;;;;;;4690:128;4627:191;:::o;37156:331::-;37311:8;37302:17;;:5;:17;;;;37294:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;37414:8;37376:18;:25;37395:5;37376:25;;;;;;;;;;;;;;;:35;37402:8;37376:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37460:8;37438:41;;37453:5;37438:41;;;37470:8;37438:41;;;;;;:::i;:::-;;;;;;;;37156:331;;;:::o;34986:808::-;35129:1;35113:18;;:4;:18;;;;35105:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35184:16;35203:12;:10;:12::i;:::-;35184:31;;35226:20;35249:21;35267:2;35249:17;:21::i;:::-;35226:44;;35281:24;35308:25;35326:6;35308:17;:25::i;:::-;35281:52;;35346:66;35367:8;35377:4;35391:1;35395:3;35400:7;35346:66;;;;;;;;;;;;:20;:66::i;:::-;35425:19;35447:9;:13;35457:2;35447:13;;;;;;;;;;;:19;35461:4;35447:19;;;;;;;;;;;;;;;;35425:41;;35500:6;35485:11;:21;;35477:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;35619:6;35605:11;:20;35583:9;:13;35593:2;35583:13;;;;;;;;;;;:19;35597:4;35583:19;;;;;;;;;;;;;;;:42;;;;35693:1;35654:54;;35679:4;35654:54;;35669:8;35654:54;;;35697:2;35701:6;35654:54;;;;;;;:::i;:::-;;;;;;;;35721:65;35741:8;35751:4;35765:1;35769:3;35774:7;35721:65;;;;;;;;;;;;:19;:65::i;:::-;35094:700;;;;34986:808;;;:::o;28947:974::-;29149:1;29135:16;;:2;:16;;;;29127:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;29206:16;29225:12;:10;:12::i;:::-;29206:31;;29248:20;29271:21;29289:2;29271:17;:21::i;:::-;29248:44;;29303:24;29330:25;29348:6;29330:17;:25::i;:::-;29303:52;;29368:60;29389:8;29399:4;29405:2;29409:3;29414:7;29423:4;29368:20;:60::i;:::-;29441:19;29463:9;:13;29473:2;29463:13;;;;;;;;;;;:19;29477:4;29463:19;;;;;;;;;;;;;;;;29441:41;;29516:6;29501:11;:21;;29493:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;29641:6;29627:11;:20;29605:9;:13;29615:2;29605:13;;;;;;;;;;;:19;29619:4;29605:19;;;;;;;;;;;;;;;:42;;;;29690:6;29669:9;:13;29679:2;29669:13;;;;;;;;;;;:17;29683:2;29669:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;29745:2;29714:46;;29739:4;29714:46;;29729:8;29714:46;;;29749:2;29753:6;29714:46;;;;;;;:::i;:::-;;;;;;;;29773:59;29793:8;29803:4;29809:2;29813:3;29818:7;29827:4;29773:19;:59::i;:::-;29845:68;29876:8;29886:4;29892:2;29896;29900:6;29908:4;29845:30;:68::i;:::-;29116:805;;;;28947:974;;;;;:::o;41422:198::-;41488:16;41517:22;41556:1;41542:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41517:41;;41580:7;41569:5;41575:1;41569:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;41607:5;41600:12;;;41422:198;;;:::o;38445:221::-;;;;;;;:::o;39621:220::-;;;;;;;:::o;39849:744::-;40064:15;:2;:13;;;:15::i;:::-;40060:526;;;40117:2;40100:38;;;40139:8;40149:4;40155:2;40159:6;40167:4;40100:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40096:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;40448:6;40441:14;;;;;;;;;;;:::i;:::-;;;;;;;;40096:479;;;40497:62;;;;;;;;;;:::i;:::-;;;;;;;;40096:479;40234:43;;;40222:55;;;:8;:55;;;;40218:154;;40302:50;;;;;;;;;;:::i;:::-;;;;;;;;40218:154;40173:214;40060:526;39849:744;;;;;;:::o;40601:813::-;40841:15;:2;:13;;;:15::i;:::-;40837:570;;;40894:2;40877:43;;;40921:8;40931:4;40937:3;40942:7;40951:4;40877:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40873:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;41269:6;41262:14;;;;;;;;;;;:::i;:::-;;;;;;;;40873:523;;;41318:62;;;;;;;;;;:::i;:::-;;;;;;;;40873:523;41050:48;;;41038:60;;;:8;:60;;;;41034:159;;41123:50;;;;;;;;;;:::i;:::-;;;;;;;;41034:159;40957:251;40837:570;40601:813;;;;;;:::o;6111:326::-;6171:4;6428:1;6406:7;:19;;;:23;6399:30;;6111:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722: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:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:329::-;4612:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:119;;;4667:79;;:::i;:::-;4629:119;4787:1;4812:53;4857:7;4848:6;4837:9;4833:22;4812:53;:::i;:::-;4802:63;;4758:117;4553:329;;;;:::o;4888:474::-;4956:6;4964;5013:2;5001:9;4992:7;4988:23;4984:32;4981:119;;;5019:79;;:::i;:::-;4981:119;5139:1;5164:53;5209:7;5200:6;5189:9;5185:22;5164:53;:::i;:::-;5154:63;;5110:117;5266:2;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5237:118;4888:474;;;;;:::o;5368:1509::-;5522:6;5530;5538;5546;5554;5603:3;5591:9;5582:7;5578:23;5574:33;5571:120;;;5610:79;;:::i;:::-;5571:120;5730:1;5755:53;5800:7;5791:6;5780:9;5776:22;5755:53;:::i;:::-;5745:63;;5701:117;5857:2;5883:53;5928:7;5919:6;5908:9;5904:22;5883:53;:::i;:::-;5873:63;;5828:118;6013:2;6002:9;5998:18;5985:32;6044:18;6036:6;6033:30;6030:117;;;6066:79;;:::i;:::-;6030:117;6171:78;6241:7;6232:6;6221:9;6217:22;6171:78;:::i;:::-;6161:88;;5956:303;6326:2;6315:9;6311:18;6298:32;6357:18;6349:6;6346:30;6343:117;;;6379:79;;:::i;:::-;6343:117;6484:78;6554:7;6545:6;6534:9;6530:22;6484:78;:::i;:::-;6474:88;;6269:303;6639:3;6628:9;6624:19;6611:33;6671:18;6663:6;6660:30;6657:117;;;6693:79;;:::i;:::-;6657:117;6798:62;6852:7;6843:6;6832:9;6828:22;6798:62;:::i;:::-;6788:72;;6582:288;5368:1509;;;;;;;;:::o;6883:1089::-;6987:6;6995;7003;7011;7019;7068:3;7056:9;7047:7;7043:23;7039:33;7036:120;;;7075:79;;:::i;:::-;7036:120;7195:1;7220:53;7265:7;7256:6;7245:9;7241:22;7220:53;:::i;:::-;7210:63;;7166:117;7322:2;7348:53;7393:7;7384:6;7373:9;7369:22;7348:53;:::i;:::-;7338:63;;7293:118;7450:2;7476:53;7521:7;7512:6;7501:9;7497:22;7476:53;:::i;:::-;7466:63;;7421:118;7578:2;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7549:118;7734:3;7723:9;7719:19;7706:33;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:62;7947:7;7938:6;7927:9;7923:22;7893:62;:::i;:::-;7883:72;;7677:288;6883:1089;;;;;;;;:::o;7978:1039::-;8105:6;8113;8121;8170:2;8158:9;8149:7;8145:23;8141:32;8138:119;;;8176:79;;:::i;:::-;8138:119;8296:1;8321:53;8366:7;8357:6;8346:9;8342:22;8321:53;:::i;:::-;8311:63;;8267:117;8451:2;8440:9;8436:18;8423:32;8482:18;8474:6;8471:30;8468:117;;;8504:79;;:::i;:::-;8468:117;8609:78;8679:7;8670:6;8659:9;8655:22;8609:78;:::i;:::-;8599:88;;8394:303;8764:2;8753:9;8749:18;8736:32;8795:18;8787:6;8784:30;8781:117;;;8817:79;;:::i;:::-;8781:117;8922:78;8992:7;8983:6;8972:9;8968:22;8922:78;:::i;:::-;8912:88;;8707:303;7978:1039;;;;;:::o;9023:1751::-;9218:6;9226;9234;9242;9250;9299:3;9287:9;9278:7;9274:23;9270:33;9267:120;;;9306:79;;:::i;:::-;9267:120;9426:1;9451:53;9496:7;9487:6;9476:9;9472:22;9451:53;:::i;:::-;9441:63;;9397:117;9581:2;9570:9;9566:18;9553:32;9612:18;9604:6;9601:30;9598:117;;;9634:79;;:::i;:::-;9598:117;9739:78;9809:7;9800:6;9789:9;9785:22;9739:78;:::i;:::-;9729:88;;9524:303;9894:2;9883:9;9879:18;9866:32;9925:18;9917:6;9914:30;9911:117;;;9947:79;;:::i;:::-;9911:117;10052:78;10122:7;10113:6;10102:9;10098:22;10052:78;:::i;:::-;10042:88;;9837:303;10207:2;10196:9;10192:18;10179:32;10238:18;10230:6;10227:30;10224:117;;;10260:79;;:::i;:::-;10224:117;10365:78;10435:7;10426:6;10415:9;10411:22;10365:78;:::i;:::-;10355:88;;10150:303;10520:3;10509:9;10505:19;10492:33;10552:18;10544:6;10541:30;10538:117;;;10574:79;;:::i;:::-;10538:117;10679:78;10749:7;10740:6;10729:9;10725:22;10679:78;:::i;:::-;10669:88;;10463:304;9023:1751;;;;;;;;:::o;10780:468::-;10845:6;10853;10902:2;10890:9;10881:7;10877:23;10873:32;10870:119;;;10908:79;;:::i;:::-;10870:119;11028:1;11053:53;11098:7;11089:6;11078:9;11074:22;11053:53;:::i;:::-;11043:63;;10999:117;11155:2;11181:50;11223:7;11214:6;11203:9;11199:22;11181:50;:::i;:::-;11171:60;;11126:115;10780:468;;;;;:::o;11254:474::-;11322:6;11330;11379:2;11367:9;11358:7;11354:23;11350:32;11347:119;;;11385:79;;:::i;:::-;11347:119;11505:1;11530:53;11575:7;11566:6;11555:9;11551:22;11530:53;:::i;:::-;11520:63;;11476:117;11632:2;11658:53;11703:7;11694:6;11683:9;11679:22;11658:53;:::i;:::-;11648:63;;11603:118;11254:474;;;;;:::o;11734:619::-;11811:6;11819;11827;11876:2;11864:9;11855:7;11851:23;11847:32;11844:119;;;11882:79;;:::i;:::-;11844:119;12002:1;12027:53;12072:7;12063:6;12052:9;12048:22;12027:53;:::i;:::-;12017:63;;11973:117;12129:2;12155:53;12200:7;12191:6;12180:9;12176:22;12155:53;:::i;:::-;12145:63;;12100:118;12257:2;12283:53;12328:7;12319:6;12308:9;12304:22;12283:53;:::i;:::-;12273:63;;12228:118;11734:619;;;;;:::o;12359:894::-;12477:6;12485;12534:2;12522:9;12513:7;12509:23;12505:32;12502:119;;;12540:79;;:::i;:::-;12502:119;12688:1;12677:9;12673:17;12660:31;12718:18;12710:6;12707:30;12704:117;;;12740:79;;:::i;:::-;12704:117;12845:78;12915:7;12906:6;12895:9;12891:22;12845:78;:::i;:::-;12835:88;;12631:302;13000:2;12989:9;12985:18;12972:32;13031:18;13023:6;13020:30;13017:117;;;13053:79;;:::i;:::-;13017:117;13158:78;13228:7;13219:6;13208:9;13204:22;13158:78;:::i;:::-;13148:88;;12943:303;12359:894;;;;;:::o;13259:::-;13377:6;13385;13434:2;13422:9;13413:7;13409:23;13405:32;13402:119;;;13440:79;;:::i;:::-;13402:119;13588:1;13577:9;13573:17;13560:31;13618:18;13610:6;13607:30;13604:117;;;13640:79;;:::i;:::-;13604:117;13745:78;13815:7;13806:6;13795:9;13791:22;13745:78;:::i;:::-;13735:88;;13531:302;13900:2;13889:9;13885:18;13872:32;13931:18;13923:6;13920:30;13917:117;;;13953:79;;:::i;:::-;13917:117;14058:78;14128:7;14119:6;14108:9;14104:22;14058:78;:::i;:::-;14048:88;;13843:303;13259:894;;;;;:::o;14159:327::-;14217:6;14266:2;14254:9;14245:7;14241:23;14237:32;14234:119;;;14272:79;;:::i;:::-;14234:119;14392:1;14417:52;14461:7;14452:6;14441:9;14437:22;14417:52;:::i;:::-;14407:62;;14363:116;14159:327;;;;:::o;14492:349::-;14561:6;14610:2;14598:9;14589:7;14585:23;14581:32;14578:119;;;14616:79;;:::i;:::-;14578:119;14736:1;14761:63;14816:7;14807:6;14796:9;14792:22;14761:63;:::i;:::-;14751:73;;14707:127;14492:349;;;;:::o;14847:329::-;14906:6;14955:2;14943:9;14934:7;14930:23;14926:32;14923:119;;;14961:79;;:::i;:::-;14923:119;15081:1;15106:53;15151:7;15142:6;15131:9;15127:22;15106:53;:::i;:::-;15096:63;;15052:117;14847:329;;;;:::o;15182:654::-;15260:6;15268;15317:2;15305:9;15296:7;15292:23;15288:32;15285:119;;;15323:79;;:::i;:::-;15285:119;15443:1;15468:53;15513:7;15504:6;15493:9;15489:22;15468:53;:::i;:::-;15458:63;;15414:117;15598:2;15587:9;15583:18;15570:32;15629:18;15621:6;15618:30;15615:117;;;15651:79;;:::i;:::-;15615:117;15756:63;15811:7;15802:6;15791:9;15787:22;15756:63;:::i;:::-;15746:73;;15541:288;15182:654;;;;;:::o;15842:474::-;15910:6;15918;15967:2;15955:9;15946:7;15942:23;15938:32;15935:119;;;15973:79;;:::i;:::-;15935:119;16093:1;16118:53;16163:7;16154:6;16143:9;16139:22;16118:53;:::i;:::-;16108:63;;16064:117;16220:2;16246:53;16291:7;16282:6;16271:9;16267:22;16246:53;:::i;:::-;16236:63;;16191:118;15842:474;;;;;:::o;16322:179::-;16391:10;16412:46;16454:3;16446:6;16412:46;:::i;:::-;16490:4;16485:3;16481:14;16467:28;;16322:179;;;;:::o;16507:118::-;16594:24;16612:5;16594:24;:::i;:::-;16589:3;16582:37;16507:118;;:::o;16661:732::-;16780:3;16809:54;16857:5;16809:54;:::i;:::-;16879:86;16958:6;16953:3;16879:86;:::i;:::-;16872:93;;16989:56;17039:5;16989:56;:::i;:::-;17068:7;17099:1;17084:284;17109:6;17106:1;17103:13;17084:284;;;17185:6;17179:13;17212:63;17271:3;17256:13;17212:63;:::i;:::-;17205:70;;17298:60;17351:6;17298:60;:::i;:::-;17288:70;;17144:224;17131:1;17128;17124:9;17119:14;;17084:284;;;17088:14;17384:3;17377:10;;16785:608;;;16661:732;;;;:::o;17399:109::-;17480:21;17495:5;17480:21;:::i;:::-;17475:3;17468:34;17399:109;;:::o;17514:360::-;17600:3;17628:38;17660:5;17628:38;:::i;:::-;17682:70;17745:6;17740:3;17682:70;:::i;:::-;17675:77;;17761:52;17806:6;17801:3;17794:4;17787:5;17783:16;17761:52;:::i;:::-;17838:29;17860:6;17838:29;:::i;:::-;17833:3;17829:39;17822:46;;17604:270;17514:360;;;;:::o;17880:364::-;17968:3;17996:39;18029:5;17996:39;:::i;:::-;18051:71;18115:6;18110:3;18051:71;:::i;:::-;18044:78;;18131:52;18176:6;18171:3;18164:4;18157:5;18153:16;18131:52;:::i;:::-;18208:29;18230:6;18208:29;:::i;:::-;18203:3;18199:39;18192:46;;17972:272;17880:364;;;;:::o;18250:366::-;18392:3;18413:67;18477:2;18472:3;18413:67;:::i;:::-;18406:74;;18489:93;18578:3;18489:93;:::i;:::-;18607:2;18602:3;18598:12;18591:19;;18250:366;;;:::o;18622:::-;18764:3;18785:67;18849:2;18844:3;18785:67;:::i;:::-;18778:74;;18861:93;18950:3;18861:93;:::i;:::-;18979:2;18974:3;18970:12;18963:19;;18622:366;;;:::o;18994:::-;19136:3;19157:67;19221:2;19216:3;19157:67;:::i;:::-;19150:74;;19233:93;19322:3;19233:93;:::i;:::-;19351:2;19346:3;19342:12;19335:19;;18994:366;;;:::o;19366:::-;19508:3;19529:67;19593:2;19588:3;19529:67;:::i;:::-;19522:74;;19605:93;19694:3;19605:93;:::i;:::-;19723:2;19718:3;19714:12;19707:19;;19366:366;;;:::o;19738:::-;19880:3;19901:67;19965:2;19960:3;19901:67;:::i;:::-;19894:74;;19977:93;20066:3;19977:93;:::i;:::-;20095:2;20090:3;20086:12;20079:19;;19738:366;;;:::o;20110:::-;20252:3;20273:67;20337:2;20332:3;20273:67;:::i;:::-;20266:74;;20349:93;20438:3;20349:93;:::i;:::-;20467:2;20462:3;20458:12;20451:19;;20110:366;;;:::o;20482:::-;20624:3;20645:67;20709:2;20704:3;20645:67;:::i;:::-;20638:74;;20721:93;20810:3;20721:93;:::i;:::-;20839:2;20834:3;20830:12;20823:19;;20482:366;;;:::o;20854:::-;20996:3;21017:67;21081:2;21076:3;21017:67;:::i;:::-;21010:74;;21093:93;21182:3;21093:93;:::i;:::-;21211:2;21206:3;21202:12;21195:19;;20854:366;;;:::o;21226:::-;21368:3;21389:67;21453:2;21448:3;21389:67;:::i;:::-;21382:74;;21465:93;21554:3;21465:93;:::i;:::-;21583:2;21578:3;21574:12;21567:19;;21226:366;;;:::o;21598:::-;21740:3;21761:67;21825:2;21820:3;21761:67;:::i;:::-;21754:74;;21837:93;21926:3;21837:93;:::i;:::-;21955:2;21950:3;21946:12;21939:19;;21598:366;;;:::o;21970:::-;22112:3;22133:67;22197:2;22192:3;22133:67;:::i;:::-;22126:74;;22209:93;22298:3;22209:93;:::i;:::-;22327:2;22322:3;22318:12;22311:19;;21970:366;;;:::o;22342:::-;22484:3;22505:67;22569:2;22564:3;22505:67;:::i;:::-;22498:74;;22581:93;22670:3;22581:93;:::i;:::-;22699:2;22694:3;22690:12;22683:19;;22342:366;;;:::o;22714:::-;22856:3;22877:67;22941:2;22936:3;22877:67;:::i;:::-;22870:74;;22953:93;23042:3;22953:93;:::i;:::-;23071:2;23066:3;23062:12;23055:19;;22714:366;;;:::o;23086:::-;23228:3;23249:67;23313:2;23308:3;23249:67;:::i;:::-;23242:74;;23325:93;23414:3;23325:93;:::i;:::-;23443:2;23438:3;23434:12;23427:19;;23086:366;;;:::o;23458:108::-;23535:24;23553:5;23535:24;:::i;:::-;23530:3;23523:37;23458:108;;:::o;23572:118::-;23659:24;23677:5;23659:24;:::i;:::-;23654:3;23647:37;23572:118;;:::o;23696:222::-;23789:4;23827:2;23816:9;23812:18;23804:26;;23840:71;23908:1;23897:9;23893:17;23884:6;23840:71;:::i;:::-;23696:222;;;;:::o;23924:1053::-;24247:4;24285:3;24274:9;24270:19;24262:27;;24299:71;24367:1;24356:9;24352:17;24343:6;24299:71;:::i;:::-;24380:72;24448:2;24437:9;24433:18;24424:6;24380:72;:::i;:::-;24499:9;24493:4;24489:20;24484:2;24473:9;24469:18;24462:48;24527:108;24630:4;24621:6;24527:108;:::i;:::-;24519:116;;24682:9;24676:4;24672:20;24667:2;24656:9;24652:18;24645:48;24710:108;24813:4;24804:6;24710:108;:::i;:::-;24702:116;;24866:9;24860:4;24856:20;24850:3;24839:9;24835:19;24828:49;24894:76;24965:4;24956:6;24894:76;:::i;:::-;24886:84;;23924:1053;;;;;;;;:::o;24983:751::-;25206:4;25244:3;25233:9;25229:19;25221:27;;25258:71;25326:1;25315:9;25311:17;25302:6;25258:71;:::i;:::-;25339:72;25407:2;25396:9;25392:18;25383:6;25339:72;:::i;:::-;25421;25489:2;25478:9;25474:18;25465:6;25421:72;:::i;:::-;25503;25571:2;25560:9;25556:18;25547:6;25503:72;:::i;:::-;25623:9;25617:4;25613:20;25607:3;25596:9;25592:19;25585:49;25651:76;25722:4;25713:6;25651:76;:::i;:::-;25643:84;;24983:751;;;;;;;;:::o;25740:373::-;25883:4;25921:2;25910:9;25906:18;25898:26;;25970:9;25964:4;25960:20;25956:1;25945:9;25941:17;25934:47;25998:108;26101:4;26092:6;25998:108;:::i;:::-;25990:116;;25740:373;;;;:::o;26119:634::-;26340:4;26378:2;26367:9;26363:18;26355:26;;26427:9;26421:4;26417:20;26413:1;26402:9;26398:17;26391:47;26455:108;26558:4;26549:6;26455:108;:::i;:::-;26447:116;;26610:9;26604:4;26600:20;26595:2;26584:9;26580:18;26573:48;26638:108;26741:4;26732:6;26638:108;:::i;:::-;26630:116;;26119:634;;;;;:::o;26759:210::-;26846:4;26884:2;26873:9;26869:18;26861:26;;26897:65;26959:1;26948:9;26944:17;26935:6;26897:65;:::i;:::-;26759:210;;;;:::o;26975:313::-;27088:4;27126:2;27115:9;27111:18;27103:26;;27175:9;27169:4;27165:20;27161:1;27150:9;27146:17;27139:47;27203:78;27276:4;27267:6;27203:78;:::i;:::-;27195:86;;26975:313;;;;:::o;27294:419::-;27460:4;27498:2;27487:9;27483:18;27475:26;;27547:9;27541:4;27537:20;27533:1;27522:9;27518:17;27511:47;27575:131;27701:4;27575:131;:::i;:::-;27567:139;;27294:419;;;:::o;27719:::-;27885:4;27923:2;27912:9;27908:18;27900:26;;27972:9;27966:4;27962:20;27958:1;27947:9;27943:17;27936:47;28000:131;28126:4;28000:131;:::i;:::-;27992:139;;27719:419;;;:::o;28144:::-;28310:4;28348:2;28337:9;28333:18;28325:26;;28397:9;28391:4;28387:20;28383:1;28372:9;28368:17;28361:47;28425:131;28551:4;28425:131;:::i;:::-;28417:139;;28144:419;;;:::o;28569:::-;28735:4;28773:2;28762:9;28758:18;28750:26;;28822:9;28816:4;28812:20;28808:1;28797:9;28793:17;28786:47;28850:131;28976:4;28850:131;:::i;:::-;28842:139;;28569:419;;;:::o;28994:::-;29160:4;29198:2;29187:9;29183:18;29175:26;;29247:9;29241:4;29237:20;29233:1;29222:9;29218:17;29211:47;29275:131;29401:4;29275:131;:::i;:::-;29267:139;;28994:419;;;:::o;29419:::-;29585:4;29623:2;29612:9;29608:18;29600:26;;29672:9;29666:4;29662:20;29658:1;29647:9;29643:17;29636:47;29700:131;29826:4;29700:131;:::i;:::-;29692:139;;29419:419;;;:::o;29844:::-;30010:4;30048:2;30037:9;30033:18;30025:26;;30097:9;30091:4;30087:20;30083:1;30072:9;30068:17;30061:47;30125:131;30251:4;30125:131;:::i;:::-;30117:139;;29844:419;;;:::o;30269:::-;30435:4;30473:2;30462:9;30458:18;30450:26;;30522:9;30516:4;30512:20;30508:1;30497:9;30493:17;30486:47;30550:131;30676:4;30550:131;:::i;:::-;30542:139;;30269:419;;;:::o;30694:::-;30860:4;30898:2;30887:9;30883:18;30875:26;;30947:9;30941:4;30937:20;30933:1;30922:9;30918:17;30911:47;30975:131;31101:4;30975:131;:::i;:::-;30967:139;;30694:419;;;:::o;31119:::-;31285:4;31323:2;31312:9;31308:18;31300:26;;31372:9;31366:4;31362:20;31358:1;31347:9;31343:17;31336:47;31400:131;31526:4;31400:131;:::i;:::-;31392:139;;31119:419;;;:::o;31544:::-;31710:4;31748:2;31737:9;31733:18;31725:26;;31797:9;31791:4;31787:20;31783:1;31772:9;31768:17;31761:47;31825:131;31951:4;31825:131;:::i;:::-;31817:139;;31544:419;;;:::o;31969:::-;32135:4;32173:2;32162:9;32158:18;32150:26;;32222:9;32216:4;32212:20;32208:1;32197:9;32193:17;32186:47;32250:131;32376:4;32250:131;:::i;:::-;32242:139;;31969:419;;;:::o;32394:::-;32560:4;32598:2;32587:9;32583:18;32575:26;;32647:9;32641:4;32637:20;32633:1;32622:9;32618:17;32611:47;32675:131;32801:4;32675:131;:::i;:::-;32667:139;;32394:419;;;:::o;32819:::-;32985:4;33023:2;33012:9;33008:18;33000:26;;33072:9;33066:4;33062:20;33058:1;33047:9;33043:17;33036:47;33100:131;33226:4;33100:131;:::i;:::-;33092:139;;32819:419;;;:::o;33244:222::-;33337:4;33375:2;33364:9;33360:18;33352:26;;33388:71;33456:1;33445:9;33441:17;33432:6;33388:71;:::i;:::-;33244:222;;;;:::o;33472:332::-;33593:4;33631:2;33620:9;33616:18;33608:26;;33644:71;33712:1;33701:9;33697:17;33688:6;33644:71;:::i;:::-;33725:72;33793:2;33782:9;33778:18;33769:6;33725:72;:::i;:::-;33472:332;;;;;:::o;33810:129::-;33844:6;33871:20;;:::i;:::-;33861:30;;33900:33;33928:4;33920:6;33900:33;:::i;:::-;33810:129;;;:::o;33945:75::-;33978:6;34011:2;34005:9;33995:19;;33945:75;:::o;34026:311::-;34103:4;34193:18;34185:6;34182:30;34179:56;;;34215:18;;:::i;:::-;34179:56;34265:4;34257:6;34253:17;34245:25;;34325:4;34319;34315:15;34307:23;;34026:311;;;:::o;34343:::-;34420:4;34510:18;34502:6;34499:30;34496:56;;;34532:18;;:::i;:::-;34496:56;34582:4;34574:6;34570:17;34562:25;;34642:4;34636;34632:15;34624:23;;34343:311;;;:::o;34660:307::-;34721:4;34811:18;34803:6;34800:30;34797:56;;;34833:18;;:::i;:::-;34797:56;34871:29;34893:6;34871:29;:::i;:::-;34863:37;;34955:4;34949;34945:15;34937:23;;34660:307;;;:::o;34973:308::-;35035:4;35125:18;35117:6;35114:30;35111:56;;;35147:18;;:::i;:::-;35111:56;35185:29;35207:6;35185:29;:::i;:::-;35177:37;;35269:4;35263;35259:15;35251:23;;34973:308;;;:::o;35287:132::-;35354:4;35377:3;35369:11;;35407:4;35402:3;35398:14;35390:22;;35287:132;;;:::o;35425:114::-;35492:6;35526:5;35520:12;35510:22;;35425:114;;;:::o;35545:98::-;35596:6;35630:5;35624:12;35614:22;;35545:98;;;:::o;35649:99::-;35701:6;35735:5;35729:12;35719:22;;35649:99;;;:::o;35754:113::-;35824:4;35856;35851:3;35847:14;35839:22;;35754:113;;;:::o;35873:184::-;35972:11;36006:6;36001:3;35994:19;36046:4;36041:3;36037:14;36022:29;;35873:184;;;;:::o;36063:168::-;36146:11;36180:6;36175:3;36168:19;36220:4;36215:3;36211:14;36196:29;;36063:168;;;;:::o;36237:169::-;36321:11;36355:6;36350:3;36343:19;36395:4;36390:3;36386:14;36371:29;;36237:169;;;;:::o;36412:305::-;36452:3;36471:20;36489:1;36471:20;:::i;:::-;36466:25;;36505:20;36523:1;36505:20;:::i;:::-;36500:25;;36659:1;36591:66;36587:74;36584:1;36581:81;36578:107;;;36665:18;;:::i;:::-;36578:107;36709:1;36706;36702:9;36695:16;;36412:305;;;;:::o;36723:96::-;36760:7;36789:24;36807:5;36789:24;:::i;:::-;36778:35;;36723:96;;;:::o;36825:90::-;36859:7;36902:5;36895:13;36888:21;36877:32;;36825:90;;;:::o;36921:149::-;36957:7;36997:66;36990:5;36986:78;36975:89;;36921:149;;;:::o;37076:126::-;37113:7;37153:42;37146:5;37142:54;37131:65;;37076:126;;;:::o;37208:77::-;37245:7;37274:5;37263:16;;37208:77;;;:::o;37291:154::-;37375:6;37370:3;37365;37352:30;37437:1;37428:6;37423:3;37419:16;37412:27;37291:154;;;:::o;37451:307::-;37519:1;37529:113;37543:6;37540:1;37537:13;37529:113;;;37628:1;37623:3;37619:11;37613:18;37609:1;37604:3;37600:11;37593:39;37565:2;37562:1;37558:10;37553:15;;37529:113;;;37660:6;37657:1;37654:13;37651:101;;;37740:1;37731:6;37726:3;37722:16;37715:27;37651:101;37500:258;37451:307;;;:::o;37764:320::-;37808:6;37845:1;37839:4;37835:12;37825:22;;37892:1;37886:4;37882:12;37913:18;37903:81;;37969:4;37961:6;37957:17;37947:27;;37903:81;38031:2;38023:6;38020:14;38000:18;37997:38;37994:84;;;38050:18;;:::i;:::-;37994:84;37815:269;37764:320;;;:::o;38090:281::-;38173:27;38195:4;38173:27;:::i;:::-;38165:6;38161:40;38303:6;38291:10;38288:22;38267:18;38255:10;38252:34;38249:62;38246:88;;;38314:18;;:::i;:::-;38246:88;38354:10;38350:2;38343:22;38133:238;38090:281;;:::o;38377:233::-;38416:3;38439:24;38457:5;38439:24;:::i;:::-;38430:33;;38485:66;38478:5;38475:77;38472:103;;;38555:18;;:::i;:::-;38472:103;38602:1;38595:5;38591:13;38584:20;;38377:233;;;:::o;38616:180::-;38664:77;38661:1;38654:88;38761:4;38758:1;38751:15;38785:4;38782:1;38775:15;38802:180;38850:77;38847:1;38840:88;38947:4;38944:1;38937:15;38971:4;38968:1;38961:15;38988:180;39036:77;39033:1;39026:88;39133:4;39130:1;39123:15;39157:4;39154:1;39147:15;39174:180;39222:77;39219:1;39212:88;39319:4;39316:1;39309:15;39343:4;39340:1;39333:15;39360:183;39395:3;39433:1;39415:16;39412:23;39409:128;;;39471:1;39468;39465;39450:23;39493:34;39524:1;39518:8;39493:34;:::i;:::-;39486:41;;39409:128;39360:183;:::o;39549:117::-;39658:1;39655;39648:12;39672:117;39781:1;39778;39771:12;39795:117;39904:1;39901;39894:12;39918:117;40027:1;40024;40017:12;40041:117;40150:1;40147;40140:12;40164:102;40205:6;40256:2;40252:7;40247:2;40240:5;40236:14;40232:28;40222:38;;40164:102;;;:::o;40272:106::-;40316:8;40365:5;40360:3;40356:15;40335:36;;40272:106;;;:::o;40384:227::-;40524:34;40520:1;40512:6;40508:14;40501:58;40593:10;40588:2;40580:6;40576:15;40569:35;40384:227;:::o;40617:225::-;40757:34;40753:1;40745:6;40741:14;40734:58;40826:8;40821:2;40813:6;40809:15;40802:33;40617:225;:::o;40848:223::-;40988:34;40984:1;40976:6;40972:14;40965:58;41057:6;41052:2;41044:6;41040:15;41033:31;40848:223;:::o;41077:229::-;41217:34;41213:1;41205:6;41201:14;41194:58;41286:12;41281:2;41273:6;41269:15;41262:37;41077:229;:::o;41312:233::-;41452:34;41448:1;41440:6;41436:14;41429:58;41521:16;41516:2;41508:6;41504:15;41497:41;41312:233;:::o;41551:224::-;41691:34;41687:1;41679:6;41675:14;41668:58;41760:7;41755:2;41747:6;41743:15;41736:32;41551:224;:::o;41781:222::-;41921:34;41917:1;41909:6;41905:14;41898:58;41990:5;41985:2;41977:6;41973:15;41966:30;41781:222;:::o;42009:229::-;42149:34;42145:1;42137:6;42133:14;42126:58;42218:12;42213:2;42205:6;42201:15;42194:37;42009:229;:::o;42244:182::-;42384:34;42380:1;42372:6;42368:14;42361:58;42244:182;:::o;42432:228::-;42572:34;42568:1;42560:6;42556:14;42549:58;42641:11;42636:2;42628:6;42624:15;42617:36;42432:228;:::o;42666:::-;42806:34;42802:1;42794:6;42790:14;42783:58;42875:11;42870:2;42862:6;42858:15;42851:36;42666:228;:::o;42900:227::-;43040:34;43036:1;43028:6;43024:14;43017:58;43109:10;43104:2;43096:6;43092:15;43085:35;42900:227;:::o;43133:220::-;43273:34;43269:1;43261:6;43257:14;43250:58;43342:3;43337:2;43329:6;43325:15;43318:28;43133:220;:::o;43359:239::-;43499:34;43495:1;43487:6;43483:14;43476:58;43568:22;43563:2;43555:6;43551:15;43544:47;43359:239;:::o;43604:711::-;43643:3;43681:4;43663:16;43660:26;43657:39;;;43689:5;;43657:39;43718:20;;:::i;:::-;43793:1;43775:16;43771:24;43768:1;43762:4;43747:49;43826:4;43820:11;43925:16;43918:4;43910:6;43906:17;43903:39;43870:18;43862:6;43859:30;43843:113;43840:146;;;43971:5;;;;43840:146;44017:6;44011:4;44007:17;44053:3;44047:10;44080:18;44072:6;44069:30;44066:43;;;44102:5;;;;;;44066:43;44150:6;44143:4;44138:3;44134:14;44130:27;44209:1;44191:16;44187:24;44181:4;44177:35;44172:3;44169:44;44166:57;;;44216:5;;;;;;;44166:57;44233;44281:6;44275:4;44271:17;44263:6;44259:30;44253:4;44233:57;:::i;:::-;44306:3;44299:10;;43647:668;;;;;43604:711;;:::o;44321:122::-;44394:24;44412:5;44394:24;:::i;:::-;44387:5;44384:35;44374:63;;44433:1;44430;44423:12;44374:63;44321:122;:::o;44449:116::-;44519:21;44534:5;44519:21;:::i;:::-;44512:5;44509:32;44499:60;;44555:1;44552;44545:12;44499:60;44449:116;:::o;44571:120::-;44643:23;44660:5;44643:23;:::i;:::-;44636:5;44633:34;44623:62;;44681:1;44678;44671:12;44623:62;44571:120;:::o;44697:122::-;44770:24;44788:5;44770:24;:::i;:::-;44763:5;44760:35;44750:63;;44809:1;44806;44799:12;44750:63;44697:122;:::o
Swarm Source
ipfs://0e631dc0943e797bd19bb0021c3ec470e0a1506e66ee458ca569bb93cff1b7ea
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.